-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathscript-chaos.rpy
80 lines (73 loc) · 2.74 KB
/
script-chaos.rpy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# "Chaos" by Logokas
# Super Monika sprite by UNKNOWN
# Voice of Monika by AngryHedgehog - https://www.youtube.com/channel/UCOd2-46VpUUEOmUOxLJHAuA/featured
# Voice of Sayori & Natsuki by Yagamirai10
init -200 python:
skit_chaos = Skit(
"Chaos", # Title
"chaos", # Label
"club_date", #Thumbnail
"@Logokas#5981, /u/Logokas"
)
skits.append(skit_chaos)
image monika 6 = im.Composite((960, 960), (0, 0), "mod_assets/chaos/chaos_m_super-monika.png")
label chaos(preserve_transition=True):
scene bg club_day
if preserve_transition == True:
with dissolve_scene_full
play music t5
show sayori 1d zorder 2 at i33
voice "mod_assets/chaos/chaos_s01.wav"
s "Uh, Monika?"
voice "mod_assets/chaos/chaos_s02.wav"
s "The..Club and I were wondering.."
voice "mod_assets/chaos/chaos_s03.wav"
s 1h "What're those colored stones you've been using to make this place go funny lately?"
show monika 1b zorder 3 at l32
voice "mod_assets/chaos/chaos_m01.wav"
m "Ahaha!"
show monika 3a zorder 3 at f32
voice "mod_assets/chaos/chaos_m02.wav"
m "You mean, the Chaos Emeralds?"
show monika 3a zorder 3 at t32
show sayori 1h zorder 2 at f33
voice "mod_assets/chaos/chaos_s04.wav"
s "Uh..\"{space=5000}{w=0.5}{nw}"
show sayori 1h zorder 2 at t33
show monika 1a zorder 3 at f32
voice "mod_assets/chaos/chaos_m03.wav"
m "I'm going to assume you mean the Chaos Emeralds."
show monika 5a zorder 3 at hf32
voice "mod_assets/chaos/chaos_m04.wav"
m "If that's what you're wondering about, I've got all of them, right here!"
#Monika Shifts to Super Monika
show white zorder 4:
alpha 0.6
linear 0.25 alpha 0.0
play sound "mod_assets/chaos/chaos_sfx01.wav"
show monika 6 zorder 3 at h32
pause 1
show sayori 4o zorder 2 at hf33
voice "mod_assets/chaos/chaos_s05.wav"
s "Whoa!"
#use forced dialogue movement
show natsuki 1o zorder 1 at l31
voice "mod_assets/chaos/chaos_n01.wav"
n "Are you fucking serious?! You can't just-\"{space=5000}{w=1.45}{nw}"
show monika 6 zorder 3 at hf32
stop music fadeout 1.5
play sound "mod_assets/chaos/chaos_sfx02.wav"
voice "mod_assets/chaos/chaos_m05.wav"
m "Chaos Delete!\"{space=5000}{w=0.75}{nw}"
show monika 6 zorder 3 at t32
show natsuki scream zorder 1 at hf31
voice "mod_assets/chaos/chaos_n02.wav"
n "Wait no no NO NO NO-!\"{space=5000}{w=0.4}{nw}"
#Cut to black with an explosion sound
window hide(None)
scene black
pause 3
# Remove the glitch intro of the transition as it's a black screen, so you wouldn't be able to see it anyway.
if preserve_transition == False:
$ transition_glitch_intro = False
return