This commit is contained in:
Jáchym Toušek
2017-05-15 18:41:17 +02:00
parent 66989e5a79
commit 0d0b874378
41 changed files with 20768 additions and 11716 deletions

View File

@@ -1,5 +1,14 @@
void main()
{
int AdvMode;
AdvMode = 1;
int Line_ModeSpecific;
if (AdvMode) {
Line_ModeSpecific = Line_Normal;
OutputLineAll(NULL, "", Line_ContinueAfterTyping);
} else {
Line_ModeSpecific = Line_WaitForInput;
}
//■古手神社の神主の病死
@@ -17,30 +26,34 @@ void main()
// 昭和56年6月XX日夕刊よ@
OutputLine(NULL, " 昭和56年6月XX日夕刊より",
NULL, "From the June 1981 edition", Line_WaitForInput);
OutputLineAll(NULL, "\n\n", Line_ContinueAfterTyping);
NULL, "From the June 1981 edition", Line_ModeSpecific);
if (AdvMode) { ClearMessage(); } else { OutputLineAll(NULL, "\n\n", Line_ContinueAfterTyping); }
// XX日午後10時頃、鹿骨市雛見沢村X丁目、古手神社神主のXXXXさんが不調を訴え病院で手当てを受け一時は回復したが、深夜に容態が急変、死亡した¥
if (AdvMode) { OutputLineAll("", NULL, Line_ContinueAfterTyping); }
OutputLine(NULL, " XX日午後10時頃、鹿骨市雛見沢村X丁目、古手神社神主のXXXXさんが不調を訴え病院で手当てを受け一時は回復したが、深夜に容態が急変、死亡した。",
NULL, "On the afternoon of XX around 10PM in the X district of Hinamizawa village in Shishibone prefecture, the shinto priest of the Furude shrine passed away after an existing condition he was recovering from suddenly worsened.", Line_Normal);
ClearMessage();
// 関係者の話では、当日開催されていた祭りの準備等で相当の心労があったと言う@
if (AdvMode) { OutputLineAll("", NULL, Line_ContinueAfterTyping); }
OutputLine(NULL, " 関係者の話では、当日開催されていた祭りの準備等で相当の心労があったと言う。",
NULL, "Parties close to the deceased said he was suffering from anxiety issues concerning the festival, which was to be held that day.", Line_WaitForInput);
OutputLineAll(NULL, "\n\n", Line_ContinueAfterTyping);
NULL, "Parties close to the deceased said he was suffering from anxiety issues concerning the festival, which was to be held that day.", Line_ModeSpecific);
if (AdvMode) { ClearMessage(); } else { OutputLineAll(NULL, "\n\n", Line_ContinueAfterTyping); }
// また、XXXXさんの死亡直後、妻のXXXXさんが遺書を残し行方不明になった@
if (AdvMode) { OutputLineAll("", NULL, Line_ContinueAfterTyping); }
OutputLine(NULL, " また、XXXXさんの死亡直後、妻のXXXXさんが遺書を残し行方不明になった。",
NULL, "Also, after XXXX's death, his wife XXXX went missing, leaving behind a farewell note.", Line_WaitForInput);
OutputLineAll(NULL, "\n", Line_ContinueAfterTyping);
NULL, "Also, after XXXX's death, his wife XXXX went missing, leaving behind a farewell note.", Line_ModeSpecific);
if (AdvMode) { ClearMessage(); } else { OutputLineAll(NULL, "\n", Line_ContinueAfterTyping); }
// 警察と青年団で捜索を続けているが、遺書で自殺をほのめかした鬼ヶ淵沼は地元では底なし沼として知られており難航している¥
if (AdvMode) { OutputLineAll("", NULL, Line_ContinueAfterTyping); }
OutputLine(NULL, " 警察と青年団で捜索を続けているが、遺書で自殺をほのめかした鬼ヶ淵沼は地元では底なし沼として知られており難航している。",
NULL, "The police and local youth association continued the search. However, given the presence of the farewell message and the fact that the Onigafuchi marsh is said to be bottomless, they have run into difficulties.", Line_Normal);
ClearMessage();