eastern-flames/eastern flames/scripts/txt_aya/txt_aya.gml

22 lines
549 B
Plaintext
Raw Normal View History

2022-08-22 22:37:11 +00:00
function txt_aya() {
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("Ayaya!", AYA.SURPRISED, SPRITEPOS.RIGHT),
2022-08-22 22:37:11 +00:00
txt("Stop right there!"),
2022-08-23 05:23:02 +00:00
txt("I was flying around to try to find a scoop!", AYA.SURPRISED),
2022-08-23 09:43:11 +00:00
txt("What's going on!?", AYA.SURPRISED),
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("あやや!", AYA.SURPRISED, SPRITEPOS.RIGHT),
2022-08-23 05:23:02 +00:00
txt("フリーズ!"),
txt("一人で飛んで記事を見つけたかったんだよ!", AYA.SURPRISED),
txt("何これ!?", AYA.SURPRISED),
2022-08-22 22:37:11 +00:00
])
2022-08-23 09:43:11 +00:00
endevent = function() {ARTICULATOR.state = st_control};
2022-08-22 22:37:11 +00:00
}