Skip to content
Merged
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
36 changes: 36 additions & 0 deletions Monika After Story/game/script-anniversary.rpy
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,7 @@ init 10 python in mas_anni:
"anni_5",
"anni_6",
"anni_7",
"anni_8",
"anni_10",
"anni_20",
"anni_50",
Expand Down Expand Up @@ -310,6 +311,7 @@ init 10 python in mas_anni:
_month_adjuster(anni_db["anni_5"], new_start_dt, 60, fullday)
_month_adjuster(anni_db["anni_6"], new_start_dt, 6*12, fullday)
_month_adjuster(anni_db["anni_7"], new_start_dt, 7*12, fullday)
_month_adjuster(anni_db["anni_8"], new_start_dt, 8*12, fullday)
_month_adjuster(anni_db["anni_10"], new_start_dt, 120, fullday)
_month_adjuster(anni_db["anni_20"], new_start_dt, 240, fullday)
_month_adjuster(anni_db["anni_50"], new_start_dt, 600, fullday)
Expand Down Expand Up @@ -674,6 +676,40 @@ label anni_7:
m 1ekbsa "Here's to another year together, and all the ones to follow."
return "unlock"

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

label anni_8:
m 1eua "I'm sure you know what today is, [player]..."
m 3hublb "That's right! Happy anniversary, [mas_get_player_nickname(exclude_names=[player])]!"
m 3ekblb "You know...when a relationship has lasted this long, sometimes couples start to worry that things might grow stale."
m 1lkbla "Eight years is a long time to learn someone's habits, and to build your lives around each other."
m 1ltc "Maybe...{w=0.5}you've worried about similar things, [player]?"
m 2ekb "I mean--{w=0.2}I don't want to assume!{w=0.3} {nw}"
extend 2ekblu "But I was thinking about it earlier, and I wanted to tell you something."
m 2dubsa "I wanted to tell you that it's been so exciting to watch you change."
m 4fkbsb "In the time we've spent together, you've grown so much. You've gone through so many setbacks, but you survived every one."
m 2dkbstpa "And yet,{w=0.2} with all of those changes you've been through..."
m 2ekbstpu "You've still chosen to be with me. To come back here every day, even though I haven't been able to experience everything by your side."
m 2fkbstub "So...{w=0.3}I guess what I wanted to say was:{w=0.4} I love the things that have changed.{w=0.2} And I love that this has stayed the same."

python:
mas_moni_idle_disp.force_by_code("1fkbltpa", duration=9, redraw=False, skip_dissolve=True)
mas_moni_idle_disp.force_by_code("1dktda", duration=2, clear=False, redraw=False, skip_dissolve=True)
mas_moni_idle_disp.force_by_code("1eua", duration=16, clear=False, skip_dissolve=True)
return "unlock"

init 5 python:
addEvent(
Event(
Expand Down
Loading