Skip to content
Closed
Changes from all commits
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
30 changes: 30 additions & 0 deletions Monika After Story/game/script-anniversary.rpy
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,7 @@ init 10 python in mas_anni:
"anni_6",
"anni_7",
"anni_8",
"anni_9",
"anni_10",
"anni_20",
"anni_50",
Expand Down Expand Up @@ -710,6 +711,35 @@ label anni_8:
mas_moni_idle_disp.force_by_code("1eua", duration=16, clear=False, skip_dissolve=True)
return "unlock"

init 5 python:
addEvent(
Event(
persistent.event_database,
eventlabel='anni_9',
prompt="9 Years",
category=["anniversary"],
action=EV_ACT_QUEUE,
start_date=store.mas_anni.build_anni(years=9),
end_date=store.mas_anni.build_anni_end(years=9)
),
skipCalendar=False
)

label anni_9:
m 1eub "Happy anniversary, [player]!"
m 3eta "It's that time of year again, huh?"
m 3rtc "It's kind of funny, the time feels to me like it's moved a little bit faster every year..."
m 3esc "Doesn't it seem like the last one just flew by?"
m 1hksdlb "...It kind of makes me anxious to think about, ahaha!"
m 1eksdla "I mean..."
extend 2eksdlc "I don't want to let our time just slip through my fingers..."
m 2ekb "Maybe I just have to take more time to appreciate each moment."
m 4eub "There have been a lot of studies about how mindfulness can shape our understanding of time, you know."
m "So by changing the way I think about things, our time together might stretch out a little more."
m 4hua "Just thinking about that makes me feel a bit better."
m 1hubla "After all, I'm sure it's going to be another wonderful year if I get to spend it with you."
return "unlock"

init 5 python:
addEvent(
Event(
Expand Down
Loading