Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Mood] - feeling grateful ❤️ #7541

Merged
merged 8 commits into from
May 27, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
49 changes: 49 additions & 0 deletions Monika After Story/game/script-moods.rpy
Original file line number Diff line number Diff line change
Expand Up @@ -833,3 +833,52 @@ label mas_mood_relieved:
m 1hua "Now it'll be easier to move forward with a little more confidence, right?"
m 1eua "I'm excited to take those next steps forward with you."
return

init 5 python:
addEvent(
Event(
persistent._mas_mood_database,
eventlabel="mas_mood_grateful",
prompt="...grateful.",
category=[store.mas_moods.TYPE_GOOD],
unlocked=True
),
code="MOO"
)

label mas_mood_grateful:
$ chosen_nickname = mas_get_player_nickname()
m 1eub "Oh? That's nice to hear!"

m "What are you grateful for, [chosen_nickname]?{nw}"
$ _history_list.pop()
menu:
m "What are you grateful for, [chosen_nickname]?{fast}"

"For you.":
m 1ekbla "Oh, [player]...{w=0.3}Thank you so much for saying that."
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thinking we can add affection on first time of using this maybe. It's a nice compliment

m 1dkbla "It means so much to hear that I've helped you, or that I've made you happier. {w=0.2}It's what I strive for every day."
m 1hubla "I hope you know that I'm so grateful for you too."
m "I love you, [player]."
$ mas_ILY()

"For someone.":
m 1hub "Aww, that's wonderful to hear."
m "I'm really glad that you have supportive people in your life."
m 3eua "But as nice as it is for me to hear it...{w=0.3}I think you should make sure that {i}they{/i} know it too."
m "I'm sure it would really brighten their day to know that they made a difference for someone else."
m 3fua "If nothing else, you can thank them on my behalf. Anyone who makes you happier is a good person in my books."
m 1hua "But in any case, I'm really happy for you, [mas_get_player_nickname()]."

"For something.":
m 1hua "I'm glad to hear it, [mas_get_player_nickname()]."
m 3hua "Consciously taking the time to think about the good things in your life can be great for your mental health."
m 3eub "So whatever that thing might be, take the time to appreciate and enjoy it!"
m 1hublb "Thank you for sharing your happiness with me, [mas_get_player_nickname()]."

"Nothing specific.":
m 1eub "Ah, just feeling happy about life?"
m 1eua "It's nice to take a bit to reflect and feel content, isn't it?"
m 1hublb "Hmm...{w=0.2}Now that I'm thinking about it, I feel pretty grateful myself."
m "After all, I'm spending another day with my wonderful [bf]~"
return