Advertisement
Sayori

DDLC Script Act 1 Poem Responses

Oct 17th, 2017
1,447
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 114.07 KB | None | 0 0
  1. label poemresponse_start:
  2.     $ poemsread = 0
  3.     $ skip_transition = False
  4.     label poemresponse_loop:
  5.         $ skip_poem = False
  6.         if renpy.music.get_playing() and not (renpy.music.get_playing() == audio.t5 or renpy.music.get_playing() == audio.t5c):
  7.             $ renpy.music.play(audio.t5, fadeout=1.0, if_changed=True)
  8.         if skip_transition:
  9.             scene bg club_day
  10.         else:
  11.             scene bg club_day
  12.             with wipeleft_scene
  13.         $ skip_transition = False
  14.         if not renpy.music.get_playing():
  15.             play music t5
  16.     label poemresponse_start2:
  17.         $ skip_poem = False
  18.         if persistent.playthrough == 2:
  19.             $ pt = "2"
  20.         else:
  21.             $ pt = ""
  22.         if poemsread == 0:
  23.             $ menutext = "Who should I show my poem to first?"
  24.         else:
  25.             $ menutext = "Who should I show my poem to next?"
  26.  
  27.         menu:
  28.             "[menutext]"
  29.  
  30.             "Sayori" if not s_readpoem and persistent.playthrough == 0:
  31.                 $ s_readpoem = True
  32.                 if chapter == 1 and poemsread == 0:
  33.                     "I'm definitely most comfortable sharing it with Sayori first."
  34.                     "She's my good friend, after all."
  35.                 call poemresponse_sayori
  36.             "Natsuki" if not n_readpoem:
  37.                 $ n_readpoem = True
  38.                 if chapter == 1 and poemsread == 0:
  39.                     "I told Natsuki I was interested in her poems yesterday."
  40.                     "It's probably only fair if I shared mine with her first."
  41.                 call poemresponse_natsuki
  42.             "Yuri" if not y_readpoem and not y_ranaway:
  43.                 $ y_readpoem = True
  44.                 if chapter == 1 and poemsread == 0:
  45.                     "Yuri seems the most experienced, so I should start with her."
  46.                     "I can trust her opinion to be fair."
  47.                 call poemresponse_yuri
  48.             "Monika" if not m_readpoem:
  49.                 $ m_readpoem = True
  50.                 if chapter == 1 and poemsread == 0:
  51.                     "I should start with Monika."
  52.                     "Yesterday she seemed eager to read my poem, and I want her to know I'm putting in effort."
  53.                 call poemresponse_monika
  54.         $ poemsread += 1
  55.         if poemsread < 3 or (persistent.playthrough == 0 and poemsread < 4):
  56.             jump poemresponse_loop
  57.  
  58.  
  59.     $ s_readpoem = False
  60.     $ n_readpoem = False
  61.     $ y_readpoem = False
  62.     $ m_readpoem = False
  63.     $ poemsread = 0
  64.     return
  65.  
  66. label poemresponse_sayori:
  67.     scene bg club_day
  68.     show sayori 1a zorder 2 at t11
  69.     with wipeleft_scene
  70.     $ poemopinion = "med"
  71.     if s_poemappeal[chapter - 1] < 0:
  72.         $ poemopinion = "bad"
  73.     elif s_poemappeal[chapter - 1] > 0:
  74.         $ poemopinion = "good"
  75.     $ nextscene = "ch" + pt + str(chapter) + "_s_" + poemopinion
  76.     call expression nextscene
  77.     if not skip_poem:
  78.         $ nextscene = "ch" + pt + str(chapter) + "_s_end"
  79.         call expression nextscene
  80.     return
  81.  
  82. label poemresponse_natsuki:
  83.     scene bg club_day
  84.     show natsuki 1c zorder 2 at t11
  85.     with wipeleft_scene
  86.     $ poemopinion = "med"
  87.     if n_poemappeal[chapter - 1] < 0:
  88.         $ poemopinion = "bad"
  89.     elif n_poemappeal[chapter - 1] > 0:
  90.         $ poemopinion = "good"
  91.     $ nextscene = "ch" + pt + str(chapter) + "_n_" + poemopinion
  92.     call expression nextscene
  93.     if not skip_poem:
  94.         $ nextscene = "ch" + pt + str(chapter) + "_n_end"
  95.         call expression nextscene
  96.     return
  97.  
  98. label poemresponse_yuri:
  99.     scene bg club_day
  100.     show yuri 1a zorder 2 at t11
  101.     with wipeleft_scene
  102.     $ poemopinion = "med"
  103.     if y_poemappeal[chapter - 1] < 0:
  104.         $ poemopinion = "bad"
  105.     elif y_poemappeal[chapter - 1] > 0:
  106.         $ poemopinion = "good"
  107.     $ nextscene = "ch" + pt + str(chapter) + "_y_" + poemopinion
  108.     call expression nextscene
  109.     if not skip_poem:
  110.         $ nextscene = "ch" + pt + str(chapter) + "_y_end"
  111.         call expression nextscene
  112.     return
  113.  
  114. label poemresponse_monika:
  115.     scene bg club_day
  116.     show monika 1a zorder 2 at t11
  117.     with wipeleft_scene
  118.     if m_poemappeal[chapter - 1] < 0:
  119.         $ poemopinion = "bad"
  120.     elif m_poemappeal[chapter - 1] > 0:
  121.         $ poemopinion = "good"
  122.     $ nextscene = "ch" + pt + str(chapter) + "_m_start"
  123.     call expression nextscene
  124.     if not skip_poem:
  125.         $ nextscene = "ch" + pt + str(chapter) + "_m_end"
  126.         call expression nextscene
  127.     return
  128.  
  129. label ch1_y_end:
  130.     call showpoem (poem_y1, img="yuri 3t")
  131.     y 3t "..."
  132.     y "I...I'm sorry I have such terrible handwriting!"
  133.     mc "What??"
  134.     mc "I wasn't thinking that at all..."
  135.     y 2v "But it took you a long time to read..."
  136.     mc "Ah--"
  137.     mc "Well, I just don't read script very often..."
  138.     mc "I actually think your handwriting is pretty."
  139.     y 2t "Eh?"
  140.     y 2u "That's...a relief..."
  141.     mc "Also, I liked the poem."
  142.     mc "Even though it's short, it was really descriptive."
  143.     y 2t "It wasn't too short?"
  144.     y "I usually write longer poems..."
  145.     mc "Not at all."
  146.     y 1m "I'm...really glad you like it."
  147.     y "I'll be honest..."
  148.     y 1a "Since it's our first time sharing, I wanted to write something a little more mild."
  149.     y "Something easy to digest, I suppose."
  150.     mc "Are you into ghosts, Yuri?"
  151.     y 1m "Huhu."
  152.     y "Actually, the story isn't about a ghost at all, [player]."
  153.     mc "Really?"
  154.     mc "I must have totally missed the point..."
  155.     y 1u "Well, I suppose you did only glance over it, after all..."
  156.     y "But remember that poets often express their own thoughts, feelings, and experiences in their work."
  157.     y 1a "They usually do more than tell a simple story, or paint a picture."
  158.     y "In this case, perhaps the subject of the poem is only being symbolically compared to a ghost."
  159.     y 2l "Lingering in her last remaining place of comfort, unable to let go of the past."
  160.     y "And soon to be left with nothing..."
  161.     mc "...That's a lot more solemn, putting it that way."
  162.     mc "I hadn't even thought of that..."
  163.     mc "That's impressive."
  164.     if poemopinion == "good":
  165.         y 2f "Eh?"
  166.         y 3v "I-It's nothing, really!"
  167.         y "Yours was impressive too, so..."
  168.         mc "Nah..."
  169.         mc "If anything, I could probably learn a thing or two from you."
  170.         y 4a "...You think so?"
  171.         mc "Yeah, of course."
  172.         y "Ah..."
  173.         y 2s "You know..."
  174.         y "I was really nervous about doing all this."
  175.         y "But in the end, I enjoyed it."
  176.         y "I'm going to keep doing my best for you, [player]."
  177.         mc "Ah..."
  178.         mc "Me too."
  179.     else:
  180.         y 1u "It's nothing, really..."
  181.         y "Well...it makes me happy that you think that."
  182.         y 1a "Just remember that it won't be long before you pick up on these things, too."
  183.         mc "Yeah, maybe you're right."
  184.         mc "I guess I'll have to keep trying."
  185.         y "I'm counting on you."
  186.     return
  187.  
  188. label ch2_y_end:
  189.     call showpoem (poem_y2)
  190.     y 2m "Um..."
  191.     y "I was a little more daring with this one than yesterday's..."
  192.     mc "I can see that."
  193.     mc "It's a lot more metaphorical..."
  194.     "I don't know if it's my fault, but I can't begin to imagine what this poem is about."
  195.     y 1a "That's right."
  196.     y "It's a bit closer to my preferred writing style..."
  197.     y "Using the poem as a canvas to express vivid imagery, and conveying emotions through them."
  198.     mc "Yeah, if I take it at face value, then I can't even figure out what it's supposed to mean..."
  199.     y 2f "Well..."
  200.     y "I think it's something that different people can relate to in their own way."
  201.     y "I wanted to express the way it feels for me to indulge in my more unusual hobbies..."
  202.     y 2v "It's those sorts of things I'm usually forced to keep to myself."
  203.     y "So, I sometimes enjoy writing about them."
  204.     if n_readpoem and (n_poemappeal[0] >= 0 or n_poemappeal[1] >= 0):
  205.         mc "Huh, that's funny..."
  206.         y 2e "...?"
  207.         mc "Didn't Natsuki also write something about that?"
  208.         mc "About someone being ridiculed for a strange interest?"
  209.         y 2h "Eh?"
  210.         y "She...she did?"
  211.         mc "Yeah..."
  212.         mc "She was talking about how it doesn't matter what you're into as long as you're not hurting anybody."
  213.         y 3r "She--She's right!"
  214.         y 3o "Ah--I mean..."
  215.         y "Does she really feel that way...?"
  216.         mc "Yeah."
  217.         mc "Sounds like you two have that in common..."
  218.         y 3h "That's...well, that's interesting..."
  219.         y "To me, she seemed like the kind of person who would make fun of my hobbies..."
  220.         y "But I suppose that's my fault for judging, isn't it...?"
  221.         y 3p "Ah-- Please don't tell her I said that!"
  222.         mc "Ahaha. Don't worry, I have no reason to."
  223.         y 1l "Okay..."
  224.         y 1a "Well, thank you for sharing it with me."
  225.     else:
  226.         mc "Why do you keep them to yourself?"
  227.         y 3v "Be...Because..."
  228.         y "They're embarrassing..."
  229.         y "And people would make fun of me."
  230.         y "Don't you have anything like that, [player]?"
  231.         mc "Well..."
  232.         mc "Yeah, I guess I do..."
  233.         y 2h "I feel like everyone has a little something like that."
  234.         y "The best we can do is respect each other and our individualities."
  235.         y "Even if it's difficult sometimes, and some things make us uncomfortable..."
  236.     y 1a "After all, if I hadn't learned to embrace my own weirdness, I would probably hate myself."
  237.     y 2u "I-I might be ranting a little bit now..."
  238.     y "...But I'm glad that you're a good listener."
  239.     if y_appeal >= 2:
  240.         y 2s "You're good at a lot of things..."
  241.         y "Writing, listening..."
  242.         y 2u "There really aren't many people like you, [player]..."
  243.         mc "Th-That's exaggerating a little bit..."
  244.         y 2v "It's just...how I feel."
  245.         y "I never thought I would feel so comfortable sharing my writing..."
  246.         y 2s "But now, I almost feel like I look forward to it..."
  247.         y 2m "It's just...a really nice feeling."
  248.         y "And you're to thank for that."
  249.         mc "It's...it's nothing, really..."
  250.         "Yuri smiles sincerely at me."
  251.         "For just a moment, her timidness seems to disappear."
  252.     return
  253. label ch3_y_end:
  254.     if y_appeal >= 3:
  255.         jump ch3_y_end_special
  256.     call showpoem (poem_y3, img="yuri 2v")
  257.     y "Um..."
  258.     y "I'm aware that the beach is kind of an inane thing to write about."
  259.     y "But I did my best to take a metaphorical approach to it."
  260.     if not n_readpoem or n_appeal >= 3:
  261.         mc "You say that like you didn't even want to write about it..."
  262.         y 2e "Oh, you haven't heard...?"
  263.         y 2h "After yesterday, Natsuki and I...well..."
  264.         y "It was...amusing that we wrote about something similar in such different ways."
  265.         y "So, Natsuki wanted us to write about the same topic as each other again."
  266.         if n_readpoem:
  267.             mc "I see..."
  268.             "Something tells me the poem Natsuki showed me isn't the one she plans on sharing with everyone else..."
  269.             "Of course, I choose not to mention that to Yuri."
  270.     else:
  271.         mc "Yeah, Natsuki already told me about it."
  272.         y 3t "S-She did...?"
  273.         y "She didn't say anything weird, did she?"
  274.         y "She just wanted us to write about the same topic again..."
  275.     y 2f "I suppose to better compare the differences in our writing styles...or thought processes."
  276.     y 2w "Anyway, it was her idea...!"
  277.     y "Knowing her, it's no surprise that she'd want to do something like that."
  278.     y "She probably just wants to show off."
  279.     y 2v "It's not like I have a particular interest in her writing style..."
  280.     y "I just went with her request."
  281.     y "But..."
  282.     y 1s "Well, I suppose it's not so bad to write about something simple on occasion."
  283.     y 1m "It can be refreshing, you know?"
  284.     y "It's good for me to calm my thoughts once in a while."
  285.     mc "Yeah...I think I agree."
  286.     mc "Thanks for sharing."
  287.     return
  288. label ch3_y_end_special:
  289.     call showpoem (poem_y3b, img="yuri 4b")
  290.     "Finishing the poem, I start to hand it back to Yuri."
  291.     "But instead of taking it from me, she looks away."
  292.     y "..."
  293.     y "Do you...dislike it?"
  294.     mc "Ah--no, of course not."
  295.     mc "I just...don't really know how I should respond."
  296.     "Despite Yuri's poems usually being cryptic, it wasn't hard to figure out what this one was about."
  297.     if n_readpoem:
  298.         "Also, this clearly isn't the poem that Natsuki said she wrote about..."
  299.         "...Meaning I'm probably the only one she's showing this to."
  300.     y 2v "I-I don't know if I'll be able to explain this one..."
  301.     mc "That's fine."
  302.     mc "I understand this one."
  303.     y 4c "..."
  304.     "Yuri is having an even harder time speaking than usual."
  305.     mc "Does this one...mean a lot to you?"
  306.     "Yuri nods."
  307.     mc "I'm not really good with words, but..."
  308.     mc "I'm happy that you shared it with me."
  309.     mc "So, thank you."
  310.     mc "And I hope we keep spending time together."
  311.     show yuri 4e
  312.     "Despite my inability to make eye contact, I see a faint smile emerge on Yuri's lips."
  313.     "I once again try to hand the poem back to her."
  314.     show yuri 4a
  315.     "But instead, Yuri gently takes my hands and pushes them back toward me."
  316.     "I hesitate in response to her warm touch."
  317.     y 1v "You can..."
  318.     y "Um..."
  319.     y "The poem is..."
  320.     "Once again, Yuri fails to form a complete sentence."
  321.     mc "You mean I can keep it?"
  322.     "Yuri nods."
  323.     mc "I'd love to."
  324.     show yuri 1u
  325.     "Again, Yuri faintly smiles, as if she doesn't want me to notice."
  326.     y "You always..."
  327.     y "You always...make me feel nice."
  328.     y "I know I'm not good with people, but..."
  329.     y "I hope that...I can return the favor sometimes."
  330.     mc "Yeah."
  331.     mc "Don't worry."
  332.     mc "I think you do a good job."
  333.     "Yuri finally turns back toward me."
  334.     y 1s "I guess...we should move on before Monika says something."
  335.     y "But I'm sure we can talk again later..."
  336.     mc "Yeah."
  337.     mc "I'm sure we will."
  338.     "With that, Yuri timidly smiles at me, and I return to my seat so I can put her poem away."
  339.     return
  340.  
  341. label ch1_n_end:
  342.     call showpoem (poem_n1, img="natsuki 2s")
  343.     n 2q "Yeah..."
  344.     n "I told you that you weren't gonna like it."
  345.     mc "I like it."
  346.     n 2h "What?"
  347.     n "Just be honest!"
  348.     mc "I am."
  349.     mc "Why are you so convinced that I wouldn't like it?"
  350.     n 5w "Well--"
  351.     n "Because!"
  352.     n "Everyone in high school thinks that writing has to be all sophisticated and stuff..."
  353.     n 5q "So people don't even take my writing seriously."
  354.     mc "But isn't the point of poems for people to express themselves?"
  355.     mc "Your writing style wouldn't make your message any less valid."
  356.     n 1k "Yes! Exactly!"
  357.     n "I like when it's easy to read, but it hits you hard."
  358.     n 1c "Like in this poem."
  359.     n "Seeing everyone around you do great things can be really disheartening..."
  360.     n "So I decided to write about it."
  361.     mc "Yeah, I understand."
  362.     n 2a "But the other nice thing about simple writing is that it puts more weight on the wordplay."
  363.     n "Like I set up for a rhyme at the end, but then made it fall flat on purpose."
  364.     n "It helps bring out the feeling in the last line."
  365.     mc "So you did..."
  366.     mc "I guess more went into it than I realized."
  367.     n 4y "That's what it means to be a pro!"
  368.     n "I'm glad you learned something."
  369.     n "Didn't expect that from the youngest one here, did you?"
  370.     mc "Yeah...guess not."
  371.     "I decide to humor her with that last comment."
  372.     "I don't really care how old everyone is, but if Natsuki is feeling proud then I won't take that away from her."
  373.     return
  374.  
  375. label ch2_n_end:
  376.     call showpoem (poem_n2)
  377.     n 2a "Not bad, right?"
  378.     mc "It's quite a bit longer than yesterday's."
  379.     n 2w "Yesterday's was way too short..."
  380.     n "I was just warming up!"
  381.     n 2c "I hope you didn't think that was the best I could do."
  382.     mc "No, of course not..."
  383.     n 2a "Anyway, the message is pretty straightforward in this poem."
  384.     n "I doubt I have to explain it."
  385.     n 2c "Sometimes you can explain complicated issues with much simpler analogies..."
  386.     n "And it helps people realize how stupid they're being."
  387.     n 2g "Like, anyone would agree that the subject of this poem is an ignorant jerk..."
  388.     mc "Do you know people like that?"
  389.     n 2c "Of course. It's about how everyone thinks my--"
  390.     n 5w "...That doesn't matter! It can be about anything!"
  391.     n 5h "I wrote it to be easy to relate to..."
  392.     n "Everyone has some kind of weird hobby, or a guilty pleasure."
  393.     n 5q "Something that you're afraid if people find out, they'd make fun of you or think less of you."
  394.     n 1e "...But that just makes people stupid!"
  395.     n "Who cares what someone likes, as long as they're not hurting anyone, and it makes them happy?"
  396.     n 1q "I think people really need to learn to respect others for liking weird things..."
  397.     if y_readpoem and (y_poemappeal[0] >= 0 or y_poemappeal[1] >= 0):
  398.         mc "Huh, that's funny..."
  399.         mc "Yuri wrote about something similar today."
  400.         n 1h "Huh?"
  401.         n "Did you say Yuri?"
  402.         mc "Yeah..."
  403.         mc "She said her poem was about an unusual hobby of hers."
  404.         mc "I didn't really get it, but she said something similar to you..."
  405.         mc "That people shouldn't make each other feel insecure about those things."
  406.         n 1q "Really?"
  407.         n "Well..."
  408.         n 1t "I mean, Yuri's pretty weird, so I wouldn't doubt that she has some weird hobbies..."
  409.         n "...Not that there's anything wrong with that!"
  410.         n 1u "Uu..."
  411.         n "It's not like...I would judge her or anything..."
  412.         "Natsuki has trouble finding words."
  413.         n 1q "I-I guess I should try not to be so mean to her..."
  414.         n "If she feels insecure about her weird behaviors and stuff..."
  415.         n "I mean, I always hate people who make me feel insecure..."
  416.         n 1w "And Yuri made me feel insecure yesterday!"
  417.         n 1s "But the way you put it, it sounds like she's learned her lesson..."
  418.         mc "Well, I would say so."
  419.         mc "Even if her writing style is really different, I'm sure she'll appreciate the message in your poem."
  420.     else:
  421.         mc "Well, you're definitely right."
  422.         mc "At least, I can relate to that."
  423.         mc "And I'm sure a lot of other people can, too."
  424.     if n_appeal >= 2:
  425.         n 4h "You know..."
  426.         n "I'm glad that you can appreciate this kind of writing..."
  427.         n 4q "I mean...I know I was talking about that yesterday."
  428.         n "But I've been...well, I've been enjoying sharing my writing with you, so..."
  429.         n 4w "...So consider yourself lucky, okay?"
  430.         mc "Ahaha."
  431.         mc "Well, thanks for being honest."
  432.         n 1n "What's that supposed to mean?"
  433.         n "I'm always honest!"
  434.         n 12b "Jeez..."
  435.         n "Just look forward to tomorrow too, okay?"
  436.         mc "Alright, I will."
  437.     else:
  438.         n 4c "It's what I do best, after all!"
  439.         n "I don't like writing unless there's a good message to take away from it."
  440.         n "Like, conveying emotions is important..."
  441.         n "But I want to make people think, not just feel."
  442.         n 4b "Remember that!"
  443.         n "I'm gonna write a good one for tomorrow, too, so look forward to it."
  444.     return
  445. label ch3_n_end:
  446.     if n_appeal >= 3:
  447.         jump ch3_n_end_special
  448.     call showpoem (poem_n3)
  449.     n 2a "Yeah..."
  450.     n "I felt like I kept writing about negative things, so I wanted to write something with a nice message for once."
  451.     n 2z "Besides...the beach is awesome!"
  452.     n 2j "Kinda hard to write anything negative about the beach."
  453.     if not y_readpoem or y_appeal >= 3:
  454.         mc "So you decided to write about the beach first, and then came up with the message later?"
  455.         n 2c "Yeah, well..."
  456.         n "It's only because of what happened yesterday."
  457.         n 5q "I mean, after Yuri and I realized we kind of wrote about the same thing..."
  458.         n "She wanted to pick a topic and have us both write about it, or whatever."
  459.         if y_readpoem:
  460.             mc "I see..."
  461.             "Something tells me the poem Yuri showed me isn't the one she plans on sharing with everyone else..."
  462.             "Of course, I choose not to mention that to Natsuki."
  463.     else:
  464.         mc "Well, Yuri's take on it was a little more solemn."
  465.         n 5h "Well, that's--"
  466.         n 42c "Jeez...she better not have said anything bad about mine!"
  467.         n "After all, she was the one who wanted us to write about the same topic."
  468.     n 1s "Ugh...you can really see her doing that, too."
  469.     n "Making us write about a simple topic, then trying to impress me by coming up with something all fancy."
  470.     n 1w "Well, it's not like I care."
  471.     n "I just did it anyway."
  472.     n 1q "I mean, I guess mine ended up being kind of metaphorical too..."
  473.     n "...But there's nothing wrong with doing that once in a while!"
  474.     n "At the very least, it was good practice."
  475.     return
  476. label ch3_n_end_special:
  477.     call showpoem (poem_n3b)
  478.     n 1q "..."
  479.     n "...Why are you looking at me like that?"
  480.     n "If you don't like it, then just say it."
  481.     n 1u "I won't...get mad."
  482.     mc "No, it's not that I don't like it...!"
  483.     mc "It was just...a little surprising to read."
  484.     if y_readpoem:
  485.         "This clearly isn't the poem that Yuri told me she had written..."
  486.         "...Meaning I'm probably the only one she's showing this to."
  487.     mc "Er...I guess I'm not used to hearing such nice things coming from you..."
  488.     n 1h "D-Don't just say that!"
  489.     n 1n "Dummy..."
  490.     n "What do you think...the point of writing is?"
  491.     n 1u "Expressing things that you can't just say..."
  492.     mc "Yeah...I understand."
  493.     mc "I'm sorry for missing the point sometimes."
  494.     mc "I always mean well..."
  495.     mc "And...I'm happy that you showed this to me."
  496.     mc "I liked it."
  497.     n 1h "Well...yeah..."
  498.     n 1q "I'm...I'm a pro, so..."
  499.     "Natsuki mumbles, completely failing to sound confident like she usually does."
  500.     n "Just..."
  501.     n 12c "Remember that...I can think these things sometimes, too!"
  502.     n "You know, when you're nice to me, it's..."
  503.     n 12a "..."
  504.     n "...Meaningful."
  505.     mc "Ah...I'm glad."
  506.     "Sensing Natsuki is satisfied, I start to hand the poem back to her."
  507.     "But as I do so, Natsuki takes my hands and pushes them back away."
  508.     "Her small, soft hands surprise me with their assertion."
  509.     n 12b "I don't want it."
  510.     mc "Eh...?"
  511.     mc "Why not?"
  512.     n 12c "I just don't!"
  513.     n "Jeez..."
  514.     "I realize what Natsuki is doing."
  515.     "Unable to be honest, she's trying to give me the poem in a roundabout way."
  516.     mc "Well...in that case, I'm going to keep it."
  517.     "Instead of teasing her, I choose to go along with it."
  518.     n 1t "...Good."
  519.     n "If you didn't, I would..."
  520.     n "..."
  521.     n 1h "Never mind..."
  522.     n 1q "Just...I'm glad that you want it."
  523.     "Natsuki backpedals on her words and leaves it at that."
  524.     "Despite her best efforts to hide her expression, I can see her faintly smiling to herself."
  525.     n "That's all for now, so..."
  526.     n 1s "Go put it away before someone sees it, okay?"
  527.     mc "Ah...yeah."
  528.     mc "I'll go do that."
  529.     "With that, I return to my seat so that I can put away Natsuki's poem."
  530.     return
  531.  
  532. label ch1_s_end:
  533.     call showpoem (poem_s1)
  534.     mc "Sayori..."
  535.     mc "This is just a guess, but..."
  536.     mc "Did you wait until this morning to write this?"
  537.     s 4h "No!"
  538.     s 4l "J-Just a little bit!"
  539.     mc "You can't answer 'just a little bit' to a yes or no question..."
  540.     s 5b "I forgot to do it last night..."
  541.     mc "Well, at least that makes me feel a little better about myself..."
  542.     s 1h "Don't be mean!"
  543.     s "I still tried my best..."
  544.     mc "Ah, yeah..."
  545.     mc "I didn't mean to say that it was a bad poem."
  546.     mc "It came out nice...or, how should I put it..."
  547.     mc "It sounds just like you."
  548.     s 1d "Really?"
  549.     mc "Yeah."
  550.     mc "Especially that last line..."
  551.     s 4r "I made eggs and toast!"
  552.     mc "Even though you were late to school...?"
  553.     s 5d "It's bad to skip breakfast!"
  554.     s "I get all cranky..."
  555.     mc "Well, I guess there's no point in arguing..."
  556.     mc "Anyway, thanks for showing me."
  557.     s 1q "Ehehe~"
  558.     s "This was so much fun."
  559.     s "Monika's the best!"
  560.     mc "Ah...yeah."
  561.     s "But next time, I won't forget."
  562.     s 4x "And I'm gonna write the best poem ever!"
  563.     mc "Well, I guess I look forward to it."
  564.     return
  565.  
  566. label ch2_s_end:
  567.     call showpoem (poem_s2)
  568.     mc "Holy crap..."
  569.     mc "Sayori, did you really write this?"
  570.     s 2j "Of course I did!"
  571.     s "Didn't I tell you yesterday I was gonna write the best poem ever?"
  572.     mc "Yeah, but..."
  573.     mc "I mean, I didn't expect something like this, coming from you."
  574.     s 4x "Monika taught me a whole lot!"
  575.     s "And I've been really in touch with my feelings recently..."
  576.     mc "I see that..."
  577.     mc "It's almost kind of creepy."
  578.     s 1b "Creepy...?"
  579.     mc "Well, not exactly..."
  580.     mc "Maybe because I'm so used to you being cheerful..."
  581.     mc "...Well, never mind."
  582.     mc "I'm thinking too hard about it."
  583.     mc "The point is, it came out good, so you should be proud of it."
  584.     s 1y "Aw, thanks~"
  585.     s "I feel like..."
  586.     s "I feel like I was meant to express myself this way."
  587.     s "It even helps me understand my own feelings a little bit better..."
  588.     s 1a "Writing is like magic!"
  589.     mc "You've gotten pretty passionate about this, huh?"
  590.     mc "I hope you keep it up."
  591.     s 4r "Yeah!"
  592.     s "Writing's the best!"
  593.     s "I'm gonna keep writing until I die!"
  594.     mc "Ahaha...don't get ahead of yourself."
  595.     "Sayori's always had a habit of getting obsessed with something, before dropping it no more than a week later."
  596.     "I wonder if this is one of those times?"
  597.     "But seeing the passion in her eyes makes it hard for me to be pessimistic."
  598.     return
  599. label ch3_s_end:
  600.     return
  601.  
  602. label ch1_m_end:
  603.     call showpoem (poem_m1)
  604. label ch1_m_end2:
  605.     m 1a "So...what do you think?"
  606.     mc "Hmm...it's very...freeform, if that's what you call it."
  607.     mc "Sorry, I'm not really the right person to ask for feedback..."
  608.     m 2e "Ahaha. It's okay."
  609.     m 2b "Yeah, that kind of style has gotten pretty popular nowadays."
  610.     m "That is, a lot of poems have been putting emphasis on the timing between words and lines."
  611.     m 2a "When performed out loud, it can be really powerful."
  612.     mc "What was the inspiration behind this one?"
  613.     m "Ah..."
  614.     m 3d "Well, I'm not sure if I know how to put it..."
  615.     m 3a "I guess you could say that I had some kind of epiphany recently."
  616.     m "It's been influencing my poems a bit."
  617.     mc "An epiphany?"
  618.     m 1a "Yeah...something like that."
  619.     m "I'm kind of nervous to talk about deep stuff like that, because it's kind of coming on strongly..."
  620.     m "Maybe after everyone is better friends with each other."
  621.     m 1j "Anyway..."
  622.     m 3b "Here's Monika's Writing Tip of the Day!"
  623.     m "Sometimes when you're writing a poem - or a story - your brain gets too fixated on a specific point..."
  624.     m "If you try so hard to make it perfect, then you'll never make any progress."
  625.     m "Just force yourself to get something down on the paper, and tidy it up later!"
  626.     m "Another way to think about it is this:"
  627.     m "If you keep your pen in the same spot for too long, you'll just get a big dark puddle of ink."
  628.     m "So just move your hand, and go with the flow!"
  629.     m 3k "...That's my advice for today!"
  630.     m "Thanks for listening~"
  631.     return
  632.  
  633. label ch2_m_end:
  634.     call showpoem (poem_m2)
  635.     mc "Hm..."
  636.     mc "It's even more abstract than your last one, huh?"
  637.     m 5 "Ahaha..."
  638.     m "I guess it's just the way I write..."
  639.     m "I'm sorry if you don't like it."
  640.     mc "No, I never said that."
  641.     mc "It's just a kind of thing I've never really seen before, I guess."
  642.     m 2a "I kind of like playing with my space on the paper..."
  643.     m "Choosing where and how to space your words can totally change the mood of the poem."
  644.     m 2b "It's almost like magic."
  645.     m "The way I wrote the lines really short makes it feel like they're trying to speak over the noise."
  646.     mc "I see..."
  647.     mc "It's still hard for me to tell what it's about, though."
  648.     m 2k "Ahaha."
  649.     m 4a "Sometimes asking what a poem is about isn't the right question."
  650.     m "A poem can be as abstract as a physical expression of a feeling."
  651.     m "Or a conversation with the reader."
  652.     m "So putting it that way, not every poem is {i}about{/i} something."
  653.     m "Anyway..."
  654.     m 3b "Here's Monika's Writing Tip of the Day!"
  655.     m "Sometimes you'll find yourself facing a difficult decision..."
  656.     m "When that happens, don't forget to save your game!"
  657.     m "You never know when you might change your mind..."
  658.     m "...or when something unexpected may happen!"
  659.     m 3d "Wait...is this tip even about writing?"
  660.     m 3k "What am I even talking about?"
  661.     m "Ahaha!"
  662.     m 3b "...That's my advice for today!"
  663.     m "Thanks for listening~"
  664.     return
  665. label ch3_m_end:
  666.     call showpoem (poem_m3)
  667.     m 1a "You know..."
  668.     m "I feel like learning and looking for answers are the sorts of things that give life meaning."
  669.     m 1e "Not to get too philosophical or anything..."
  670.     m 1a "But it was kind of on my mind, so that's what I wrote about."
  671.     mc "I see..."
  672.     mc "I never really put much thought into it."
  673.     m 1d "In a way, it's almost paradoxical."
  674.     m "Because if we had all the answers, wouldn't the world start to lose its meaning?"
  675.     mc "You know, there's one thing I noticed..."
  676.     mc "It seems like everyone in the club prefers writing about things that are more sad than happy."
  677.     m 1k "Ahaha. Are you surprised?"
  678.     m 1a "I mean, if everything was okay..."
  679.     m "We wouldn't really have anything to write about, would we?"
  680.     m "Humans aren't two-dimensional creatures."
  681.     m "I think you'd know that better than anyone."
  682.     mc "You mean one-dimensional...?"
  683.     m 1l "Ah...yeah, that!"
  684.     m 1a "Anyway..."
  685.     m 3b "Here's Monika's Writing Tip of the Day!"
  686.     m "Are you ever too shy to share your writing because you're afraid it's not that good?"
  687.     m "It can be really disheartening to get a lukewarm response to something you put so much into."
  688.     m "But if you find other people who enjoy writing, then sharing becomes a lot easier!"
  689.     m "Because instead of just telling you that your writing is good, or okay, or bad..."
  690.     m "They'll want to focus more on everything that went into it, and the things you can work on."
  691.     m "It's much more encouraging that way, and it will make you want to continue improving."
  692.     m "It's almost like having your own little Literature Club, don't you think?"
  693.     m 3k "...That's my advice for today!"
  694.     m "Thanks for listening~"
  695.     return
  696.  
  697.  
  698. label ch1_n_bad:
  699.     n "..."
  700.     mc "...?"
  701.     if persistent.playthrough == 2 and renpy.random.randint(0, 2) == 0:
  702.         $ currentpos = get_pos()
  703.         stop music
  704.         pause 2.0
  705.         play sound "sfx/stab.ogg"
  706.         show n_blackeyes zorder 3 at i11
  707.         show n_eye zorder 3:
  708.             subpixel True
  709.             pos (660,250) xanchor 0.5 yanchor 0.5 zoom 0.8
  710.             parallel:
  711.                 linear 2.0 rotate 720
  712.             parallel:
  713.                 linear 2.0 xpos 1680
  714.             parallel:
  715.                 easein 0.25 ypos 180
  716.                 easeout 1.0 ypos 1280
  717.         show n_eye as n_eye2 zorder 3:
  718.             subpixel True
  719.             pos (580,260) xanchor 0.5 yanchor 0.5 zoom 0.8 rotate 180
  720.             parallel:
  721.                 linear 2.0 rotate -560
  722.             parallel:
  723.                 linear 2.0 xpos -440
  724.             parallel:
  725.                 easein 0.10 ypos 240
  726.                 easeout 1.0 ypos 1280
  727.         show blood zorder 3:
  728.             pos (645,255)
  729.         show blood as blood2 zorder 3:
  730.             pos (575,260)
  731.         pause 0.75
  732.         hide n_blackeyes
  733.         hide n_eye
  734.         hide n_eye2
  735.         hide blood
  736.         hide blood2
  737.         stop sound
  738.         play music "<from " + str(currentpos) + " loop 4.444>bgm/5.ogg"
  739.     n 2b "[player], if you're not going to take this club seriously then go home."
  740.     mc "W-What??"
  741.     mc "Harsh..."
  742.     n 42c "What, you expect me to believe that you actually put effort into this?"
  743.     n "Do you think I'm stupid?"
  744.     mc "I'm not a writer!"
  745.     mc "Maybe it's not very good, but yeah, I did put in effort."
  746.     mc "We all start somewhere, right?"
  747.     mc "If you're still proud of the first poem {i}you{/i} ever wrote, then I'd like to read it."
  748.     n 1o "!!"
  749.     mc "Painful to think about?"
  750.     n 1r "..."
  751.     n 5q "Fine."
  752.     n "Well, sorry."
  753.     n 5c "You'll get better, anyway."
  754.     n "I'd tell you what to improve, but you're better off just trying again."
  755.     mc "Fair enough..."
  756.     mc "Well, to each their own, I guess."
  757.     n 5q "Anyway, I guess I gotta share mine now..."
  758.     n "Knowing you, you'll probably think it's stupid."
  759.     return
  760.  
  761. label ch1_n_med:
  762.     n "..."
  763.     mc "...?"
  764.     n 2k "...Well, it's about what I expected from someone like you."
  765.     mc "That's a little blunt..."
  766.     n 2c "Well, excuse me."
  767.     n "It's not like I said it was bad."
  768.     n "It just didn't evoke any emotions."
  769.     mc "So basically, it's not cute enough for your tastes?"
  770.     n 4f "Do you want to get smacked?"
  771.     mc "I'll pass..."
  772.     n 42b "Sigh..."
  773.     n 42c "Well anyway, I guess I need to show you mine."
  774.     n 4q "Not that you'll like it."
  775.     return
  776.  
  777. label ch1_n_good:
  778.     n "..."
  779.     mc "...?"
  780.     n 1t "...Okay, well let's start with the things I don't like!"
  781.     n "First of all, um..."
  782.     mc "..."
  783.     "Natsuki re-reads my poem."
  784.     n 4c "N-Never mind. I don't feel like giving you my opinion."
  785.     mc "Eh? Then what's the point of sharing in the first place?"
  786.     mc "I wrote this when I could have been doing other things."
  787.     n 4r "Uu..."
  788.     mc "In fact, remember how I said I wanted to read your poems?"
  789.     mc "That's what I had in mind when writing this."
  790.     mc "I want to help you feel comfortable enough to share yours."
  791.     mc "Like Monika said."
  792.     n 4x "Uuuu...!"
  793.     n 1h "Well I would be more comfortable sharing my poem if yours was really bad!"
  794.     n 1w "You were supposed to show me some dumb poem and make me go 'Hah, well it's not that great but let me show you what real literature looks like!'"
  795.     n 1h "And you went and ruined it!"
  796.     n "I hope you're happy!"
  797.     mc "..."
  798.     mc "...So, in other words, you're saying you liked it?"
  799.     n 1o "Urk--"
  800.     "Natsuki's retort gets caught in her throat."
  801.     n 1x "Uuuuuuuuu...You're so...!"
  802.     n "You just...you...don't understand anything, do you?"
  803.     n 5q "I already told you that, you don't have to go announcing it to the world like you're all self-important!"
  804.     mc "Pretty sure you never actually said that..."
  805.     "I say that mostly to myself."
  806.     "Natsuki must really hate me or something."
  807.     "I can't figure out if it's a win or a loss that she liked my poem."
  808.     mc "In any case... You still need to show me yours, right?"
  809.     n 5s "Gr... Fine, I guess."
  810.     n "Only because Monika will make me if I don't."
  811.     return
  812.  
  813. label ch2_n_bad:
  814.  
  815.     if n_poemappeal[0] < 0:
  816.         n "...Hm."
  817.         n 2k "Well, I can admit that it's better than the last one."
  818.         n "It's nice to see that you're putting in some effort."
  819.         mc "That's good..."
  820.         n 2c "But I still don't like this at all."
  821.         n "It's trying too hard to be serious."
  822.         mc "Eh? What do you mean by that?"
  823.  
  824.  
  825.         label ch2_n_bad_sharedwithch3:
  826.             n 4c "Poems don't need to be all deep-sounding to express something."
  827.             n "It's going to just sound like you're forcing it unless you really don't suck at it."
  828.             n 4w "Honestly... Don't bother trying to write poems like this until you're on Yuri's level--"
  829.             show natsuki 4o
  830.             "Natsuki stops short all of a sudden."
  831.             n 1o "D-Don't...tell me..."
  832.             mc "Eh?"
  833.             n "You're not...you're not just trying to impress Yuri, are you?!"
  834.             mc "W-What are you talking about?? And keep your voice down...!"
  835.             n 1x "You know Yuri would love this kind of...this angsty.......!!"
  836.             mc "Just because she's a talented writer doesn't mean...I-I mean..."
  837.             n 1o "Uu....!!"
  838.             "Looks like I'm in trouble."
  839.             "I somehow struck a nerve, though what I did is beyond me."
  840.             n 1c "I am so done with you."
  841.             "Natsuki shoves the poem I handed her back over to me."
  842.             n 5w "Take your stupid poem. If you wrote it for someone else, just don't show it to me!"
  843.             mc "Ouch..."
  844.             "This is what I get for letting a younger girl step into my business."
  845.             "Unless I was a mind reader, I was destined to be in a world of pain from the start."
  846.             "At least Natsuki wasn't really the girl I was trying to impress in the first place..."
  847.             $ skip_poem = True
  848.             return
  849.     else:
  850.  
  851.  
  852.         n 1k "...Hm."
  853.         n "I liked your last one better."
  854.         mc "Eh? Really?"
  855.         n 2c "Well yeah. I can tell you were a little more daring with this one."
  856.         n "But you're really not good enough for that yet. It fell flat."
  857.         mc "That may be true, but I just wanted to try something different."
  858.         mc "I'm still figuring this all out."
  859.         n 2k "I mean, I always like poems that aren't trying too hard."
  860.         n 2q "I hate when people try to sound fancy or add more meaning just by using annoying and complicated language."
  861.         n 4b "Just make it simple, cute, and to the point!"
  862.         n 4y "Yuri's head over heels for all this cryptic nonsense, but I see right through that BS. Hah!"
  863.         n 42a "Making your reader look so hard for all this deep meaning is just an excuse to have no meaning at all."
  864.         mc "I guess that's one way to look at it."
  865.         n 2d "Well, everyone has their own opinion."
  866.         n "But my opinion is the best opinion. I'm sure you've figured that out already."
  867.         mc "Er..."
  868.         n 2a "Anyway, here's my poem. Maybe you'll learn something."
  869.         return
  870.  
  871. label ch2_n_med:
  872.  
  873.     if n_poemappeal[0] < 0:
  874.         n "...Hm."
  875.         n 2k "Well, I can admit that it's better than the last one."
  876.         n "It's nice to see that you're putting in some effort."
  877.         mc "That's good..."
  878.         label ch2_n_med_shared:
  879.             n 2c "Come to think of it, this kind of reminds me of Sayori's poem from yesterday..."
  880.             mc "Eh? You think so?"
  881.             n 2j "Yeah. Well I guess if you've been friends with her for so long, you might be on the same wavelength."
  882.             n 2k "But you never really struck me as her type."
  883.             mc "Sayori has a 'type' all of a sudden...?"
  884.             n 42c "Well, I don't know! But honestly, how can someone so...er, fluffy...spend so much time with someone like you?"
  885.             n "It's like she's dragging around a dead weight."
  886.             mc "Uug... That was a little unnecessary..."
  887.             mc "But think of it this way. If it weren't for me, she would probably just fly away like letting go of a balloon."
  888.             mc "You could say we each take care of each other in our own way."
  889.             n 2q "Whatever it is, I don't get it..."
  890.             n "...Oh, yeah, I guess I'm supposed to show you my poem."
  891.             n "Here."
  892.             return
  893.  
  894.  
  895.     elif n_poemappeal[0] == 0:
  896.         n "...Hm."
  897.         n 2k "Well, it's not really any worse than your last one."
  898.         n "But I can't really say it's any better, either."
  899.         mc "Phew..."
  900.         n 2c "Huh? 'Phew' what?"
  901.         mc "Ah... Well anything that isn't a trainwreck, I'll take as a win."
  902.         mc "And I get the feeling you're probably the most critical."
  903.         n 1p "H-Hey! What makes you--"
  904.         n 1q "{i}(Wait, maybe that was a compliment...?){/i}"
  905.         n 4y "A-Ahah! Glad to see someone recognizes my experience!"
  906.         n "Well then, keep practicing and maybe you'll be as good as me someday!"
  907.         mc "That's...uh..."
  908.         "Something tells me Natsuki completely missed the point."
  909.         jump ch2_n_med_shared
  910.     else:
  911.  
  912.  
  913.         n "...Hm."
  914.         n 2c "Well, it's not terrible."
  915.         n "But it's pretty disappointing after your last one."
  916.         n 2s "Then again, if this one was as good as your last one, I would be completely pissed."
  917.         mc "Well, I guess I wanted to try something a little different this time."
  918.         n 2c "Fair enough. You're still new to this, so I wouldn't expect you to find your style right away."
  919.         jump ch2_n_med_shared
  920.  
  921. label ch2_n_good:
  922.  
  923.     if n_poemappeal[0] != 1:
  924.         n 1h "..."
  925.         "Natsuki reads my poem."
  926.         "She keeps glancing at me, then back at the poem."
  927.         "By now, she must have read it more than once."
  928.         n 1q "...Aren't you supposed to be bad at this?"
  929.         mc "...Is that a compliment?"
  930.         n 1o "N-No! I mean... You know..."
  931.         "Natsuki struggles to find the words she wants."
  932.         n 5w "I just...expected a lot less after what you showed me yesterday."
  933.         n "That's all."
  934.         mc "Well, I guess I just got lucky with this one."
  935.         n 4t "Y-Yeah!! Exactly!"
  936.         n "You just got lucky, you know?"
  937.         n 4y "Don't get used to it."
  938.         n "You won't always manage to write poems this cute. I mean--!"
  939.         n 1p "I mean well-written! No, I mean--"
  940.         mc "Ah, so that's how it is. My poem is cute?"
  941.         n 1v "No! Why are you smiling?! It's not like I like cute things!"
  942.         "Natsuki shoves my poem back towards me."
  943.         n 4w "H-Huh! Reading it again, I decided that it's not so great after all."
  944.         n "It's too cute and doki-doki."
  945.         n 4t "It would only impress...you know, girls...who like those kinds of things."
  946.         n "Ahaha!"
  947.         "For some reason, Natsuki is incredibly easy to see through."
  948.         n 1w "Well, anyway...!"
  949.         n 1h "You're gonna read mine now, right?"
  950.         n "Judging by your tastes, you'll probably like it a lot."
  951.         n 2q "You'll probably learn something, too. Don't forget who the {i}real{/i} pro is."
  952.         return
  953.     else:
  954.  
  955.         label ch2_n_good_sharedwithch3:
  956.             n 1n "..."
  957.             "Natsuki reads my poem."
  958.             "She keeps glancing at me, then back at the poem."
  959.             "By now, she must have read it more than once."
  960.             n 1u "Rrgh..."
  961.             mc "...?"
  962.             mc "Is it that bad?"
  963.             n 1r "No! No, it's not!"
  964.             n "It's good. It's really good, okay?!"
  965.             n 5w "There, I said it!"
  966.             n "Ugh, this wasn't supposed to happen at all...!"
  967.             n 5s "Why can't you just be bad at this?"
  968.             n "My poems are supposed to impress {i}you{/i}, not the other way around!"
  969.             mc "You're trying to impress me?"
  970.             n 12c "Obviously! You think I'd let you enjoy Yuri's writing more than mine?"
  971.             n "Give me a break."
  972.             mc "Well..."
  973.             mc "In that case, what's the problem with me trying to impress you?"
  974.             n 1e "I'll tell you! You--"
  975.             n 1p "--"
  976.             "Natsuki's face freezes, like she just realized something."
  977.             n "Y-Y-You..."
  978.             n "You're trying to...impress {i}me?{/i}"
  979.             show natsuki 1q
  980.             "Natsuki vigorously scans her eyes over my poem one more time."
  981.             "Then, the poem slips out of her hands and flutters to the floor."
  982.             n 1p "I...have to use the bathroom!"
  983.             show natsuki at lhide
  984.             hide natsuki
  985.             "Red-faced, Natsuki quickly walks out of the room."
  986.             show monika 1d zorder 2 at t11
  987.             m "Hey, [player]..."
  988.             m "Did you do something to Natsuki?"
  989.             m "I just saw her rush out like that..."
  990.             m 2g "You didn't do anything terrible, did you?"
  991.             mc "N-No!"
  992.             mc "I just told her that--"
  993.             "My voice gets caught in my throat."
  994.             "There's no way I could tell Monika that I'm trying to impress Natsuki."
  995.             m 2d "Hmm?"
  996.             "Monika sees the poem lying on the floor and swiftly picks it up."
  997.             if m_readpoem:
  998.                 "She skims over it a second time, her smile not fading from her face."
  999.                 m 2a "I see."
  1000.                 m "At first I just thought you liked her writing style..."
  1001.                 m "But you wrote this {i}for{/i} Natsuki, didn't you?"
  1002.             else:
  1003.                 "She reads through it, her smile not fading from her face."
  1004.                 m 2a "I see."
  1005.                 m "You wrote this for Natsuki, didn't you?"
  1006.             mc "I-I mean..."
  1007.             mc "Not really..."
  1008.             m 2d "In fact, didn't she like your poem a lot the other day, too?"
  1009.             m "I'm surprised you know her taste so well already."
  1010.             m 4a "Are you sure you're not cheating, [player]?"
  1011.             mc "Cheating...?"
  1012.             mc "What do you mean by that?"
  1013.             m 5a "Never mind, I'm just kidding. Ahaha!"
  1014.             "I didn't understand Monika's joke at all."
  1015.             m "Anyway..."
  1016.             m 1a "How do you think Natsuki feels about you?"
  1017.             m "Oh, you don't need to answer that."
  1018.             m "It was just something for you to think about."
  1019.             show monika zorder 2 at t22
  1020.             show natsuki 4e at l21
  1021.             n "Hey!"
  1022.             "Natsuki comes up and snatches the poem out of Monika's hands."
  1023.             "Neither of us had noticed her reenter the classroom."
  1024.             show natsuki zorder 3 at f21
  1025.             n "Did you read this, Monika?"
  1026.             show natsuki zorder 2 at t21
  1027.             show monika zorder 3 at f22
  1028.             m 1j "Of course! I liked it!"
  1029.             show monika 1a zorder 2 at t22
  1030.             show natsuki zorder 3 at f21
  1031.             n 1r "Ugh..."
  1032.             n "You should really stop reading things that aren't for you, you know."
  1033.             n "You have a bad habit of doing that."
  1034.             show natsuki zorder 2 at t21
  1035.             show monika zorder 3 at f22
  1036.             m 1d "Eh?"
  1037.             m "But [player] wrote this poem."
  1038.             m 1a "And we're supposed to share with everyone, right?"
  1039.             show monika zorder 2 at t22
  1040.             show natsuki zorder 3 at f21
  1041.             n 1x "Uu--"
  1042.             "Natsuki freezes."
  1043.             "She apparently forgot that my poem is technically for everyone to read."
  1044.             n 42c "Okay, well, I think [player] is done sharing this poem with everyone."
  1045.             n "It's not like anyone would want to read this anyway."
  1046.             n 4h "In fact, I'm just going to hold onto this."
  1047.             show natsuki zorder 2 at t21
  1048.             show monika zorder 3 at f22
  1049.             m 5 "If you insist~"
  1050.             show monika zorder 2 at t22
  1051.             show natsuki zorder 3 at f21
  1052.             n 1i "What?"
  1053.             n "Why are you looking at me like that??"
  1054.             show natsuki zorder 2 at t21
  1055.             show monika zorder 3 at f22
  1056.             m "Like what?"
  1057.             show monika zorder 2 at t22
  1058.             show natsuki zorder 3 at f21
  1059.             n 12b "Ugh..."
  1060.             n "Never mind."
  1061.             if not m_readpoem:
  1062.                 $ poemsread += 1
  1063.                 $ m_readpoem = True
  1064.             if poemsread >= 3:
  1065.                 "Well, I guess Natsuki has my poem now."
  1066.                 "Not that I really planned on keeping it."
  1067.             else:
  1068.                 $ unfairto = "Sayori"
  1069.                 if s_readpoem:
  1070.                     $ unfairto = "Yuri"
  1071.                 show natsuki zorder 2 at t21
  1072.                 mc "Ah, Natsuki..."
  1073.                 mc "I'll give you the poem, but that's still not very fair to [unfairto]..."
  1074.                 mc "...She hasn't gotten to read it yet."
  1075.                 show natsuki zorder 3 at f21
  1076.                 n 2q "So what?"
  1077.                 show natsuki zorder 2 at t21
  1078.                 show monika zorder 3 at f22
  1079.                 m 2a "Well... I guess [player] is right, Natsuki..."
  1080.                 m "It's not fair if you don't let everyone finish reading it."
  1081.                 show monika zorder 2 at t22
  1082.                 show natsuki zorder 3 at f21
  1083.                 n "..."
  1084.                 n 2h "...Fine."
  1085.                 "Natsuki returns my poem."
  1086.                 n "It's not like she's going to like it, though."
  1087.             show monika zorder 1 at thide
  1088.             show natsuki zorder 2 at t11
  1089.             hide monika
  1090.             n 2h "Anyway, read my poem now."
  1091.             n 4h "And no, I won't let you keep it."
  1092.             n "This is my only copy."
  1093.             return
  1094.  
  1095. label ch3_n_bad:
  1096.  
  1097.     if n_poemappeal[0] < 0 and n_poemappeal[1] < 0:
  1098.         label ch3_n_bad12_shared:
  1099.  
  1100.             n 5x "Yeah, no thanks."
  1101.             mc "Eh? You didn't even--"
  1102.             n 5w "{i}Next!{/i}"
  1103.             $ skip_poem = True
  1104.             return
  1105.  
  1106.     elif n_poemappeal[0] < 0 or n_poemappeal[1] < 0:
  1107.         n "..."
  1108.         n 2c "...Meh."
  1109.         n "I guess you really haven't learned anything after all."
  1110.         n "Honestly, I don't know why I got my hopes up in the first place."
  1111.         mc "What? I didn't think this one was that bad..."
  1112.         mc "What did I do wrong?"
  1113.         jump ch2_n_bad_sharedwithch3
  1114.     else:
  1115.  
  1116.         n "..."
  1117.         n 2r "Oh, man."
  1118.         n "This is seriously a step backwards."
  1119.         mc "Eh?"
  1120.         n 2c "I liked your last two way better than this one."
  1121.         n 1k "I mean..."
  1122.         n "I guess I can't be mad at you for trying different things."
  1123.         n 1c "As long as you're not just trying to impress Yuri or something like that."
  1124.         n 5x "Gross."
  1125.         mc "Okay, okay."
  1126.         mc "Like you said, I'm allowed to try new things."
  1127.         label ch3_n_shared:
  1128.             show natsuki 5g
  1129.             mc "Why are you so emotionally invested in my poems, anyway?"
  1130.             mc "Isn't that more of a compliment to me?"
  1131.             n 1o "...Eh?"
  1132.             n 4x "N-No! Gross!"
  1133.             n 4w "It's not like I care!"
  1134.             n "It's just that {i}one{/i} of us in this club has to make sure you're not slacking off."
  1135.             mc "Really?"
  1136.             mc "Well, what if you ended up just scaring me away?"
  1137.             n 1t "That's--um..."
  1138.             n "...It's not like you would actually do that."
  1139.             mc "Yeah, you're right."
  1140.             mc "It's kind of fun to hang out here, even if I have to put up with you."
  1141.             show natsuki 1x
  1142.             mc "{i}Guh--!!{/i}"
  1143.             "Natsuki's elbow connects with my stomach."
  1144.             n 2y "Oh?"
  1145.             n "Maybe I won't mind scaring you away after all."
  1146.             mc "I was......just joking...."
  1147.             n 4z "Oh, I know!"
  1148.             n "Don't worry, I was too."
  1149.             n "Ahahaha!"
  1150.             show natsuki 4j
  1151.             mc "..."
  1152.             "How the hell do you call that a joke?"
  1153.             "That seriously hurt."
  1154.             "Well, maybe it was funny to her..."
  1155.             "...I guess that's kind of the point."
  1156.             "I should really just watch my mouth around Natsuki."
  1157.             n 2c "Anyway..."
  1158.             "Natsuki holds her poem out to me like nothing even happened."
  1159.             return
  1160.  
  1161. label ch3_n_med:
  1162.  
  1163.     if n_poemappeal[0] < 0 and n_poemappeal[1] < 0:
  1164.         jump ch3_n_bad12_shared
  1165.     elif n_poemappeal[1] != 0:
  1166.         n "..."
  1167.         n 2k "...This one's alright."
  1168.         mc "Alright?"
  1169.         n "Well, yeah."
  1170.         n "It doesn't blow me away."
  1171.         n "But there's nothing I really hate about it."
  1172.         n "It's just not really my style. I mean, that's fine."
  1173.         jump ch2_n_med_shared
  1174.     else:
  1175.         n "..."
  1176.         n 2k "...This one's alright."
  1177.         mc "Alright?"
  1178.         n "Well, yeah."
  1179.         n "About as good as yesterday's, anyway."
  1180.         n "I see what you're going for, but it's just not really my style."
  1181.         n 2a "I mean, that's fine."
  1182.         n "I'm mostly just glad that you're trying a little bit."
  1183.         mc "Well, of course I'm at least trying."
  1184.         jump ch3_n_shared
  1185.  
  1186. label ch3_n_good:
  1187.  
  1188.     if n_poemappeal[0] < 0 and n_poemappeal[1] < 0:
  1189.         jump ch3_n_bad12_shared
  1190.  
  1191.     elif n_poemappeal[0] > 0 and n_poemappeal[1] > 0:
  1192.         n 1l "Let's see, let's see!"
  1193.         mc "You're certainly enthusiastic today."
  1194.         n 2j "Of course."
  1195.         n "You know I like your writing."
  1196.         mc "I'm just surprised."
  1197.         mc "It seemed like you had a lot of trouble admitting that before."
  1198.         n 5w "Well... Well, of course!"
  1199.         n 5q "I just had to put you in your place a little bit!"
  1200.         n "It's not like..."
  1201.         n "I mean, it's not like I was shy or anything stupid like that."
  1202.         n 5t "Or jealous!"
  1203.         n "I really wasn't jealous."
  1204.         n "Just because you happen to be a good writer?"
  1205.         n 4y "That's such a dumb thing to get jealous about."
  1206.         n "Ahaha!"
  1207.         mc "Natsuki..."
  1208.         n 1h "What??"
  1209.         mc "You're not very confident about your writing, are you?"
  1210.         n 1n "...Eh?"
  1211.         n "W-What are you talking about?"
  1212.         n 1u "My writing is obviously the best..."
  1213.         n "...Right?"
  1214.         mc "..."
  1215.         "It took me a while to figure out, but I think I finally did."
  1216.         "Maybe Natsuki acts so arrogant because she's trying to make up for her own insecurities."
  1217.         "If she acts like she's the best, then other people might think that way, too."
  1218.         n 1m "Right...?"
  1219.         n "[player]..."
  1220.         n "Please just tell me you like my poems."
  1221.         n 1u "I don't care if you hate them."
  1222.         n "Just please tell me I'm the best."
  1223.         n "I just..."
  1224.         n 1q "I just really need to hear that from someone."
  1225.         n "I know I sound stupid."
  1226.         n "But there's a reason I never shared my poems before this."
  1227.         mc "Natsuki..."
  1228.         n "Because..."
  1229.         n 12c "Because nobody ever takes me seriously!"
  1230.         n "What's the point in sharing my poems if people just laugh and say \"That's so cute, just like you, Natsuki!\""
  1231.         n "Sometimes I don't want to be cute!"
  1232.         n 12d "But nobody understands that!"
  1233.         n "I try really hard when I write."
  1234.         n 12e "The style doesn't matter."
  1235.         n "The emotions are there."
  1236.         n 1n "Why can't anyone {i}see{/i} that...?"
  1237.         n 1u "I just want..."
  1238.         "Natsuki trails off."
  1239.         "Maybe it's because her lip started to quiver."
  1240.         "I look down."
  1241.         "Her fists are clenched really tightly."
  1242.         mc "Hey, Natsuki."
  1243.         mc "If you're not careful, you'll rip your own poem."
  1244.         "I gently grab the poem with my own hand until she relaxes her grip on it."
  1245.         "I place it flat on the desk and smooth out the wrinkles that she put into it."
  1246.         n 1h "D-Don't read it!"
  1247.         "Before I can pick it back up, Natsuki snatches the poem up from the desk."
  1248.         n 5q "It's not any good."
  1249.         n "And I know you hate my poems."
  1250.         n "So you don't have to read this one, okay?"
  1251.         mc "But I want to read it."
  1252.         n "W-Why?"
  1253.         mc "Because."
  1254.         mc "I like your poems."
  1255.         mc "I really do."
  1256.         show natsuki 5h
  1257.         mc "Why would I judge you for your style?"
  1258.         mc "It's not like my own style is anything crazy."
  1259.         mc "I mean, it's true that the first time I read one of your poems, I didn't look much into it."
  1260.         mc "But I know you better now."
  1261.         mc "And it's wrong for Yuri to think your style is more amateur than hers."
  1262.         mc "And Sayori... She always means well..."
  1263.         mc "But sometimes she's so focused on simple happiness that she doesn't understand what people really want."
  1264.         mc "Yeah... I guess I never really thought about how hard it is for you."
  1265.         mc "And I'm sorry if I was part of that problem."
  1266.         mc "I understand now."
  1267.         mc "You're not just cute, you're a lot more than that."
  1268.         show natsuki 12d
  1269.         mc "Ah-- Natsuki, you're doing it again--"
  1270.         "Once again, Natsuki clutches her poem a little too hard."
  1271.         "She looks down, hiding her eyes from me."
  1272.         "I never realized how difficult this was for her."
  1273.         "But finally, she forces herself to extend her arms and set her poem on the table."
  1274.         n 12e "You can...read it."
  1275.         n "Just turn that way."
  1276.         n "I don't want you to...look at my face right now."
  1277.         mc "Okay, I will."
  1278.         return
  1279.  
  1280.  
  1281.     elif n_poemappeal[0] > 0 or n_poemappeal[1] > 0:
  1282.         jump ch2_n_good_sharedwithch3
  1283.     else:
  1284.  
  1285.         n "..."
  1286.         n 2k "...Finally!"
  1287.         mc "Eh?"
  1288.         n 2l "This one. It's good!"
  1289.         n "I was wondering how long it would take you."
  1290.         mc "All right!"
  1291.         n 4y "Yeah, seriously."
  1292.         n "Don't listen to what anyone else says."
  1293.         n "Especially Yuri."
  1294.         n 4a "Just keep writing poems like this. That's all you need!"
  1295.         mc "Er..."
  1296.         mc "Are you sure that's not just what {i}you{/i} want?"
  1297.         n 2h "Excuse me?"
  1298.         n "You're talking to a pro, you know."
  1299.         n "Don't you think you should trust my opinion the most?"
  1300.         mc "I guess that depends."
  1301.         mc "Aren't you biased towards poems that are more simple and cute?"
  1302.         n 2w "Biased?"
  1303.         n "Of course not."
  1304.         n 4y "My opinion just happens to be the best."
  1305.         mc "..."
  1306.         "There's one thing I still can't tell."
  1307.         "Is Natsuki actually self-aware of her spoiled behavior?"
  1308.         "At this rate, I don't know if I'll ever figure it out."
  1309.         mc "...Fair enough."
  1310.         mc "I'm glad that you like my poem, after all."
  1311.         n 4z "Ahaha!"
  1312.         n 4j "I knew you'd finally understand."
  1313.         n "Just keep showing me your poems and you'll be a pro before you know it."
  1314.         n "Anyway, here's the one I wrote."
  1315.         return
  1316.  
  1317. label ch1_s_bad:
  1318.     s 1b "..."
  1319.     s "...Wow!"
  1320.     s "[player]..."
  1321.     s 4r "Your poem is really bad!"
  1322.     s "Ahahaha!"
  1323.     mc "Eh?!"
  1324.     s 4a "It's fine, it's fine~"
  1325.     s "It's your first time."
  1326.     s "Besides..."
  1327.     label ch1_s_shared:
  1328.         s 1a "I'm really happy just that you wrote one."
  1329.         s "It just reminds me of how you're really a part of the club now~"
  1330.         "(Not to mention the fact that I'm standing in front of you in the clubroom...?)"
  1331.         mc "Er...well, of course."
  1332.         mc "I'm not really into it yet, but that doesn't mean I'll break my promise."
  1333.         s 1d "See?"
  1334.         s "It's like I said before, [player]..."
  1335.         s "Deep down, you're not selfish at all, you know?"
  1336.         s "Trying new things like this for other people..."
  1337.         s 2q "That's something that only really good people do!"
  1338.         mc "Thanks...Sayori."
  1339.         "...I'm not sure if Sayori sees the full picture of my motive here."
  1340.         "Then again..."
  1341.         "I can't deny that she's part of the reason I joined."
  1342.         "Knowing how much this means to her and all..."
  1343.         s 1x "Yeah."
  1344.         s "And I'm gonna make sure you have lots of fun here, okay?"
  1345.         s "That will be my way of thanking you~"
  1346.         mc "Alright, I'm going to hold you to that, then."
  1347.         s 4r "Yay~!"
  1348.         s "Now, you'll read my poem too, right?"
  1349.         s 1y "Don't worry, I'm really bad at this."
  1350.         s "Ehehe..."
  1351.         mc "We'll see about that."
  1352.         return
  1353.  
  1354. label ch1_s_med:
  1355.     s "..."
  1356.     s 2x "This is a good poem, [player]!"
  1357.     s "Are you sure it's your first time?"
  1358.     mc "Of course..."
  1359.     mc "It's not that good."
  1360.     mc "Am I the kind of guy who would be writing poems in his spare time?"
  1361.     s 2q "Ehehe, I guess you're right~"
  1362.     s 1q "But that's why it impressed me!"
  1363.     s 1d "Well, to be honest..."
  1364.     s "I was afraid that you wouldn't do it seriously..."
  1365.     s "Or that you wouldn't write one at all."
  1366.     jump ch1_s_shared
  1367.  
  1368. label ch1_s_good:
  1369.     s 1n "..."
  1370.     s "...Oh my goodness!"
  1371.     s 4b "This is sooooo good, [player]!"
  1372.     mc "Eh?"
  1373.     s 4r "I love it~!"
  1374.     s "I had no idea you were such a good writer!"
  1375.     mc "Sayori..."
  1376.     mc "You must be seriously overreacting."
  1377.     mc "I'm not a good writer at all."
  1378.     mc "I honestly have no idea what I'm doing."
  1379.     s 1x "Well..."
  1380.     s "Maybe that's why!"
  1381.     s "Because I have no idea what I like, either!"
  1382.     s 1r "Ahahaha!"
  1383.     mc "Jeez..."
  1384.     if y_readpoem:
  1385.         "Yuri's opinion was way more constructive than this..."
  1386.     else:
  1387.         "I'm sure Yuri's opinion has to be a little more constructive than this."
  1388.     if not n_readpoem:
  1389.         "Maybe even Natsuki's."
  1390.     mc "Are you sure you don't like it just because I wrote it?"
  1391.     s 1b "Eh?"
  1392.     s "Well, I'm sure that's part of it."
  1393.     s 1x "I think I understand you better than a lot of other people, you know?"
  1394.     s "So when I read your poem..."
  1395.     s "It's not just a poem..."
  1396.     s 4q "It's a [player] poem!"
  1397.     s "And that makes it feel extra special!"
  1398.     s "Like I can feel your feelings in it~"
  1399.     "Sayori hugs the sheet against her chest."
  1400.     mc "You're so weird, Sayori..."
  1401.     s "Ehehe..."
  1402.     jump ch1_s_shared
  1403.  
  1404.  
  1405. label ch2_s_bad:
  1406.     s "..."
  1407.     s 1q "Ehehe, I love reading your poems~"
  1408.     s "It's like I never know what I'm going to get!"
  1409.     mc "So basically you're saying it sucks."
  1410.     s 4c "No! Not at all!"
  1411.     s 4l "...Maybe!"
  1412.     s 5a "Just a little?"
  1413.     s "Yuri must have spoiled me a little bit with her poems..."
  1414.     s "Ehehe..."
  1415.     mc "It's fine, it's fine."
  1416.     mc "After all, I still have no idea what kinds of writing you even like."
  1417.     label ch2_s_shared:
  1418.         s 1q "Yeah!"
  1419.         s "Me neither!"
  1420.         mc "Ugh..."
  1421.         mc "Why don't you at least try giving it some thought?"
  1422.         s 2d "Aww, you want to write something for me?"
  1423.         s "That's so sweet~"
  1424.         mc "Yeah, right."
  1425.         mc "But you're always thinking about other people."
  1426.         mc "You need to think about yourself once in a while."
  1427.         mc "If you don't, you might end up getting hurt at some point."
  1428.         s 1n "Ehh?"
  1429.         s "Well..."
  1430.         s 1o "I don't really know what you mean, but I'll try to keep it in mind!"
  1431.         mc "Well, whatever..."
  1432.         s 1b "Anyway, let's see..."
  1433.         s "Hmm..."
  1434.         s 4q "I guess I like...happy poems~"
  1435.         s 4i "Wait, sometimes I like sad poems too..."
  1436.         s 1i "Sometimes a little bit of both..."
  1437.         s "There's a word for that, right...?"
  1438.         s "What's the word I'm looking for..."
  1439.         s 4r "...Bittersweet!"
  1440.         s "Yeah!"
  1441.         s 1x "I like things that are happy and things that are sad."
  1442.         mc "Happy and sad?"
  1443.         mc "I can't see you liking something sad, Sayori..."
  1444.         s 1c "Well..."
  1445.         s "I like happy the most!"
  1446.         s 1d "But sometimes when you have a little raincloud in your head..."
  1447.         s "A sad poem can help give the raincloud a little hug..."
  1448.         s 4q "...And make a nice happy rainbow!"
  1449.         mc "...Sayori, that's unexpectedly poetic."
  1450.         s 4n "Eh? It is?"
  1451.         s "Maybe I'm getting better at expressing my feelings after all!"
  1452.         s 2q "Thanks, [player]!"
  1453.         s "I should go write that down, then~"
  1454.         s 2a "You can read my poem now, okay?"
  1455.         return
  1456.  
  1457. label ch2_s_med:
  1458.  
  1459.     if s_poemappeal[0] < 0:
  1460.         s "..."
  1461.         s 4x "Ooh!"
  1462.         s "I like this one, [player]!"
  1463.         s "It has some nice feelings in it~"
  1464.         mc "Ah, I'm glad."
  1465.         mc "So it's at least better than yesterday's."
  1466.         s 1q "Uh-huh!"
  1467.         mc "Maybe I'm getting better at this, then."
  1468.         label ch2_s_med_shared:
  1469.             s 1a "Well, I'm not very good at figuring out if poems are good or bad..."
  1470.             s "But that's why I just go by my heart~"
  1471.             s "If it makes me feel things, then it must be a good poem!"
  1472.             "I'm not sure that's exactly how it works..."
  1473.             "...Then again, I guess conveying feelings is a pretty important part of this whole thing."
  1474.             mc "Yeah, maybe..."
  1475.             mc "Honestly, I don't even know what kind of writing you like in the first place."
  1476.             jump ch2_s_shared
  1477.  
  1478.     elif s_poemappeal[0] == 0:
  1479.         s "..."
  1480.         s 4x "Ooh!"
  1481.         s "I like this one, [player]!"
  1482.         s "It has some nice feelings in it~"
  1483.         mc "Ah, I'm glad."
  1484.         mc "Does that mean it's better than yesterday's?"
  1485.         s 4b "Mmm, lemme think..."
  1486.         s 1q "I dunno!"
  1487.         s "I guess I like them both!"
  1488.         s "Ehehe~"
  1489.         mc "That's not very helpful, you know..."
  1490.         jump ch2_s_med_shared
  1491.     else:
  1492.  
  1493.         s "..."
  1494.         s 4x "Ooh!"
  1495.         s "I like this one, [player]!"
  1496.         s "It has some nice feelings in it~"
  1497.         mc "Ah, I'm glad."
  1498.         mc "Still, though..."
  1499.         mc "Your tone makes it sound like you liked yesterday's poem better."
  1500.         s 2l "Ehehe, I guess you caught me..."
  1501.         s "Sometimes you know me a little too well for my own good!"
  1502.         mc "Well, don't just try to be nice about it."
  1503.         mc "If I'm doing a bad job then I'd rather just hear it."
  1504.         s 1c "No, no!"
  1505.         s "I still liked this one! I promise!"
  1506.         s 1h "You know I wouldn't lie to you, [player]...!"
  1507.         s "Never ever!"
  1508.         mc "Yeah, I guess so..."
  1509.         mc "What made yesterday's poem so great compared to this one, then?"
  1510.         s 1b "Umm....."
  1511.         jump ch2_s_med_shared
  1512.  
  1513. label ch2_s_good:
  1514.  
  1515.     if s_poemappeal[0] < 1:
  1516.         s 1n "..."
  1517.         s "...Oh my goodness!"
  1518.         s 4r "This is sooooo good, [player]!"
  1519.         mc "Eh?"
  1520.         s "I love it~!"
  1521.         s "Especially after yesterday's poem!"
  1522.         mc "Ugh..."
  1523.         mc "You're too honest sometimes, Sayori."
  1524.         s 4x "No, but really!!"
  1525.         s 1x "I wanna put this on my wall~"
  1526.         s "Can I?"
  1527.         mc "Sayori..."
  1528.         mc "You must be seriously overreacting."
  1529.         mc "I'm not a good writer at all."
  1530.         mc "I honestly have no idea what I'm doing."
  1531.         s 1l "Well..."
  1532.         s "Maybe that's why!"
  1533.         s "Because I have no idea what I like, either!"
  1534.         s 4r "Ahahaha!"
  1535.         mc "Jeez..."
  1536.         "I'm sure Yuri's opinion has to be a little more constructive than this."
  1537.         "Maybe even Natsuki's."
  1538.         mc "Are you sure you don't like it just because I wrote it?"
  1539.         s 4b "Eh?"
  1540.         s 1b "Well, I'm sure that's part of it."
  1541.         s "I think I understand you better than a lot of other people, you know?"
  1542.         s "So when I read your poem..."
  1543.         s "It's not just a poem..."
  1544.         s 4q "It's a [player] poem!"
  1545.         s "And that makes it feel extra special!"
  1546.         s "Like I can feel your feelings in it~"
  1547.         "Sayori hugs the sheet against her chest."
  1548.         mc "You're so weird, Sayori..."
  1549.         s 4l "Ehehe..."
  1550.         jump ch2_s_med_shared
  1551.     else:
  1552.  
  1553.         s "..."
  1554.         s 1d "[player]..."
  1555.         s "I really love your poems."
  1556.         s "I can't believe you've been hiding these from me!"
  1557.         mc "Eh? I'm not hiding anything!"
  1558.         s 1b "But..."
  1559.         s "Your poems are sooo good..."
  1560.         s "Yesterday's, and this one too!"
  1561.         s "You can't tell me you haven't done this before!"
  1562.         mc "I mean..."
  1563.         mc "You're really the only one who feels that way, so..."
  1564.         s 4h "Eh?!"
  1565.         s "No way!!"
  1566.         s "Not even Natsuki...?"
  1567.         mc "Well, I guess Natsuki is the least likely to admit how much she likes something..."
  1568.         mc "But I don't think it's that."
  1569.         s 1b "What do you mean?"
  1570.         mc "Well..."
  1571.         mc "I guess I'll be honest about it."
  1572.         mc "It's a lot easier to write poems when I'm thinking about you."
  1573.         s 4m "E-Eh?!"
  1574.         s "Wawawa--!"
  1575.         mc "Stop thinking weird things, idiot!"
  1576.         mc "I just mean that you're a really...expressive person, I guess."
  1577.         mc "How am I supposed to write poems about my own stupid life?"
  1578.         mc "But you somehow make everything in your life an adventure."
  1579.         mc "Even the little things."
  1580.         s 4o "Like cooking!!"
  1581.         mc "Let's not talk about that!"
  1582.         s 5a "Ehehe..."
  1583.         mc "So, yeah..."
  1584.         mc "I guess what I'm saying is that I can feel more feelings through you than I can through myself."
  1585.         mc "We have that kind of weird connection."
  1586.         mc "It's your fault for getting in my business all the time."
  1587.         s 1e "Ehh...?"
  1588.         s "I don't know if I understand..."
  1589.         mc "Sigh..."
  1590.         mc "You never understand when I try to explain things to you, do you, Sayori?"
  1591.         "I pat Sayori's head."
  1592.         s 4s "Ahaha! Heyyy!"
  1593.         s "I'm not a kid, you know!"
  1594.         mc "Are you sure about that?"
  1595.         s 4l "Mmmm, maybe~"
  1596.         "Sayori starts fiddling with her pencil between her hands."
  1597.         s "Hey, [player]..."
  1598.         s 2d "Will you give me your poem?"
  1599.         s "I kinda want to keep it."
  1600.         mc "Huh? Why?"
  1601.         s 1y "Because..."
  1602.         s "Well..."
  1603.         s "It's the first time you've written something for me..."
  1604.         s "Ehehe..."
  1605.         mc "!!"
  1606.         mc "Sayori, you completely misunderstood!"
  1607.         mc "I didn't write this for you!"
  1608.         s 5b "Ehehehehe..."
  1609.         mc "Sigh..."
  1610.         mc "Are you even listening anymore?"
  1611.         mc "Well, whatever."
  1612.         mc "I'll give it to you when we go home."
  1613.         show sayori at h11
  1614.         s 4m "Really?!"
  1615.         "{i}Snap!{/i}"
  1616.         s 4p "A-Ah!!"
  1617.         s "I broke my pencil..."
  1618.         "Sayori hastily bends down to pick up the piece she dropped."
  1619.         "But being inattentive of her surroundings, she bumps right into me."
  1620.         s 4l "S-S-Sorry--!!"
  1621.         mc "It's fine, it's fine."
  1622.         mc "I'll get it for you."
  1623.         "I bend down and pick up the broken pencil."
  1624.         "Sayori clutches the desk beside her to support herself, knees shaking."
  1625.         s 5b "I-I'm a little clumsy today..."
  1626.         s "Ahahaha..."
  1627.         mc "Let's sit down, Sayori..."
  1628.         s 4y "Y-Yeah..."
  1629.         "I grab Sayori's arm and help her sit at the desk."
  1630.         mc "Anyway, I still haven't read your poem..."
  1631.         s 4b "Oh!"
  1632.         s "Sorry, I forgot about that~"
  1633.         s 1h "But it's not as good as yours!!"
  1634.         mc "Jeez, don't worry."
  1635.         mc "I'm sure I'll like it."
  1636.         return
  1637.  
  1638. label ch3_s_bad:
  1639.     $ currentname = "Yuri"
  1640.     if n_poemappeal[2] > y_poemappeal[2]:
  1641.         $ currentname = "Natsuki"
  1642.     s "..."
  1643.     s 1k "...Hm."
  1644.     s "It's nice, I guess~"
  1645.     mc "Come on, I can already tell you don't like it."
  1646.     s 1d "Well..."
  1647.     s "You don't need to worry about what I think."
  1648.     s 2y "After all, you wrote this for someone else, didn't you?"
  1649.     s "Probably [currentname]..."
  1650.     mc "Eh??"
  1651.     mc "I didn't write this for anyone specifically!"
  1652.     s "Maybe..."
  1653.     s 1d "That's not really what I meant, though."
  1654.     s "But it's okay."
  1655.     s "You're making new friends, just like I was hoping."
  1656.     s 1q "That makes me...really happy."
  1657.     s "And you're happy too, right?"
  1658.     s 1a "In this club?"
  1659.     mc "Well..."
  1660.     mc "Of course I am."
  1661.     s 4q "Good~"
  1662.     s "That's all that matters to me."
  1663.     s 1d "Thank you, [player]."
  1664.     mc "Sayori..."
  1665.     mc "Is there something wrong?"
  1666.     s 1b "Huh?"
  1667.     s 1k "No, nothing."
  1668.     s "I'm just a little tired today."
  1669.     s 1l "Ehehe."
  1670.     mc "Alright..."
  1671.     mc "Just tell me if you need anything."
  1672.     s 1a "I will."
  1673.     s "Don't worry about me, okay?"
  1674.     s "You can go play with everyone else now."
  1675.     mc "If you insist..."
  1676.     s 4q "Yaay~"
  1677.     s 4a "I'm gonna go home a little bit early today."
  1678.     mc "Sayori...?"
  1679.     s 1q "Tell Monika I wasn't feeling well, okay?"
  1680.     s "I'll see you tomorrow~"
  1681.     "Before I can say anything else, Sayori cheerfully walks out of the classroom, humming to herself."
  1682.     $ skip_poem = True
  1683.     return
  1684.  
  1685.  
  1686. label ch3_s_med:
  1687.     jump ch3_s_bad
  1688.  
  1689. label ch3_s_good:
  1690.     if poemwinner[0] != "sayori" and poemwinner[1] != "sayori":
  1691.         jump ch3_s_bad
  1692.     s 1d "..."
  1693.     s "This is your best one so far."
  1694.     s "It's really really nice, [player]~"
  1695.     mc "Er-- Thanks."
  1696.     s 1q "Mhm~"
  1697.     mc "..."
  1698.     mc "Sayori, you've been a little quiet today."
  1699.     mc "Is everything alright?"
  1700.     s 4m "E-Eh??"
  1701.     s "Of course!"
  1702.     s 4l "Everything is fine~"
  1703.     s "Maybe I'm just a little tired today."
  1704.     s 1l "Ehehe."
  1705.     mc "Do you want to nap or something?"
  1706.     s 1h "No, that's silly!"
  1707.     s "Don't worry about me, okay?"
  1708.     s 1q "I only want to see smiles on your face~"
  1709.     mc "Well, alright..."
  1710.     s 1b "Hey, [player]..."
  1711.     s "I'm still a little surprised."
  1712.     s "I really thought that you would try writing your poems like the way Yuri does..."
  1713.     s 1y "Or even Natsuki..."
  1714.     s "But in the end..."
  1715.     mc "...Yeah."
  1716.     mc "I guess you're the one who likes this one the most."
  1717.     stop music fadeout 1.0
  1718.     s 1k "...Why?"
  1719.     s "You don't want to get closer with everyone else?"
  1720.     play music t9
  1721.     mc "Wait!"
  1722.     mc "Of course I do!"
  1723.     mc "But that doesn't mean I need to try so hard to impress them."
  1724.     mc "I still understand you the most, Sayori."
  1725.     mc "I know you have to sometimes put up with me."
  1726.     mc "And I have to sometimes put up with you."
  1727.     mc "But we have...a wavelength or something."
  1728.     mc "And this is how the poem came out."
  1729.     mc "Sometimes it feels like you're the only exciting thing in my life."
  1730.     mc "So sometimes it's just easier to write when thinking about you."
  1731.     mc "...Sayori?"
  1732.     s 4v "N-No..."
  1733.     s "[player]..."
  1734.     s "I don't...deserve this..."
  1735.     s "You're too nice to me..."
  1736.     s "Why are you doing this...?"
  1737.     "Sayori has trouble keeping her voice steady, all of a sudden."
  1738.     s "If you had fun with everyone else instead..."
  1739.     s "This would be...so much easier!"
  1740.     mc "Sayori...!"
  1741.     "I glance around the room to make sure nobody has noticed this."
  1742.     mc "Sayori."
  1743.     mc "I've probably never said this before, but I don't understand what you're feeling right now."
  1744.     mc "Tell me what will cheer you up."
  1745.     "Sayori shakes her head."
  1746.     "She sniffles and keeps shaking her head."
  1747.     "Finally, she gathers herself and puts on a smile."
  1748.     s 1y "It's nothing, [player]."
  1749.     s "It's just a little raincloud."
  1750.     s 4r "I'm sorry you had to see that. Ahahaha!"
  1751.     s "I promise it won't happen again."
  1752.     s 1a "Just smiles from everyone, okay?"
  1753.     s "That's all that matters."
  1754.     s "Go play with everyone else."
  1755.     s "I'm gonna go home a little bit early today~"
  1756.     mc "Sayori--"
  1757.     s 2q "Tell Monika I wasn't feeling well, okay?"
  1758.     s "I'll see you tomorrow~"
  1759.     "Before I can say anything else, Sayori cheerfully walks out of the classroom, humming to herself."
  1760.     $ skip_poem = True
  1761.     return
  1762.  
  1763. label ch1_y_bad:
  1764.     y 1g "..."
  1765.     y "Mm..."
  1766.     y "..."
  1767.     "Yuri stares at the poem."
  1768.     "A minute passes, more than enough time for her to finish reading."
  1769.     mc "Um..."
  1770.     y "Oh!"
  1771.     y 3n "S-Sorry...!"
  1772.     y "I forgot to start speaking..."
  1773.     y "U-Um!"
  1774.     mc "It's fine, don't force yourself."
  1775.     y 2v "I'm not..."
  1776.     y "I just need to put my thoughts into words."
  1777.     y "Hold on..."
  1778.     y "...Okay."
  1779.     y 1f "This is your first time writing a poem, right?"
  1780.     mc "Er, yeah..."
  1781.     mc "Why do you ask?"
  1782.     y "I'm just making sure."
  1783.     y "I guessed that it might be after reading through it."
  1784.     mc "Ah, so it's that bad."
  1785.     y 2p "No!!"
  1786.     y 2o "...Did I just raise my voice...?"
  1787.     y 4c "Uu, I'm so sorry..."
  1788.     "Yuri buries her face in her hands."
  1789.     "I couldn't help but notice that it's been several minutes and we really haven't gotten anywhere."
  1790.     "It might take Yuri a while to get used to new people..."
  1791.     mc "It's fine, I really didn't notice."
  1792.     mc "What were you saying?"
  1793.     y 2u "Right...um..."
  1794.     label ch1_y_shared:
  1795.         y 1a "It's just that there are specific writing habits that are usually typical of new writers."
  1796.         y "And having been through that myself, I kind of learned to pick up on them."
  1797.         y 1i "I think the most noticeable thing I recognize in new writers is that they try to make their style very deliberate."
  1798.         y "In other words, they tend to pick a writing style separate from the topic matter, and they form-fit the two together."
  1799.         y 1a "The end result is that both the style and the expressiveness are weakened."
  1800.         "Once Yuri finds her train of thought, it's as if her demeanor totally changes."
  1801.         "Her stammering is completely gone, and she sounds like an expert."
  1802.         y 1k "Of course, that's not something you can be blamed for."
  1803.         y "There are so many different skills and techniques that go into writing even a simple poem."
  1804.         y 1a "Not just finding them and building them, but getting them to work together is probably the most challenging part."
  1805.         y "It might take you some time, but it all comes with practice, and learning by example, and trying new things."
  1806.         y "I also hope that everyone else in the club gives you valuable feedback."
  1807.         y 1l "Natsuki can be a little bit biased, though..."
  1808.         mc "Biased? How?"
  1809.         y 2j "U-Um..."
  1810.         y "Well..."
  1811.         y "Never mind..."
  1812.         y "I shouldn't be talking about people like that..."
  1813.         y "Sorry..."
  1814.         mc "It's fine."
  1815.         "I'm not sure if Yuri is apologizing to herself, to me, or to Natsuki."
  1816.         mc "Do you mind if I read your poem now?"
  1817.         y 3c "Please do!"
  1818.         y "I'd love to share my thought process behind it..."
  1819.         "Yuri smiles dreamily, as if that's a rare opportunity for her."
  1820.         "Which itself is kind of funny..."
  1821.         "...After all, isn't this supposed to be a literature club?"
  1822.         return
  1823.  
  1824. label ch1_y_med:
  1825.     jump ch1_y_bad
  1826.  
  1827. label ch1_y_good:
  1828.     y 1e "..."
  1829.     "As Yuri reads the poem, I notice her eyes lighten."
  1830.     y 2f "...Exceptional."
  1831.     mc "Eh? What was that?"
  1832.     y "...?"
  1833.     y 2n "D-Did I say that out loud...?"
  1834.     "Yuri first covers her mouth, but then ends up covering her whole face."
  1835.     y 4c "I...!"
  1836.     y "Uu..."
  1837.     y "{i}(He's going to hate me...){/i}"
  1838.     mc "Um..."
  1839.     mc "You really didn't do anything wrong, Yuri..."
  1840.     y 4a "Eh...?"
  1841.     y "That's..."
  1842.     y 2q "I-I guess you're right..."
  1843.     y "What am I getting so nervous for?"
  1844.     y "A-Ahaha..."
  1845.     show yuri 2l at t11
  1846.     "Yuri takes a breath."
  1847.     y "So..."
  1848.     y 1a "What kind of writing experience do you have?"
  1849.     y "Your use of imagery and metaphors indicates you've written a lot of poetry before."
  1850.     mc "Really...?"
  1851.     mc "Wow, that's a huge compliment coming from you."
  1852.     mc "This is actually my first time, really."
  1853.     y 1e "Huh...?"
  1854.     "Yuri stares at me blankly, then looks at my poem again."
  1855.     y "..."
  1856.     y 2h "...Well, I know that!"
  1857.     y "I just meant...u-um..."
  1858.     "Yuri trails off, unable to find an excuse."
  1859.     "She traces her finger along the words in the poem, as if breaking it down more thoroughly."
  1860.     y 2l "...Yeah."
  1861.     y "Okay."
  1862.     y "This is the reason I was able to tell."
  1863.     jump ch1_y_shared
  1864.  
  1865.  
  1866. label ch2_y_bad:
  1867.  
  1868.     if y_poemappeal[0] < 0:
  1869.         y "..."
  1870.         y 2h "Um..."
  1871.         y "...Are you still mad at me?"
  1872.         mc "Eh?!"
  1873.         y "For disrespecting Natsuki yesterday..."
  1874.         y "Because reading this poem..."
  1875.         y "Now I know why you got mad at me."
  1876.         y "Because you..."
  1877.         y 3v "You prefer her writing over mine!"
  1878.         mc "That's not really true...!"
  1879.         y "Meaning when I disrespected her..."
  1880.         y "I disrespected you too...didn't I?"
  1881.         y 4c "Oh no..."
  1882.         mc "Yuri..."
  1883.         mc "You might be reading into this a little too much..."
  1884.         y "How could I be so stupid...?"
  1885.         y "I always let these things happen..."
  1886.         y "Whenever I think before I speak, I just come off as awkward and unlikable."
  1887.         y "But if I speak without thinking, the things I want to keep inside come out and make people hate me."
  1888.         y 2v "So...please don't force yourself to be around me."
  1889.         y "I know this is what Monika wants."
  1890.         y "But it's not fair to you when you could be enjoying your time with Natsuki and Sayori."
  1891.         mc "Yuri--"
  1892.         y 4b "Please..."
  1893.         y "It makes it easier for me if you don't express any concern."
  1894.         y "Besides..."
  1895.         y "I have my books with me."
  1896.         y 3u "That's...all I need."
  1897.         mc "..."
  1898.         "Yuri smiles sadly and puts her head down on her desk."
  1899.         "I'm frustrated."
  1900.         "I don't hate her, but it's as if she's not capable of listening to me over her own thoughts."
  1901.         "I sigh to myself."
  1902.         "All I can do is accept that that's how she is."
  1903.         "If she wants to be left alone, then I have no choice but to abide to that request."
  1904.         $ skip_poem = True
  1905.         return
  1906.     else:
  1907.  
  1908.         y 2a "Ah, is it my turn?"
  1909.         y "Let's see how it compares to yesterday's..."
  1910.         y "Mm..."
  1911.         y "I see..."
  1912.         y "It's a bit different."
  1913.         y 1a "I respect you for trying different things, [player]."
  1914.         y "Were you inspired by Natsuki's poem?"
  1915.         y "Or Sayori's, perhaps?"
  1916.         mc "Well..."
  1917.         mc "I guess you could say that..."
  1918.         y "I thought so."
  1919.         y 2u "I'm happy for you."
  1920.         y "You don't need to find inspiration in my poems."
  1921.         y "I write them for myself..."
  1922.         y 4b "...Not for anyone else."
  1923.         y "So I don't really...need for people to like them or anything."
  1924.         mc "Yuri!"
  1925.         y 3t "E-Eh?"
  1926.         mc "I'm sorry for being blunt, but you're overthinking this a little."
  1927.         mc "Just because our styles are different doesn't mean I dislike your poems..."
  1928.         mc "In fact, if I tried to do something in your style, I would probably just do a terrible job."
  1929.         y 4a "I...I see..."
  1930.         y "I'm sorry..."
  1931.         y "My stupid mind...it likes to do that sometimes."
  1932.         y "Anyway..."
  1933.         label ch2_y_shared:
  1934.             y 2h "You don't need to be afraid to be a little more daring..."
  1935.             y "Metaphors can go a long way."
  1936.             y "Don't feel like you need to work your brain like turning a bunch of gears."
  1937.             y 1m "Try letting your mind wander through your feelings..."
  1938.             y "And write down the things you see and hear."
  1939.             y "That's one way to truly enable your reader to see into your mind."
  1940.             y 2u "It's a very intimate exercise..."
  1941.             mc "I see."
  1942.             mc "That's a certainly interesting technique."
  1943.             mc "Thanks for sharing."
  1944.             y 2v "I have, um..."
  1945.             y "...Well, an example of that, if you'd like to read it..."
  1946.             mc "Of course."
  1947.             mc "Is this the poem you wrote for today?"
  1948.             "Yuri nods, and timidly hands me her poem."
  1949.             return
  1950.  
  1951. label ch2_y_med:
  1952.  
  1953.     if y_poemappeal[0] <= 0:
  1954.         y 1a "Let's see what you've written for today."
  1955.         y "..."
  1956.         y "Mm..."
  1957.         y 1c "Well done, [player]."
  1958.         y "Your skills are already improving."
  1959.         mc "Really?"
  1960.         mc "Thanks, Yuri."
  1961.         mc "Coming from you, that means a lot."
  1962.         y 3f "Eh?"
  1963.         y 3v "I-It's nothing!"
  1964.         y "I'm just happy to help inspire fellow writers..."
  1965.         y "I know you're new to this, so don't worry so much if it seems like you can't get your poem to feel perfect."
  1966.         jump ch2_y_shared
  1967.     else:
  1968.  
  1969.  
  1970.         y 1a "Let's see what you've written for today."
  1971.         y "..."
  1972.         y "Mm..."
  1973.         y "This is pretty good, [player]."
  1974.         y "Were you influenced by seeing everyone's writing styles yesterday?"
  1975.         mc "I guess you could say that..."
  1976.         y 1m "I was also a bit surprised by how differently everyone writes."
  1977.         y "So I respect you for trying new things."
  1978.         jump ch2_y_shared
  1979.  
  1980. label ch2_y_good:
  1981.  
  1982.     if y_poemappeal[0] < 1:
  1983.         y 1a "Let's see what you've written for today."
  1984.         y "..."
  1985.         y 2e "......"
  1986.         "Yuri stares at the poem with a surprised expression on her face."
  1987.         mc "Do you...like it?"
  1988.         y "[player]..."
  1989.         y "...How did you pick up on this so quickly?"
  1990.         label ch2_y_good_shared:
  1991.             y 2v "Just yesterday, I was telling you the kind of techniques worth practicing..."
  1992.             mc "Maybe that's why..."
  1993.             mc "You did a good job explaining."
  1994.             mc "I really wanted to try giving it more imagery."
  1995.             show yuri 4b zorder 2 at t11
  1996.             "Yuri visibly swallows."
  1997.             "Even her hands appear sweaty."
  1998.             y "I'm not...used to this..."
  1999.             mc "Used to what?"
  2000.             y 3o "I don't know...!"
  2001.             mc "It's fine, take your time..."
  2002.             show yuri 3l at t11
  2003.             "Yuri breathes and collects her thoughts."
  2004.             "I know that Yuri likes to think before she speaks, so I offer that patience to her."
  2005.             y 4a "Yeah..."
  2006.             y "Just...being appreciated like this...I guess."
  2007.             y "It probably sounds really stupid..."
  2008.             y "But seeing someone motivated by my writing..."
  2009.             y "It just makes me..."
  2010.             y "Really happy..."
  2011.             mc "Are you saying you've never shared your writing before?"
  2012.             "Yuri nods."
  2013.             mc "Really? I don't believe it."
  2014.             y "I really only write for myself..."
  2015.             y "And besides..."
  2016.             y 3w "...People would just laugh at me!"
  2017.             mc "Do you really think that...?"
  2018.             "Again, Yuri nods."
  2019.             mc "Huh..."
  2020.             mc "Even your close friends?"
  2021.             y 2v "..."
  2022.             "Yuri doesn't respond to that."
  2023.             "I wonder why..."
  2024.             mc "Anyway..."
  2025.             mc "Do you want to share the poem you wrote today?"
  2026.             y "...Yeah."
  2027.             y 3t "I do!"
  2028.             y "If it's with you..."
  2029.             return
  2030.     else:
  2031.  
  2032.         y 1a "Let's see what you've written for today."
  2033.         y "..."
  2034.         y 2e "......"
  2035.         "Yuri stares at the poem with a surprised expression on her face."
  2036.         mc "Do you...like it?"
  2037.         y "[player]..."
  2038.         y "This one might even be better than yesterday's..."
  2039.         y "...How did you even pick up on this so quickly?"
  2040.         jump ch2_y_good_shared
  2041.  
  2042. label ch3_y_bad:
  2043.     if y_poemappeal[0] < 0 and y_poemappeal[1] < 0:
  2044.         label ch3_y_bad12_shared:
  2045.             y 4b "..."
  2046.             "Yuri doesn't look too enthusiastic about spending time with me..."
  2047.             "I guess if she changes her mind, she'll come to me."
  2048.             "But I should leave her be for now."
  2049.             $ skip_poem = True
  2050.             return
  2051.     elif y_poemappeal[1] < 0 or y_poemappeal[0] < 0:
  2052.         y 1i "..."
  2053.         y "...I see."
  2054.         y "I think you're improving at writing in general, [player]."
  2055.         y 2i "But I can't help but feel a little bit foolish."
  2056.         mc "Eh? What for?"
  2057.         y "Just..."
  2058.         y "I feel like I kept trying to offer advice..."
  2059.         y "When it should have been clear to me that you prefer a different writing style."
  2060.         y 3w "I probably just sounded arrogant!"
  2061.         y "I'm so stupid..."
  2062.         mc "Yuri, that's a little--"
  2063.         y 4b "No..."
  2064.         y "You don't understand."
  2065.         y "I spent so much time worrying about what's better and what's worse."
  2066.         y "Not just with you..."
  2067.         y "With Natsuki, and Sayori..."
  2068.         y "It's obvious now why nobody has fun when talking to me..."
  2069.         y "And because of that..."
  2070.         y 4c "...I'll just keep my mouth shut about your poem!"
  2071.         mc "..."
  2072.         "Yuri buries her head into her arms on her desk."
  2073.         "That's not the first time I've seen her do that."
  2074.         mc "I don't think it's ever as bad as you make it sound in your head..."
  2075.         y "..."
  2076.         mc "I think if people really didn't like talking to you..."
  2077.         mc "Then it would be a lot more obvious."
  2078.         mc "I know that you like to read deeply into things."
  2079.         mc "But some things are just worth taking at face value."
  2080.         y 4b "I just..."
  2081.         y "I've gotten so used to it..."
  2082.         y "...That it's hard for me to comprehend any other possibility."
  2083.         mc "Gotten used to what?"
  2084.         mc "Reading deeply into things?"
  2085.         y "Being disliked."
  2086.         mc "Yuri..."
  2087.         y 2v "What...what am I saying?"
  2088.         y "I'm sorry..."
  2089.         y "I never meant to bring this up..."
  2090.         "Yuri turns away from me."
  2091.         y 4b "You should go..."
  2092.         mc "Eh...?"
  2093.         y "Please..."
  2094.         y "Please don't look at me right now."
  2095.         y "I want to do some thinking..."
  2096.         mc "Are you sure...?"
  2097.         "Yuri nods."
  2098.         mc "Alright..."
  2099.         "I leave Yuri be."
  2100.         "Comforting or reassuring her is nearly impossible as it is."
  2101.         "So when she wants to be alone, I think anything I say could only make things worse."
  2102.         "I feel bad, but thankfully she doesn't take it out on me..."
  2103.         "I'll wait until she's feeling a little bit better."
  2104.         $ skip_poem = True
  2105.         return
  2106.     else:
  2107.         y 1a "..."
  2108.         y "...Ah."
  2109.         y "Decided to try something different today?"
  2110.         mc "I guess so."
  2111.         mc "Is that good, or bad?"
  2112.         y 2g "Well, neither."
  2113.         y "I have my preferences."
  2114.         y "But it would be unfair of me to call something good or bad based on that."
  2115.         label ch3_y_shared:
  2116.             y 1f "As always, I believe what's most important is exploring and discovering yourself."
  2117.             mc "That's comforting."
  2118.             mc "I'm kind of afraid of disappointing you in some way or another."
  2119.             y 2t "Eh...?"
  2120.             y "Why me...?"
  2121.             mc "Well, you're always sophisticated with your writing and have the most advice to share."
  2122.             y 4a "Is that so...?"
  2123.             y "..."
  2124.             "Yuri thinks for a good minute."
  2125.             y 4c "...That must be terrible."
  2126.             mc "Eh?"
  2127.             y "For me to have become someone whose opinion is fearsome..."
  2128.             y "How unlikable of me..."
  2129.             mc "Yuri..."
  2130.             mc "It's not as bad as you're making it sound in your head."
  2131.             mc "I just meant that I respect your opinion."
  2132.             y 2v "I see..."
  2133.             y "I'm sorry that I always overthink and come to those sorts of conclusions..."
  2134.             y "I'm just...a little too used to it."
  2135.             mc "Overthinking?"
  2136.             y "Being disliked."
  2137.             mc "Yuri..."
  2138.             y 3w "What...what am I saying?"
  2139.             y "I'm sorry, I didn't mean to bring that up..."
  2140.             y "Let's move on..."
  2141.             mc "Alright..."
  2142.             mc "Do you want to share your poem now?"
  2143.             y 2i "Okay..."
  2144.             y "Here."
  2145.             return
  2146.  
  2147.  
  2148. label ch3_y_med:
  2149.     if y_poemappeal[0] < 0 and y_poemappeal[1] < 0:
  2150.         jump ch3_y_bad12_shared
  2151.     elif y_poemappeal[0] < 1 or y_poemappeal[1] < 1:
  2152.         y "..."
  2153.         y 1a "Well done, [player]."
  2154.         y "You've definitely improved your writing over the course of these few days."
  2155.         y "Has my advice been helpful to you?"
  2156.         mc "Yeah... Definitely."
  2157.         y 2m "I'm glad..."
  2158.         y "Sharing our writing like this..."
  2159.         y 2a "It's a lot more fun and rewarding than I anticipated."
  2160.         y "I need to remember to thank Monika..."
  2161.         y "I think we all felt a little awkward at first."
  2162.         y 1a "But now it seems like everyone is enjoying sharing their writing and seeing what others think."
  2163.         mc "I guess I can't really disagree."
  2164.         mc "I was afraid this whole thing would be a chore..."
  2165.         "But it's a great way for me to spend some personal time with all the girls in the club."
  2166.         mc "But it's been fun getting to know everyone and their writing."
  2167.         mc "And I guess doing some writing myself..."
  2168.         y 2a "Well..."
  2169.         y "Have you learned anything about yourself, [player]?"
  2170.         mc "Eh?"
  2171.         y 2i "Well, you know how I like to say that writing is a very personal way to get in touch with yourself..."
  2172.         y 1a "In the end, it doesn't matter if you're a good writer, or a bad writer."
  2173.         y "And even my opinions are just opinions...you know?"
  2174.         jump ch3_y_shared
  2175.     else:
  2176.         y 1e "..."
  2177.         y "...Ah."
  2178.         y "Decided to try something different today?"
  2179.         mc "I guess so."
  2180.         mc "Is that good, or bad?"
  2181.         y 2i "Well, neither."
  2182.         y "I have my preferences."
  2183.         y "But it would be unfair of me to call something good or bad based on that."
  2184.         jump ch3_y_shared
  2185.  
  2186. label ch3_y_good:
  2187.     if y_poemappeal[0] < 0 and y_poemappeal[1] < 0:
  2188.         jump ch3_y_bad12_shared
  2189.     if y_poemappeal[1] < 1:
  2190.         y "..."
  2191.         y 2u "[player]..."
  2192.         y "...This is wonderful."
  2193.         y "I can feel the emotion that you poured into it."
  2194.         y "Is this the result of trying what I suggested yesterday?"
  2195.         mc "Yeah, I guess so..."
  2196.         mc "You did a good job explaining."
  2197.         mc "I really wanted to try giving it more feeling."
  2198.         show yuri 4b zorder 2 at t11
  2199.         "Yuri visibly swallows."
  2200.         "Even her hands appear sweaty."
  2201.         play music t9 fadeout 1.0
  2202.         y "I'm not...used to this..."
  2203.         mc "Used to what?"
  2204.         y 3o "I don't know...!"
  2205.         mc "It's fine, take your time..."
  2206.         "Yuri breathes and collects her thoughts."
  2207.         "I know that Yuri likes to think before she speaks, so I offer that patience to her."
  2208.         y 4a "Yeah..."
  2209.         y "Just...being appreciated like this...I guess."
  2210.         y "It probably sounds really stupid..."
  2211.         y "But seeing someone motivated by my writing..."
  2212.         y "It just makes me..."
  2213.         y "Really happy..."
  2214.         mc "Are you saying you've never shared your writing before?"
  2215.         "Yuri nods."
  2216.         mc "Really? I don't believe it."
  2217.         y "I really only write for myself..."
  2218.         y "And besides..."
  2219.         y 3w "...People would just laugh at me!"
  2220.         mc "Do you really think that...?"
  2221.         "Again, Yuri nods."
  2222.         mc "Huh..."
  2223.         mc "Even your close friends?"
  2224.         y 2v "..."
  2225.         "For some reason, Yuri doesn't respond."
  2226.         mc "Yuri...?"
  2227.         label ch3_y_good_shared:
  2228.             if not renpy.music.get_playing(channel='music') == audio.t9:
  2229.                 play music t9 fadeout 1.0
  2230.             "Yuri smiles sadly."
  2231.             y 1u "[player], during lunchtime, I eat by myself."
  2232.             y "Did you know that?"
  2233.             y "It's a great time to find a quiet spot and do some reading."
  2234.             y "In fact..."
  2235.             y 2s "I always have some books with me."
  2236.             y "You could say I really enjoy reading..."
  2237.             y "...Well, that's one way to put it, anyway..."
  2238.             y "But..."
  2239.             y "Books are so full of amazing and inspiring people."
  2240.             y "People you want to fall in love with."
  2241.             y "Or people you just know would make a really good friend."
  2242.             y 1m "Cheerful people, who always put a smile on your face..."
  2243.             y "Or deep thinkers, and problem solvers, who discover the mysteries of life."
  2244.             y "So when you look at it that way..."
  2245.             y "I'm surrounded by friends every day..."
  2246.             y "...You know?"
  2247.             y 2s "And those friends don't laugh at me..."
  2248.             y "They don't tease me for spacing out all the time..."
  2249.             y "They don't make fun of my body type..."
  2250.             y "And..."
  2251.             y 3v "...And they don't hate me for acting like a know-it-all!"
  2252.             mc "People...say that about you?"
  2253.             y "I'm not a know-it-all, [player]!"
  2254.             y "It's the opposite. I don't know anything!"
  2255.             y 4b "I don't know how to talk to people."
  2256.             y "I don't know how to make people see me as normal."
  2257.             y "I don't even know how to make myself happy!"
  2258.             y "I have all these feelings..."
  2259.             y "And all I can do with them is read, and write..."
  2260.             y "But it wasn't until now..."
  2261.             y 2s "That I started sharing it with you..."
  2262.             y "...That I really understood what was missing all this time."
  2263.             mc "But I haven't really done anything..."
  2264.             y "No..."
  2265.             y "That's wrong."
  2266.             y "Just being patient and respectful..."
  2267.             y 3u "That's really...important to me."
  2268.             y "I know I'm a difficult person, [player]..."
  2269.             y "I speak too slowly..."
  2270.             y "I second-guess myself all the time..."
  2271.             y "I read too deeply into things..."
  2272.             y "But every time..."
  2273.             y "You've always treated me just like anyone else."
  2274.             y "It's so rare that I feel comfortable with myself when I talk to others..."
  2275.             y "But that's why every time I talk to you..."
  2276.             y 2s "...I just feel really happy."
  2277.             mc "I see..."
  2278.             mc "Well, I treat you how you deserve to be treated, Yuri."
  2279.             mc "And if other people don't see it that way, then screw them."
  2280.             mc "I mean, I joined this club hoping I would make friends."
  2281.             mc "And I would say I've had at least one success."
  2282.             mc "Wouldn't you?"
  2283.             y 4b "U-Um..."
  2284.             y "If you put it that way..."
  2285.             y "...Yeah..."
  2286.             y 4e "We really are friends now, aren't we?"
  2287.             "Yuri puts her head in her hands."
  2288.             "But this time, she's smiling as she does it."
  2289.             mc "Do you want to show me your poem?"
  2290.             y 3s "Yeah."
  2291.             y "I do!"
  2292.             y "Let me get it for you..."
  2293.         return
  2294.     else:
  2295.         y "..."
  2296.         y "[player]."
  2297.         y 2s "Your writing has only improved in these last few days."
  2298.         y "Every poem you've shown me has been nothing short of spectacular."
  2299.         y "I can really feel the emotions..."
  2300.         y 2m "I'm a little envious, even..."
  2301.         y "I don't think it ever came to me this naturally."
  2302.         mc "Yuri, that's the wrong way to put it."
  2303.         mc "This never did come naturally to me."
  2304.         mc "But I've been able to improve so much thanks to you."
  2305.         mc "You're really the example I was chasing after."
  2306.         y 3u "I-Is that so...?"
  2307.         "Yuri gently smiles to herself."
  2308.         y "This feeling..."
  2309.         y "I'm so glad...I got the chance to share my writing."
  2310.         y 4e "I never thought it would feel like this."
  2311.         mc "I remember you mentioning that yesterday."
  2312.         mc "I can't believe that you're so good at something and you've never even shared it with anyone."
  2313.         mc "It's kind of a shame."
  2314.         y 2u "Maybe, but..."
  2315.         y "It's not like I really...had a choice."
  2316.         mc "What do you mean...?"
  2317.         y "Well..."
  2318.         jump ch3_y_good_shared
  2319.  
  2320.  
  2321. label ch1_m_start:
  2322.     m 1b "Hi, [player]!"
  2323.     m "Having a good time so far?"
  2324.     mc "Ah...yeah."
  2325.     m 1k "Good! Glad to hear it!"
  2326.     m 4a "By the way, since you're new and everything..."
  2327.     m "If you ever have any suggestions for the club, like new activities, or things we can do better..."
  2328.     m 4b "I'm always listening!"
  2329.     m "Don't be afraid to bring things up, okay?"
  2330.     show monika 4a
  2331.     mc "Alright...I'll keep that in mind."
  2332.     "Of course I'll be afraid to bring things up."
  2333.     "I'm much better off just going with the flow until I'm more settled in."
  2334.     m 1a "Anyway..."
  2335.     m "Want to share your poem with me?"
  2336.     mc "It's kind of embarrassing, but I guess I have to."
  2337.     m 5a "Ahahaha!"
  2338.     m "Don't worry, [player]!"
  2339.     m "We're all a little embarrassed today, you know?"
  2340.     m "But it's that sort of barrier that we'll all learn to get past soon."
  2341.     mc "Yeah, that's true."
  2342.     "I hand Monika my poem."
  2343.     m 2a "...Mhm!"
  2344.     $ nextscene = "m_" + poemwinner[0] + "_" + str(eval(poemwinner[0][0] + "_appeal"))
  2345.     call expression nextscene
  2346.  
  2347.     mc "I'm sure I'll end up trying different things a lot."
  2348.     mc "It could take a while before I feel comfortable doing this."
  2349.     m 1k "That's okay!"
  2350.     m 1b "I'd love to see you try new things."
  2351.     m "That's the best way to find the kind of style that suits you."
  2352.     m 3e "Everyone else might be a little bit biased toward their own kinds of styles..."
  2353.     m 3a "But I'll always help you find what suits you the most!"
  2354.     m "So don't force yourself to write the way everyone else wants you to write."
  2355.     m "It's not like you have to worry about impressing them or anything."
  2356.     m 5 "Ahaha!"
  2357.     mc "Ahaha..."
  2358.     m 1a "Anyway, do you want to read my poem now?"
  2359.     m 1e "Don't worry, I'm not very good..."
  2360.     mc "You sound pretty confident for someone who claims to not be very good."
  2361.     m 1j "Well...that's 'cause I have to sound confident."
  2362.     m 1b "That doesn't mean I always feel that way, you know?"
  2363.     show monika 1a
  2364.     mc "I see..."
  2365.     mc "Well, let's read it, then."
  2366.     return
  2367.  
  2368. label ch2_m_start:
  2369.     m 1b "Hi again, [player]!"
  2370.     m "How's the writing going?"
  2371.     mc "Alright, I guess..."
  2372.     m 2k "I'll take that."
  2373.     m 2b "As long as it's not going bad!"
  2374.     m 2a "I'm happy that you're applying yourself."
  2375.     m "Maybe soon you'll come up with a masterpiece!"
  2376.     mc "Ahaha, I wouldn't count on that..."
  2377.     m 2a "You never know!"
  2378.     m "Want to share what you wrote for today?"
  2379.     mc "Sure... Here you go."
  2380.     "I give my poem to Monika."
  2381.     m "..."
  2382.     m "...Alright!"
  2383.     $ nextscene = "m_" + poemwinner[1] + "_" + str(eval(poemwinner[1][0] + "_appeal"))
  2384.     call expression nextscene
  2385.  
  2386.     m 1a "But anyway..."
  2387.     m "You want to read my poem now?"
  2388.     m "I like the way this one turned out, so I hope you do too~"
  2389.     mc "Alright, let's take a look."
  2390.     return
  2391.  
  2392. label ch3_m_start:
  2393.     m 2a "Hi [player]~"
  2394.     m "Have you thought about what you want to submit to perform at the festival?"
  2395.     mc "Well..."
  2396.     "Being in this club is one thing, but performing in front of a bunch of people..."
  2397.     mc "...I'll have to give it some more thought."
  2398.     m 2b "Okay, no pressure!"
  2399.     m "But whatever you do, I'm sure it'll turn out great."
  2400.     m "It would also make me happy to see."
  2401.     m 2k "Ahaha!"
  2402.     m 1a "Anyway, let's take a look at today's poem!"
  2403.     mc "Sure..."
  2404.     "I let Monika take the poem I'm holding in my hands."
  2405.     m "..."
  2406.     $ nextscene = "m_" + poemwinner[2] + "_" + str(eval(poemwinner[2][0] + "_appeal"))
  2407.     call expression nextscene
  2408.  
  2409.     m 1a "Anyway...!"
  2410.     m "I'll share my poem with you now, alright?"
  2411.     mc "Er..."
  2412.     mc "Alright..."
  2413.     return
  2414.  
  2415.  
  2416.  
  2417. label m_natsuki_1:
  2418.     m 2b "I like it, [player]!"
  2419.     mc "Really...?"
  2420.     m 2e "It's a lot cuter than I expected."
  2421.     m 2k "Ahahaha!"
  2422.     mc "Oh jeez..."
  2423.     m 1b "No, no!"
  2424.     m "It kind of makes me think of something Natsuki would write."
  2425.     m "And she's a good writer, too."
  2426.     m 5a "So take that as a compliment!"
  2427.     mc "Ahaha..."
  2428.     mc "If you say so."
  2429.     m "Yep!"
  2430.     m 1a "By any chance have you read anything by Shel Silverstein?"
  2431.     mc "Eh?"
  2432.     mc "Maybe a long time ago..."
  2433.     m "He's famous for telling all kinds of stories in just a few simple words."
  2434.     m "His poems can be funny, endearing, or even sad..."
  2435.     m 3d "And sometimes they're only a few lines long."
  2436.     m "They might even feel like they're written for kids, but if you think about them..."
  2437.     m "They can express views of the world that would apply to anybody."
  2438.     mc "I see..."
  2439.     mc "So you're saying that Natsuki is kind of like that?"
  2440.     m 2a "Sort of."
  2441.     m "Maybe she's not an expert..."
  2442.     m "But you probably won't find much filler in her poems."
  2443.     m "They might be easy to write, but they're super challenging to get the meaning through."
  2444.     m 2b "So I can see why it would be your kind of poem to explore!"
  2445.     return
  2446.  
  2447. label m_sayori_1:
  2448.     m 2a "I like this one!"
  2449.     m "It makes me think of something Sayori would like."
  2450.     mc "Is that so?"
  2451.     m 2d "You and Sayori are really good friends, right?"
  2452.     m "I wouldn't be surprised if you had those sorts of things in common."
  2453.     mc "Ah, well..."
  2454.     mc "We may be good friends, but Sayori and I are actually really different."
  2455.     m "Hmm..."
  2456.     m "Well, that may be the case."
  2457.     m 3a "But maybe there are also some similarities that you wouldn't expect."
  2458.     m "The way she talks about you..."
  2459.     m "It sounds like the two of you really care about each other's well-being."
  2460.     m "Even if you show it in different ways, it ends up being more similar than you'd think."
  2461.     m 1a "So I think that's the kind of vibe I get when reading your poem."
  2462.     mc "Hmm..."
  2463.     mc "You sure you're not reading into it too much?"
  2464.     m 5 "Ahaha! I could be!"
  2465.     m "Oh gosh, I sound like Yuri..."
  2466.     m 2a "...But in any case, Sayori's writing has kind of a gentle feel to it."
  2467.     m "I can tell that she likes exploring with emotions, like happiness and sadness."
  2468.     m "Who knew that someone so happy would enjoy sad things, too?"
  2469.     mc "Yeah... That's totally unexpected."
  2470.     m 2j "Well, to each their own~"
  2471.     m 2a "And you shouldn't be afraid to experiment a little bit, either."
  2472.     return
  2473.  
  2474. label m_yuri_1:
  2475.     m 1a "Great job, [player]!"
  2476.     m "I was going 'Ooh' in my head while reading it."
  2477.     m 1j "It's really metaphorical!"
  2478.     m 1a "I'm not sure why, but I didn't expect you to go for something so deep."
  2479.     m 3b "I guess I underestimated you!"
  2480.     mc "It's easiest for me to keep everyone's expectations low."
  2481.     mc "That way, it always counts when I put in some effort."
  2482.     m 5a "Ahaha! That's not very fair!"
  2483.     m "Well, I guess it worked, anyway."
  2484.     m 2a "You know that Yuri likes this kind of writing, right?"
  2485.     m "Writing that's full of imagery and symbolism."
  2486.     m 2d "Unlike Sayori, who likes using simple and direct words to describe happiness and sadness..."
  2487.     m "Yuri likes it when readers are left to derive their own meaning out of it."
  2488.     m 4d "It's very challenging to write like that effectively."
  2489.     m "Both allowing people to get something out of it just by feel..."
  2490.     m "Or letting them deeply analyze all of the nuances."
  2491.     m "It can take years of practice, which I'm assuming Yuri has at this point."
  2492.     m 1e "I never really asked, though..."
  2493.     mc "I'm sure I'm nowhere near her level yet."
  2494.     m 2b "Don't worry so much about that!"
  2495.     m "You do your own thing."
  2496.     m "Just keep exploring, and learn by trying new things!"
  2497.     return
  2498.  
  2499. label m_natsuki_2:
  2500.     m 1j "It's pretty good~"
  2501.     m 1a "You've been spending some time with Natsuki, haven't you?"
  2502.     m "You must like her writing style."
  2503.     mc "Ah, yeah..."
  2504.     mc "I think it's a neat way to tell a story."
  2505.     m 2a "Mhm. I don't disagree."
  2506.     m "Natsuki's poems may be cute, but they're also meaningful."
  2507.     m "I can see why you'd be into the style."
  2508.     m "I guess that means you're not as much a fan of Yuri's poems, then?"
  2509.     mc "Ah-- I wouldn't say that..."
  2510.     mc "I kind of like everyone's poems."
  2511.     m 2d "That's true, but I'm sure you like some more than others, right?"
  2512.     m "Like Yuri's use of complex words and symbolism..."
  2513.     m "Or Sayori's way of expressing happiness or sadness in a more direct way."
  2514.     m 2a "You must have some kind of preference, don't you?"
  2515.     m 4l "Ah, not that it's a contest or anything!"
  2516.     m 4a "I was just curious, that's all."
  2517.     return
  2518.  
  2519. label m_sayori_2:
  2520.     m 1j "It's pretty good~"
  2521.     m 1a "It makes me think of Sayori, like the other one that you wrote."
  2522.     m 4b "You two are like the dynamic duo!"
  2523.     mc "Ahaha... That's kind of exaggerating it."
  2524.     m 2a "Yeah, probably."
  2525.     m "But you do spend a lot of time with her even in this club, don't you?"
  2526.     m 2j "Then again, I don't blame you for being a little shy~"
  2527.     mc "I-I'm not shy, it's just..."
  2528.     m 5 "Ahaha! I'm just teasing."
  2529.     m "I know it takes a bit of time to make friends with everyone."
  2530.     m 2d "But Yuri and Natsuki are super interesting people, so don't be afraid to give them their share of time!"
  2531.     m "And you can talk to me every now and then too..."
  2532.     m 1e "I'm not, like, unapproachable or anything, am I?"
  2533.     mc "Ah, no, it's nothing like that..."
  2534.     mc "I'm just still getting used to being here, that's all."
  2535.     m 1a "Yeah..."
  2536.     m 1l "I'm sorry if I was putting pressure on you or something!"
  2537.     m "I really didn't mean it like that."
  2538.     mc "No, don't worry."
  2539.     mc "I get what you're saying."
  2540.     m 1a "Well, alright~"
  2541.     return
  2542.  
  2543. label m_yuri_2:
  2544.     m 2b "This one's good!"
  2545.     m "It feels like you're not only getting more comfortable with your style..."
  2546.     m "But the imagery is better than the last one I read!"
  2547.     m 2a "Just wondering, but have you been finding inspiration in Yuri's writing style?"
  2548.     mc "Hmm..."
  2549.     mc "I guess so."
  2550.     mc "You can't deny that she's talented."
  2551.     m 4k "Yeah, totally!"
  2552.     m 4a "I think her poems are the most..."
  2553.     m "...Romantic."
  2554.     m 1a "That's the best way to describe it."
  2555.     m 1d "She's like a totally different person when she picks up a pen..."
  2556.     mc "I noticed that, too."
  2557.     mc "Or when she's talking about literature, it's like a light turns on inside her."
  2558.     m 2a "Mhm!"
  2559.     m "Sadly, it's hard to get much personal conversation out of her..."
  2560.     m 2m "Trust me, I've tried..."
  2561.     m "Who knows what goes on in that head of hers?"
  2562.     mc "I hope you don't mean that in a bad way."
  2563.     m 1g "No, of course not!"
  2564.     m "I just meant that I wish she didn't keep so much to herself..."
  2565.     m 1e "But still, defending her like that..."
  2566.     m 5 "You must be pretty into her..."
  2567.     mc "Eh?!"
  2568.     mc "You...completely misunderstood!"
  2569.     m "Ahaha! Calm down, I'm kidding!"
  2570.     m 2a "Besides, I'm pretty sure she's already got a boyfriend..."
  2571.     mc "Wait, really?"
  2572.     m 2k "Yeah. A fictional one, anyway."
  2573.     "Monika kind of whispers that last part to me."
  2574.     m 5 "It's just a hunch, but..."
  2575.     mc "...Well, there's not really anything wrong with that!"
  2576.     m 1n "Oh, well I know...!"
  2577.     m "I was just saying~"
  2578.     return
  2579.  
  2580. label m_natsuki_3:
  2581.     m 2j "Sticking with the Natsuki style once more, I see~"
  2582.     m 2d "Hmm..."
  2583.     m "You really like Natsuki, don't you?"
  2584.     mc "Eh? That's--"
  2585.     m 5 "Oh, come on, [player]."
  2586.     m "It's awfully suspicious, you know?"
  2587.     m "Spending time with her in the clubroom every day..."
  2588.     m "Pretending to like the manga that she's into..."
  2589.     mc "Y-You know how Natsuki is...!"
  2590.     mc "If I don't indulge her, she'll end up hating me."
  2591.     m 2e "Eh?"
  2592.     m 2a "No, I think you're misunderstanding, [player]."
  2593.     m "It's not like Natsuki just hates anyone who doesn't give her what she wants."
  2594.     m 2d "Yeah, she's assertive, but she's not that selfish..."
  2595.     m "In fact, I think you're the only one who's indulged her as much as you have."
  2596.     mc "Is that so..."
  2597.     "I kind of knew that, but I just didn't want to admit it."
  2598.     m "So, I just need to ask one thing of you..."
  2599.     m 1e "...Be careful. Please?"
  2600.     m "Natsuki is kind of unpredictable."
  2601.     m "A lot of times, she doesn't even know what she wants."
  2602.     m 1i "After all, she's the youngest one here."
  2603.     m "She might not know how to handle her own feelings properly."
  2604.     m "What I'm saying is..."
  2605.     m 1m "If something bad happens, then it could end up damaging the club, too..."
  2606.     m 5 "And you wouldn't do that to me...right?"
  2607.     mc "That's--"
  2608.     "I'm not sure how to respond to Monika."
  2609.     "While I care about her and the club, it's also kind of unfair to bring that up."
  2610.     m "Well...you're smart."
  2611.     m "I'm sure you'll do the right thing."
  2612.     "Monika smiles sweetly."
  2613.     return
  2614.  
  2615. label m_sayori_3:
  2616.     m 1k "Ahaha."
  2617.     m "It's kind of funny..."
  2618.     mc "How so?"
  2619.     m 1a "No, not the poem..."
  2620.     m 2a "I mean, it's funny how your poems and Sayori's poems have been getting more and more similar to each other every day."
  2621.     m "I'm surprised you're so in sync with her."
  2622.     m 2d "Then again, you've been spending a lot of time together lately, haven't you?"
  2623.     mc "Ah, I guess you could say that..."
  2624.     mc "Although we kind of grew up as best friends, I haven't been seeing as much of her this past year..."
  2625.     mc "But since I joined the club, we've been spending a lot of time together again."
  2626.     m 1a "I see, I see~"
  2627.     m "That reminds me..."
  2628.     m "About how Sayori's been a little bit off today..."
  2629.     mc "Yeah? Did she tell you something?"
  2630.     m 1n "Ah..."
  2631.     m "Well..."
  2632.     m 2l "[player], you haven't been flirting with her, have you?"
  2633.     mc "O-Of course not!"
  2634.     mc "I've been treating her like I always do."
  2635.     m 2a "Alright."
  2636.     m 5 "Just making sure~"
  2637.     m "I know how much you care about her..."
  2638.     m "It would be terrible if something bad happened to her, so keep an eye on her."
  2639.     m 2d "Sayori's been acting so much happier ever since you joined the club."
  2640.     m "What could have happened all of a sudden...?"
  2641.     mc "..."
  2642.     m 1l "...Well, never mind."
  2643.     m "This really isn't the time to be talking about this..."
  2644.     return
  2645.  
  2646. label m_yuri_3:
  2647.     m 2e "Your style's gotten so refined, [player]."
  2648.     m "Yuri's been teaching you a lot of things, hasn't she?"
  2649.     mc "Well--"
  2650.     mc "I guess so."
  2651.     m 2a "Yeah... I've been noticing how much time you spend with her."
  2652.     m 2d "I think I've heard her say more words these past couple days than she's talked in the whole year."
  2653.     m "Not sure how you did it, but that's pretty impressive..."
  2654.     mc "Well, she just needs some patience and a way to talk about all the things in her head, I guess..."
  2655.     mc "I'm still getting the hang of it, myself."
  2656.     m 2a "Hm..."
  2657.     m "You're certainly putting in a lot of effort."
  2658.     m 2e "You must really like her."
  2659.     mc "Eh? That's--"
  2660.     m 5 "Ahaha!"
  2661.     m "It's awfully suspicious, you know?"
  2662.     m "Spending time with her in the clubroom every day..."
  2663.     m "Reading that edgy novel with her..."
  2664.     mc "Well--!"
  2665.     mc "I just...feel bad that she has a hard time socializing."
  2666.     mc "It makes me want to make sure she doesn't spend all her time alone."
  2667.     mc "Besides, the novel isn't too bad either, you know..."
  2668.     m 1k "Alright, alright~"
  2669.     m "I get you."
  2670.     m 1a "Just...be careful, alright?"
  2671.     m "I know that Yuri isn't used to opening herself up..."
  2672.     m 2d "So if something bad happens while she's vulnerable..."
  2673.     m "Then it could be really hard for her."
  2674.     m 2i "Her books aren't a total escape from reality."
  2675.     m "They're just a bandage."
  2676.     mc "You say that like I'm going to hurt her..."
  2677.     m 1l "Sorry, I didn't really mean that~"
  2678.     m "If anything, she might accidentally hurt herself."
  2679.     return
  2680. # Decompiled by unrpyc: https://github.com/CensoredUsername/unrpyc
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement