This commit is contained in:
the me 2022-08-23 06:06:02 -07:00
parent b31b8ba5d7
commit 7fb465c82e
43 changed files with 159 additions and 86 deletions

View file

@ -4,7 +4,7 @@ function txt_win() {
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("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),
@ -13,7 +13,7 @@ function txt_win() {
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("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),
@ -22,9 +22,9 @@ function txt_win() {
],[
txt("いった...", REISEN.WOBBLE, SPRITEPOS.RIGHT),
txt("いった...", REISEN.WOBBLE, SPRITEPOS.RIGHT, s_black),
txt("えっと、 君は悪に見えない。", MOMIJI.CONFUSED, SPRITEPOS.LEFT),
txt("なぜうさぎは攻撃しているのか?", MOMIJI,CONFUSED),
txt("なぜうさぎは攻撃しているのか?", MOMIJI.CONFUSED),
txt("私たちは…海外旅行に行きたかったです...か?", REISEN.WOBBLE),
txt("...それは弱い噓だぞ。", MOMIJI.ANNOYED),
txt("...チェ。", REISEN.POUTING),
@ -41,5 +41,5 @@ function txt_win() {
])
endevent = function() {game_restart()};
endevent = function() {show_message(msglang("congrats! you win. bye", "おめでとう!プレイヤーの勝利!バイバイ"));game_end()};
}