recruitment done

This commit is contained in:
the me 2022-08-23 02:43:11 -07:00
parent 00587c8b44
commit 62f4ba5f5f
18 changed files with 660 additions and 285 deletions

View file

@ -1,26 +1,26 @@
function txt_intro() {
ARTICULATOR.state = c_null;
msg = msglang([
txt("Checkmate!", MOMIJI.SMUG),
txt("Aw man! No matter what I do, I cant seem to beat you!", NITORI.SHOCKED),
txt("Checkmate!", MOMIJI.SMUG, SPRITEPOS.LEFT, s_black),
txt("Aw man! No matter what I do, I can't seem to beat you!", NITORI.SHOCKED, SPRITEPOS.RIGHT),
txt("Hehe! You gotta plan out a lot of your moves ahead of time in Shogi.", MOMIJI.SMUG),
txt("One move leads into another, and then another, and then...", MOMIJI.HAPPY),
txt("Yeah, yeah. I dont think I can match your wit.", NITORI.ANNOYED),
txt("Yeah, yeah. I don't think I can match your wit.", NITORI.ANNOYED),
txt("Well, practice makes perfect.", MOMIJI.NEUTRAL),
txt("Why dont we play-", MOMIJI.HAPPY),
txt("Why don't we play-", MOMIJI.HAPPY),
//txt("!!! (Emphasis sound effect)", MOMIJI.ANNOYED),
txt("Someones coming.", MOMIJI.ANGRY),
txt("Someone's coming.", MOMIJI.ANGRY),
txt("Huh?", NITORI.HAPPY),
txt("Rabbits have surrounded the Kappas hideout"),
txt("Lunarians!? Theyll overrun the hideout at this rate!", NITORI.SHOCKED),
//txt("Rabbits have surrounded the Kappa's hideout"),
txt("Lunarians!? They'll overrun the hideout at this rate!", NITORI.SHOCKED),
txt("Not just the hideout, the entire mountain too!", MOMIJI.ANNOYED),
txt("Weve got to stop them!", MOMIJI.ANGRY),
txt("We've got to stop them!", MOMIJI.ANGRY),
],[
txt("つみ!", MOMIJI.SMUG),
txt("くっそー! どうしても勝てれない!", NITORI.SHOCKED),
txt("つみ!", MOMIJI.SMUG, SPRITEPOS.LEFT),
txt("くっそー! どうしても勝てれない!", NITORI.SHOCKED, SPRITEPOS.RIGHT),
txt("うふふ! 将棋では、たくさん計画を考えなきゃ。", MOMIJI.HAPPY),
txt("一つの行動が、次の行動につながり、さらに次の行動へ...", MOMIJI.HAPPY),
txt("はい、はい。私より椛の機知が強いんだ。", NITORI.ANNOYED),
@ -29,7 +29,7 @@ function txt_intro() {
//txt("!!! (Emphasis sound effect)", MOMIJI.ANNOYED),
txt("誰か来るぞ。", MOMIJI.ANGRY),
txt("え?", NITORI.HAPPY),
txt("Rabbits have surrounded the Kappas hideout"),
//txt("Rabbits have surrounded the Kappa's hideout"),
txt("月人!?このまま、あいつらはハイドアウトを侵略する!", NITORI.SHOCKED),
txt("山も!", MOMIJI.ANNOYED),
txt("我らは、月人を止められなきゃ!", MOMIJI.ANGRY),
@ -37,5 +37,5 @@ function txt_intro() {
])
endevent = c_null;
endevent = function() {ARTICULATOR.state = st_control};
}