eastern-flames/eastern flames/scripts/txt_win/txt_win.gml

45 lines
2.3 KiB
Plaintext
Raw Permalink Normal View History

2022-08-22 22:37:11 +00:00
function txt_win() {
2022-08-23 09:25:43 +00:00
ARTICULATOR.state = c_null;
2022-08-23 09:54:52 +00:00
music_set(mus.cutscene);
2022-08-22 22:37:11 +00:00
msg = msglang([
2022-08-23 09:43:11 +00:00
txt("Ow...", REISEN.WOBBLE, SPRITEPOS.RIGHT, s_black),
2022-08-23 13:06:02 +00:00
txt("Hm, You don't seem like a bad person.", MOMIJI.CONFUSED, SPRITEPOS.LEFT),
2022-08-23 05:23:02 +00:00
txt("Why are the rabbits attacking?", MOMIJI.CONFUSED),
2022-08-23 09:43:11 +00:00
txt("We... We're looking to build a summer home on Earth.", REISEN.WOBBLE),
txt("You're lying.", MOMIJI.ANNOYED),
2022-08-23 05:23:02 +00:00
txt("...Okay, fine.", REISEN.POUTING),
2022-08-23 09:43:11 +00:00
txt("Lady Yorihime told me that we're relocating to Gensokyo.", REISEN.POUTING),
txt("There's a great evil that's taken over the Moon.", REISEN.WOBBLE),
txt("So, we're going to be staying here.", REISEN.WOBBLE),
txt("An invasion from the Lunar Capital...", AYA.SURPRISED, SPRITEPOS.LEFT),
2022-08-23 13:06:02 +00:00
txt("I'm guessing Reimu and her friends will find their way to the Moon...", AYA.HAPPY),
2022-08-23 05:23:02 +00:00
txt("...Which leaves us to defend the surface.", AYA.HAPPY),
2022-08-23 09:43:11 +00:00
txt("Think you're up to it, miss Shogi master?", NITORI.HAPPY, SPRITEPOS.LEFT),
txt("...I won't let anyone take over my home.", MOMIJI.ANGRY),
txt("Okay! Let's drive these Lunarians out of here!", MOMIJI.DETERMINED),
2022-08-23 05:23:02 +00:00
2022-08-22 22:37:11 +00:00
],[
2022-08-23 13:06:02 +00:00
txt("いった...", REISEN.WOBBLE, SPRITEPOS.RIGHT, s_black),
2022-08-23 09:43:11 +00:00
txt("えっと、 君は悪に見えない。", MOMIJI.CONFUSED, SPRITEPOS.LEFT),
2022-08-23 13:06:02 +00:00
txt("なぜうさぎは攻撃しているのか?", MOMIJI.CONFUSED),
2022-08-23 05:23:02 +00:00
txt("私たちは…海外旅行に行きたかったです...か?", REISEN.WOBBLE),
txt("...それは弱い噓だぞ。", MOMIJI.ANNOYED),
txt("...チェ。", REISEN.POUTING),
txt("幻想郷に月人が引っ越すと依姫さまから聞きました", REISEN.POUTING),
txt("巨悪が月に侵略しました。", REISEN.WOBBLE),
txt("そんなわけで、私たちは移住します。", REISEN.WOBBLE),
2022-08-23 09:43:11 +00:00
txt("月の来襲か... ", AYA.SURPRISED, SPRITEPOS.LEFT),
2022-08-23 05:23:02 +00:00
txt("おそらく霊夢たちは直ぐに月に行く...", AYA.HAPPY),
txt("...そして、我らは幻想郷を守る。", AYA.HAPPY),
2022-08-23 09:43:11 +00:00
txt("棋士さん、出来る?", NITORI.HAPPY, SPRITEPOS.LEFT),
2022-08-23 05:23:02 +00:00
txt("...私は誰にも祖国を乗っ取らせない。", MOMIJI.ANGRY),
txt("よし!我らは月人を追い出す!", MOMIJI.DETERMINED),
2022-08-22 22:37:11 +00:00
])
2022-08-23 13:06:02 +00:00
endevent = function() {show_message(msglang("congrats! you win. bye", "おめでとう!プレイヤーの勝利!バイバイ"));game_end()};
2022-08-22 22:37:11 +00:00
}