45 lines
2.2 KiB
Plaintext
45 lines
2.2 KiB
Plaintext
function txt_win() {
|
|
ARTICULATOR.state = c_null;
|
|
music_set(mus.cutscene);
|
|
msg = msglang([
|
|
|
|
txt("Ow...", REISEN.WOBBLE, SPRITEPOS.RIGHT, s_black),
|
|
txt("Hm, You don't seem like a bad person", MOMIJI.CONFUSED, SPRITEPOS.LEFT),
|
|
txt("Why are the rabbits attacking?", MOMIJI.CONFUSED),
|
|
txt("We... We're looking to build a summer home on Earth.", REISEN.WOBBLE),
|
|
txt("You're lying.", MOMIJI.ANNOYED),
|
|
txt("...Okay, fine.", REISEN.POUTING),
|
|
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),
|
|
txt("I'm guessing Reimu and her friends will find their way to the Moon…", AYA.HAPPY),
|
|
txt("...Which leaves us to defend the surface.", AYA.HAPPY),
|
|
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),
|
|
|
|
|
|
],[
|
|
|
|
txt("いった...", REISEN.WOBBLE, SPRITEPOS.RIGHT),
|
|
txt("えっと、 君は悪に見えない。", MOMIJI.CONFUSED, SPRITEPOS.LEFT),
|
|
txt("なぜうさぎは攻撃しているのか?", MOMIJI,CONFUSED),
|
|
txt("私たちは…海外旅行に行きたかったです...か?", REISEN.WOBBLE),
|
|
txt("...それは弱い噓だぞ。", MOMIJI.ANNOYED),
|
|
txt("...チェ。", REISEN.POUTING),
|
|
txt("幻想郷に月人が引っ越すと依姫さまから聞きました", REISEN.POUTING),
|
|
txt("巨悪が月に侵略しました。", REISEN.WOBBLE),
|
|
txt("そんなわけで、私たちは移住します。", REISEN.WOBBLE),
|
|
txt("月の来襲か... ", AYA.SURPRISED, SPRITEPOS.LEFT),
|
|
txt("おそらく霊夢たちは直ぐに月に行く...", AYA.HAPPY),
|
|
txt("...そして、我らは幻想郷を守る。", AYA.HAPPY),
|
|
txt("棋士さん、出来る?", NITORI.HAPPY, SPRITEPOS.LEFT),
|
|
txt("...私は誰にも祖国を乗っ取らせない。", MOMIJI.ANGRY),
|
|
txt("よし!我らは月人を追い出す!", MOMIJI.DETERMINED),
|
|
|
|
|
|
])
|
|
|
|
endevent = function() {game_restart()};
|
|
} |