eastern-flames/eastern flames/scripts/txt_nitoriytkn/txt_nitoriytkn.gml

31 lines
1.4 KiB
Plaintext
Raw Normal View History

2022-08-22 22:37:11 +00:00
function txt_nitoriytkn() {
2022-08-23 09:25:43 +00:00
ARTICULATOR.state = c_null;
2022-08-22 22:37:11 +00:00
msg = msglang([
2022-08-23 09:43:11 +00:00
txt("Aaah!", TAKANE.SURPRISED, SPRITEPOS.RIGHT),
txt("A Yamawaro! Gah, I thought we told you to stay out of our territory!", NITORI.ANGRY, SPRITEPOS.RIGHT),
txt("Hey! You have Scouts down by our base too, don'tcha!?", TAKANE.ANGRY),
txt("T-That's confidential!",NITORI.SHOCKED),
txt("...I guess this doesn't matter right now!", NITORI.ANNOYED),
2022-08-23 05:23:02 +00:00
txt("Listen, if these rabbits overrun us, both the river and mountain Kappa will be toast.", NITORI.ANNOYED),
txt("Help us take them out!", NITORI.ANGRY),
txt("A River Kappa and a Yamawaro side by side...", TAKANE.REASONING),
2022-08-23 09:43:11 +00:00
txt("Well, if it's our only way out of this, then sure!", TAKANE.ANGRY),
2022-08-23 05:23:02 +00:00
2022-08-22 22:37:11 +00:00
],[
2022-08-23 09:43:11 +00:00
txt("うわあああ!", TAKANE.SURPRISED, SPRITEPOS.RIGHT),
txt("山童!?ガ!出て行くと言っただろ!", NITORI.ANGRY, SPRITEPOS.RIGHT),
2022-08-23 05:23:02 +00:00
txt("ふん!河童の諜すこと、もう知っている!", TAKANE.ANGRY),
txt("ち... 違う!", NITORI.SHOCKED),
txt("…今、構わない!", NITORI.ANNOYED),
txt("ウサギに乗っ取られたら、河童と山童は破壊される!", NITORI.ANNOYED),
txt("私たちを参加しろ!", NITORI.ANGRY),
txt("河童と山童...", TAKANE.REASONING),
txt("...もう知らん!参加するよ。", TAKANE.ANGRY),
2022-08-22 22:37:11 +00:00
])
2022-08-23 10:09:17 +00:00
endevent = function() {ARTICULATOR.state = st_control; se_play(se_recruit);};
2022-08-22 22:37:11 +00:00
}