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

New topic on studying #6651

Open
wants to merge 10 commits into
base: content
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
conflicts
  • Loading branch information
multimokia committed Dec 22, 2020
commit 07c41ce7169499dc2f47e3879edebf9498c8cea4
58 changes: 57 additions & 1 deletion Monika After Story/game/script-topics.rpy
Original file line number Diff line number Diff line change
Expand Up @@ -16327,7 +16327,7 @@ init 5 python:
random=True
)
)

label monika_studying:
m 3eub "You might have guessed already, but I've always been pretty dedicated to my studies [player]."
m 3eua "It's always felt natural for me to work hard at school...{w=0.2}{nw}"
Expand Down Expand Up @@ -16485,3 +16485,59 @@ label monika_studying_notalk:
m 3rksdlb "I'm sorry, [player]. I didn't mean to pry."
m 3eua "Let's talk about something else, shall we?"
return

init 5 python:
addEvent(
Event(
persistent.event_database,
eventlabel="monika_curse_words",
category=["advice", "life"],
prompt="Curse words",
random=True
)
)

##Player swear frequency
#Swears often
define SF_OFTEN = 2
#Swears sometimes
define SF_SOMETIMES = 1
#Swears never
define SF_NEVER = 0
#Holds the swear freq of the player
default persistent._mas_pm_swear_frequency = None

label monika_curse_words:
m 3etc "Say [player], do you swear often?{nw}"
menu:
m "Say [player], do you swear often?{fast}"

"Yes.":
$ persistent._mas_pm_swear_frequency = SF_OFTEN
m 1hub "Ahaha, I can understand that, [player]."
m 3rksdlb "It's much easier to swear to get frustration or anger out of your system..."

"I do sometimes.":
$ persistent._mas_pm_swear_frequency = SF_SOMETIMES
m 3eua "Ah, I'm the same way myself."

"No, I don't swear at all.":
$ persistent._mas_pm_swear_frequency = SF_NEVER
m 1euc "I see."

m 1eua "Personally I try to avoid swearing where I can, but I'll still do it occasionally."
m 3eud "Swearing tends to have a pretty bad rap, but I've been thinking it over after looking at some studies..."
m 1esa "Honestly, I don't think swearing is actually as bad as we make it out to be after all."
m 3eua "In fact, it seems that using stronger language helps ease the pain if you hurt yourself, and can also show that you're more intelligent and honest."
m 1eud "Not to mention, swearing in conversations can make them feel both{w=0.1} a lot more casual {w=0.1}{nw}"
extend 3eub "and also more interesting!"
m 3rksdlc "That said, I think it's possible to swear {i}too much{/i}..."
m 3esd "There's a time and place for everything.{w=0.2} Swearing should be kept to more casual conversations and not put in after every word."
m 1hksdlb "If they start to become frequent in more professional environments, I think you might be overdoing it, ahaha..."
m 1eua "On that topic, I think it's pretty interesting how our language naturally shifts depending on who we're talking to."
m 4eua "For example,{w=0.2} people are much less likely to swear in front of family than with friends."
m 4eub "Also, if you pay attention when you're talking to a crowd, you'll notice that you instinctively phrase your sentences more formally!"
m 1esa "But anyway, I prefer to keep my profanity to when I'm really frustrated or upset."
m 3esd "Given the status I had, I felt like I always had to be professional and level headed, so I always made it a point to keep it to a minimum."
m 3hksdlb "But I guess it doesn't really hurt when used appropriately, ahaha!"
return "derandom"
You are viewing a condensed version of this merge commit. You can view the full changes here.