taisei/src/dialog/reimu.c

121 lines
6.7 KiB
C
Raw Normal View History

/*
* This software is licensed under the terms of the MIT-License
* See COPYING for further information.
* ---
* Copyright (c) 2011-2019, Lukas Weber <laochailan@web.de>.
2019-07-03 20:00:56 +02:00
* Copyright (c) 2012-2019, Andrei Alexeyev <akari@taisei-project.org>.
*/
#include "taisei.h"
#include "dialog_macros.h"
DIALOG_SCRIPT(reimu_stage1_pre_boss) {
LEFT("Good grief, its too early in the morning to be flying around.");
RIGHT("Hey, shrine maiden! Am I making you cold?");
LEFT("Not as much as youre just being a pest. Im too busy to play games with fairies.");
RIGHT("Thats not true! Its never too early to have fun!");
RIGHT("Prepare to catch an air conditioner cold on my ice playground!");
}
DIALOG_SCRIPT(reimu_stage1_post_boss) {
LEFT("A~ah, what a sight! Its snowing during springtime.");
LEFT("A little too cold for my taste, though. I'd rather get going.");
}
DIALOG_SCRIPT(reimu_stage2_pre_boss) {
RIGHT("I cant let you pass any further than this. Please go back down the mountain.");
LEFT("You help humans that wander around the mountain, dont you? So why are you getting in the way?");
RIGHT("I can feel misfortune leaking from this tunnel. You wont be going anywhere safe down this route so I need to stop you!");
LEFT("You should know by now that my job is taking care of dangerous things, so step aside.");
RIGHT("Im afraid not!");
}
DIALOG_SCRIPT(reimu_stage2_post_boss) {
LEFT("In the end, you only made things harder for the both of us.");
RIGHT("Im sorry, Miss Shrine Maiden! Would you like a blessing to make up for it?");
LEFT("No need. Im the luckiest person in Gensokyo, at least when its not about money.");
LEFT("If you want to help, donate to my shrine. I dont care if its cursed.");
}
DIALOG_SCRIPT(reimu_stage3_pre_boss) {
LEFT("Huh, a bug that managed to escape extermination.");
RIGHT("I heard that! ");
RIGHT("Do you really think Ill let you get away with such a callous remark?");
LEFT("Youre just an insect yōkai. What do you think youre capable of?");
RIGHT("Why, this entire incident! Youre looking at the culprit right here, right now!");
LEFT("You cant be serious. Are you just drunk on all this light?");
RIGHT("Im drunk on power! Ill prove my mettle by defeating you once and for all!");
}
DIALOG_SCRIPT(reimu_stage3_post_boss) {
LEFT("If humans get drunk from moonshine, then I guess bugs can become intoxicated by sunshine too.");
RIGHT("Ugh, my head hurts. Cant you go easy on me?");
LEFT("I dont go easy on anyone that claims to be causing an incident. But I can tell you are lying about that.");
RIGHT("Theres no need to make fun of me for that! Youll regret it if you lose later!");
RIGHT("I wont forget this humiliation!");
LEFT("Go take a nap already.");
}
DIALOG_SCRIPT(reimu_stage4_pre_boss) {
RIGHT("Halt, intruder!");
LEFT("Oh, its somebody new.");
RIGHT("No, definitely not! I could never forget you from all those years ago! That was the most intense battle of my life!");
LEFT("Hmm, nope, I dont remember fighting you. Maybe if you told me your name, I could recall faster.");
RIGHT("Unforgivable! How about I just jog your memory through terror instead?");
LEFT("Im in a hurry, and that also sounds unpleasant.");
RIGHT("You dont get a choice! Prepare to have bloody nightmares for weeks, shrine maiden!");
}
DIALOG_SCRIPT(reimu_stage4_post_boss) {
LEFT("See, I dont scare easily, so that didnt work. You should have just told me your name.");
RIGHT("I didnt think it was possible, but youre so much stronger than before!");
RIGHT("Cant you remember? Im Kurumi!");
LEFT("You dont seem like the sort that is worth remembering after several years.");
RIGHT("Waah, so mean! You were way cuter back then!");
}
DIALOG_SCRIPT(reimu_stage5_pre_boss) {
LEFT("I didnt expect someone actually respectable like you to cause me trouble for no reason.");
RIGHT("You may be the Hakurei Shrine Maiden, but Im afraid that you dont have permission from Heaven to be here.");
LEFT("What, are you saying that the gods suddenly dont think Im fit for duty anymore?");
RIGHT("No, thats not it. We already have a more suitable candidate from our concerned Celestials, and she is due to arrive instead.");
RIGHT("That means you can go home.");
LEFT("Absolutely not. Ive worked too hard to get here, so even if Id like to leave, itd be far too much wasted time.");
RIGHT("Ill compromise by offering a test instead. Defeat me, and you can take our representatives place.");
RIGHT("If you can weather the storm Im about to summon, then Ill be fully confident that you can strike down the master of this tower!");
}
DIALOG_SCRIPT(reimu_stage5_post_midboss) {
LEFT("I wonder whats gotten into that oarfish?");
}
DIALOG_SCRIPT(reimu_stage5_post_boss) {
LEFT("See? Ive been solving incidents since the beginning. There is absolutely no one more qualified than me.");
RIGHT("Youre still as unruly as ever. But you passed, and you certainly hold great power.");
RIGHT("Ill let my superiors know that the Hakurei Shrine Maiden arrived to clear up this issue.");
LEFT("Right, and Ill make sure it wont take too long. Tell them to hold tight, and maybe slip me some yen later.");
}
DIALOG_SCRIPT(reimu_stage6_pre_boss) {
LEFT("Who are you? Youre a lot less intimidating than I expected.");
RIGHT("I knew you would come here to interrupt me.");
LEFT("You seem to know who I am, just like that earlier yōkai did. I cant say the same for myself.");
RIGHT("That is because we met before in another time, when you were much younger…");
RIGHT("Back then, I was a mere guard. But then my master left Kurumi and I behind. We fell into the real world instead of Gensōkyō,");
RIGHT("and I realized that logic was far superior to the chaos of fantasy.");
LEFT("Do you really think its acceptable to threaten Gensōkyō just for some petty delusion of intelligence?");
RIGHT("An unenlightened fool like you could never see how your faith blinds you.");
LEFT("You talk big but in the end youre just a yōkai who is full of herself. It doesnt matter how smart your world is if it threatens mine.");
LEFT("Ill tear everything down all the same.");
RIGHT("Youll regret threatening my lifes work when I take your world away. Soon you will be a shrine maiden of nothing!");
}
DIALOG_SCRIPT(reimu_stage6_pre_final) {
RIGHT("Youve gotten this far… I cant believe it! But that will not matter once I show you the truth of this world, and every world.");
RIGHT("Space, time, dimensions… it all becomes clear when you understand The Theory of Everything!");
RIGHT("Prepare to see the barrier destroyed!");
}
EXPORT_DIALOG_SCRIPT(reimu)