eastern-flames/eastern flames/scripts/txt_intro/txt_intro.gml

45 lines
2.0 KiB
Plaintext
Raw Normal View History

2022-08-22 22:37:11 +00:00
function txt_intro() {
2022-08-23 09:43:11 +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("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),
2022-08-23 05:23:02 +00:00
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),
2022-08-23 09:43:11 +00:00
txt("Yeah, yeah. I don't think I can match your wit.", NITORI.ANNOYED),
2022-08-23 05:23:02 +00:00
txt("Well, practice makes perfect.", MOMIJI.NEUTRAL),
2022-08-23 09:43:11 +00:00
txt("Why don't we play-", MOMIJI.HAPPY),
2022-08-23 05:23:02 +00:00
//txt("!!! (Emphasis sound effect)", MOMIJI.ANNOYED),
2022-08-23 09:43:11 +00:00
txt("Someone's coming.", MOMIJI.ANGRY),
2022-08-23 05:23:02 +00:00
txt("Huh?", NITORI.HAPPY),
2022-08-23 09:43:11 +00:00
//txt("Rabbits have surrounded the Kappa's hideout"),
txt("Lunarians!? They'll overrun the hideout at this rate!", NITORI.SHOCKED),
2022-08-23 05:23:02 +00:00
txt("Not just the hideout, the entire mountain too!", MOMIJI.ANNOYED),
2022-08-23 09:43:11 +00:00
txt("We've got to stop them!", MOMIJI.ANGRY),
2022-08-22 22:37:11 +00:00
],[
2022-08-23 13:06:02 +00:00
txt("つみ!", MOMIJI.SMUG, SPRITEPOS.LEFT, s_black),
2022-08-23 09:43:11 +00:00
txt("くっそー! どうしても勝てれない!", NITORI.SHOCKED, SPRITEPOS.RIGHT),
2022-08-23 05:23:02 +00:00
txt("うふふ! 将棋では、たくさん計画を考えなきゃ。", MOMIJI.HAPPY),
txt("一つの行動が、次の行動につながり、さらに次の行動へ...", MOMIJI.HAPPY),
txt("はい、はい。私より椛の機知が強いんだ。", NITORI.ANNOYED),
txt("習うより慣れろ。", MOMIJI.NEUTRAL),
txt("それでも、もういち...", MOMIJI.HAPPY),
//txt("!!! (Emphasis sound effect)", MOMIJI.ANNOYED),
txt("誰か来るぞ。", MOMIJI.ANGRY),
txt("え?", NITORI.HAPPY),
2022-08-23 09:43:11 +00:00
//txt("Rabbits have surrounded the Kappa's hideout"),
2022-08-23 05:23:02 +00:00
txt("月人!?このまま、あいつらはハイドアウトを侵略する!", NITORI.SHOCKED),
txt("山も!", MOMIJI.ANNOYED),
txt("我らは、月人を止められなきゃ!", MOMIJI.ANGRY),
2022-08-22 22:37:11 +00:00
])
2022-08-23 09:54:52 +00:00
endevent = function() {
ARTICULATOR.state = st_control;
music_set(mus.map);
};
2022-08-22 22:37:11 +00:00
}