diff --git a/02.py b/02.py new file mode 100644 index 0000000..c14ca2e --- /dev/null +++ b/02.py @@ -0,0 +1,35 @@ +import json +import os + + +def build_translation_dict(folder): + en_path = os.path.join(folder, "en.json") + zh_path = os.path.join(folder, "zh_CN.json") + out_path = os.path.join(folder, "zh_CN_new.json") + + # 加载 JSON 文件 + with open(en_path, "r", encoding="utf-8") as f: + en_data = json.load(f) + + with open(zh_path, "r", encoding="utf-8") as f: + zh_data = json.load(f) + + result = {} + + for key, en_value in en_data.items(): + zh_value = zh_data.get(key, "") + if zh_value == "" or zh_value == en_value: + result[key] = "" + else: + result[key] = zh_value + + # 写入新的 zh_CN_new.json 文件 + with open(out_path, "w", encoding="utf-8") as f: + json.dump(result, f, ensure_ascii=False, indent=4) + + print(f"已输出文件: {out_path}") + + +# 示例调用 +if __name__ == "__main__": + build_translation_dict("text_original/ch2") # 当前目录下执行,可替换为其他路径 diff --git a/text_original/ch1/zh_CN.json b/text_original/ch1/zh_CN.json index 4ffbbda..162f1fd 100644 --- a/text_original/ch1/zh_CN.json +++ b/text_original/ch1/zh_CN.json @@ -13,29 +13,29 @@ "DEVICE_CHOICE_slash_Create_0_gml_96_0": "结束", "DEVICE_CHOICE_slash_Other_10_gml_13_0": "撤销", "DEVICE_CHOICE_slash_Other_10_gml_15_0": "结束", - "DEVICE_CONTACT_slash_Create_0_gml_23_0": "CONTACT", - "DEVICE_CONTACT_slash_Other_10_gml_1_0": "SUSIE", - "DEVICE_CONTACT_slash_Other_10_gml_2_0": "NOELLE", - "DEVICE_CONTACT_slash_Other_10_gml_3_0": "KRIS", - "DEVICE_CONTACT_slash_Other_10_gml_4_0": "TORIEL", - "DEVICE_CONTACT_slash_Other_10_gml_5_0": "ASRIEL", - "DEVICE_CONTACT_slash_Other_10_gml_6_0": "ASGORE", - "DEVICE_CONTACT_slash_Other_10_gml_7_0": "SANS", - "DEVICE_CONTACT_slash_Other_10_gml_8_0": "PAPYRUS", - "DEVICE_CONTACT_slash_Other_10_gml_9_0": "ALPHYS", - "DEVICE_CONTACT_slash_Other_10_gml_10_0": "UNDYNE", - "DEVICE_CONTACT_slash_Other_10_gml_11_0": "RUDY", - "DEVICE_CONTACT_slash_Other_10_gml_12_0": "BERDLY", - "DEVICE_CONTACT_slash_Other_10_gml_13_0": "CATTY", - "DEVICE_CONTACT_slash_Other_10_gml_14_0": "CATTI", - "DEVICE_CONTACT_slash_Other_10_gml_15_0": "BRATTY", - "DEVICE_CONTACT_slash_Other_10_gml_16_0": "GERSON", - "DEVICE_CONTACT_slash_Other_10_gml_17_0": "JOCKINGTON", - "DEVICE_CONTACT_slash_Other_10_gml_18_0": "QC", + "DEVICE_CONTACT_slash_Create_0_gml_23_0": "", + "DEVICE_CONTACT_slash_Other_10_gml_1_0": "", + "DEVICE_CONTACT_slash_Other_10_gml_2_0": "", + "DEVICE_CONTACT_slash_Other_10_gml_3_0": "", + "DEVICE_CONTACT_slash_Other_10_gml_4_0": "", + "DEVICE_CONTACT_slash_Other_10_gml_5_0": "", + "DEVICE_CONTACT_slash_Other_10_gml_6_0": "", + "DEVICE_CONTACT_slash_Other_10_gml_7_0": "", + "DEVICE_CONTACT_slash_Other_10_gml_8_0": "", + "DEVICE_CONTACT_slash_Other_10_gml_9_0": "", + "DEVICE_CONTACT_slash_Other_10_gml_10_0": "", + "DEVICE_CONTACT_slash_Other_10_gml_11_0": "", + "DEVICE_CONTACT_slash_Other_10_gml_12_0": "", + "DEVICE_CONTACT_slash_Other_10_gml_13_0": "", + "DEVICE_CONTACT_slash_Other_10_gml_14_0": "", + "DEVICE_CONTACT_slash_Other_10_gml_15_0": "", + "DEVICE_CONTACT_slash_Other_10_gml_16_0": "", + "DEVICE_CONTACT_slash_Other_10_gml_17_0": "", + "DEVICE_CONTACT_slash_Other_10_gml_18_0": "", "DEVICE_CONTACT_slash_Step_0_gml_5_0": "^9 ^8 %", "DEVICE_CONTACT_slash_Step_0_gml_6_0": "你^6&听得到吗^6?\\M1^6 %", "DEVICE_CONTACT_slash_Step_0_gml_7_0": "^6 \\M0我^6们& 连接上了吗^6?\\M1 ^6 ^6 %%", - "DEVICE_CONTACT_slash_Step_0_gml_8_0": "\\M0...", + "DEVICE_CONTACT_slash_Step_0_gml_8_0": "", "DEVICE_CONTACT_slash_Step_0_gml_33_0": "\\M0太棒了^4。\\M1 ^6 %", "DEVICE_CONTACT_slash_Step_0_gml_34_0": "^6 \\M0真^4是& 太棒了^4。\\M1 ^6 %", "DEVICE_CONTACT_slash_Step_0_gml_35_0": "\\M2 \\M0  现在..^4. \\M1 ^7 %", @@ -66,7 +66,7 @@ "DEVICE_CONTACT_slash_Step_0_gml_293_0": "冰的", "DEVICE_CONTACT_slash_Step_0_gml_323_0": "\\M0 %", "DEVICE_CONTACT_slash_Step_0_gml_324_0": "你最喜欢的&血型?", - "DEVICE_CONTACT_slash_Step_0_gml_344_0": "AB", + "DEVICE_CONTACT_slash_Step_0_gml_344_0": "", "DEVICE_CONTACT_slash_Step_0_gml_381_0": "\\M0 %", "DEVICE_CONTACT_slash_Step_0_gml_382_0": "它最喜欢&哪种颜色?", "DEVICE_CONTACT_slash_Step_0_gml_401_0": "红", @@ -97,7 +97,7 @@ "DEVICE_CONTACT_slash_Step_0_gml_664_0": "\\M0明白了^3。\\M1 ^5 %%", "DEVICE_CONTACT_slash_Step_0_gml_697_0": "\\M0 %", "DEVICE_CONTACT_slash_Step_0_gml_698_0": "为你的容器起名。", - "DEVICE_CONTACT_slash_Step_0_gml_714_0": "GASTER", + "DEVICE_CONTACT_slash_Step_0_gml_714_0": "", "DEVICE_CONTACT_slash_Step_0_gml_729_0": "\\M0我们叫它^4&“~1”。^6 \\M1 ^5 %", "DEVICE_CONTACT_slash_Step_0_gml_730_0": "\\M0  那么它^3的&  创造者呢^3?\\M1 ^5 %%", "DEVICE_CONTACT_slash_Step_0_gml_734_0": "\\M0\"~1\"。^6 \\M1 ^5 %", @@ -105,7 +105,7 @@ "DEVICE_CONTACT_slash_Step_0_gml_736_0": "\\M0  那么它^3的&  创造者呢^3?\\M1 ^5 %%", "DEVICE_CONTACT_slash_Step_0_gml_755_0": "\\M0 %", "DEVICE_CONTACT_slash_Step_0_gml_756_0": "^1   你自己的名字。", - "DEVICE_CONTACT_slash_Step_0_gml_770_0": "GASTER", + "DEVICE_CONTACT_slash_Step_0_gml_770_0": "", "DEVICE_CONTACT_slash_Step_0_gml_785_0": "\\M0\"~1\"。^6 \\M1 ^5 %", "DEVICE_CONTACT_slash_Step_0_gml_786_0": "\\M0太棒了^3。\\M1 ^5 %", "DEVICE_CONTACT_slash_Step_0_gml_787_0": "\\M0真^3是太棒了^3。\\M1 ^5 %%", @@ -127,19 +127,19 @@ "DEVICE_CONTACT_slash_Step_0_gml_928_0": "\\M0 FIRST^3.\\M1 ^6 %", "DEVICE_CONTACT_slash_Step_0_gml_929_0": "\\M0 %", "DEVICE_CONTACT_slash_Step_0_gml_930_0": "^2 ARE YOU&PHOTOSENSITIVE? ^6 ^6", - "DEVICE_FAILURE_slash_Create_0_gml_10_0": "THE DEATH", + "DEVICE_FAILURE_slash_Create_0_gml_10_0": "", "DEVICE_FAILURE_slash_Step_0_gml_10_0": "\\M0 看来你已经到达了^6& &    一个结局。/%", "DEVICE_FAILURE_slash_Step_0_gml_28_0": "\\M0 你还想再试& 一次吗?", "DEVICE_FAILURE_slash_Step_0_gml_32_0": "\\M0 你还想坚持下去吗?", "DEVICE_FAILURE_slash_Step_0_gml_68_0": " 那么,未来& 掌握在你的手中。", - "DEVICE_FAILURE_slash_Step_0_gml_95_0": "THE DARK", + "DEVICE_FAILURE_slash_Step_0_gml_95_0": "", "DEVICE_FAILURE_slash_Step_0_gml_103_0": "\\M0        那么^5,&   笼罩世界的黑暗^5 &     将永不消散。/%", - "DEVICE_MENU_slash_Create_0_gml_8_0": "CONTACT", - "DEVICE_MENU_slash_Create_0_gml_17_0": "DELTARUNE", + "DEVICE_MENU_slash_Create_0_gml_8_0": "", + "DEVICE_MENU_slash_Create_0_gml_17_0": "", "DEVICE_MENU_slash_Create_0_gml_97_0": "[空白]", - "DEVICE_MENU_slash_Create_0_gml_107_0": "FILE0", - "DEVICE_MENU_slash_Create_0_gml_112_0": "FILE1", - "DEVICE_MENU_slash_Create_0_gml_117_0": "FILE2", + "DEVICE_MENU_slash_Create_0_gml_107_0": "", + "DEVICE_MENU_slash_Create_0_gml_112_0": "", + "DEVICE_MENU_slash_Create_0_gml_117_0": "", "DEVICE_MENU_slash_Draw_0_gml_116_0": "继续", "DEVICE_MENU_slash_Draw_0_gml_116_1": "返回", "DEVICE_MENU_slash_Draw_0_gml_117_0": "开始", @@ -181,7 +181,7 @@ "DEVICE_MENU_slash_Draw_0_gml_225_0": "选择粘贴的目标。", "DEVICE_MENU_slash_Draw_0_gml_226_0": "这个文件将被覆盖。", "DEVICE_MENU_slash_Draw_0_gml_227_0": "选择要删除的对象。", - "DEVICE_MENU_slash_Step_0_gml_35_0": "THE DARK", + "DEVICE_MENU_slash_Step_0_gml_35_0": "", "DEVICE_MENU_slash_Step_0_gml_74_0": "与镜像完全相符。", "DEVICE_MENU_slash_Step_0_gml_77_0": "真是个有趣的现象。", "DEVICE_MENU_slash_Step_0_gml_86_0": "真是个有趣的现象。", @@ -203,14 +203,14 @@ "DEVICE_MENU_slash_Step_0_gml_289_0": "但它已经不存在了。", "DEVICE_MENU_slash_Step_0_gml_292_0": "然而并没有可以清除的东西。", "DEVICE_MENU_slash_Step_0_gml_294_0": "没有可以清除的东西。", - "PROCESS_DOG_slash_Create_0_gml_12_0": "DOGTARUNE", - "PROCESS_LOGO_slash_Draw_0_gml_37_0": "DELTARUNE", + "PROCESS_DOG_slash_Create_0_gml_12_0": "", + "PROCESS_LOGO_slash_Draw_0_gml_37_0": "", "UNUSED_slash_UNUSED_gml_1_0": "哪儿...", "UNUSED_slash_UNUSED_gml_2_0": "我在哪儿?", "UNUSED_slash_UNUSED_gml_3_0": "嗨...?有人吗...?", "UNUSED_slash_UNUSED_gml_4_0": "这...这里有人吗...?", "UNUSED_slash_UNUSED_gml_5_0": "请问有人在吗?谁都行?有人听得见我说话吗?", - "UNUSED_slash_UNUSED_gml_6_0": "...", + "UNUSED_slash_UNUSED_gml_6_0": "", "UNUSED_slash_UNUSED_gml_7_0": "黑。", "UNUSED_slash_UNUSED_gml_8_0": "这里好黑。", "UNUSED_slash_UNUSED_gml_9_0": "谁来都好,是谁都行,如果你能听见...", @@ -223,8 +223,8 @@ "obj_alphysalley_event_slash_Step_0_gml_29_0": "\\E5* 我可是开明的老师^1,&你知道吧。&你不会有麻烦的。/", "obj_alphysalley_event_slash_Step_0_gml_30_0": "\\E1* .../", "obj_alphysalley_event_slash_Step_0_gml_31_0": "\\E4* 总-总之^1,&你有什么困难尽管告诉我.../%", - "obj_battlecontroller_slash_Draw_0_gml_171_0": "% TP", - "obj_battlecontroller_slash_Draw_0_gml_280_0": "% TP", + "obj_battlecontroller_slash_Draw_0_gml_171_0": "", + "obj_battlecontroller_slash_Draw_0_gml_280_0": "", "obj_battlecontroller_slash_Step_0_gml_40_0": "* 你胜利了^1!&* 获得 ~1 EXP 和 ~2 D$。/%", "obj_bloxer_enemy_slash_Draw_0_gml_141_0": "(疲惫)", "obj_bloxer_enemy_slash_Step_0_gml_11_0": "吼...!&你打扰到我&锻炼了...!", @@ -469,10 +469,10 @@ "obj_cloverpuzzle_event_slash_Step_0_gml_80_0": "* 一起来给我过生日吧~!&* 好啊^1,来相互伤害啊!&* 噢^1,对此我真的非常抱歉...!/%", "obj_cloverpuzzle_event_slash_Step_0_gml_85_0": "* 噢^1,你们不知道今天是什么日子^1?&* 你是说你们居然忘记了!^1?&* 没关系的^1,我们又不熟。/", "obj_cloverpuzzle_event_slash_Step_0_gml_86_0": "* 今天是我们的生日~^1!耶~^1!&* 我会让你后悔的^1!&* 噢,真是太对不起了.../%", - "obj_clubsenemy_old_slash_Draw_0_gml_6_0": "(Tired)", - "obj_clubsenemy_old_slash_Step_0_gml_11_0": "Nice mouth", - "obj_clubsenemy_old_slash_Step_0_gml_12_0": "Anger mouth", - "obj_clubsenemy_old_slash_Step_0_gml_13_0": "Smart Mouth", + "obj_clubsenemy_old_slash_Draw_0_gml_6_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_11_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_12_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_13_0": "", "obj_clubsenemy_old_slash_Step_0_gml_17_0": "Nice to&meet you!", "obj_clubsenemy_old_slash_Step_0_gml_18_0": "Die!&Die!&Die!", "obj_clubsenemy_old_slash_Step_0_gml_19_0": "Please&ignore&them.", @@ -525,16 +525,16 @@ "obj_clubsenemy_old_slash_Step_0_gml_146_0": "Ouchy!&That hurts!", "obj_clubsenemy_old_slash_Step_0_gml_147_0": "Suck it up,&idiot!", "obj_clubsenemy_old_slash_Step_0_gml_148_0": "(We're&fighting&again!?)", - "obj_clubsenemy_old_slash_Step_0_gml_204_0": "* Clover flashes a trio of terrible smiles.", - "obj_clubsenemy_old_slash_Step_0_gml_205_0": "* Clover is bickering with herselves.", - "obj_clubsenemy_old_slash_Step_0_gml_206_0": "* Clover is whispering about cute boys.", - "obj_clubsenemy_old_slash_Step_0_gml_207_0": "* Clover is arguing about whose toothbrush is whose.", - "obj_clubsenemy_old_slash_Step_0_gml_208_0": "* Clover hums like an out-of-tune choir.", - "obj_clubsenemy_old_slash_Step_0_gml_209_0": "* Smells like clover and dew.", - "obj_clubsenemy_old_slash_Step_0_gml_210_0": "* Clover seems TIRED of arguing so much.", - "obj_clubsenemy_old_slash_Step_0_gml_211_0": "* Clover starts to look wilted.", - "obj_clubsenemy_old_slash_Step_0_gml_212_0": "* Clover seems to be getting along with herselves.", - "obj_clubsenemy_old_slash_Step_0_gml_213_0": "* Clover's harmony was shattered by violence.", + "obj_clubsenemy_old_slash_Step_0_gml_204_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_205_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_206_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_207_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_208_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_209_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_210_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_211_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_212_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_213_0": "", "obj_clubsenemy_old_slash_Step_0_gml_247_0": "* CLOVER - AT 8 DF 2&* Two heads are better than one^1!&* Three..^1. maybe not./%", "obj_clubsenemy_old_slash_Step_0_gml_261_0": "* You brought up the topic of POLITICS^1.&* CLOVER started to argue./%", "obj_clubsenemy_old_slash_Step_0_gml_269_0": "* You brought up the topic of RELIGION^1.&* CLOVER started to argue./%", @@ -547,8 +547,8 @@ "obj_clubsenemy_old_slash_Step_0_gml_340_0": "* You brought up the topic of GAMES^1.&* CLOVER started to argue./%", "obj_clubsenemy_old_slash_Step_0_gml_354_0": "* You and Ralsei warned Clover about Susie^1.&* The enemy went on guard.../%", "obj_clubsenemy_old_slash_Step_0_gml_356_0": "* You and Ralsei warned the enemies about Susie^1.&* Everyone went on guard./%", - "obj_clubsenemy_old_slash_Step_0_gml_359_0": "(Warned)", - "obj_clubsenemy_old_slash_Step_0_gml_377_0": "(Tired)", + "obj_clubsenemy_old_slash_Step_0_gml_359_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_377_0": "", "obj_clubsenemy_slash_Draw_0_gml_6_0": "(疲惫)", "obj_clubsenemy_slash_Step_0_gml_11_0": "善良的嘴", "obj_clubsenemy_slash_Step_0_gml_12_0": "愤怒的嘴", @@ -612,19 +612,19 @@ "obj_clubsenemy_slash_Step_0_gml_314_0": "(疲惫)", "obj_credits_slash_Step_0_gml_13_0": "送走黯淡的斜阳", "obj_credits_slash_Step_0_gml_19_0": "送走黯淡的斜阳", - "obj_credits_slash_Step_0_gml_21_0": "DELTARUNE", + "obj_credits_slash_Step_0_gml_21_0": "", "obj_credits_slash_Step_0_gml_22_0": "第一章", - "obj_credits_slash_Step_0_gml_24_0": "by Toby Fox", + "obj_credits_slash_Step_0_gml_24_0": "", "obj_credits_slash_Step_0_gml_33_0": "夜幕张开了翅膀", "obj_credits_slash_Step_0_gml_38_0": "主美工,动画师,修正", "obj_credits_slash_Step_0_gml_39_0": "(背景,地面世界,战斗)", "obj_credits_slash_Step_0_gml_40_0": "(怀旧风配色及菜单美工,边框)", - "obj_credits_slash_Step_0_gml_42_0": "Temmie Chang", + "obj_credits_slash_Step_0_gml_42_0": "", "obj_credits_slash_Step_0_gml_54_0": "曾经熟悉的地方", "obj_credits_slash_Step_0_gml_59_0": "Lancer,方钻,心桃", "obj_credits_slash_Step_0_gml_60_0": "三头草,国王,Jevil", "obj_credits_slash_Step_0_gml_61_0": "角色原始设计", - "obj_credits_slash_Step_0_gml_64_0": "Kanotynes", + "obj_credits_slash_Step_0_gml_64_0": "", "obj_credits_slash_Step_0_gml_70_0": "恍若梦一样", "obj_credits_slash_Step_0_gml_89_0": "灵魂深处的光芒", "obj_credits_slash_Step_0_gml_95_0": "-好人汉化组策划-", @@ -635,11 +635,11 @@ "obj_credits_slash_Step_0_gml_113_0": "照亮冰冷的寒霜", "obj_credits_slash_Step_0_gml_119_0": "Don't Forget (人声版)", "obj_credits_slash_Step_0_gml_120_0": "钢琴演奏& 歌手", - "obj_credits_slash_Step_0_gml_121_0": "Laura Shigihara", + "obj_credits_slash_Step_0_gml_121_0": "", "obj_credits_slash_Step_0_gml_131_0": "坚守着 最真挚的誓言", "obj_credits_slash_Step_0_gml_136_0": "服饰 & 配色协助", "obj_credits_slash_Step_0_gml_137_0": "配色协助", - "obj_credits_slash_Step_0_gml_138_0": "Gigi DG", + "obj_credits_slash_Step_0_gml_138_0": "", "obj_credits_slash_Step_0_gml_147_0": "坚守着 最真挚的誓言", "obj_credits_slash_Step_0_gml_152_0": "特别鸣谢", "obj_credits_slash_Step_0_gml_153_0": "Chess(支持)", @@ -742,7 +742,7 @@ "obj_darkcastle_event_slash_Step_0_gml_707_0": "\\E8* 希望我们能成为好朋友^2,Kris./%", "obj_darkcastle_event_slash_Step_0_gml_723_0": "* 我们去找Susie吧^1。&* 她肯定往东南方向走了。/%", "obj_darkcastle_event_slash_Step_0_gml_749_0": "* 你来带路吧^1,Kris!/%", - "obj_darkcontroller_slash_Draw_0_gml_47_0": "D$", + "obj_darkcontroller_slash_Draw_0_gml_47_0": "", "obj_darkcontroller_slash_Draw_0_gml_74_0": "设置", "obj_darkcontroller_slash_Draw_0_gml_79_0": "关", "obj_darkcontroller_slash_Draw_0_gml_79_1": "开", @@ -776,7 +776,7 @@ "obj_darkcontroller_slash_Draw_0_gml_208_0": "防御:", "obj_darkcontroller_slash_Draw_0_gml_209_0": "魔力:", "obj_darkcontroller_slash_Draw_0_gml_212_0": "胆量:", - "obj_darkcontroller_slash_Draw_0_gml_214_0": "LV1", + "obj_darkcontroller_slash_Draw_0_gml_214_0": "", "obj_darkcontroller_slash_Draw_0_gml_226_0": "???", "obj_darkcontroller_slash_Draw_0_gml_231_0": "狗:", "obj_darkcontroller_slash_Draw_0_gml_236_0": "???", @@ -1306,18 +1306,18 @@ "obj_heartenemy_slash_Step_0_gml_228_0": "\\E7* 嗨-嘿^1,怎么啦?!/", "obj_heartenemy_slash_Step_0_gml_230_0": "* (哇哦^1,太险了^1,Kris...)/", "obj_heartenemy_slash_Step_0_gml_231_0": "* (也许不该让&Susie再行动了...)/%", - "obj_initializer_slash_Create_0_gml_48_0": "Kris", - "obj_initializer_slash_Create_0_gml_49_0": "Susie", - "obj_initializer_slash_Create_0_gml_50_0": "Ralsei", - "obj_initializer_slash_Create_0_gml_114_0": "TESTOBJECT", - "obj_initializer_slash_Create_0_gml_158_0": "i1", - "obj_initializer_slash_Create_0_gml_169_0": "* i3", - "obj_initializer_slash_Create_0_gml_176_0": "\\FR* i4", - "obj_initializer_slash_Create_0_gml_179_0": "\\FS* i5 \\f1", + "obj_initializer_slash_Create_0_gml_48_0": "", + "obj_initializer_slash_Create_0_gml_49_0": "", + "obj_initializer_slash_Create_0_gml_50_0": "", + "obj_initializer_slash_Create_0_gml_114_0": "", + "obj_initializer_slash_Create_0_gml_158_0": "", + "obj_initializer_slash_Create_0_gml_169_0": "", + "obj_initializer_slash_Create_0_gml_176_0": "", + "obj_initializer_slash_Create_0_gml_179_0": "", "obj_initializer_slash_Create_0_gml_182_0": "\\T1\\F0* i6./%", "obj_initializer_slash_Create_0_gml_183_0": "\\FT* i7!/%", - "obj_initializer2_slash_Create_0_gml_2_0": "0123456789-+", - "obj_initializer2_slash_Step_0_gml_22_0": "DELTARUNE", + "obj_initializer2_slash_Create_0_gml_2_0": "", + "obj_initializer2_slash_Step_0_gml_22_0": "", "obj_insideclosetcutscene_slash_Step_0_gml_45_0": "* Kris^1,要是你把我扔在这^1,&我就.../%", "obj_insideclosetcutscene_slash_Step_0_gml_62_0": "* 看吧^1?&* 你究竟有什么好怕的?/", "obj_insideclosetcutscene_slash_Step_0_gml_63_0": "* 除了些废纸以外什么也没有。/", @@ -1517,15 +1517,15 @@ "obj_king_boss_slash_Step_0_gml_273_0": "双重治疗", "obj_king_boss_slash_Step_0_gml_274_0": "治疗#所有人", "obj_king_boss_slash_Step_0_gml_282_0": "* 你的灵魂的力量照耀着RALSEI!/%", - "obj_kingcutscene_slash_Draw_0_gml_15_0": "kingx:", - "obj_kingcutscene_slash_Draw_0_gml_16_0": "kingy:", - "obj_kingcutscene_slash_Draw_0_gml_18_0": "view_xview:", - "obj_kingcutscene_slash_Draw_0_gml_19_0": "view_yview:", - "obj_kingcutscene_slash_Draw_0_gml_21_0": "con:", - "obj_kingcutscene_slash_Draw_0_gml_25_0": "krisx:", - "obj_kingcutscene_slash_Draw_0_gml_26_0": "krisy:", - "obj_kingcutscene_slash_Draw_0_gml_31_0": "susiex:", - "obj_kingcutscene_slash_Draw_0_gml_32_0": "susiey:", + "obj_kingcutscene_slash_Draw_0_gml_15_0": "", + "obj_kingcutscene_slash_Draw_0_gml_16_0": "", + "obj_kingcutscene_slash_Draw_0_gml_18_0": "", + "obj_kingcutscene_slash_Draw_0_gml_19_0": "", + "obj_kingcutscene_slash_Draw_0_gml_21_0": "", + "obj_kingcutscene_slash_Draw_0_gml_25_0": "", + "obj_kingcutscene_slash_Draw_0_gml_26_0": "", + "obj_kingcutscene_slash_Draw_0_gml_31_0": "", + "obj_kingcutscene_slash_Draw_0_gml_32_0": "", "obj_kingcutscene_slash_Step_0_gml_72_0": "* 嘿^1,Lancer在那...!/%", "obj_kingcutscene_slash_Step_0_gml_110_0": "* 父亲!/", "obj_kingcutscene_slash_Step_0_gml_112_0": "* Lancer^1,我的儿子。/", @@ -1737,7 +1737,7 @@ "obj_kingcutscene_slash_Step_0_gml_2584_0": "* 好吧^1,那就.../", "obj_kingcutscene_slash_Step_0_gml_2585_0": "\\E3* 回见。/%", "obj_kingcutscene_slash_Step_0_gml_2648_0": "* Susie^1,Kris..^1. &你们要启程了吗...?/%", - "obj_krisroom_slash_Create_0_gml_14_0": "The Beginning", + "obj_krisroom_slash_Create_0_gml_14_0": "", "obj_krisroom_slash_Create_0_gml_21_0": "* KRIS!/", "obj_krisroom_slash_Create_0_gml_22_0": "* Kris你再不起床&我们上学就要迟到了!/%", "obj_krisroom_slash_Step_0_gml_92_0": "* 我在外面等你^1,好吗?/%", @@ -1870,7 +1870,7 @@ "obj_lancerboss_slash_Step_0_gml_200_0": "下一次^1,&输的人&会是你们!!!/", "obj_lancerboss_slash_Step_0_gml_201_0": "哈哈哈!!^1!&再见了^1,废物们!/", "obj_lancerboss_slash_Step_0_gml_202_0": "我得在&晚饭之前&回家!!!/%", - "obj_lancerboss2_slash_Step_0_gml_88_0": "* ...", + "obj_lancerboss2_slash_Step_0_gml_88_0": "", "obj_lancerboss2_slash_Step_0_gml_120_0": "你想知道&叛徒们&是怎样的&下场吗?/%", "obj_lancerboss2_slash_Step_0_gml_121_0": "碾,成,渣。/%", "obj_lancerboss2_slash_Step_0_gml_122_0": "你要是&再敢挡道.../", @@ -2018,15 +2018,15 @@ "obj_legend_slash_Draw_0_gml_459_0": "高高立于王国的中心。", "obj_legend_slash_Draw_0_gml_466_0": "但最近,又一个喷泉出现在了地平线上...", "obj_legend_slash_Draw_0_gml_473_0": "它的出现^1,让光与暗的平衡开始动摇...", - "obj_monster1_slash_Step_0_gml_25_0": "Line1", - "obj_monster1_slash_Step_0_gml_26_0": "Line2", - "obj_monster1_slash_Step_0_gml_53_0": "* Line3", - "obj_monster1_slash_Step_0_gml_54_0": "* Line4", - "obj_monster1_slash_Step_0_gml_55_0": "* Line5", - "obj_monster1_slash_Step_0_gml_56_0": "* Line6", - "obj_monster1_slash_Step_0_gml_57_0": "* Line7", + "obj_monster1_slash_Step_0_gml_25_0": "", + "obj_monster1_slash_Step_0_gml_26_0": "", + "obj_monster1_slash_Step_0_gml_53_0": "", + "obj_monster1_slash_Step_0_gml_54_0": "", + "obj_monster1_slash_Step_0_gml_55_0": "", + "obj_monster1_slash_Step_0_gml_56_0": "", + "obj_monster1_slash_Step_0_gml_57_0": "", "obj_monster1_slash_Step_0_gml_75_0": "* Line8/%", - "obj_monster1_slash_Step_0_gml_82_0": "Line9", + "obj_monster1_slash_Step_0_gml_82_0": "", "obj_monster1_slash_Step_0_gml_91_0": "* Susie与Kris使用了&双重碎击!/%", "obj_npc_facing_slash_Other_10_gml_10_0": "* 你脸上那是条疤^1,&还是说你眼缝就这么大?/%", "obj_npc_facing_slash_Other_10_gml_29_0": "* 别担心^1,Kris!/", @@ -2796,9 +2796,9 @@ "obj_npc_susiedark_slash_Other_10_gml_21_0": "\\E0* 等等^1,那过山车在哪...?/", "obj_npc_susiedark_slash_Other_10_gml_22_0": "\\E2* 也许是因为没有过山车&所以这里才被废弃的吧。/%", "obj_npc_toriel_slash_Other_10_gml_2_0": "* 你好啊^1!&* 今天风和日丽^1,你感觉如何?/%", - "obj_overworldc_slash_Draw_0_gml_36_0": "HP", - "obj_overworldc_slash_Draw_0_gml_37_0": "LV", - "obj_overworldc_slash_Draw_0_gml_39_0": "$", + "obj_overworldc_slash_Draw_0_gml_36_0": "", + "obj_overworldc_slash_Draw_0_gml_37_0": "", + "obj_overworldc_slash_Draw_0_gml_39_0": "", "obj_overworldc_slash_Draw_0_gml_42_0": "物品", "obj_overworldc_slash_Draw_0_gml_43_0": "状态", "obj_overworldc_slash_Draw_0_gml_44_0": "电话", @@ -2806,7 +2806,7 @@ "obj_overworldc_slash_Draw_0_gml_53_0": "说明", "obj_overworldc_slash_Draw_0_gml_54_0": "丢弃", "obj_overworldc_slash_Draw_0_gml_66_0": "“~1”", - "obj_overworldc_slash_Draw_0_gml_67_0": "LV", + "obj_overworldc_slash_Draw_0_gml_67_0": "", "obj_overworldc_slash_Draw_0_gml_68_0": "HP  ~1 /", "obj_overworldc_slash_Draw_0_gml_70_0": "AT ~1(", "obj_overworldc_slash_Draw_0_gml_71_0": "DF ~1(", @@ -2836,10 +2836,10 @@ "obj_placeholderenemy_slash_Step_0_gml_13_0": "Message&C", "obj_placeholderenemy_slash_Step_0_gml_14_0": "Message&D", "obj_placeholderenemy_slash_Step_0_gml_16_0": "WlyWlyWlyWly&WlyWlyWlyWly&WlyWlyWlyWly&WlyWlyWlyWly", - "obj_placeholderenemy_slash_Step_0_gml_63_0": "* Placeholder Message A.", - "obj_placeholderenemy_slash_Step_0_gml_64_0": "* Placeholder Message B.", - "obj_placeholderenemy_slash_Step_0_gml_65_0": "* Placeholder Message C.", - "obj_placeholderenemy_slash_Step_0_gml_66_0": "* Placeholder Message D.", + "obj_placeholderenemy_slash_Step_0_gml_63_0": "", + "obj_placeholderenemy_slash_Step_0_gml_64_0": "", + "obj_placeholderenemy_slash_Step_0_gml_65_0": "", + "obj_placeholderenemy_slash_Step_0_gml_66_0": "", "obj_placeholderenemy_slash_Step_0_gml_99_0": "一个特殊&场景出现了!!/%", "obj_placeholderenemy_slash_Step_0_gml_135_0": "* 敌人 - 攻击 1 防御 1&* 我是你的敌人。/%", "obj_placeholderenemy_slash_Step_0_gml_146_0": "* 你警告了敌人^1。&* 它防住了Susie的攻击。/%", @@ -3517,10 +3517,10 @@ "obj_rurus_event_slash_Step_0_gml_390_0": "\\E4* 我这还有一个..^1. 更好的!/", "obj_rurus_event_slash_Step_0_gml_392_0": "* 我们..^1. &* 能看看吗?/%", "obj_rurus_event_slash_Step_0_gml_404_0": "* 不行/%", - "obj_savemenu_slash_Create_0_gml_7_0": "Kris", - "obj_savemenu_slash_Create_0_gml_43_0": "Kris", - "obj_savemenu_slash_Draw_0_gml_29_0": "LV", - "obj_savemenu_slash_Draw_0_gml_33_0": "LV", + "obj_savemenu_slash_Create_0_gml_7_0": "", + "obj_savemenu_slash_Create_0_gml_43_0": "", + "obj_savemenu_slash_Draw_0_gml_29_0": "", + "obj_savemenu_slash_Draw_0_gml_33_0": "", "obj_savemenu_slash_Draw_0_gml_47_0": "保存", "obj_savemenu_slash_Draw_0_gml_48_0": "返回", "obj_savemenu_slash_Draw_0_gml_52_0": "文件已储存。", @@ -3659,7 +3659,7 @@ "obj_shop1_slash_Draw_0_gml_150_0": "\\E0怎么,&看不上&它吗?", "obj_shop1_slash_Draw_0_gml_151_0": "\\E3你的钱&不够。", "obj_shop1_slash_Draw_0_gml_152_0": "\\E3你带的&东西&太多了。", - "obj_shop1_slash_Draw_0_gml_153_0": "/*", + "obj_shop1_slash_Draw_0_gml_153_0": "", "obj_shop1_slash_Draw_0_gml_167_0": "可以吗?", "obj_shop1_slash_Draw_0_gml_168_0": "$", "obj_shop1_slash_Draw_0_gml_169_0": "是", @@ -3772,7 +3772,7 @@ "obj_shop2_slash_Draw_0_gml_127_0": "\\E3要不要&看看&其他货?", "obj_shop2_slash_Draw_0_gml_128_0": "\\E6汝&盘缠&紧缺。", "obj_shop2_slash_Draw_0_gml_129_0": "\\E3汝&行李&繁重。", - "obj_shop2_slash_Draw_0_gml_130_0": "/*", + "obj_shop2_slash_Draw_0_gml_130_0": "", "obj_shop2_slash_Draw_0_gml_144_0": "汝欲易之?", "obj_shop2_slash_Draw_0_gml_145_0": "$", "obj_shop2_slash_Draw_0_gml_146_0": "是", @@ -4275,8 +4275,8 @@ "obj_treasure_room_slash_Other_10_gml_33_0": "* 呃^1,请别吃那些东西^1,Susie.../", "obj_treasure_room_slash_Other_10_gml_35_0": "* 什么?^1!那你是打算留着吗?!/%", "obj_treasure_room_slash_Other_10_gml_40_0": "* (箱子里是空的。)&* (嗯,除了一些元音。)/%", - "obj_treasure_room_slash_Other_10_gml_48_0": "NULL", - "obj_treasure_room_slash_Other_10_gml_49_0": "NULL2", + "obj_treasure_room_slash_Other_10_gml_48_0": "", + "obj_treasure_room_slash_Other_10_gml_49_0": "", "obj_treasure_room_slash_Other_10_gml_54_0": "防具", "obj_treasure_room_slash_Other_10_gml_61_0": "武器", "obj_treasure_room_slash_Other_10_gml_68_0": "物品", @@ -4300,7 +4300,7 @@ "obj_tutorialbattleevent_slash_Step_0_gml_96_0": "\\E1* ...要是^1,嗯^1,&你更喜欢阅读的话.../", "obj_unusedclassevent_slash_Step_0_gml_16_0": "* 怎..^1. 怎么回事!^2?&* 我什么都看不见了!!/%", "obj_unusedclassevent_slash_Step_0_gml_52_0": "* 喂^1,当心点!/%", - "obj_unusedclassevent_slash_Step_0_gml_81_0": "The Return", + "obj_unusedclassevent_slash_Step_0_gml_81_0": "", "obj_unusedclassevent_slash_Step_0_gml_94_0": "* 嗯..^1. 嗯...?/", "obj_unusedclassevent_slash_Step_0_gml_95_0": "* 废弃教室...?/", "obj_unusedclassevent_slash_Step_0_gml_96_0": "\\E3* 我们怎么跑到这来了...?/%", @@ -4311,11 +4311,11 @@ "obj_unusedclassevent_slash_Step_0_gml_141_0": "\\E0* .../", "obj_unusedclassevent_slash_Step_0_gml_142_0": "\\E3* 总之,像我说的,/", "obj_unusedclassevent_slash_Step_0_gml_143_0": "\\E2* 咱们就告诉Alphys&根本找不到粉笔吧。/%", - "obj_writer_slash_Alarm_0_gml_20_0": "\\", - "obj_writer_slash_Alarm_0_gml_31_0": "\\", - "obj_writer_slash_Draw_0_gml_72_0": "\\", - "obj_writer_slash_Draw_0_gml_147_0": "||", - "obj_writer_slash_Draw_0_gml_272_0": "\\", + "obj_writer_slash_Alarm_0_gml_20_0": "", + "obj_writer_slash_Alarm_0_gml_31_0": "", + "obj_writer_slash_Draw_0_gml_72_0": "", + "obj_writer_slash_Draw_0_gml_147_0": "", + "obj_writer_slash_Draw_0_gml_272_0": "", "scr_actinfo_slash_scr_actinfo_gml_21_0": "称赞", "scr_actinfo_slash_scr_actinfo_gml_28_0": "双重碎击", "scr_armorinfo_slash_scr_armorinfo_gml_8_0": "喂,手拿开!", @@ -4350,24 +4350,24 @@ "scr_armorinfo_slash_scr_armorinfo_gml_150_0": "我打算哪天自己也长一条。", "scr_armorinfo_slash_scr_armorinfo_gml_151_0": "我可是好恶魔,知道吗?", "scr_ascii_input_names_slash_scr_ascii_input_names_gml_5_0": "退格", - "scr_ascii_input_names_slash_scr_ascii_input_names_gml_6_0": "Tab", + "scr_ascii_input_names_slash_scr_ascii_input_names_gml_6_0": "", "scr_ascii_input_names_slash_scr_ascii_input_names_gml_7_0": "小键盘5 (NumLock OFF)", - "scr_ascii_input_names_slash_scr_ascii_input_names_gml_8_0": "Enter", - "scr_ascii_input_names_slash_scr_ascii_input_names_gml_9_0": "Pause", - "scr_ascii_input_names_slash_scr_ascii_input_names_gml_10_0": "Caps lock", + "scr_ascii_input_names_slash_scr_ascii_input_names_gml_8_0": "", + "scr_ascii_input_names_slash_scr_ascii_input_names_gml_9_0": "", + "scr_ascii_input_names_slash_scr_ascii_input_names_gml_10_0": "", "scr_ascii_input_names_slash_scr_ascii_input_names_gml_11_0": "Esc", - "scr_ascii_input_names_slash_scr_ascii_input_names_gml_12_0": "Space", - "scr_ascii_input_names_slash_scr_ascii_input_names_gml_13_0": "Page up", - "scr_ascii_input_names_slash_scr_ascii_input_names_gml_14_0": "Page down", - "scr_ascii_input_names_slash_scr_ascii_input_names_gml_15_0": "End", - "scr_ascii_input_names_slash_scr_ascii_input_names_gml_16_0": "Home", + "scr_ascii_input_names_slash_scr_ascii_input_names_gml_12_0": "", + "scr_ascii_input_names_slash_scr_ascii_input_names_gml_13_0": "", + "scr_ascii_input_names_slash_scr_ascii_input_names_gml_14_0": "", + "scr_ascii_input_names_slash_scr_ascii_input_names_gml_15_0": "", + "scr_ascii_input_names_slash_scr_ascii_input_names_gml_16_0": "", "scr_ascii_input_names_slash_scr_ascii_input_names_gml_17_0": "左", "scr_ascii_input_names_slash_scr_ascii_input_names_gml_18_0": "上", "scr_ascii_input_names_slash_scr_ascii_input_names_gml_19_0": "右", "scr_ascii_input_names_slash_scr_ascii_input_names_gml_20_0": "下", - "scr_ascii_input_names_slash_scr_ascii_input_names_gml_21_0": "Insert", - "scr_ascii_input_names_slash_scr_ascii_input_names_gml_22_0": "Delete", - "scr_ascii_input_names_slash_scr_ascii_input_names_gml_59_0": "Windows", + "scr_ascii_input_names_slash_scr_ascii_input_names_gml_21_0": "", + "scr_ascii_input_names_slash_scr_ascii_input_names_gml_22_0": "", + "scr_ascii_input_names_slash_scr_ascii_input_names_gml_59_0": "", "scr_ascii_input_names_slash_scr_ascii_input_names_gml_60_0": "小键盘 0", "scr_ascii_input_names_slash_scr_ascii_input_names_gml_61_0": "小键盘 1", "scr_ascii_input_names_slash_scr_ascii_input_names_gml_62_0": "小键盘 2", @@ -4383,33 +4383,33 @@ "scr_ascii_input_names_slash_scr_ascii_input_names_gml_72_0": "小键盘 -", "scr_ascii_input_names_slash_scr_ascii_input_names_gml_73_0": "小键盘 .", "scr_ascii_input_names_slash_scr_ascii_input_names_gml_74_0": "小键盘 /", - "scr_ascii_input_names_slash_scr_ascii_input_names_gml_75_0": "F1", - "scr_ascii_input_names_slash_scr_ascii_input_names_gml_76_0": "F2", - "scr_ascii_input_names_slash_scr_ascii_input_names_gml_77_0": "F3", - "scr_ascii_input_names_slash_scr_ascii_input_names_gml_78_0": "F4", - "scr_ascii_input_names_slash_scr_ascii_input_names_gml_79_0": "F5", - "scr_ascii_input_names_slash_scr_ascii_input_names_gml_80_0": "F6", - "scr_ascii_input_names_slash_scr_ascii_input_names_gml_81_0": "F7", - "scr_ascii_input_names_slash_scr_ascii_input_names_gml_82_0": "F8", - "scr_ascii_input_names_slash_scr_ascii_input_names_gml_83_0": "F9", - "scr_ascii_input_names_slash_scr_ascii_input_names_gml_84_0": "F10", - "scr_ascii_input_names_slash_scr_ascii_input_names_gml_85_0": "F11", - "scr_ascii_input_names_slash_scr_ascii_input_names_gml_86_0": "F12", + "scr_ascii_input_names_slash_scr_ascii_input_names_gml_75_0": "", + "scr_ascii_input_names_slash_scr_ascii_input_names_gml_76_0": "", + "scr_ascii_input_names_slash_scr_ascii_input_names_gml_77_0": "", + "scr_ascii_input_names_slash_scr_ascii_input_names_gml_78_0": "", + "scr_ascii_input_names_slash_scr_ascii_input_names_gml_79_0": "", + "scr_ascii_input_names_slash_scr_ascii_input_names_gml_80_0": "", + "scr_ascii_input_names_slash_scr_ascii_input_names_gml_81_0": "", + "scr_ascii_input_names_slash_scr_ascii_input_names_gml_82_0": "", + "scr_ascii_input_names_slash_scr_ascii_input_names_gml_83_0": "", + "scr_ascii_input_names_slash_scr_ascii_input_names_gml_84_0": "", + "scr_ascii_input_names_slash_scr_ascii_input_names_gml_85_0": "", + "scr_ascii_input_names_slash_scr_ascii_input_names_gml_86_0": "", "scr_ascii_input_names_slash_scr_ascii_input_names_gml_87_0": "大写锁定", - "scr_ascii_input_names_slash_scr_ascii_input_names_gml_88_0": "Scroll lock", + "scr_ascii_input_names_slash_scr_ascii_input_names_gml_88_0": "", "scr_ascii_input_names_slash_scr_ascii_input_names_gml_89_0": "Shift (左)", "scr_ascii_input_names_slash_scr_ascii_input_names_gml_90_0": "Shift (右)", "scr_ascii_input_names_slash_scr_ascii_input_names_gml_91_0": "Ctrl (左)", "scr_ascii_input_names_slash_scr_ascii_input_names_gml_92_0": "Ctrl (右)", "scr_ascii_input_names_slash_scr_ascii_input_names_gml_93_0": "Alt (左)", "scr_ascii_input_names_slash_scr_ascii_input_names_gml_94_0": "Alt (右)", - "scr_ascii_input_names_slash_scr_ascii_input_names_gml_103_0": "\\", - "scr_ascii_input_names_slash_scr_ascii_input_names_gml_105_0": "'", - "scr_ascii_input_names_slash_scr_ascii_input_names_gml_107_0": "Shift", + "scr_ascii_input_names_slash_scr_ascii_input_names_gml_103_0": "", + "scr_ascii_input_names_slash_scr_ascii_input_names_gml_105_0": "", + "scr_ascii_input_names_slash_scr_ascii_input_names_gml_107_0": "", "scr_ascii_input_names_slash_scr_ascii_input_names_gml_108_0": "Ctrl", - "scr_ascii_input_names_slash_scr_ascii_input_names_gml_109_0": "Alt", + "scr_ascii_input_names_slash_scr_ascii_input_names_gml_109_0": "", "scr_asgface_slash_scr_asgface_gml_1_0": "\\TX \\F0 \\E~1 \\FA \\TA %", - "scr_asterskip_slash_scr_asterskip_gml_4_0": "||", + "scr_asterskip_slash_scr_asterskip_gml_4_0": "", "scr_encountersetup_slash_scr_encountersetup_gml_82_0": "* 方钻接近了!", "scr_encountersetup_slash_scr_encountersetup_gml_83_0": "* 一个和上次不一样的方钻&接近了!", "scr_encountersetup_slash_scr_encountersetup_gml_84_0": "* 估计是另一个不同的方钻出现了!", @@ -4443,16 +4443,16 @@ "scr_encountersetup_slash_scr_encountersetup_gml_505_0": "* 各种敌人出现了!", "scr_encountersetup_slash_scr_encountersetup_gml_517_0": "* 国王拦住了去路!", "scr_gamestart_slash_scr_gamestart_gml_69_0": "普通", - "scr_gamestart_slash_scr_gamestart_gml_98_0": "Kris", - "scr_gamestart_slash_scr_gamestart_gml_99_0": "Susie", - "scr_gamestart_slash_scr_gamestart_gml_100_0": "Ralsei", - "scr_gamestart_slash_scr_gamestart_gml_206_0": "G BODY", + "scr_gamestart_slash_scr_gamestart_gml_98_0": "", + "scr_gamestart_slash_scr_gamestart_gml_99_0": "", + "scr_gamestart_slash_scr_gamestart_gml_100_0": "", + "scr_gamestart_slash_scr_gamestart_gml_206_0": "", "scr_gamestart_slash_scr_gamestart_gml_325_0": "是", "scr_gamestart_slash_scr_gamestart_gml_326_0": "否", "scr_gamestart_slash_scr_gamestart_gml_327_0": "也许", "scr_gamestart_slash_scr_gamestart_gml_328_0": "不知道", "scr_gamestart_slash_scr_gamestart_gml_343_0": "家", - "scr_gamestart_slash_scr_gamestart_gml_345_0": "Kris", + "scr_gamestart_slash_scr_gamestart_gml_345_0": "", "scr_itemdesc_b_slash_scr_itemdesc_b_gml_11_0": "回复#60HP", "scr_itemdesc_b_slash_scr_itemdesc_b_gml_14_0": "复活#盟友#(弱效)", "scr_itemdesc_oldtype_slash_scr_itemdesc_oldtype_gml_2_0": "* 不可能。/%", @@ -4645,7 +4645,7 @@ "scr_monstersetup_slash_scr_monstersetup_gml_24_0": "胜利(S)", "scr_monstersetup_slash_scr_monstersetup_gml_26_0": "说教", "scr_monstersetup_slash_scr_monstersetup_gml_27_0": "* 你又再一次回到了这个美妙的地方。&* 现在撕掉你脸下的那张面具!", - "scr_monstersetup_slash_scr_monstersetup_gml_32_0": "Lancer", + "scr_monstersetup_slash_scr_monstersetup_gml_32_0": "", "scr_monstersetup_slash_scr_monstersetup_gml_44_0": "查看", "scr_monstersetup_slash_scr_monstersetup_gml_47_0": "警告", "scr_monstersetup_slash_scr_monstersetup_gml_50_0": "称赞", @@ -4655,7 +4655,7 @@ "scr_monstersetup_slash_scr_monstersetup_gml_73_0": "拥抱", "scr_monstersetup_slash_scr_monstersetup_gml_75_0": "拥抱Ralsei", "scr_monstersetup_slash_scr_monstersetup_gml_78_0": "* 教学开始了。", - "scr_monstersetup_slash_scr_monstersetup_gml_83_0": "Ralsei", + "scr_monstersetup_slash_scr_monstersetup_gml_83_0": "", "scr_monstersetup_slash_scr_monstersetup_gml_95_0": "查看", "scr_monstersetup_slash_scr_monstersetup_gml_97_0": "拥抱", "scr_monstersetup_slash_scr_monstersetup_gml_98_0": "* 教学开始了。", @@ -4700,7 +4700,7 @@ "scr_monstersetup_slash_scr_monstersetup_gml_329_0": "晚安", "scr_monstersetup_slash_scr_monstersetup_gml_331_0": "安眠曲", "scr_monstersetup_slash_scr_monstersetup_gml_337_0": "警告", - "scr_monstersetup_slash_scr_monstersetup_gml_346_0": "Lancer", + "scr_monstersetup_slash_scr_monstersetup_gml_346_0": "", "scr_monstersetup_slash_scr_monstersetup_gml_358_0": "查看", "scr_monstersetup_slash_scr_monstersetup_gml_365_0": "尘兔", "scr_monstersetup_slash_scr_monstersetup_gml_377_0": "查看", @@ -4722,21 +4722,21 @@ "scr_monstersetup_slash_scr_monstersetup_gml_470_0": "谈体育", "scr_monstersetup_slash_scr_monstersetup_gml_473_0": "谈动物", "scr_monstersetup_slash_scr_monstersetup_gml_475_0": "谈树木", - "scr_monstersetup_slash_scr_monstersetup_gml_484_0": "DoomTank", + "scr_monstersetup_slash_scr_monstersetup_gml_484_0": "", "scr_monstersetup_slash_scr_monstersetup_gml_496_0": "查看", "scr_monstersetup_slash_scr_monstersetup_gml_498_0": "拥抱", "scr_monstersetup_slash_scr_monstersetup_gml_501_0": "恭维", "scr_monstersetup_slash_scr_monstersetup_gml_504_0": "外交", "scr_monstersetup_slash_scr_monstersetup_gml_506_0": "微笑", - "scr_monstersetup_slash_scr_monstersetup_gml_512_0": "Lancer", + "scr_monstersetup_slash_scr_monstersetup_gml_512_0": "", "scr_monstersetup_slash_scr_monstersetup_gml_524_0": "查看", "scr_monstersetup_slash_scr_monstersetup_gml_527_0": "想点办法", "scr_monstersetup_slash_scr_monstersetup_gml_530_0": "X-想点办法", - "scr_monstersetup_slash_scr_monstersetup_gml_538_0": "Susie", + "scr_monstersetup_slash_scr_monstersetup_gml_538_0": "", "scr_monstersetup_slash_scr_monstersetup_gml_550_0": "查看", "scr_monstersetup_slash_scr_monstersetup_gml_553_0": "想点办法", "scr_monstersetup_slash_scr_monstersetup_gml_556_0": "唱歌", - "scr_monstersetup_slash_scr_monstersetup_gml_562_0": "JEVIL", + "scr_monstersetup_slash_scr_monstersetup_gml_562_0": "", "scr_monstersetup_slash_scr_monstersetup_gml_574_0": "查看", "scr_monstersetup_slash_scr_monstersetup_gml_579_0": "单足旋转", "scr_monstersetup_slash_scr_monstersetup_gml_580_0": "无常混沌", @@ -4863,7 +4863,7 @@ "scr_text_slash_scr_text_gml_8_0": "#否", "scr_text_slash_scr_text_gml_11_0": "* 你真的不想把它扔掉。/", "scr_text_slash_scr_text_gml_12_0": "* 无论如何都要扔掉吗?/", - "scr_text_slash_scr_text_gml_13_0": "\\C2", + "scr_text_slash_scr_text_gml_13_0": "", "scr_text_slash_scr_text_gml_19_0": "* 你感觉松了一口气。/%", "scr_text_slash_scr_text_gml_23_0": "* 你颤抖着手^1,把垃圾球扔到地上。/", "scr_text_slash_scr_text_gml_24_0": "* 它摔成了碎片。/", @@ -4909,7 +4909,7 @@ "scr_text_slash_scr_text_gml_150_0": "\\E1* 嗯,真-真的^1?&* 你确定吗^1?&* 很重要的哦。/", "scr_text_slash_scr_text_gml_151_0": "* 呃...而且^1,我个人感觉^1,&这个\\cY预言\\cW还是挺美好的!/", "scr_text_slash_scr_text_gml_152_0": "* 我觉得你们会喜欢的!/", - "scr_text_slash_scr_text_gml_153_0": "\\C2", + "scr_text_slash_scr_text_gml_153_0": "", "scr_text_slash_scr_text_gml_162_0": "\\E0* 呼^1!&* 嗯^1,那我要讲了.../%", "scr_text_slash_scr_text_gml_168_0": "* ...真的吗^1?&* 你们已经听过了?/", "scr_text_slash_scr_text_gml_169_0": "* 唉..^1. 早知道我就不练习&这么多次了.../", @@ -5003,10 +5003,10 @@ "scr_text_slash_scr_text_gml_358_0": "#不拿", "scr_text_slash_scr_text_gml_363_0": "* (树上挂着两个东西。)/", "scr_text_slash_scr_text_gml_364_0": "* (拿一个吗?)/", - "scr_text_slash_scr_text_gml_365_0": "\\C2", + "scr_text_slash_scr_text_gml_365_0": "", "scr_text_slash_scr_text_gml_369_0": "* (树上挂着一颗糖果。)/", "scr_text_slash_scr_text_gml_370_0": "* (拿一颗吗?)/", - "scr_text_slash_scr_text_gml_371_0": "\\C2", + "scr_text_slash_scr_text_gml_371_0": "", "scr_text_slash_scr_text_gml_376_0": "* (树上没有你够得到的东西了。)/%", "scr_text_slash_scr_text_gml_387_0": "* (你得到了黑暗糖果。)/%", "scr_text_slash_scr_text_gml_392_0": "* (你拿不了更多的东西了。)/%", @@ -5038,7 +5038,7 @@ "scr_text_slash_scr_text_gml_495_0": "* 好了^1,大家都放好了吧!/", "scr_text_slash_scr_text_gml_496_0": "\\E2* 小蓝人^1,由你来选吧。/", "scr_text_slash_scr_text_gml_497_0": "\\E1* 看你一副事不关己的样子。/", - "scr_text_slash_scr_text_gml_498_0": "\\C3", + "scr_text_slash_scr_text_gml_498_0": "", "scr_text_slash_scr_text_gml_507_0": "* (你取出了皱巴巴的纸。)/", "scr_text_slash_scr_text_gml_508_0": "* (你展开它。)/", "scr_text_slash_scr_text_gml_510_0": "* 好!!&* 那么你们的名字就是...!/", @@ -5092,14 +5092,14 @@ "scr_text_slash_scr_text_gml_599_0": "\\E2* 真是铃儿响叮当^1!&* Krismas提前到来了!/", "scr_text_slash_scr_text_gml_600_0": "\\E1* 好啦^1,Kris^1。直话直说吧。/", "scr_text_slash_scr_text_gml_601_0": "\\E2* 你为什么要来拜访我?&* 是你妈妈要你来的吗?/", - "scr_text_slash_scr_text_gml_602_0": "\\C2", + "scr_text_slash_scr_text_gml_602_0": "", "scr_text_slash_scr_text_gml_607_0": "#Noelle", "scr_text_slash_scr_text_gml_608_0": "#家庭", "scr_text_slash_scr_text_gml_609_0": "疾病", "scr_text_slash_scr_text_gml_610_0": "没事了", "scr_text_slash_scr_text_gml_611_0": "\\E0* 嘿^1,Kris^1,你想聊些&什么吗?/", "scr_text_slash_scr_text_gml_612_0": "\\E2* 别担心^1,你讲什么我都不会&嫌你无聊的!/", - "scr_text_slash_scr_text_gml_613_0": "\\C4", + "scr_text_slash_scr_text_gml_613_0": "", "scr_text_slash_scr_text_gml_618_0": "\\E2* 哈哈^1,我就是那么想的^1!&* 她就像个桃子^1,对吧?/", "scr_text_slash_scr_text_gml_619_0": "\\E7* 表面和桃一样毛茸又甜蜜^1,&内心却桃核一样坚硬!/", "scr_text_slash_scr_text_gml_620_0": "\\E0* 哦^1,你爸爸^1?&* 唔^1,他这家伙也能是个水果。/", @@ -5112,7 +5112,7 @@ "scr_text_slash_scr_text_gml_632_0": "\\E7* 现在你成为了在我面前的&怪小孩!/", "scr_text_slash_scr_text_gml_633_0": "* 哈哈哈哈!!/", "scr_text_slash_scr_text_gml_634_0": "\\E0* 好啦^1,好啦^1,说真的^1,&你想聊些什么吗?/", - "scr_text_slash_scr_text_gml_636_0": "\\C4", + "scr_text_slash_scr_text_gml_636_0": "", "scr_text_slash_scr_text_gml_641_0": "* 啊?/%", "scr_text_slash_scr_text_gml_645_0": "\\E4* Kris^1,她真是个可爱的&甜心啊^1,对吧?/", "scr_text_slash_scr_text_gml_646_0": "\\E0* 聪明、善良、可爱...&没有比她更好的女儿了。/", @@ -5146,7 +5146,7 @@ "scr_text_slash_scr_text_gml_689_0": "别别别#别别别#别别别", "scr_text_slash_scr_text_gml_690_0": "#好", "scr_text_slash_scr_text_gml_693_0": "* (这是一篇动漫评测。^1)&* (要读吗?)/", - "scr_text_slash_scr_text_gml_694_0": "\\C2", + "scr_text_slash_scr_text_gml_694_0": "", "scr_text_slash_scr_text_gml_699_0": "* 青少年地带&每周动漫评测:&喵喵亲亲超可爱2/", "scr_text_slash_scr_text_gml_700_0": "* 这位评测者第一次&接触这个系列的作品&是喵喵2.../", "scr_text_slash_scr_text_gml_701_0": "* 让她来告诉你^1,它让喵喵1看起来就像&一个有着亮晶晶猫耳的垃圾桶 !/", @@ -5163,14 +5163,14 @@ "scr_text_slash_scr_text_gml_717_0": "* (Gerson Boom纪念长椅)/", "scr_text_slash_scr_text_gml_718_0": "* “纵观写作一生^1,&不知我有多少绝妙文思自梦泉涌。/", "scr_text_slash_scr_text_gml_719_0": "* “在这儿稍事休息吧。&若有人问起——&你就说是在写作!”/%", - "scr_text_slash_scr_text_gml_720_0": "\\C2", + "scr_text_slash_scr_text_gml_720_0": "", "scr_text_slash_scr_text_gml_727_0": "* (不是很想坐。)/%", "scr_text_slash_scr_text_gml_733_0": "* (你决定不坐下来。)/%", "scr_text_slash_scr_text_gml_738_0": "#插进去", "scr_text_slash_scr_text_gml_739_0": "#不要", "scr_text_slash_scr_text_gml_743_0": "* (这是一张金属野餐桌。^1)&* (一些烟头被扔在桌底下。)/", "scr_text_slash_scr_text_gml_744_0": "* (把手指插进桌子上的洞里?)/", - "scr_text_slash_scr_text_gml_745_0": "\\C2", + "scr_text_slash_scr_text_gml_745_0": "", "scr_text_slash_scr_text_gml_749_0": "* (这是一张金属野餐桌。^1)&* (一些烟头被扔在桌底下。)/%", "scr_text_slash_scr_text_gml_756_0": "* (你的手指从上面插不进去。^1)&* (你试着从下面入手。)/", "scr_text_slash_scr_text_gml_757_0": "* (...你的手上沾满了蜘蛛网。)/%", @@ -5183,13 +5183,13 @@ "scr_text_slash_scr_text_gml_777_0": "\\M3* 一个朋友也没有.../", "scr_text_slash_scr_text_gml_778_0": "\\M1* 但这没关系^1,你听到没^1!&* 因为你到了!/", "scr_text_slash_scr_text_gml_779_0": "\\M0* 你愿意做我的朋友吗?/", - "scr_text_slash_scr_text_gml_780_0": "\\C2", + "scr_text_slash_scr_text_gml_780_0": "", "scr_text_slash_scr_text_gml_786_0": "#Kris", "scr_text_slash_scr_text_gml_787_0": "#叫马不是马#有张大嘴巴", "scr_text_slash_scr_text_gml_794_0": "\\M4* 噢^1!噢^1!&* 我好开心^1,你听到没!^1?&* 我好开心我..^1. 我.../", "scr_text_slash_scr_text_gml_795_0": "\\M3* 我不知道该做什么了^1!&* 我以前从没这么开心过!/", "scr_text_slash_scr_text_gml_796_0": "\\M2* 朋友^1,你叫什么名字?/", - "scr_text_slash_scr_text_gml_797_0": "\\C2", + "scr_text_slash_scr_text_gml_797_0": "", "scr_text_slash_scr_text_gml_809_0": "#洋葱", "scr_text_slash_scr_text_gml_810_0": "#美人", "scr_text_slash_scr_text_gml_811_0": "Asriel二世", @@ -5199,10 +5199,10 @@ "scr_text_slash_scr_text_gml_825_0": "\\M1* 噢^1,不好意思^1!&* 我忘记自我介绍了!/", "scr_text_slash_scr_text_gml_826_0": "\\M1* .../", "scr_text_slash_scr_text_gml_827_0": "\\M3* ...其实^1,因为没人和我讲话,&我把自己的名字忘了.../", - "scr_text_slash_scr_text_gml_828_0": "Kris", + "scr_text_slash_scr_text_gml_828_0": "", "scr_text_slash_scr_text_gml_829_0": "叫马不是马有张大嘴巴", "scr_text_slash_scr_text_gml_830_0": "\\M1* ~1^1!&* 你能给我起个名字吗...?/", - "scr_text_slash_scr_text_gml_831_0": "\\C4", + "scr_text_slash_scr_text_gml_831_0": "", "scr_text_slash_scr_text_gml_840_0": "\\M0* 嗯^1!那太完美了^1,你听到没!&* 我不知道那是什么意思^1,&但它很完美!/", "scr_text_slash_scr_text_gml_841_0": "\\M4* 嗯^1!&* 似乎它形状像我^1!&* 似乎闻起来也像我!/", "scr_text_slash_scr_text_gml_842_0": "\\M2* 等下^1,那名字叫什么来着?&* 羊..^1. 羊松?没错^1!太完美了^1!&* 我的名字就叫^1,羊松。/", @@ -5225,9 +5225,9 @@ "scr_text_slash_scr_text_gml_885_0": "* (这是个生锈的冰箱,&上面贴着一些照片。)/", "scr_text_slash_scr_text_gml_887_0": "\\E2* 噢^1,Kris^1。&* 如果你饿了.../", "scr_text_slash_scr_text_gml_888_0": "\\E0* ...就随便找点想吃的吧。/", - "scr_text_slash_scr_text_gml_889_0": "\\C3", + "scr_text_slash_scr_text_gml_889_0": "", "scr_text_slash_scr_text_gml_894_0": "* (这是个生锈的冰箱,&上面贴着一些照片。)/", - "scr_text_slash_scr_text_gml_895_0": "\\C3", + "scr_text_slash_scr_text_gml_895_0": "", "scr_text_slash_scr_text_gml_902_0": "* 什么也没有发生。/%", "scr_text_slash_scr_text_gml_907_0": "* (冰箱里有两颗蛋。)/%", "scr_text_slash_scr_text_gml_912_0": "* (里面仅仅只有一个泡菜罐,&罐里仅仅只有一根酸黄瓜...)/", @@ -5253,9 +5253,9 @@ "scr_text_slash_scr_text_gml_964_0": "\\E5* 噢天哪..^1. &* 我可以和你聊点事吗?/", "scr_text_slash_scr_text_gml_965_0": "* .../", "scr_text_slash_scr_text_gml_966_0": "\\E6* 实际上^1,那个^1,&什么事^1,都可以^1。&* 你来选。/", - "scr_text_slash_scr_text_gml_967_0": "\\C4", + "scr_text_slash_scr_text_gml_967_0": "", "scr_text_slash_scr_text_gml_970_0": "\\E4* 小Krissy^1!&* 你想聊点别的吗!?/", - "scr_text_slash_scr_text_gml_971_0": "\\C4", + "scr_text_slash_scr_text_gml_971_0": "", "scr_text_slash_scr_text_gml_979_0": "\\E2* 噢我的天哪^1,Asriel^1!&* 那个^1,真是个小可爱!/", "scr_text_slash_scr_text_gml_980_0": "\\E6* 你还记得我和他去跳舞那次吗?/", "scr_text_slash_scr_text_gml_981_0": "\\E2* 那真是..^1. &* 有史以来最棒的一晚!/", @@ -5287,7 +5287,7 @@ "scr_text_slash_scr_text_gml_1020_0": "没事了", "scr_text_slash_scr_text_gml_1021_0": "\\E4* Krissy!&* 那个^1,好久不见!/", "scr_text_slash_scr_text_gml_1022_0": "\\E0* 怎么了^1?&* 你想聊点什么吗?/", - "scr_text_slash_scr_text_gml_1023_0": "\\C4", + "scr_text_slash_scr_text_gml_1023_0": "", "scr_text_slash_scr_text_gml_1029_0": "\\E2* 哼^1,隔壁那个姐们&简直要把我逼疯。/", "scr_text_slash_scr_text_gml_1030_0": "\\E3* 我到哪里都能见到她^1。&* 她完全就是个复读机。/", "scr_text_slash_scr_text_gml_1031_0": "\\E5* 那个^1,可是为什么^1?&* 她就没意识到她永远成不了&我吗?/", @@ -5318,7 +5318,7 @@ "scr_text_slash_scr_text_gml_1073_0": "* 嘿^1。&* 嘿孩子。/", "scr_text_slash_scr_text_gml_1074_0": "* ...你想不想要买一套教程啊?/", "scr_text_slash_scr_text_gml_1075_0": "* 一共只需要50黑暗币。/", - "scr_text_slash_scr_text_gml_1076_0": "\\C2", + "scr_text_slash_scr_text_gml_1076_0": "", "scr_text_slash_scr_text_gml_1080_0": "#买", "scr_text_slash_scr_text_gml_1081_0": "#不", "scr_text_slash_scr_text_gml_1091_0": "\\M1* 真-真的!^1?&* 你真的愿意买么!?/", @@ -5331,7 +5331,7 @@ "scr_text_slash_scr_text_gml_1101_0": "\\M0* 你们就和我们一样^1。&* 像我们这样的人就应该&互帮互助。/", "scr_text_slash_scr_text_gml_1102_0": "\\M0* 请来这边。/%", "scr_text_slash_scr_text_gml_1110_0": "\\M1* 哈^1!哈^1!我说了五十么!^1?&* 好吧^1,我们正好在搞促销!&* 二十^1!二十黑暗币!/", - "scr_text_slash_scr_text_gml_1111_0": "\\C2", + "scr_text_slash_scr_text_gml_1111_0": "", "scr_text_slash_scr_text_gml_1120_0": "#买", "scr_text_slash_scr_text_gml_1121_0": "#不是", "scr_text_slash_scr_text_gml_1131_0": "\\M1* 真-真的!^1?&* 你真的愿意买么!?/", @@ -5344,7 +5344,7 @@ "scr_text_slash_scr_text_gml_1141_0": "\\M0* 你们就和我们一样^1。&* 像我们这样的人就应该&互帮互助。/", "scr_text_slash_scr_text_gml_1142_0": "\\M0* 请来这边。/%", "scr_text_slash_scr_text_gml_1150_0": "\\M2* 一!!^1!只要一块钱!!^1!&* 求求你了!!^1!求求你们了!!^1!&* 我现在就需要!!!/", - "scr_text_slash_scr_text_gml_1151_0": "\\C2", + "scr_text_slash_scr_text_gml_1151_0": "", "scr_text_slash_scr_text_gml_1167_0": "\\M1* 真-真的^1!?&* 你们改主意了!?/", "scr_text_slash_scr_text_gml_1168_0": "\\M0* 嘿嘿嘿..^1. &* 这边请^1,好先生们/%", "scr_text_slash_scr_text_gml_1172_0": "\\M1* 终-终于!/", @@ -5363,7 +5363,7 @@ "scr_text_slash_scr_text_gml_1204_0": "获得TP", "scr_text_slash_scr_text_gml_1205_0": "再见", "scr_text_slash_scr_text_gml_1206_0": "* 我是TP大师^1。&* 问我关于TP的事。/", - "scr_text_slash_scr_text_gml_1207_0": "\\C4", + "scr_text_slash_scr_text_gml_1207_0": "", "scr_text_slash_scr_text_gml_1211_0": "* 回见^1,孩子。/%", "scr_text_slash_scr_text_gml_1214_0": "* TP^1?什么是TP^1?&* 让你施放【法术】的东西!/", "scr_text_slash_scr_text_gml_1215_0": "* 盯着那根橙色光柱^1,&* 快满了就赶紧用些【法术】。/", @@ -5385,7 +5385,7 @@ "scr_text_slash_scr_text_gml_1253_0": "小知识", "scr_text_slash_scr_text_gml_1254_0": "再见", "scr_text_slash_scr_text_gml_1255_0": "* 我是Ralsei大师^1。&* 问我RALSEI的事。/", - "scr_text_slash_scr_text_gml_1256_0": "\\C4", + "scr_text_slash_scr_text_gml_1256_0": "", "scr_text_slash_scr_text_gml_1260_0": "* 回见^1,孩子。/%", "scr_text_slash_scr_text_gml_1263_0": "* Ralsei有个法术叫【安抚】^1。&* 在婴儿哭之前^1,用它把嘴堵。/", "scr_text_slash_scr_text_gml_1265_0": "* 不对^1!它是用来将一个&“疲惫”的敌人安全移出战斗。/", @@ -5403,7 +5403,7 @@ "scr_text_slash_scr_text_gml_1292_0": "小知识", "scr_text_slash_scr_text_gml_1293_0": "再见", "scr_text_slash_scr_text_gml_1294_0": "* 我是Susie大师^1。&* 问我关于SUSIE的事。/", - "scr_text_slash_scr_text_gml_1295_0": "\\C4", + "scr_text_slash_scr_text_gml_1295_0": "", "scr_text_slash_scr_text_gml_1299_0": "* 回见^1,孩子。/%", "scr_text_slash_scr_text_gml_1302_0": "* 一旦KRIS用【警告】^1,&SUSIE就打不中^1。&* 所以只要确保-/", "scr_text_slash_scr_text_gml_1304_0": "* 所以说没必要用这个。/", @@ -5434,7 +5434,7 @@ "scr_text_slash_scr_text_gml_1375_0": "小知识", "scr_text_slash_scr_text_gml_1376_0": "再见", "scr_text_slash_scr_text_gml_1377_0": "* 我是Kris大师^1。&* 问我关于KRIS的事。/", - "scr_text_slash_scr_text_gml_1378_0": "\\C4", + "scr_text_slash_scr_text_gml_1378_0": "", "scr_text_slash_scr_text_gml_1382_0": "* 之后再说吧^1,孩子。/%", "scr_text_slash_scr_text_gml_1385_0": "* HP变成负数时^1,&你的朋友会倒下/", "scr_text_slash_scr_text_gml_1386_0": "* 要让他们站起来^1,&方法简单又廉价/", @@ -5457,7 +5457,7 @@ "scr_text_slash_scr_text_gml_1418_0": "#不扔", "scr_text_slash_scr_text_gml_1421_0": "* “募捐洞”/", "scr_text_slash_scr_text_gml_1422_0": "* (如果你喜欢我们的教程^1,&请把你的钱扔进洞里。)/", - "scr_text_slash_scr_text_gml_1423_0": "\\C2", + "scr_text_slash_scr_text_gml_1423_0": "", "scr_text_slash_scr_text_gml_1426_0": "* (这个洞被现金装的快满出来了。)/%", "scr_text_slash_scr_text_gml_1433_0": "* (你把$1扔进了“洞”。)/", "scr_text_slash_scr_text_gml_1434_0": "* (这个“洞”不再有“空”。)/%", @@ -5478,7 +5478,7 @@ "scr_text_slash_scr_text_gml_1470_0": "* 那是...?/", "scr_text_slash_scr_text_gml_1472_0": "* 敞开肚子吃吧^1,我的死党。/", "scr_text_slash_scr_text_gml_1474_0": "* Kris^1,你想^1,唔^1,尝尝吗?/", - "scr_text_slash_scr_text_gml_1475_0": "\\C3", + "scr_text_slash_scr_text_gml_1475_0": "", "scr_text_slash_scr_text_gml_1488_0": "\\E6* 噢^1,有个..^1. &* 蜂蜜罐^1?在里面^1?/", "scr_text_slash_scr_text_gml_1489_0": "\\E1* ...装满了辣椒酱。/", "scr_text_slash_scr_text_gml_1491_0": "\\E3* 答对了^1,你们两个乖宝宝!/", @@ -5518,7 +5518,7 @@ "scr_text_slash_scr_text_gml_1589_0": "没有了", "scr_text_slash_scr_text_gml_1590_0": "* 噢..^1. 噢^1,是Kris.../", "scr_text_slash_scr_text_gml_1591_0": "\\E4* 你..^1. 你打算聊点什么吗?/", - "scr_text_slash_scr_text_gml_1592_0": "\\C4", + "scr_text_slash_scr_text_gml_1592_0": "", "scr_text_slash_scr_text_gml_1596_0": "* 哈?/%", "scr_text_slash_scr_text_gml_1599_0": "\\E3* 噢-噢^1,你说这些花...^1?&这些花是你爸爸送来的.../", "scr_text_slash_scr_text_gml_1600_0": "\\E0* 他..^1. 他总是来问&你在学校的情况.../", @@ -5564,12 +5564,12 @@ "scr_text_slash_scr_text_gml_1658_0": "#加黑桃", "scr_text_slash_scr_text_gml_1659_0": "#加方块", "scr_text_slash_scr_text_gml_1660_0": "切换", - "scr_text_slash_scr_text_gml_1662_0": "\\C3", + "scr_text_slash_scr_text_gml_1662_0": "", "scr_text_slash_scr_text_gml_1683_0": "#是", "scr_text_slash_scr_text_gml_1684_0": "#否", "scr_text_slash_scr_text_gml_1687_0": "* (生命的存在离不开进食。^1)&* (哪怕是苔藓也要喝水。)/", "scr_text_slash_scr_text_gml_1688_0": "* (延续生命存在的循环?)/", - "scr_text_slash_scr_text_gml_1689_0": "\\C2", + "scr_text_slash_scr_text_gml_1689_0": "", "scr_text_slash_scr_text_gml_1693_0": "* (苔藓被吃掉了。^1)&* (循环得以继续...)/%", "scr_text_slash_scr_text_gml_1702_0": "* (你吃掉了苔藓。^1)&* (尝起来..^1. 藓藓的。)/", "scr_text_slash_scr_text_gml_1703_0": "* (你的HP苔高到了极藓。)/%", @@ -5578,7 +5578,7 @@ "scr_text_slash_scr_text_gml_1714_0": "#不拿", "scr_text_slash_scr_text_gml_1717_0": "* (这些镣铐看起来意外地&很时髦。)/", "scr_text_slash_scr_text_gml_1718_0": "* (拿走吗?)/", - "scr_text_slash_scr_text_gml_1719_0": "\\C2", + "scr_text_slash_scr_text_gml_1719_0": "", "scr_text_slash_scr_text_gml_1723_0": "* (没有任何东西压制你...)/%", "scr_text_slash_scr_text_gml_1733_0": "* (你带的防具太多了。)/%", "scr_text_slash_scr_text_gml_1738_0": "* (铁制镣铐被放进了你的&防具中。)/%", @@ -5589,7 +5589,7 @@ "scr_text_slash_scr_text_gml_1754_0": "\\E1* .../", "scr_text_slash_scr_text_gml_1755_0": "\\E1* Kris.../", "scr_text_slash_scr_text_gml_1756_0": "\\E6* 你在担心Susie吗?/", - "scr_text_slash_scr_text_gml_1757_0": "\\C2", + "scr_text_slash_scr_text_gml_1757_0": "", "scr_text_slash_scr_text_gml_1762_0": "\\E6* 呃,不论你怎么想.../", "scr_text_slash_scr_text_gml_1763_0": "\\E0* 我觉得都可以花点时间.../", "scr_text_slash_scr_text_gml_1764_0": "\\E6* 闭上眼睛^1,&想想她现在在做什么.../%", @@ -5597,7 +5597,7 @@ "scr_text_slash_scr_text_gml_1769_0": "#往右走", "scr_text_slash_scr_text_gml_1772_0": "\\E0* (好的..^1. 脱离囚笼了...)/", "scr_text_slash_scr_text_gml_1773_0": "* (下一步去哪...?)/", - "scr_text_slash_scr_text_gml_1774_0": "\\C2", + "scr_text_slash_scr_text_gml_1774_0": "", "scr_text_slash_scr_text_gml_1780_0": "\\E9* 呃...?Kris...^1?&你有说什么吗?/", "scr_text_slash_scr_text_gml_1781_0": "\\E0* (...我听不见了...)/%", "scr_text_slash_scr_text_gml_1785_0": "#修理东西", @@ -5605,7 +5605,7 @@ "scr_text_slash_scr_text_gml_1787_0": "修理我们", "scr_text_slash_scr_text_gml_1789_0": "* 啧^1啧^1。我是工匠Malius^1。&* 我什么都会修理^1。武器,防具.../", "scr_text_slash_scr_text_gml_1790_0": "* ...连你也能修理^1!&* 啧^1,啧^1,有何贵干?/", - "scr_text_slash_scr_text_gml_1791_0": "\\C3", + "scr_text_slash_scr_text_gml_1791_0": "", "scr_text_slash_scr_text_gml_1795_0": "* 嗯^1?还有什么事吗?/%", "scr_text_slash_scr_text_gml_1812_0": "* 哎呀^1,哎呀^1。&* 你们没啥可修理的^1。/", "scr_text_slash_scr_text_gml_1813_0": "* 但如果你们找到什么坏掉的&东西^1,就来这吧。/", @@ -5624,9 +5624,9 @@ "scr_text_slash_scr_text_gml_1854_0": "#不买", "scr_text_slash_scr_text_gml_1857_0": "* 想来一块方钻巧克力吗^1?/", "scr_text_slash_scr_text_gml_1858_0": "* 所有收入都将用于方钻&救济基金^1,大概吧^1。&* 只卖$40!/", - "scr_text_slash_scr_text_gml_1859_0": "\\C2", + "scr_text_slash_scr_text_gml_1859_0": "", "scr_text_slash_scr_text_gml_1863_0": "* 方钻巧克力^1,只卖$40^1,大概吧。/", - "scr_text_slash_scr_text_gml_1864_0": "\\C2", + "scr_text_slash_scr_text_gml_1864_0": "", "scr_text_slash_scr_text_gml_1877_0": "* 谢啦^1,大概吧^1。&* (方钻巧克力被放进了你的物品栏。)/%", "scr_text_slash_scr_text_gml_1881_0": "* ...你的物品太多了^1,大概吧。/%", "scr_text_slash_scr_text_gml_1886_0": "* 你的钱不够^1,大概吧。/%", @@ -5634,7 +5634,7 @@ "scr_text_slash_scr_text_gml_1900_0": "#买", "scr_text_slash_scr_text_gml_1901_0": "#不买", "scr_text_slash_scr_text_gml_1904_0": "* (心桃制作的红心甜甜圈。^1)&* (收入都将用于心桃&医疗资金。售价$40。)/", - "scr_text_slash_scr_text_gml_1905_0": "\\C2", + "scr_text_slash_scr_text_gml_1905_0": "", "scr_text_slash_scr_text_gml_1918_0": "* (心桃好像很开心。^1)&* (红心甜甜圈被放进了你的物品栏。)/%", "scr_text_slash_scr_text_gml_1922_0": "* (你的物品栏空间不足。^1)&* (心桃有点伤心。)/%", "scr_text_slash_scr_text_gml_1927_0": "* (你的钱不够。^1)&* (心桃有点伤心。)/%", @@ -5645,7 +5645,7 @@ "scr_text_slash_scr_text_gml_1946_0": "\\E1* 有兴趣收购一块Lancer饼干吗?/", "scr_text_slash_scr_text_gml_1948_0": "* 收入都将用于教你们做人。/", "scr_text_slash_scr_text_gml_1950_0": "* 只卖$40。/", - "scr_text_slash_scr_text_gml_1951_0": "\\C2", + "scr_text_slash_scr_text_gml_1951_0": "", "scr_text_slash_scr_text_gml_1968_0": "* 嘻嘻嘻^1,谢谢啦.../", "scr_text_slash_scr_text_gml_1970_0": "* (LANCER饼干被放进了你的物品栏。)/", "scr_text_slash_scr_text_gml_1972_0": "\\E2* 多谢你们上我们的当!!/", @@ -5674,9 +5674,9 @@ "scr_text_slash_scr_text_gml_2037_0": "\\E2* 这份工作太无聊了^1。&* 这小镇上从没发生过任何事!/", "scr_text_slash_scr_text_gml_2038_0": "\\E4* 嘎..^1. 我真希望发生点&翻天覆地的事!/", "scr_text_slash_scr_text_gml_2039_0": "\\E7* ...哈^1?&* 你有事要报告?/", - "scr_text_slash_scr_text_gml_2040_0": "\\C4", + "scr_text_slash_scr_text_gml_2040_0": "", "scr_text_slash_scr_text_gml_2044_0": "\\E1* 有什么要报告的吗?/", - "scr_text_slash_scr_text_gml_2045_0": "\\C4", + "scr_text_slash_scr_text_gml_2045_0": "", "scr_text_slash_scr_text_gml_2053_0": "\\E0* ...Alphys?/", "scr_text_slash_scr_text_gml_2054_0": "\\E3* Alphys是谁^1?&* 完全不知道你在说谁。/", "scr_text_slash_scr_text_gml_2055_0": "\\E2* ...怎么了^1,&那个家伙做了什么&违法的事情吗!?/", @@ -5699,9 +5699,9 @@ "scr_text_slash_scr_text_gml_2085_0": "不想", "scr_text_slash_scr_text_gml_2088_0": "\\E0* 小家伙^1!&* 是我呀!/", "scr_text_slash_scr_text_gml_2089_0": "\\E3* 想在我疯掉之前聊个天吗?/", - "scr_text_slash_scr_text_gml_2090_0": "\\C4", + "scr_text_slash_scr_text_gml_2090_0": "", "scr_text_slash_scr_text_gml_2093_0": "\\E0* 嘿...嘿^1!&* 嘿小家伙!&* 最近怎样?!/", - "scr_text_slash_scr_text_gml_2094_0": "\\C4", + "scr_text_slash_scr_text_gml_2094_0": "", "scr_text_slash_scr_text_gml_2102_0": "\\E0* 你知道Azzy什么时候回家吗?/", "scr_text_slash_scr_text_gml_2103_0": "\\E8* 你...你别告诉他啊^1,&但我可想他了。/", "scr_text_slash_scr_text_gml_2104_0": "\\E8* 要能像以前一样^1,&和他一起在镇上闲逛该多好.../", @@ -5736,7 +5736,7 @@ "scr_text_slash_scr_text_gml_2150_0": "* Kris..^1. &能在这儿遇到你还真是个惊喜^1。&* 况且还是上学的日子。/", "scr_text_slash_scr_text_gml_2151_0": "* 你现在这个时候过来&肯定有什么原因吧。/", "scr_text_slash_scr_text_gml_2152_0": "* 我^1,Alvin神父^1,殷切地希望..^1. &* 如果你有任何精神负担的话^1,&请一定要^1,向我倾诉。/", - "scr_text_slash_scr_text_gml_2153_0": "\\C2", + "scr_text_slash_scr_text_gml_2153_0": "", "scr_text_slash_scr_text_gml_2159_0": "* Kris,想喝我们“奇葩”的果汁&的话^1,你就应该来参加礼拜。/", "scr_text_slash_scr_text_gml_2160_0": "* 我们的唱诗班自从你哥哥离开后&音色就稍显不够丰满了。/", "scr_text_slash_scr_text_gml_2161_0": "* Kris^1,如果你能来和我们一起唱&就再好不过了。/", @@ -5747,7 +5747,7 @@ "scr_text_slash_scr_text_gml_2173_0": "#是", "scr_text_slash_scr_text_gml_2174_0": "#否", "scr_text_slash_scr_text_gml_2177_0": "* (香味马克笔。)/", - "scr_text_slash_scr_text_gml_2178_0": "\\C2", + "scr_text_slash_scr_text_gml_2178_0": "", "scr_text_slash_scr_text_gml_2184_0": "* (你把棉花糖的那份挖出来&并对其吹气。)/%", "scr_text_slash_scr_text_gml_2188_0": "* (反正那份巧克力的闻起来&太假了。)/%", "scr_text_slash_scr_text_gml_2193_0": "#是", @@ -5761,7 +5761,7 @@ "scr_text_slash_scr_text_gml_2227_0": "* (这是医院的公用钢琴^1,&为了放在角落里而做得很小。)/", "scr_text_slash_scr_text_gml_2228_0": "* (后果就是,很多常用音阶都没了。)/", "scr_text_slash_scr_text_gml_2229_0": "* (要弹吗?)/", - "scr_text_slash_scr_text_gml_2230_0": "\\C2", + "scr_text_slash_scr_text_gml_2230_0": "", "scr_text_slash_scr_text_gml_2238_0": "* (叮铃...)/%", "scr_text_slash_scr_text_gml_2242_0": "* (你的双手在琴键上徘徊,&一个键也没按。)/%", "scr_text_slash_scr_text_gml_2247_0": "* (叮铃^1,叮铃...)/", @@ -5786,7 +5786,7 @@ "scr_text_slash_scr_text_gml_2271_0": "你谁#啊你?", "scr_text_slash_scr_text_gml_2274_0": "\\E0* 嚯,瞧瞧这是谁来了。/", "scr_text_slash_scr_text_gml_2275_0": "\\E2* 你好啊^1,孩子!/", - "scr_text_slash_scr_text_gml_2276_0": "\\C2", + "scr_text_slash_scr_text_gml_2276_0": "", "scr_text_slash_scr_text_gml_2280_0": "#商店", "scr_text_slash_scr_text_gml_2281_0": "#朋友", "scr_text_slash_scr_text_gml_2282_0": "离开", @@ -5794,13 +5794,13 @@ "scr_text_slash_scr_text_gml_2287_0": "\\E5* 尤其咱们俩之前&都没见过面。/", "scr_text_slash_scr_text_gml_2288_0": "\\E0* 叫我sans吧^1。&* 骷髅sans^1。&* 我是新搬来城里的。/", "scr_text_slash_scr_text_gml_2289_0": "\\E2* 怎么了?/", - "scr_text_slash_scr_text_gml_2290_0": "\\C3", + "scr_text_slash_scr_text_gml_2290_0": "", "scr_text_slash_scr_text_gml_2294_0": "\\E3* 嗯..^1. 你还别说^1,&问到点子上了。/", "scr_text_slash_scr_text_gml_2295_0": "\\E5* 我是sans^1。&* 你友善的骷髅邻居。/", "scr_text_slash_scr_text_gml_2296_0": "\\E2* 怎么了?/", - "scr_text_slash_scr_text_gml_2297_0": "\\C3", + "scr_text_slash_scr_text_gml_2297_0": "", "scr_text_slash_scr_text_gml_2303_0": "\\E5* 怎么了?/", - "scr_text_slash_scr_text_gml_2304_0": "\\C3", + "scr_text_slash_scr_text_gml_2304_0": "", "scr_text_slash_scr_text_gml_2310_0": "#我", "scr_text_slash_scr_text_gml_2311_0": "#我妈妈", "scr_text_slash_scr_text_gml_2312_0": "我老师", @@ -5811,7 +5811,7 @@ "scr_text_slash_scr_text_gml_2320_0": "\\E5* 快点来个人跟这家店的&老板抱怨两句吧。/%", "scr_text_slash_scr_text_gml_2324_0": "\\E0* 我们刚搬过来^1,&所以还没有什么熟人。/", "scr_text_slash_scr_text_gml_2325_0": "\\E2* 怎么^1,&你有人介绍给我认识吗?/", - "scr_text_slash_scr_text_gml_2326_0": "\\C4", + "scr_text_slash_scr_text_gml_2326_0": "", "scr_text_slash_scr_text_gml_2332_0": "\\E2* 噢^1,你还有事要忙吗?/", "scr_text_slash_scr_text_gml_2333_0": "\\E0* 我也一样。/", "scr_text_slash_scr_text_gml_2334_0": "\\E2* 总之^1,我会在一直站着这&无所事事的。/%", @@ -5849,7 +5849,7 @@ "scr_text_slash_scr_text_gml_2403_0": "* 您好。/", "scr_text_slash_scr_text_gml_2404_0": "* 这里是智障婴儿热线。/", "scr_text_slash_scr_text_gml_2405_0": "* 智障请按1^1,婴儿请按2^1,&智障婴儿请按3^1,其他请按4。/", - "scr_text_slash_scr_text_gml_2406_0": "\\C4", + "scr_text_slash_scr_text_gml_2406_0": "", "scr_text_slash_scr_text_gml_2409_0": "* (铃^1,铃...^1)&* (铃^1,铃...^1)&* (铃^1,铃...)/", "scr_text_slash_scr_text_gml_2410_0": "* (电话那头一直无人接听。)/%", "scr_text_slash_scr_text_gml_2417_0": "* 啊!?/", @@ -5869,7 +5869,7 @@ "scr_text_slash_scr_text_gml_2440_0": "\\E1* 我有点事需要找人帮忙。/", "scr_text_slash_scr_text_gml_2441_0": "\\E2* 如果你能过来的话&那就太好了。/", "scr_text_slash_scr_text_gml_2442_0": "\\E5* 我就住在隔壁^1,怎么样。/", - "scr_text_slash_scr_text_gml_2443_0": "\\C2", + "scr_text_slash_scr_text_gml_2443_0": "", "scr_text_slash_scr_text_gml_2451_0": "\\E2* 哇噢..^1. &回答得毫不迟疑啊^1,唔。/", "scr_text_slash_scr_text_gml_2452_0": "\\E0* 那可不好^1。&* 我完全是个陌生人啊。/", "scr_text_slash_scr_text_gml_2453_0": "\\E5* 你起码得稍微迟疑一下。/", @@ -5909,13 +5909,13 @@ "scr_text_slash_scr_text_gml_2511_0": "\\E5* .../", "scr_text_slash_scr_text_gml_2512_0": "\\E4* 呃^1,Kris?/", "scr_text_slash_scr_text_gml_2513_0": "\\E0* 你想要..^1. 聊点什么吗?/", - "scr_text_slash_scr_text_gml_2514_0": "\\C4", + "scr_text_slash_scr_text_gml_2514_0": "", "scr_text_slash_scr_text_gml_2517_0": "\\E0* 嗨Kris^1!&* 怎么了吗?/", - "scr_text_slash_scr_text_gml_2518_0": "\\C4", + "scr_text_slash_scr_text_gml_2518_0": "", "scr_text_slash_scr_text_gml_2524_0": "#她人很好", "scr_text_slash_scr_text_gml_2525_0": "#人品很糟", "scr_text_slash_scr_text_gml_2526_0": "她吃粉笔", - "scr_text_slash_scr_text_gml_2527_0": "...", + "scr_text_slash_scr_text_gml_2527_0": "", "scr_text_slash_scr_text_gml_2530_0": "\\E4* Susie^1!没错^1,&你之前和Susie呆在一起!/", "scr_text_slash_scr_text_gml_2531_0": "\\E3* 你们没回来上课^1,&搞得我很担心^1,但是.../", "scr_text_slash_scr_text_gml_2532_0": "\\E4* 最后还是一切顺利解决了^1!&* 大概?/", @@ -5924,7 +5924,7 @@ "scr_text_slash_scr_text_gml_2535_0": "\\E4* Susie..^1. 我有点..^1. &* 好奇她是怎样的一个人?/", "scr_text_slash_scr_text_gml_2536_0": "\\E8* 我是说^1,谁不对她好奇嘛^1?&* 她从来不和任何人说话。/", "scr_text_slash_scr_text_gml_2537_0": "\\E4* 所以^1,Kris^1,你能告诉我些&关于她的事吗^1?如果可以的话.../", - "scr_text_slash_scr_text_gml_2538_0": "\\C4", + "scr_text_slash_scr_text_gml_2538_0": "", "scr_text_slash_scr_text_gml_2542_0": "\\E2* 噢,介意我再&多打听她一点吗!?/", "scr_text_slash_scr_text_gml_2543_0": "\\E3* 呃^1,你能不能看出^1,她^1,唔.../", "scr_text_slash_scr_text_gml_2544_0": "\\E8* (等、等等^1,&这个你肯定不会知道...)/%", @@ -5983,7 +5983,7 @@ "scr_text_slash_scr_text_gml_2636_0": "#否", "scr_text_slash_scr_text_gml_2639_0": "* (如果你上床睡觉^1,&这一章节的旅途将会结束。)/", "scr_text_slash_scr_text_gml_2640_0": "* (你要上床睡觉吗?)/", - "scr_text_slash_scr_text_gml_2641_0": "\\C2", + "scr_text_slash_scr_text_gml_2641_0": "", "scr_text_slash_scr_text_gml_2648_0": "* (你决定上床睡觉。)/%", "scr_text_slash_scr_text_gml_2652_0": "* (你稍后再睡。)/%", "scr_text_slash_scr_text_gml_2657_0": "#睡觉", @@ -5991,7 +5991,7 @@ "scr_text_slash_scr_text_gml_2661_0": "* (这是你的床。)/", "scr_text_slash_scr_text_gml_2662_0": "* (如果你回床上睡觉^1,&\\cY可能会错过很多重要的事情\\cW。)/", "scr_text_slash_scr_text_gml_2663_0": "* (你要上床睡觉吗?)/", - "scr_text_slash_scr_text_gml_2664_0": "\\C2", + "scr_text_slash_scr_text_gml_2664_0": "", "scr_text_slash_scr_text_gml_2670_0": "#睡!!!", "scr_text_slash_scr_text_gml_2671_0": "#不睡!!!", "scr_text_slash_scr_text_gml_2676_0": "* (由于某些原因^1,&你决定躺回去继续睡...)/%", @@ -6016,7 +6016,7 @@ "scr_text_slash_scr_text_gml_2711_0": "\\TJ* 并非如此^1。&* 在这小小的自由世界中,&我感到孤独。/", "scr_text_slash_scr_text_gml_2712_0": "* 所以^1,你想不想和我^1,&玩个游戏...?/", "scr_text_slash_scr_text_gml_2713_0": "* 我会带你见识一下&真正的自由!/", - "scr_text_slash_scr_text_gml_2714_0": "\\C2", + "scr_text_slash_scr_text_gml_2714_0": "", "scr_text_slash_scr_text_gml_2718_0": "* 找到钥匙^1,我就放你自由^1,自由。/", "scr_text_slash_scr_text_gml_2719_0": "* 钥匙被藏了起来^1。&老店主知道秘密。/%", "scr_text_slash_scr_text_gml_2724_0": "玩#游戏", @@ -6030,19 +6030,19 @@ "scr_text_slash_scr_text_gml_2748_0": "* 呃嘿嘿^1,钥匙来啦^1,钥匙来啦。/", "scr_text_slash_scr_text_gml_2749_0": "* 只差一步就可以让&美妙绝伦的狂欢&重获自由啦!/", "scr_text_slash_scr_text_gml_2750_0": "* 你该不会还想着置身事外吧?/", - "scr_text_slash_scr_text_gml_2751_0": "\\C2", + "scr_text_slash_scr_text_gml_2751_0": "", "scr_text_slash_scr_text_gml_2765_0": "* (你把钥匙放在门前。)/%", "scr_text_slash_scr_text_gml_2770_0": "* 你早就已经无法回头啦^1!&你别无选择!/%", "scr_text_slash_scr_text_gml_2776_0": "* 请勿逗留!/%", "scr_text_slash_scr_text_gml_2780_0": "#烧", "scr_text_slash_scr_text_gml_2781_0": "#不烧", "scr_text_slash_scr_text_gml_2784_0": "* 烧掉它。/", - "scr_text_slash_scr_text_gml_2785_0": "\\C2", + "scr_text_slash_scr_text_gml_2785_0": "", "scr_text_slash_scr_text_gml_2789_0": "#诚挚#道歉", "scr_text_slash_scr_text_gml_2790_0": "#恐吓", "scr_text_slash_scr_text_gml_2793_0": "* 嘿^1!你们是之前揍我的人!/", "scr_text_slash_scr_text_gml_2794_0": "* 我不会原谅你们的^1,快滚!/", - "scr_text_slash_scr_text_gml_2795_0": "\\C2", + "scr_text_slash_scr_text_gml_2795_0": "", "scr_text_slash_scr_text_gml_2806_0": "* 对不起^1,之前是我们不对!/", "scr_text_slash_scr_text_gml_2807_0": "\\E8* 我们保证不会再犯了!/", "scr_text_slash_scr_text_gml_2809_0": "* 嗯...^1?你们愿意道歉^1?&那我只好原谅你们了.../", @@ -6056,7 +6056,7 @@ "scr_text_slash_scr_text_gml_2840_0": "#听", "scr_text_slash_scr_text_gml_2841_0": "#不听", "scr_text_slash_scr_text_gml_2844_0": "* (一台音乐播放器。^1)&* (要听一听吗?)/", - "scr_text_slash_scr_text_gml_2845_0": "\\C2", + "scr_text_slash_scr_text_gml_2845_0": "", "scr_text_slash_scr_text_gml_2852_0": "* (...)/", "scr_text_slash_scr_text_gml_2853_0": "* (里面全是卡通的啪叽声。)/%", "scr_text_slash_scr_text_gml_2857_0": "* (你选择不听。)/%", @@ -6064,14 +6064,14 @@ "scr_text_slash_scr_text_gml_2863_0": "#一层", "scr_text_slash_scr_text_gml_2864_0": "??????", "scr_text_slash_scr_text_gml_2866_0": "* (要乘电梯前往哪里?)/", - "scr_text_slash_scr_text_gml_2867_0": "\\C3", + "scr_text_slash_scr_text_gml_2867_0": "", "scr_text_slash_scr_text_gml_2892_0": "* (你已经在那了。)/%", "scr_text_slash_scr_text_gml_2908_0": "* (你已经在那了。)/%", "scr_text_slash_scr_text_gml_2924_0": "* (你已经在那了。)/%", "scr_text_slash_scr_text_gml_2933_0": "#坐", "scr_text_slash_scr_text_gml_2934_0": "#不坐", "scr_text_slash_scr_text_gml_2937_0": "* (乘坐电梯吗?)/", - "scr_text_slash_scr_text_gml_2938_0": "\\C2", + "scr_text_slash_scr_text_gml_2938_0": "", "scr_text_slash_scr_text_gml_2965_0": "#是", "scr_text_slash_scr_text_gml_2966_0": "#不", "scr_text_slash_scr_text_gml_2972_0": "\\E0* 喂Kris./", @@ -6081,7 +6081,7 @@ "scr_text_slash_scr_text_gml_2976_0": "\\E2* 其实你想跟每个人&正式地告个别^1,我说中了吧?/", "scr_text_slash_scr_text_gml_2977_0": "\\E3* 这个嘛^1,我反正一点都不打算&再多留半刻^1,不过.../", "scr_text_slash_scr_text_gml_2978_0": "\\E2* 咱们回去多待一会也不是不行^1。&按你的意思。/", - "scr_text_slash_scr_text_gml_2979_0": "\\C2", + "scr_text_slash_scr_text_gml_2979_0": "", "scr_text_slash_scr_text_gml_2985_0": "\\E2* 好了^1,&那咱们还磨蹭什么呢?/", "scr_text_slash_scr_text_gml_2986_0": "\\E9* 咱们回头吧!/%", "scr_text_slash_scr_text_gml_2990_0": "\\E4* 拜托^1,别逞强了!/", @@ -6094,7 +6094,7 @@ "scr_text_slash_scr_text_gml_3004_0": "\\E4* ...并且对我们言听计从。/", "scr_text_slash_scr_text_gml_3006_0": "* 吼吼吼!^1!&我们的话就是命令! !/", "scr_text_slash_scr_text_gml_3009_0": "\\E1* 所以^1,你们怎么看...?/", - "scr_text_slash_scr_text_gml_3010_0": "\\C2", + "scr_text_slash_scr_text_gml_3010_0": "", "scr_text_slash_scr_text_gml_3014_0": "* 呃^1,没必要回答了。/", "scr_text_slash_scr_text_gml_3015_0": "\\E2* 反正怎样我们都要&揍扁你们的^1,所以.../", "scr_text_slash_scr_text_gml_3016_0": "\\E3* 拜拜了!/%", @@ -6104,7 +6104,7 @@ "scr_text_slash_scr_text_gml_3024_0": "花", "scr_text_slash_scr_text_gml_3025_0": "没什么", "scr_text_slash_scr_text_gml_3026_0": "* Kris^1?怎么了^1,亲爱的?/", - "scr_text_slash_scr_text_gml_3027_0": "\\C4", + "scr_text_slash_scr_text_gml_3027_0": "", "scr_text_slash_scr_text_gml_3033_0": "\\E0* Kris^1,亲爱的^1,&你已经长得这么大了.../", "scr_text_slash_scr_text_gml_3034_0": "\\E9* 过不了多久你也要去上大学了.../", "scr_text_slash_scr_text_gml_3035_0": "\\E1* .../", @@ -6138,12 +6138,12 @@ "scr_text_slash_scr_text_gml_3083_0": "#平原", "scr_text_slash_scr_text_gml_3084_0": "#森林", "scr_text_slash_scr_text_gml_3087_0": "* (这是一扇门。^1)&* (你要去哪里?)/", - "scr_text_slash_scr_text_gml_3088_0": "\\C2", + "scr_text_slash_scr_text_gml_3088_0": "", "scr_text_slash_scr_text_gml_3091_0": "#森林", "scr_text_slash_scr_text_gml_3092_0": "烘焙特卖", - "scr_text_slash_scr_text_gml_3093_0": "\\C3", + "scr_text_slash_scr_text_gml_3093_0": "", "scr_text_slash_scr_text_gml_3097_0": "城堡", - "scr_text_slash_scr_text_gml_3098_0": "\\C4", + "scr_text_slash_scr_text_gml_3098_0": "", "scr_text_slash_scr_text_gml_3103_0": "* (但什么也没有发生。)/%", "scr_text_slash_scr_text_gml_3124_0": "* (神奇的是^1,你已经在那里了。)/%", "scr_text_slash_scr_text_gml_3128_0": "* (门打开了...)/%", @@ -6151,7 +6151,7 @@ "scr_text_slash_scr_text_gml_3138_0": "#不要", "scr_text_slash_scr_text_gml_3141_0": "* 嘛噶里叭^1!&* 那个蛋糕^1!&* 它翻腾着能量!/", "scr_text_slash_scr_text_gml_3142_0": "* 这是我的蛋糕^1,对不对!^1?&* 你把它修好了!^1?&* 你能还给我吗!?/", - "scr_text_slash_scr_text_gml_3143_0": "\\C2", + "scr_text_slash_scr_text_gml_3143_0": "", "scr_text_slash_scr_text_gml_3151_0": "* 俺哒妈咩^1!我的旧蛋糕^1!&我高兴得都快要转起来了!/", "scr_text_slash_scr_text_gml_3152_0": "* 我的朋友们^1,来分享我的财富吧^1!&我还存着很多不那么好的蛋糕,&都不想要了!/", "scr_text_slash_scr_text_gml_3153_0": "* 如果你身上没有蛋糕^1,&就来我这里。&* 我会送你一个^1,多少次都行!/", @@ -6162,7 +6162,7 @@ "scr_text_slash_scr_text_gml_3167_0": "#否", "scr_text_slash_scr_text_gml_3173_0": "* 妈妈咪叭^1!你喜欢我的&淘汰甜品吗?/%", "scr_text_slash_scr_text_gml_3177_0": "* 麦啊咪勾^1!你想要一份&次品蛋糕吗,我的朋友?/", - "scr_text_slash_scr_text_gml_3178_0": "\\C2", + "scr_text_slash_scr_text_gml_3178_0": "", "scr_text_slash_scr_text_gml_3186_0": "* 请拿着这个蛋糕^1!&它一文不值^1,我亲爱的朋友!/", "scr_text_slash_scr_text_gml_3188_0": "\\S0* (你获得了旋转蛋糕。)/%", "scr_text_slash_scr_text_gml_3191_0": "* 妈妈西叭^1!你身上太多&不是蛋糕的东西了!/%", @@ -6171,10 +6171,10 @@ "scr_text_slash_scr_text_gml_3202_0": "#不拿", "scr_text_slash_scr_text_gml_3205_0": "* (这里有一个男人。)/", "scr_text_slash_scr_text_gml_3206_0": "* (他把什么东西递给了你。)/", - "scr_text_slash_scr_text_gml_3207_0": "\\C2", + "scr_text_slash_scr_text_gml_3207_0": "", "scr_text_slash_scr_text_gml_3214_0": "* (你得到了一颗蛋。)/%", "scr_text_slash_scr_text_gml_3220_0": "* (于是他不必久留了。)/%", - "scr_textsound_slash_scr_textsound_gml_31_0": "\\", + "scr_textsound_slash_scr_textsound_gml_31_0": "", "scr_torface_slash_scr_torface_gml_1_0": "\\TX \\F0 \\E~1 \\FT \\TT %", "scr_weaponinfo_slash_scr_weaponinfo_gml_29_0": "木剑", "scr_weaponinfo_slash_scr_weaponinfo_gml_30_0": "一柄有着碳强化核心的#练习用木剑。", @@ -6222,23 +6222,23 @@ "scr_weaponinfo_slash_scr_weaponinfo_gml_225_0": "这是用桌布做的!", "scr_weaponinfo_slash_scr_weaponinfo_gml_226_0": "我会保护大家的!", "scr_weaponinfo_slash_scr_weaponinfo_gml_239_0": "毛绒度提升", - "scr_windowcaption_slash_scr_windowcaption_gml_1_0": "DELTARUNE", - "special_name_check_01": "SUSIE", - "special_name_check_02": "NOELLE", - "special_name_check_03": "KRIS", - "special_name_check_04": "TORIEL", - "special_name_check_05": "ASRIEL", - "special_name_check_06": "ASGORE", - "special_name_check_07": "SANS", - "special_name_check_08": "PAPYRUS", - "special_name_check_09": "ALPHYS", - "special_name_check_10": "UNDYNE", - "special_name_check_11": "RUDY", - "special_name_check_12": "BERDLY", - "special_name_check_13": "CATTY", - "special_name_check_14": "CATTI", - "special_name_check_15": "BRATTY", - "special_name_check_16": "GERSON", - "special_name_check_17": "JOCKINGTON", - "special_name_check_18": "QC" + "scr_windowcaption_slash_scr_windowcaption_gml_1_0": "", + "special_name_check_01": "", + "special_name_check_02": "", + "special_name_check_03": "", + "special_name_check_04": "", + "special_name_check_05": "", + "special_name_check_06": "", + "special_name_check_07": "", + "special_name_check_08": "", + "special_name_check_09": "", + "special_name_check_10": "", + "special_name_check_11": "", + "special_name_check_12": "", + "special_name_check_13": "", + "special_name_check_14": "", + "special_name_check_15": "", + "special_name_check_16": "", + "special_name_check_17": "", + "special_name_check_18": "" } \ No newline at end of file diff --git a/text_original/ch2/zh_CN.json b/text_original/ch2/zh_CN.json index 2a3dba1..4e9f94d 100644 --- a/text_original/ch2/zh_CN.json +++ b/text_original/ch2/zh_CN.json @@ -1,40 +1,42 @@ { - "DEVICE_CHOICE_slash_Create_0_gml_7_0": "EGG", + "DEVICE_CHOICE_slash_Create_0_gml_7_0": "", "DEVICE_CHOICE_slash_Create_0_gml_28_0": "否", "DEVICE_CHOICE_slash_Create_0_gml_29_0": "是", - "DEVICE_CHOICE_slash_Create_0_gml_64_0": "GRAINS", - "DEVICE_CHOICE_slash_Create_0_gml_65_0": "MEAT", - "DEVICE_CHOICE_slash_Create_0_gml_66_0": "DAIRY", - "DEVICE_CHOICE_slash_Create_0_gml_67_0": "SWEETS", - "DEVICE_CHOICE_slash_Create_0_gml_68_0": "FRUIT", - "DEVICE_CHOICE_slash_Create_0_gml_69_0": "VEGETABLE", - "DEVICE_CHOICE_slash_Create_0_gml_70_0": "EGG", - "DEVICE_CONTACT_slash_Other_10_gml_1_0": "すーじぃ", - "DEVICE_CONTACT_slash_Step_0_gml_5_0": " ^9 ^8 %", + "DEVICE_CHOICE_slash_Create_0_gml_64_0": "", + "DEVICE_CHOICE_slash_Create_0_gml_65_0": "", + "DEVICE_CHOICE_slash_Create_0_gml_66_0": "", + "DEVICE_CHOICE_slash_Create_0_gml_67_0": "", + "DEVICE_CHOICE_slash_Create_0_gml_68_0": "", + "DEVICE_CHOICE_slash_Create_0_gml_69_0": "", + "DEVICE_CHOICE_slash_Create_0_gml_70_0": "", + "DEVICE_CHOICE_slash_User_0_gml_1_0": "", + "DEVICE_CHOICE_slash_User_0_gml_2_0": "", + "DEVICE_CONTACT_slash_Other_10_gml_1_0": "", + "DEVICE_CONTACT_slash_Step_0_gml_5_0": "", "DEVICE_CONTACT_slash_Step_0_gml_6_0": " 你^6&听得到吗^6?\\M1^6 %", "DEVICE_CONTACT_slash_Step_0_gml_7_0": "^6 \\M0我^6们& 连接上了吗^6?\\M1 ^6 ^6 %%", - "DEVICE_CONTACT_slash_Step_0_gml_8_0": "\\M0...", + "DEVICE_CONTACT_slash_Step_0_gml_8_0": "", "DEVICE_CONTACT_slash_Step_0_gml_33_0": "\\M0太棒了^4。\\M1 ^6 %", "DEVICE_CONTACT_slash_Step_0_gml_34_0": "^6 \\M0真^4是& 太棒了^4。\\M1 ^6 %", "DEVICE_CONTACT_slash_Step_0_gml_35_0": "\\M2 \\M0  现在..^4. \\M1 ^7 %", "DEVICE_CONTACT_slash_Step_0_gml_36_0": "\\M0 我们可^5以&  开始了^4。\\M1 ^6 %%", "DEVICE_CONTACT_slash_Step_0_gml_107_0": "\\M0首先..^4. \\M1 ^6 %", "DEVICE_CONTACT_slash_Step_0_gml_111_0": "\\M0你必须创^6造&一个容器^4。\\M1 ^6 %%", - "DEVICE_CONTACT_slash_Step_0_gml_125_0": "\\M0 %", + "DEVICE_CONTACT_slash_Step_0_gml_125_0": "", "DEVICE_CONTACT_slash_Step_0_gml_126_0": "选择你想要的头部。", - "DEVICE_CONTACT_slash_Step_0_gml_148_0": "^1 %", - "DEVICE_CONTACT_slash_Step_0_gml_149_0": "\\M0 %", + "DEVICE_CONTACT_slash_Step_0_gml_148_0": "", + "DEVICE_CONTACT_slash_Step_0_gml_149_0": "", "DEVICE_CONTACT_slash_Step_0_gml_150_0": "选择你想要的躯干。", - "DEVICE_CONTACT_slash_Step_0_gml_173_0": "^1 \\M0 %", + "DEVICE_CONTACT_slash_Step_0_gml_173_0": "", "DEVICE_CONTACT_slash_Step_0_gml_174_0": "选择你想要的腿部。", "DEVICE_CONTACT_slash_Step_0_gml_205_0": "\\M0^3 这就是你的身体^3。\\M1 ^5 %", - "DEVICE_CONTACT_slash_Step_0_gml_206_0": "\\M0 ^1 %", + "DEVICE_CONTACT_slash_Step_0_gml_206_0": "", "DEVICE_CONTACT_slash_Step_0_gml_207_0": "^1     你接受吗?", "DEVICE_CONTACT_slash_Step_0_gml_240_0": "\\M0       太棒了^3。\\M1 ^5 %", "DEVICE_CONTACT_slash_Step_0_gml_241_0": "\\M0      你创造了^3&   一个绝佳的外形^3。\\M1 ^5 %", "DEVICE_CONTACT_slash_Step_0_gml_242_0": "\\M0       现在^3。\\M1 ^5 %", "DEVICE_CONTACT_slash_Step_0_gml_243_0": "\\M0来为它塑造出&与你一样^3的心灵。^3 \\M1 ^5 %%", - "DEVICE_CONTACT_slash_Step_0_gml_258_0": "\\M0 %", + "DEVICE_CONTACT_slash_Step_0_gml_258_0": "", "DEVICE_CONTACT_slash_Step_0_gml_259_0": "它最喜欢的食物&是什么?", "DEVICE_CONTACT_slash_Step_0_gml_288_0": "甜的", "DEVICE_CONTACT_slash_Step_0_gml_289_0": "软的", @@ -42,51 +44,51 @@ "DEVICE_CONTACT_slash_Step_0_gml_291_0": "咸的", "DEVICE_CONTACT_slash_Step_0_gml_292_0": "痛的", "DEVICE_CONTACT_slash_Step_0_gml_293_0": "冰的", - "DEVICE_CONTACT_slash_Step_0_gml_323_0": "\\M0 %", + "DEVICE_CONTACT_slash_Step_0_gml_323_0": "", "DEVICE_CONTACT_slash_Step_0_gml_324_0": "你最喜欢的&血型?", - "DEVICE_CONTACT_slash_Step_0_gml_343_0": "A", - "DEVICE_CONTACT_slash_Step_0_gml_344_0": "AB", - "DEVICE_CONTACT_slash_Step_0_gml_345_0": "B", - "DEVICE_CONTACT_slash_Step_0_gml_346_0": "C", - "DEVICE_CONTACT_slash_Step_0_gml_347_0": "D", - "DEVICE_CONTACT_slash_Step_0_gml_381_0": "\\M0 %", + "DEVICE_CONTACT_slash_Step_0_gml_343_0": "", + "DEVICE_CONTACT_slash_Step_0_gml_344_0": "", + "DEVICE_CONTACT_slash_Step_0_gml_345_0": "", + "DEVICE_CONTACT_slash_Step_0_gml_346_0": "", + "DEVICE_CONTACT_slash_Step_0_gml_347_0": "", + "DEVICE_CONTACT_slash_Step_0_gml_381_0": "", "DEVICE_CONTACT_slash_Step_0_gml_382_0": "它最喜欢&哪种颜色?", "DEVICE_CONTACT_slash_Step_0_gml_401_0": "红", "DEVICE_CONTACT_slash_Step_0_gml_402_0": "蓝", "DEVICE_CONTACT_slash_Step_0_gml_403_0": "绿", "DEVICE_CONTACT_slash_Step_0_gml_404_0": "青", - "DEVICE_CONTACT_slash_Step_0_gml_438_0": "\\M0 %", + "DEVICE_CONTACT_slash_Step_0_gml_438_0": "", "DEVICE_CONTACT_slash_Step_0_gml_439_0": "请赋予它&一项天赋。", "DEVICE_CONTACT_slash_Step_0_gml_459_0": "善良", "DEVICE_CONTACT_slash_Step_0_gml_460_0": "坚强", "DEVICE_CONTACT_slash_Step_0_gml_461_0": "雄心", "DEVICE_CONTACT_slash_Step_0_gml_462_0": "勇敢", "DEVICE_CONTACT_slash_Step_0_gml_463_0": "嗓音", - "DEVICE_CONTACT_slash_Step_0_gml_497_0": "\\M0 %", + "DEVICE_CONTACT_slash_Step_0_gml_497_0": "", "DEVICE_CONTACT_slash_Step_0_gml_498_0": "你对自己的创造物&感觉如何?&(它听不到)", "DEVICE_CONTACT_slash_Step_0_gml_518_0": "爱", "DEVICE_CONTACT_slash_Step_0_gml_519_0": "希望", "DEVICE_CONTACT_slash_Step_0_gml_520_0": "厌恶", "DEVICE_CONTACT_slash_Step_0_gml_521_0": "恐惧", - "DEVICE_CONTACT_slash_Step_0_gml_555_0": "\\M0 %", + "DEVICE_CONTACT_slash_Step_0_gml_555_0": "", "DEVICE_CONTACT_slash_Step_0_gml_556_0": "你的回答&是真诚的吗?", "DEVICE_CONTACT_slash_Step_0_gml_575_0": "是", "DEVICE_CONTACT_slash_Step_0_gml_576_0": "否", - "DEVICE_CONTACT_slash_Step_0_gml_611_0": "\\M0 %", + "DEVICE_CONTACT_slash_Step_0_gml_611_0": "", "DEVICE_CONTACT_slash_Step_0_gml_612_0": "你已接受&发生痛苦和癫痫&的可能性。", "DEVICE_CONTACT_slash_Step_0_gml_631_0": "是", "DEVICE_CONTACT_slash_Step_0_gml_632_0": "否", "DEVICE_CONTACT_slash_Step_0_gml_664_0": "\\M0明白了^3。\\M1 ^5 %%", - "DEVICE_CONTACT_slash_Step_0_gml_697_0": "\\M0 %", + "DEVICE_CONTACT_slash_Step_0_gml_697_0": "", "DEVICE_CONTACT_slash_Step_0_gml_698_0": "为你的容器起名。", "DEVICE_CONTACT_slash_Step_0_gml_729_0": "\\M0我们叫它^4&“~1”。^6 \\M1 ^5 %", "DEVICE_CONTACT_slash_Step_0_gml_730_0": "\\M0  那么它^3的&  创造者呢^3?\\M1 ^5 %%", "DEVICE_CONTACT_slash_Step_0_gml_734_0": "\\M0“~1。”^6 \\M1 ^5 %", "DEVICE_CONTACT_slash_Step_0_gml_735_0": "\\M0一个有趣的巧合^3。\\M1 ^5 %", "DEVICE_CONTACT_slash_Step_0_gml_736_0": "\\M0  那么它^3的&  创造者呢^3?\\M1 ^5 %%", - "DEVICE_CONTACT_slash_Step_0_gml_755_0": "\\M0 %", + "DEVICE_CONTACT_slash_Step_0_gml_755_0": "", "DEVICE_CONTACT_slash_Step_0_gml_756_0": "^1   你自己的名字。", - "DEVICE_CONTACT_slash_Step_0_gml_785_0": "\\M0\"~1.\"^6 \\M1 ^5 %", + "DEVICE_CONTACT_slash_Step_0_gml_785_0": "", "DEVICE_CONTACT_slash_Step_0_gml_786_0": "\\M0太棒了^3。\\M1 ^5 %", "DEVICE_CONTACT_slash_Step_0_gml_787_0": "\\M0真^3是太棒了^3。\\M1 ^5 %%", "DEVICE_CONTACT_slash_Step_0_gml_790_0": "\\M0多么有趣啊。\\M1 ^5 %%", @@ -105,9 +107,9 @@ "DEVICE_CONTACT_slash_Step_0_gml_890_0": "快醒醒^6! %", "DEVICE_CONTACT_slash_Step_0_gml_891_0": "KRIS...!^7", "DEVICE_CONTACT_slash_Step_0_gml_928_0": "\\M0 首先^3。\\M1 ^6 %", - "DEVICE_CONTACT_slash_Step_0_gml_929_0": "\\M0 %", + "DEVICE_CONTACT_slash_Step_0_gml_929_0": "", "DEVICE_CONTACT_slash_Step_0_gml_930_0": "^2 你对强光&过敏吗? ^6 ^6", - "DEVICE_FAILURE_slash_Create_0_gml_12_0": "THE DEATH", + "DEVICE_FAILURE_slash_Create_0_gml_12_0": "", "DEVICE_FAILURE_slash_Step_0_gml_10_0": "\\M0 看来你已经到达了^6& &    一个结局。/%", "DEVICE_FAILURE_slash_Step_0_gml_28_0": "\\M0  你还想再试&    一次吗?", "DEVICE_FAILURE_slash_Step_0_gml_32_0": "\\M0   你还想坚持下去吗?", @@ -119,9 +121,9 @@ "DEVICE_FAILURE_slash_Step_0_gml_103_0": "\\M0 那么^5,& 笼罩世界的黑暗^5 & 将永不消散。/%", "DEVICE_FAILURE_slash_Step_0_gml_103_0_b": "继续", "DEVICE_FAILURE_slash_Step_0_gml_104_0": "放弃", - "DEVICE_FAILURE_slash_Step_0_gml_172_0": "THE DARK", - "DEVICE_MENU_slash_Create_0_gml_8_0": "CONTACT", - "DEVICE_MENU_slash_Create_0_gml_17_0": "DELTARUNE", + "DEVICE_FAILURE_slash_Step_0_gml_172_0": "", + "DEVICE_MENU_slash_Create_0_gml_8_0": "", + "DEVICE_MENU_slash_Create_0_gml_17_0": "", "DEVICE_MENU_slash_Create_0_gml_97_0": "[空白]", "DEVICE_MENU_slash_Create_0_gml_182_0": "无数据", "DEVICE_MENU_slash_Create_0_gml_185_0": "无数据", @@ -184,6 +186,11 @@ "DEVICE_MENU_slash_Draw_0_gml_253_0": "第一章文件", "DEVICE_MENU_slash_Draw_0_gml_284_0": "选择章节", "DEVICE_MENU_slash_Draw_0_gml_285_0": "退出程序", + "DEVICE_MENU_slash_Draw_0_gml_286_0": "", + "DEVICE_MENU_slash_Draw_0_gml_287_0": "", + "DEVICE_MENU_slash_Draw_0_gml_288_0": "", + "DEVICE_MENU_slash_Draw_0_gml_289_0": "", + "DEVICE_MENU_slash_Draw_0_gml_290_0": "", "DEVICE_MENU_slash_Draw_0_gml_291_0": "使用第一章文件开始第二章。", "DEVICE_MENU_slash_Draw_0_gml_292_0": "在栏位~1开启第二章。", "DEVICE_MENU_slash_Step_0_gml_74_0": "与镜像完全相符。", @@ -206,53 +213,54 @@ "DEVICE_MENU_slash_Step_0_gml_289_0": "但它已经不存在了。", "DEVICE_MENU_slash_Step_0_gml_292_0": "然而并没有可以清除的东西。", "DEVICE_MENU_slash_Step_0_gml_294_0": "没有可以清除的东西。", + "DEVICE_NAMER_slash_Draw_0_gml_00_0": "", "DEVICE_NAMER_slash_Draw_0_gml_18_0": "输入你自己的名字。", "DEVICE_NAMER_slash_Draw_0_gml_84_0": "这就是你的名字。", - "DEVICE_NAMER_slash_Other_10_gml_3_0": "SUSIE", - "DEVICE_NAMER_slash_Other_10_gml_4_0": "NOELLE", - "DEVICE_NAMER_slash_Other_10_gml_5_0": "KRIS", - "DEVICE_NAMER_slash_Other_10_gml_6_0": "TORIEL", - "DEVICE_NAMER_slash_Other_10_gml_7_0": "ASRIEL", - "DEVICE_NAMER_slash_Other_10_gml_8_0": "ASGORE", - "DEVICE_NAMER_slash_Other_10_gml_9_0": "SANS", - "DEVICE_NAMER_slash_Other_10_gml_10_0": "PAPYRUS", - "DEVICE_NAMER_slash_Other_10_gml_11_0": "ALPHYS", - "DEVICE_NAMER_slash_Other_10_gml_12_0": "UNDYNE", - "DEVICE_NAMER_slash_Other_10_gml_13_0": "RUDY", - "DEVICE_NAMER_slash_Other_10_gml_14_0": "BERDLY", - "DEVICE_NAMER_slash_Other_10_gml_15_0": "CATTY", - "DEVICE_NAMER_slash_Other_10_gml_16_0": "CATTI", - "DEVICE_NAMER_slash_Other_10_gml_17_0": "BRATTY", - "DEVICE_NAMER_slash_Other_10_gml_18_0": "GERSON", - "DEVICE_NAMER_slash_Other_10_gml_19_0": "JOCKINGTON", - "DEVICE_NAMER_slash_Other_10_gml_20_0": "QC", - "DEVICE_NAMER_slash_Other_10_gml_27_0": "SUSIE", - "DEVICE_NAMER_slash_Other_10_gml_28_0": "NOELLE", - "DEVICE_NAMER_slash_Other_10_gml_29_0": "KRIS", - "DEVICE_NAMER_slash_Other_10_gml_30_0": "TORIEL", - "DEVICE_NAMER_slash_Other_10_gml_31_0": "ASRIEL", - "DEVICE_NAMER_slash_Other_10_gml_32_0": "ASGORE", - "DEVICE_NAMER_slash_Other_10_gml_33_0": "SANS", - "DEVICE_NAMER_slash_Other_10_gml_34_0": "PAPYRUS", - "DEVICE_NAMER_slash_Other_10_gml_35_0": "ALPHYS", - "DEVICE_NAMER_slash_Other_10_gml_36_0": "UNDYNE", - "DEVICE_NAMER_slash_Other_10_gml_37_0": "RUDY", - "DEVICE_NAMER_slash_Other_10_gml_38_0": "BERDLY", - "DEVICE_NAMER_slash_Other_10_gml_39_0": "CATTY", - "DEVICE_NAMER_slash_Other_10_gml_40_0": "CATTI", - "DEVICE_NAMER_slash_Other_10_gml_41_0": "BRATTY", - "DEVICE_NAMER_slash_Other_10_gml_42_0": "GERSON", - "DEVICE_NAMER_slash_Other_10_gml_43_0": "JOCKINGTON", - "DEVICE_NAMER_slash_Other_10_gml_44_0": "QC", + "DEVICE_NAMER_slash_Other_10_gml_3_0": "", + "DEVICE_NAMER_slash_Other_10_gml_4_0": "", + "DEVICE_NAMER_slash_Other_10_gml_5_0": "", + "DEVICE_NAMER_slash_Other_10_gml_6_0": "", + "DEVICE_NAMER_slash_Other_10_gml_7_0": "", + "DEVICE_NAMER_slash_Other_10_gml_8_0": "", + "DEVICE_NAMER_slash_Other_10_gml_9_0": "", + "DEVICE_NAMER_slash_Other_10_gml_10_0": "", + "DEVICE_NAMER_slash_Other_10_gml_11_0": "", + "DEVICE_NAMER_slash_Other_10_gml_12_0": "", + "DEVICE_NAMER_slash_Other_10_gml_13_0": "", + "DEVICE_NAMER_slash_Other_10_gml_14_0": "", + "DEVICE_NAMER_slash_Other_10_gml_15_0": "", + "DEVICE_NAMER_slash_Other_10_gml_16_0": "", + "DEVICE_NAMER_slash_Other_10_gml_17_0": "", + "DEVICE_NAMER_slash_Other_10_gml_18_0": "", + "DEVICE_NAMER_slash_Other_10_gml_19_0": "", + "DEVICE_NAMER_slash_Other_10_gml_20_0": "", + "DEVICE_NAMER_slash_Other_10_gml_27_0": "", + "DEVICE_NAMER_slash_Other_10_gml_28_0": "", + "DEVICE_NAMER_slash_Other_10_gml_29_0": "", + "DEVICE_NAMER_slash_Other_10_gml_30_0": "", + "DEVICE_NAMER_slash_Other_10_gml_31_0": "", + "DEVICE_NAMER_slash_Other_10_gml_32_0": "", + "DEVICE_NAMER_slash_Other_10_gml_33_0": "", + "DEVICE_NAMER_slash_Other_10_gml_34_0": "", + "DEVICE_NAMER_slash_Other_10_gml_35_0": "", + "DEVICE_NAMER_slash_Other_10_gml_36_0": "", + "DEVICE_NAMER_slash_Other_10_gml_37_0": "", + "DEVICE_NAMER_slash_Other_10_gml_38_0": "", + "DEVICE_NAMER_slash_Other_10_gml_39_0": "", + "DEVICE_NAMER_slash_Other_10_gml_40_0": "", + "DEVICE_NAMER_slash_Other_10_gml_41_0": "", + "DEVICE_NAMER_slash_Other_10_gml_42_0": "", + "DEVICE_NAMER_slash_Other_10_gml_43_0": "", + "DEVICE_NAMER_slash_Other_10_gml_44_0": "", "UNUSED_slash_UNUSED_gml_1_0": "没人能听到我说话,对吧...?", - "UNUSED_slash_UNUSED_gml_2_0": "...", + "UNUSED_slash_UNUSED_gml_2_0": "", "UNUSED_slash_UNUSED_gml_3_0": "还是算了吧。", "UNUSED_slash_UNUSED_gml_4_0": "老实说,我都不确定我能否听到&自己的声音。", "UNUSED_slash_UNUSED_gml_5_0": "这里实在是太安静了...", "UNUSED_slash_UNUSED_gml_6_0": "...而且,时不时的,", "UNUSED_slash_UNUSED_gml_7_0": "我绝对听到了什么声音...", "UNUSED_slash_UNUSED_gml_8_0": "有点像是...抓挠声?", - "date": "1632283787536", + "gml_Object_obj_intro_ch2_Draw_0_gml_1_0": "", "o_boxing_wireframe_slash_Create_0_gml_28_0": "按下Z和X出拳!", "o_boxing_wireframe_slash_Draw_0_gml_85_0": "揍它!", "o_boxing_wireframe_slash_Draw_0_gml_87_0": "揍它!", @@ -263,14 +271,14 @@ "o_boxing_wireframe_slash_Step_0_gml_18_0": "我说了闭嘴!!!", "o_boxingcontroller_slash_Create_0_gml_18_0": "按~1或~2&来躲闪!", "o_boxingcontroller_slash_Create_0_gml_19_0": "按~1&下蹲躲避!", - "o_boxingcontroller_slash_Create_0_gml_20_0": "default", + "o_boxingcontroller_slash_Create_0_gml_20_0": "", "o_boxingcontroller_slash_Step_0_gml_170_0": "* (在女王攻击结束后&按~1或~2来反击!)", "o_boxingcontroller_slash_Step_0_gml_174_0": "* (在女王攻击结束后&按~1或~2出拳!)", "o_boxingcontroller_slash_Step_0_gml_178_0": "* (按~1,~2,和~3&来躲避女王的攻击!)", "o_boxingcontroller_slash_Step_0_gml_182_0": "* 第二回合开始。&* 女王的攻击变得更猛烈了!", "o_boxingcontroller_slash_Step_0_gml_186_0": "* 第三回合开始。&* 女王的攻击达到了巅峰!", "o_boxingcontroller_slash_Step_0_gml_361_0": "可以向左右两侧出拳!", - "o_boxinghud_slash_Draw_0_gml_66_0": "BOSS", + "o_boxinghud_slash_Draw_0_gml_66_0": "", "o_boxingqueen_slash_Step_0_gml_599_0": "按~1或~2&来躲闪!", "o_boxingqueen_slash_Step_0_gml_1200_0": "按~1&下蹲躲避!", "o_boxingqueen_slash_Step_0_gml_3078_0": "* 战斗力...下降.../%", @@ -281,9 +289,9 @@ "o_boxingqueen_slash_Step_0_gml_3098_0": "* 而你们 绝对 没有的/%", "o_boxingqueen_slash_Step_0_gml_3148_0": "* 火 箭 拳!/%", "obj_battlecontroller_slash_Draw_0_gml_172_0": "标准", - "obj_battlecontroller_slash_Draw_0_gml_173_0": "HP", + "obj_battlecontroller_slash_Draw_0_gml_173_0": "", "obj_battlecontroller_slash_Draw_0_gml_208_0": "仁慈", - "obj_battlecontroller_slash_Draw_0_gml_653_0": "Berdly", + "obj_battlecontroller_slash_Draw_0_gml_653_0": "", "obj_battlecontroller_slash_Step_0_gml_42_0": "* 你胜利了^1!&* 获得了 ~1 EXP 和 ~2 D$。/%", "obj_battlecontroller_slash_Step_0_gml_43_0": "* 你在战斗中胜利了!/%", "obj_battlecontroller_slash_Step_0_gml_46_0": "* 你胜利了^1!&* 获得了 ~1 D$^1。&* 你变得更强了。/%", @@ -361,7 +369,7 @@ "obj_berdlyb2_enemy_slash_Step_0_gml_236_0": "趁着这个机会&赶快来我这边!/%", "obj_berdlyb2_enemy_slash_Step_0_gml_241_0": "同-同伴!^1?&我..^1. &我才用不着呢!/%", "obj_berdlyb2_enemy_slash_Step_0_gml_245_0": "* 你鼓励Noelle发挥她的聪明才智!/%", - "obj_berdlyb2_enemy_slash_Step_0_gml_247_0": ".../%", + "obj_berdlyb2_enemy_slash_Step_0_gml_247_0": "", "obj_berdlyb2_enemy_slash_Step_0_gml_252_0": "* 她的魔力上升了^1!&Berdly被她的聪明才智深深迷住了!/%", "obj_berdlyb2_enemy_slash_Step_0_gml_258_0": "N...Noelle?/%", "obj_berdlyb2_enemy_slash_Step_0_gml_264_0": "* 你让Noelle集中精神!/", @@ -385,7 +393,7 @@ "obj_berdlyb2_enemy_slash_Step_0_gml_373_0": "\\EZ* 我...我根本不知道你在说什么!/", "obj_berdlyb2_enemy_slash_Step_0_gml_379_0": "\\EV* 好啊^1。&你就么好奇会发生什么吗?/", "obj_berdlyb2_enemy_slash_Step_0_gml_380_0": "\\Ef* 那你就好好看着吧,&当我施展连自己都不知道的法术时&到底会发生什么!/", - "obj_berdlyb2_enemy_slash_Step_0_gml_429_0": "* .../%", + "obj_berdlyb2_enemy_slash_Step_0_gml_429_0": "", "obj_berdlyb2_enemy_slash_Step_0_gml_441_0": "* 怎么回事.../", "obj_berdlyb2_enemy_slash_Step_0_gml_442_0": "* 发生了什么?/", "obj_berdlyb2_enemy_slash_Step_0_gml_443_0": "* 到处都是雪^1,我什么都看不见.../", @@ -395,15 +403,15 @@ "obj_berdlyb2_enemy_slash_Step_0_gml_465_0": "* 我该回家了。/%", "obj_berdlyb2_enemy_slash_Step_0_gml_484_0": "* Noelle表现得很聪明!/%", "obj_berdlyb2_enemy_slash_Step_0_gml_617_0": "* 但是失败了。/%", - "obj_berdlyb2_enemy_slash_Step_0_gml_698_0": "%%", - "obj_berdlyb2_enemy_slash_Step_0_gml_707_0": "%%", - "obj_berdlyb2_enemy_slash_Step_0_gml_716_0": "%%", - "obj_berdlyb2_enemy_slash_Step_0_gml_722_0": "\\EW* .../", - "obj_berdlyb2_enemy_slash_Step_0_gml_726_0": "%%", + "obj_berdlyb2_enemy_slash_Step_0_gml_698_0": "", + "obj_berdlyb2_enemy_slash_Step_0_gml_707_0": "", + "obj_berdlyb2_enemy_slash_Step_0_gml_716_0": "", + "obj_berdlyb2_enemy_slash_Step_0_gml_722_0": "", + "obj_berdlyb2_enemy_slash_Step_0_gml_726_0": "", "obj_blocked_total_fx_slash_Draw_0_gml_9_0": "已拦截", "obj_blocked_total_fx_slash_Draw_0_gml_10_0": " 个弹窗!", "obj_boxing_loss_controller_slash_Draw_0_gml_116_0": "别放弃...!", - "obj_boxpuzzle_event_slash_Step_0_gml_437_0": "* See^1, I used the box to break in the door^1.&* Easy./%", + "obj_boxpuzzle_event_slash_Step_0_gml_437_0": "", "obj_bqueen_intro_slash_Step_0_gml_13_0": "* 终于...来了一个像样的对手.../%", "obj_caradventure_car_slash_Step_0_gml_57_0": "\\E0* Kris &按 方向键 来 驾驶/%", "obj_caradventure_car_slash_Step_0_gml_80_0": "\\EE* Kris &别 撞到 那些车!/%", @@ -438,7 +446,7 @@ "obj_ch2_city_berdly_slash_Step_0_gml_164_0": "\\E2* 你这个绑匪!^1!&Kris^1,我们的停战协定..^1. &现在作废了!!/%", "obj_ch2_city_berdly_slash_Step_0_gml_179_0": "\\E6* Noelle!^1!&可能会有点痛^1,&但这是为了救你!!/", "obj_ch2_city_berdly_slash_Step_0_gml_181_0": "\\EE* 等-等下^1,&听我说啊---!!!/%", - "obj_ch2_city_berdly_slash_Step_0_gml_221_0": "\\E5* .../", + "obj_ch2_city_berdly_slash_Step_0_gml_221_0": "", "obj_ch2_city_berdly_slash_Step_0_gml_222_0": "\\E3* Noelle?/", "obj_ch2_city_berdly_slash_Step_0_gml_234_0": "\\E5* Noelle^1!&原来你在这里!/", "obj_ch2_city_berdly_slash_Step_0_gml_235_0": "\\E4* 正好^1!&我们一起回女王那儿吧^1,然后--/%", @@ -450,12 +458,12 @@ "obj_ch2_city_berdly_slash_Step_0_gml_269_0": "\\EB* B..^1. Berdly!?/", "obj_ch2_city_berdly_slash_Step_0_gml_271_0": "\\EN* Noelle^1,你没事吧...?/", "obj_ch2_city_berdly_slash_Step_0_gml_272_0": "\\EN* 你...你跟Kris在做什么?/%", - "obj_ch2_city_berdly_slash_Step_0_gml_279_0": "\\Ee* .../", + "obj_ch2_city_berdly_slash_Step_0_gml_279_0": "", "obj_ch2_city_berdly_slash_Step_0_gml_280_0": "\\EZ* 我们在..^1. &变得..^1. 更强.../%", "obj_ch2_city_berdly_slash_Step_0_gml_283_0": "\\ED* 我只是^1,我们只是.../", "obj_ch2_city_berdly_slash_Step_0_gml_285_0": "\\EN* 什..^1. 什么?&继续前进..^1. 去哪?/", "obj_ch2_city_berdly_slash_Step_0_gml_286_0": "\\EN* Noelle^1,那家伙在&说什么呢!?/", - "obj_ch2_city_berdly_slash_Step_0_gml_302_0": "\\EZ* .../", + "obj_ch2_city_berdly_slash_Step_0_gml_302_0": "", "obj_ch2_city_berdly_slash_Step_0_gml_304_0": "\\E9* 够了^1,Kris^1!&虽然我不清楚你在搞什么鬼.../", "obj_ch2_city_berdly_slash_Step_0_gml_305_0": "\\EA* 但是如果你正在伤害&我的好朋友Noelle.../%", "obj_ch2_city_berdly_slash_Step_0_gml_315_0": "\\EA* Kris^1,放马过来吧!!/%", @@ -483,11 +491,11 @@ "obj_ch2_city_berdly_slash_Step_0_gml_592_0": "\\EE* 呵呵^1!有时候我都不敢相信&自己有多酷.../%", "obj_ch2_city_berdly_slash_Step_0_gml_612_0": "\\EH* (他刚才用龙卷风砸我的脸...)/%", "obj_ch2_city_berdly_slash_Step_0_gml_619_0": "\\E4* (要是他肯好好听我说话...)/%", - "obj_ch2_city_berdly_slash_Step_0_gml_636_0": "\\E3* .../", + "obj_ch2_city_berdly_slash_Step_0_gml_636_0": "", "obj_ch2_city_berdly_slash_Step_0_gml_637_0": "\\E2* Kris...?/", - "obj_ch2_city_berdly_slash_Step_0_gml_638_0": "\\E3* .../", + "obj_ch2_city_berdly_slash_Step_0_gml_638_0": "", "obj_ch2_city_berdly_slash_Step_0_gml_639_0": "\\E2* 呃^1,刚才.../", - "obj_ch2_city_berdly_slash_Step_0_gml_640_0": "\\E3* .../", + "obj_ch2_city_berdly_slash_Step_0_gml_640_0": "", "obj_ch2_city_berdly_slash_Step_0_gml_641_0": "\\E5* (不管刚才发生了什么。)/", "obj_ch2_city_berdly_slash_Step_0_gml_642_0": "\\E8* (Kris已经摆脱&那种状态了...)/", "obj_ch2_city_berdly_slash_Step_0_gml_643_0": "\\Ee* (继续前进...)/", @@ -498,7 +506,7 @@ "obj_ch2_city_berdly_slash_Step_0_gml_648_0": "\\ER* ..^1. 不过呢^1,我也不是&不能理解你的感受。/", "obj_ch2_city_berdly_slash_Step_0_gml_649_0": "\\ES* 呼哈哈哈。/", "obj_ch2_city_berdly_slash_Step_0_gml_650_0": "\\E8* 我们可能都有点&忘乎所以了...!/", - "obj_ch2_city_berdly_slash_Step_0_gml_651_0": "\\E8* .../", + "obj_ch2_city_berdly_slash_Step_0_gml_651_0": "", "obj_ch2_city_berdly_slash_Step_0_gml_652_0": "\\Ed* (不过说真的^1,&我..^1. 我都在想些什么啊?)/%", "obj_ch2_city_car_a_slash_Step_0_gml_63_0": "\\E9* Noeeeeelle 宝贝 &你在哪/", "obj_ch2_city_car_a_slash_Step_0_gml_65_0": "\\EE* (噢不^1,她来了...)/%", @@ -511,7 +519,7 @@ "obj_ch2_city_car_a_slash_Step_0_gml_188_0": "\\E6* 我为你做了一份&游戏宅快乐餐!!/", "obj_ch2_city_car_a_slash_Step_0_gml_189_0": "\\E0* 嗯..^1. 她不在这.../%", "obj_ch2_city_car_a_slash_Step_0_gml_218_0": "\\EF* 好险/%", - "obj_ch2_city_car_a_slash_Step_0_gml_236_0": "\\ED* Kris/", + "obj_ch2_city_car_a_slash_Step_0_gml_236_0": "", "obj_ch2_city_car_a_slash_Step_0_gml_237_0": "\\EB* 你的 朋友 是谁/", "obj_ch2_city_car_a_slash_Step_0_gml_238_0": "\\E9* 我的 面部识别 程序&无法 分析/%", "obj_ch2_city_car_a_slash_Step_0_gml_254_0": "\\EA* ..^1. 不过/", @@ -542,7 +550,7 @@ "obj_ch2_city_car_b_slash_Step_0_gml_152_0": "\\ED* 由于 缺钾 日渐消瘦/", "obj_ch2_city_car_b_slash_Step_0_gml_154_0": "\\E2* 你..^1. 你是真的在担心她吗?/", "obj_ch2_city_car_b_slash_Step_0_gml_156_0": "\\E1* 若是 找不到 她&那我 可就 真的 担心了/", - "obj_ch2_city_car_b_slash_Step_0_gml_158_0": "\\E3* .../", + "obj_ch2_city_car_b_slash_Step_0_gml_158_0": "", "obj_ch2_city_car_b_slash_Step_0_gml_159_0": "\\E2* 可..^1. 可你为什么选择她呢?/", "obj_ch2_city_car_b_slash_Step_0_gml_160_0": "\\E3* 等下^1,让我猜猜看..^1. &是不是因为.../", "obj_ch2_city_car_b_slash_Step_0_gml_161_0": "\\E9* 她弱小到可以轻松成为&你的仆从?/", @@ -555,7 +563,7 @@ "obj_ch2_city_car_b_slash_Step_0_gml_284_0": "\\EB* 呼/", "obj_ch2_city_car_b_slash_Step_0_gml_285_0": "\\E9* 我 刚刚 还在 担心&它 怎么 还没有 爆炸/%", "obj_ch2_city_car_b_slash_Step_0_gml_293_0": "\\EA* 看来 我们 只能&徒步 分别 了/%", - "obj_ch2_city_car_b_slash_Step_0_gml_300_0": "\\E5* .../%", + "obj_ch2_city_car_b_slash_Step_0_gml_300_0": "", "obj_ch2_city_car_b_slash_Step_0_gml_307_0": "\\E9* Kris 如果 你&见到 Noelle/", "obj_ch2_city_car_b_slash_Step_0_gml_308_0": "\\EA* 告诉她&我绝对 了解 她的喜好/", "obj_ch2_city_car_b_slash_Step_0_gml_309_0": "\\ED* 如果 她想要 证据/", @@ -563,7 +571,7 @@ "obj_ch2_city_car_b_slash_Step_0_gml_317_0": "* (女王的混音带被扔进了&你的重要物品中。)/%", "obj_ch2_city_car_b_slash_Step_0_gml_324_0": "\\E1* 告辞/%", "obj_ch2_city_car_b_slash_Step_0_gml_340_0": "\\EI* 呼.../", - "obj_ch2_city_car_b_slash_Step_0_gml_341_0": "\\E9* .../", + "obj_ch2_city_car_b_slash_Step_0_gml_341_0": "", "obj_ch2_city_car_b_slash_Step_0_gml_342_0": "\\E3* 我有种预感..^1. &我们马上就能离开这里了。/", "obj_ch2_city_car_b_slash_Step_0_gml_343_0": "\\E4* 我们走吧,Kris!/%", "obj_ch2_city_noelle_monologue_slash_Step_0_gml_348_0": "\\E6* (唉...)/%", @@ -592,12 +600,12 @@ "obj_ch2_city01_slash_Step_0_gml_85_0": "\\EI* Noelle&甜心 亲爱的 宝贝&你在哪/%", "obj_ch2_city01_slash_Step_0_gml_94_0": "\\EC* 别忘了 我们 现在是 队友/", "obj_ch2_city01_slash_Step_0_gml_95_0": "* 你还没有 自愿&成为 我的 仆从/%", - "obj_ch2_city01_slash_Step_0_gml_107_0": "\\ED* ..^1. Kris/", + "obj_ch2_city01_slash_Step_0_gml_107_0": "", "obj_ch2_city01_slash_Step_0_gml_108_0": "\\E1* 看来/", "obj_ch2_city01_slash_Step_0_gml_109_0": "\\EB* 我们的 战友 都已经 &对我们 按下了 Esc/", "obj_ch2_city01_slash_Step_0_gml_110_0": "\\E5* ..^1. 既然 事已 至此.../", "obj_ch2_city01_slash_Step_0_gml_111_0": "\\E5* 为了 找到 我们的 队友/", - "obj_ch2_city01_slash_Step_0_gml_112_0": "\\E4* .../", + "obj_ch2_city01_slash_Step_0_gml_112_0": "", "obj_ch2_city01_slash_Step_0_gml_113_0": "\\E9* 我们 除了 停战&别无选择.../%", "obj_ch2_city01_slash_Step_0_gml_120_0": "\\E6* 女王!^1!我伟大的女王!^1!&你在哪里!!/", "obj_ch2_city01_slash_Step_0_gml_122_0": "\\E8* 噢不 别让他 找到我/%", @@ -609,7 +617,7 @@ "obj_ch2_city01_slash_Step_0_gml_165_0": "\\EB* 她们肯定只是..^1. &在哪里忙着玩复古游戏而已!!/%", "obj_ch2_city01_slash_Step_0_gml_176_0": "\\E6* 我猜她们现在肯定正听着&又怪又抓耳的音乐!!/", "obj_ch2_city01_slash_Step_0_gml_177_0": "\\E2* 停在选人界面等着我呢^1!&哈哈^1!哈!^1!哈!!/", - "obj_ch2_city01_slash_Step_0_gml_178_0": "\\E8* .../%", + "obj_ch2_city01_slash_Step_0_gml_178_0": "", "obj_ch2_city01_slash_Step_0_gml_186_0": "\\E9* ...唉。/%", "obj_ch2_city01_slash_Step_0_gml_193_0": "\\EA* 既然事已至此。/", "obj_ch2_city01_slash_Step_0_gml_194_0": "\\E9* 为了找到我们各自的队友.../", @@ -640,7 +648,7 @@ "obj_ch2_city04_slash_Step_0_gml_48_0": "\\ED* (我..^1. 只需要搞懂这玩意&究竟怎么运作...)/%", "obj_ch2_city04_slash_Step_0_gml_112_0": "\\E7* 一会儿就好,Kris,我.../%", "obj_ch2_city04_slash_Step_0_gml_124_0": "\\E3* 你..^1. 你是怎么做到的!?&我..^1. 我.../%", - "obj_ch2_city04_slash_Step_0_gml_134_0": "\\EC* .../", + "obj_ch2_city04_slash_Step_0_gml_134_0": "", "obj_ch2_city04_slash_Step_0_gml_135_0": "\\EB* ..^1. Kris,&你别跟任何人提这件事^1,&好不好!?/", "obj_ch2_city04_slash_Step_0_gml_136_0": "\\ED* 要是有谁问起来^1,&就说谜题是我解开的!!/%", "obj_ch2_city04_slash_Step_0_gml_144_0": "\\EB* 懂了没?&千万不要跟别人说!!/", @@ -650,7 +658,7 @@ "obj_ch2_city04_slash_Step_0_gml_174_0": "\\EN* 我要去告诉Susie/%", "obj_ch2_city05_slash_Step_0_gml_64_0": "* 大家     好啊 !^1! 是我!!!/%", "obj_ch2_city05_slash_Step_0_gml_71_0": "* 各位砰友最喜欢的&【【好评率第1推销员1997】】/%", - "obj_ch2_city05_slash_Step_0_gml_77_0": "\\s0* SPAMT%%", + "obj_ch2_city05_slash_Step_0_gml_77_0": "", "obj_ch2_city05_slash_Step_0_gml_85_0": "* SPAMTON G. SPAMTON!!/%", "obj_ch2_city05_slash_Step_0_gml_114_0": "* 哇哦!^1!这芣是一位.../%", "obj_ch2_city05_slash_Step_0_gml_149_0": "* 光之苠吗!^1!嘿-口黑嘿!!!/%", @@ -718,11 +726,11 @@ "obj_ch2_city07_slash_Step_0_gml_427_0": "\\EK* 天啊^1,真不该教你说反话的。/", "obj_ch2_city07_slash_Step_0_gml_429_0": "\\EH* 哈哈哈哈哈!/%", "obj_ch2_city07_slash_Step_0_gml_466_0": "\\ED* ..^1. 啊!?&你要把它送给..^1. 我...?/%", - "obj_ch2_city07_slash_Step_0_gml_472_0": "\\E0* Kris.../", + "obj_ch2_city07_slash_Step_0_gml_472_0": "", "obj_ch2_city07_slash_Step_0_gml_473_0": "\\E1* 我..^1. 我以前还从来没像这样&收到过礼物呢。/", "obj_ch2_city07_slash_Step_0_gml_474_0": "\\E1* 呃..^1. 呃..^1. &不好意思^1,我.../%", "obj_ch2_city07_slash_Step_0_gml_481_0": "\\E2* (我太高兴了^1,&都不知道该说什么好...)/", - "obj_ch2_city07_slash_Step_0_gml_482_0": "\\E1* .../%", + "obj_ch2_city07_slash_Step_0_gml_482_0": "", "obj_ch2_city07_slash_Step_0_gml_500_0": "\\E2* 我..^1. 我也给你赢点东西回来^1,&怎么样!?/%", "obj_ch2_city07_slash_Step_0_gml_515_0": "\\EH\\U* 给我个球^1,拜托了!!!/%", "obj_ch2_city07_slash_Step_0_gml_535_0": "\\EE* 等-等一下!!/%", @@ -734,7 +742,7 @@ "obj_ch2_city07_slash_Step_0_gml_663_0": "\\EA* 肯定是靠偷或者别的什么办法&搞来的!^1!哈哈!!/%", "obj_ch2_city07_slash_Step_0_gml_673_0": "\\EL* 偷..^1. 偷来的...?/%", "obj_ch2_city07_slash_Step_0_gml_680_0": "\\E2* 哇哦^1,那肯定是真心想&把它送给你了!/%", - "obj_ch2_city07_slash_Step_0_gml_689_0": "\\E6* .../%", + "obj_ch2_city07_slash_Step_0_gml_689_0": "", "obj_ch2_city07_slash_Step_0_gml_701_0": "\\EK* 好吧^1,干这种蠢事是需要胆量的。/%", "obj_ch2_city07_slash_Step_0_gml_727_0": "\\E2* ..^1. 别以为我就这么&让你赢过我了!/%", "obj_ch2_city07_slash_Step_0_gml_731_0": "\\EQ* 如果你要做这种蠢事的话.../%", @@ -765,7 +773,7 @@ "obj_ch2_city07_slash_Step_0_gml_1054_0": "你特么为什么要把它给Berdly啊!?", "obj_ch2_city07_slash_Step_0_gml_1055_0": "你为什么要把它给Berdly!?", "obj_ch2_city07_slash_Step_0_gml_1056_0": "唔,Kris...对谁都很友善呢!", - "obj_ch2_city07_slash_Step_0_gml_1059_0": "\\f0\\f1\\f2/%", + "obj_ch2_city07_slash_Step_0_gml_1059_0": "", "obj_ch2_city07_slash_Step_0_gml_1067_0": "\\EC* ..^1. 我们赶紧离开这鬼地方吧。/%", "obj_ch2_city07_slash_Step_0_gml_1096_0": "\\E8* 等..^1. 等等!!/%", "obj_ch2_city07_slash_Step_0_gml_1100_0": "\\E6* N..^1. Noelle!?/%", @@ -816,7 +824,7 @@ "obj_ch2_city08_slash_Step_0_gml_95_0": "\\E7* 这也 意味着 所有的&停战协定 到此 结束/", "obj_ch2_city08_slash_Step_0_gml_96_0": "\\E1* Noelle&过来 这里/", "obj_ch2_city08_slash_Step_0_gml_98_0": "\\E7* 可是我..^1. 我.../", - "obj_ch2_city08_slash_Step_0_gml_100_0": "\\E1* Noelle/", + "obj_ch2_city08_slash_Step_0_gml_100_0": "", "obj_ch2_city08_slash_Step_0_gml_101_0": "\\ED* 这句话 我只说 一遍/", "obj_ch2_city08_slash_Step_0_gml_102_0": "\\E1* 又一遍/", "obj_ch2_city08_slash_Step_0_gml_103_0": "\\E1* 过来 这里 过来 这里&过来 这里 过来 这里&过来 这里 过来 这里/%", @@ -833,7 +841,7 @@ "obj_ch2_city08_slash_Step_0_gml_160_0_b": "* (我知道了^1,&他一直在跟着我们...)/", "obj_ch2_city08_slash_Step_0_gml_161_0": "\\E7* (我..^1. 我不能害Berdly受伤^1,&对吧?)/", "obj_ch2_city08_slash_Step_0_gml_161_0_b": "* (女王一定是趁我们不注意&的时候抓住了他...!?)/%", - "obj_ch2_city08_slash_Step_0_gml_163_0": "\\EO* .../%", + "obj_ch2_city08_slash_Step_0_gml_163_0": "", "obj_ch2_city08_slash_Step_0_gml_173_0": "\\E0* 不要 难过&Noelle 宝贝/", "obj_ch2_city08_slash_Step_0_gml_174_0": "\\E1* 万事 俱备&只欠 东风/%", "obj_ch2_city08_slash_Step_0_gml_190_0": "\\E6* 我伟大的女王^1!&原来你在这!/", @@ -854,7 +862,7 @@ "obj_ch2_city08_slash_Step_0_gml_315_0": "\\ED* 好在我 校准了 这些 笼子/", "obj_ch2_city08_slash_Step_0_gml_317_0": "\\EB* 你..^1. 你说过我可以&相信你的!!/", "obj_ch2_city08_slash_Step_0_gml_318_0": "\\EC* 你说过你是个游戏宅!!/", - "obj_ch2_city08_slash_Step_0_gml_320_0": "\\EB* Berdly/", + "obj_ch2_city08_slash_Step_0_gml_320_0": "", "obj_ch2_city08_slash_Step_0_gml_321_0": "\\E6* 我 只玩 手游/%", "obj_ch2_city08_slash_Step_0_gml_333_0": "\\E3* 不!!!!!!/", "obj_ch2_city08_slash_Step_0_gml_335_0": "\\E6* 你们 其中 一个人&将会 帮助我 完成 计划/", @@ -874,7 +882,7 @@ "obj_ch2_city08_slash_Step_0_gml_554_0": "\\E2* 就连Susie都担心了!/%", "obj_ch2_city08_slash_Step_0_gml_560_0": "\\EP* 啥!?我才没有!/%", "obj_ch2_city08_slash_Step_0_gml_566_0": "\\EO* 就是^1,那个^1,以后你要想干啥&的话先和我们说一声呗.../%", - "obj_ch2_city08_slash_Step_0_gml_570_0": "\\E0* .../", + "obj_ch2_city08_slash_Step_0_gml_570_0": "", "obj_ch2_city08_slash_Step_0_gml_571_0": "\\E1* 嘿..^1. Kris^1,&你^1,呃^1,还好吗?/", "obj_ch2_city08_slash_Step_0_gml_572_0": "\\E0* 你看起来有点.../%", "obj_ch2_city08_slash_Step_0_gml_577_0": "\\EH* 噢^1,Kris^1,&如果你受伤了^1,&Susie能治疗你哦!/%", @@ -927,14 +935,14 @@ "obj_ch2_cyber01_slash_Step_0_gml_581_0": "\\m3  *好了各位^1,咱们走吧!/%", "obj_ch2_fountain_sideb_slash_Step_0_gml_7_0": "* 打住!!!/%", "obj_ch2_fountain_sideb_slash_Step_0_gml_112_0": "* 嚯嚯嚯哈哈啊啊啊!&这感觉真是太好了.../%", - "obj_ch2_keyboard_cutscene_controller_slash_Create_0_gml_15_0": "DECEMBER", - "obj_ch2_keyboard_cutscene_controller_slash_Create_0_gml_25_0": "DECEMBER", - "obj_ch2_keyboardpuzzle_controller_slash_Create_0_gml_11_0": "APPLE", - "obj_ch2_keyboardpuzzle_controller_slash_Create_0_gml_12_0": "AGREE2ALL", - "obj_ch2_keyboardpuzzle_controller_slash_Create_0_gml_38_0": "GIAEEFSBISSFLBALAELRHEIGSFFEBRSI", - "obj_ch2_keyboardpuzzle_controller_slash_Create_0_gml_46_0": "GIASFELFEBREHBER", - "obj_ch2_keyboardpuzzle_controller_slash_Create_0_gml_56_0": "UPIOMAOIOTSUGNINMGUSIFIOPEKIFUSIORATEGUI", - "obj_ch2_keyboardpuzzle_controller_slash_Create_0_gml_59_0": "SUFUGIOROTENIPEKENAMO", + "obj_ch2_keyboard_cutscene_controller_slash_Create_0_gml_15_0": "", + "obj_ch2_keyboard_cutscene_controller_slash_Create_0_gml_25_0": "", + "obj_ch2_keyboardpuzzle_controller_slash_Create_0_gml_11_0": "", + "obj_ch2_keyboardpuzzle_controller_slash_Create_0_gml_12_0": "", + "obj_ch2_keyboardpuzzle_controller_slash_Create_0_gml_38_0": "", + "obj_ch2_keyboardpuzzle_controller_slash_Create_0_gml_46_0": "", + "obj_ch2_keyboardpuzzle_controller_slash_Create_0_gml_56_0": "", + "obj_ch2_keyboardpuzzle_controller_slash_Create_0_gml_59_0": "", "obj_ch2_keyboardpuzzle_controller_slash_Step_0_gml_160_0": "\\E1* 你 打出了:&同意 全部 内容/", "obj_ch2_keyboardpuzzle_controller_slash_Step_0_gml_161_0": "* 谢谢你 同意 签署&仆从 许可书/", "obj_ch2_keyboardpuzzle_controller_slash_Step_0_gml_162_0": "\\EC* 现在 你们 正式&成为 我的 仆从 了!/", @@ -944,6 +952,8 @@ "obj_ch2_keyboardpuzzle_controller_slash_Step_0_gml_168_0": "\\EF* 找个 替补了 大概/", "obj_ch2_keyboardpuzzle_controller_slash_Step_0_gml_170_0": "\\E0* 呃^1。那你赶紧去找吧。/", "obj_ch2_keyboardpuzzle_controller_slash_Step_0_gml_172_0": "\\E6* 好吧 但是&我还是 拥有&你们的 肖像权/%", + "obj_ch2_keyboardpuzzle_tile_Create_0_gml_1_0": "", + "obj_ch2_keyboardpuzzle_tile_Create_0_gml_2_0": "", "obj_ch2_lw_cutscenes_short_slash_Step_0_gml_35_0": "* 那么^1,我们走吧?/%", "obj_ch2_lw_cutscenes_short_slash_Step_0_gml_101_0": "\\EQ* ..^1. 好吧,瞧瞧谁来了。&本校著名丧尸。/", "obj_ch2_lw_cutscenes_short_slash_Step_0_gml_102_0": "\\E2* 你在课上睡得可真死啊。/", @@ -974,7 +984,7 @@ "obj_ch2_lw_cutscenes_short_slash_Step_0_gml_233_0": "\\EB* 呃..^1. 谢..^1. 谢..^1. &谢..^1. 谢了!!/%", "obj_ch2_lw_cutscenes_short_slash_Step_0_gml_291_0": "\\E3* 好了^1,Kris.&是时候了,接下来是重头戏。/", "obj_ch2_lw_cutscenes_short_slash_Step_0_gml_292_0": "\\E0* 我们所期待的一切,&都在这扇门后面.../", - "obj_ch2_lw_cutscenes_short_slash_Step_0_gml_293_0": "\\E1* .../", + "obj_ch2_lw_cutscenes_short_slash_Step_0_gml_293_0": "", "obj_ch2_lw_cutscenes_short_slash_Step_0_gml_294_0": "\\EK* 如果我们^1,打开门^1,&然后发现里面什么都没有.../", "obj_ch2_lw_cutscenes_short_slash_Step_0_gml_295_0": "\\E3* 那么^1,我们是否还会.../%", "obj_ch2_lw_cutscenes_short_slash_Step_0_gml_304_0": "\\EH* 管他呢!&我们现在就把门打开吧!!/", @@ -1010,7 +1020,7 @@ "obj_ch2_lw_cutscenes_short_slash_Step_0_gml_446_0": "\\EN* 为什么NOELLE??&会让我??/", "obj_ch2_lw_cutscenes_short_slash_Step_0_gml_447_0": "\\EP* 和她一起??&做作业?!??/", "obj_ch2_lw_cutscenes_short_slash_Step_0_gml_448_0": "\\EA* 她就那么想死吗?&她是想挂科吗?/", - "obj_ch2_lw_cutscenes_short_slash_Step_0_gml_449_0": "\\E0* .../%", + "obj_ch2_lw_cutscenes_short_slash_Step_0_gml_449_0": "", "obj_ch2_lw_cutscenes_short_slash_Step_0_gml_458_0": "\\EB* ..^1. 等等。&等一下。/", "obj_ch2_lw_cutscenes_short_slash_Step_0_gml_459_0": "\\EC* Kris^1,你有没有注意到她&刚才好像很紧张的样子...?/", "obj_ch2_lw_cutscenes_short_slash_Step_0_gml_460_0": "\\E6* 而且还..^1. 脸红了?/", @@ -1029,25 +1039,25 @@ "obj_ch2_noelle_monologue_slash_Step_0_gml_78_0": "\\E9* 或许..^1. &我可以过去..^1. 那边?/%", "obj_ch2_noelle_monologue_slash_Step_0_gml_82_0": "\\E1* 不思議な世界..^1. &  大きな街.../%", "obj_ch2_noelle_monologue_slash_Step_0_gml_194_0": "* ...さっき この街は&  頭がグルグルするって言ったけど.../", - "obj_ch2_noelle_monologue_slash_Step_0_gml_195_0": "* それって^1 悪いイミじゃないんだ。/", - "obj_ch2_noelle_monologue_slash_Step_0_gml_196_0": "* わたし^1 知らない場所へ&  行ってみたかったの。/%", - "obj_ch2_noelle_monologue_slash_Step_0_gml_234_0": "* ディセおねえちゃん^1は&  いつか連れてってくれるって。/", + "obj_ch2_noelle_monologue_slash_Step_0_gml_195_0": "", + "obj_ch2_noelle_monologue_slash_Step_0_gml_196_0": "", + "obj_ch2_noelle_monologue_slash_Step_0_gml_234_0": "", "obj_ch2_noelle_monologue_slash_Step_0_gml_235_0": "* こんなふうに.../", - "obj_ch2_noelle_monologue_slash_Step_0_gml_236_0": "* 光が あふれてる場所へ。/%", + "obj_ch2_noelle_monologue_slash_Step_0_gml_236_0": "", "obj_ch2_noelle_monologue_slash_Step_0_gml_266_0": "* ...ねえ^1。&  みんなで よく探検したよね。/", - "obj_ch2_noelle_monologue_slash_Step_0_gml_267_0": "* 4人とも まだ小さかったころ。/", + "obj_ch2_noelle_monologue_slash_Step_0_gml_267_0": "", "obj_ch2_noelle_monologue_slash_Step_0_gml_268_0": "* ...お墓の裏の森を 探検した夜のこ^1と&  覚えてる?/%", "obj_ch2_noelle_monologue_slash_Step_0_gml_284_0": "* 結局 なんにも&  見つからなかったけど.../", - "obj_ch2_noelle_monologue_slash_Step_0_gml_285_0": "* わたし^1 怖くてずっと&  泣いてたことは よく覚えてる。/%", + "obj_ch2_noelle_monologue_slash_Step_0_gml_285_0": "", "obj_ch2_noelle_monologue_slash_Step_0_gml_302_0": "* でもね..^1.  あの夜のこと^1は&  いまでも なつかしく思い出すの。/%", "obj_ch2_noelle_monologue_slash_Step_0_gml_316_0": "* おねえちゃんが&  アズくんの上着で&  涙をふいてくれた.../", - "obj_ch2_noelle_monologue_slash_Step_0_gml_317_0": "* シナモンの香りのす^1る&  あったかい そでで。/%", + "obj_ch2_noelle_monologue_slash_Step_0_gml_317_0": "", "obj_ch2_noelle_monologue_slash_Step_0_gml_352_0": "* そのとき わたし...&  怖いのも悪くないなって&  思ったんだ.../", - "obj_ch2_noelle_monologue_slash_Step_0_gml_353_0": "* だれかが 安心させてくれるなら。/%", + "obj_ch2_noelle_monologue_slash_Step_0_gml_353_0": "", "obj_ch2_noelle_monologue_slash_Step_0_gml_404_0": "\\E1* (はぁ...)/", "obj_ch2_noelle_monologue_slash_Step_0_gml_405_0": "\\E6* (わたしって^1 ヘンなコ^1。&  でも^1 それを知ってるのは&  クリスだけ...)/", - "obj_ch2_noelle_monologue_slash_Step_0_gml_406_0": "\\E3* (なんか ズルいな!)/%", - "obj_ch2_noelle_monologue_slash_Step_0_gml_412_0": "\\E8* (クリスがヘンなコなのは&  みんな知ってるのに!)/%", + "obj_ch2_noelle_monologue_slash_Step_0_gml_406_0": "", + "obj_ch2_noelle_monologue_slash_Step_0_gml_412_0": "", "obj_ch2_room_castle_1f_cake_slash_Step_0_gml_21_0": "\\E2* 到这儿来^1,&Kris^1,Susie^1,&吃块蛋糕吧!!!/%", "obj_ch2_room_castle_1f_cake_slash_Step_0_gml_128_0": "\\E2* 嗯^1,糖霜有点厚。/", "obj_ch2_room_castle_1f_cake_slash_Step_0_gml_130_0": "\\EU* ..^1. 这..^1. 这个是给&大家分着吃的!/", @@ -1062,7 +1072,7 @@ "obj_ch2_room_castle_2f_slash_Step_0_gml_33_0": "\\E2* 你们的第二个家^1,&我会很开心的!/", "obj_ch2_room_castle_2f_slash_Step_0_gml_34_0": "\\E0* 一个无论外面发生了什么.../", "obj_ch2_room_castle_2f_slash_Step_0_gml_35_0": "\\EI* 你都可以回来的地方。/", - "obj_ch2_room_castle_2f_slash_Step_0_gml_37_0": "\\E6* .../", + "obj_ch2_room_castle_2f_slash_Step_0_gml_37_0": "", "obj_ch2_room_castle_2f_slash_Step_0_gml_38_0": "\\EA* 嘿嘿^1,好吧^1,&我们会看一眼的。/%", "obj_ch2_room_castle_2f_slash_Step_0_gml_54_0": "\\E5* 嘿^1,也让我看看&我的房间!~1", "obj_ch2_room_castle_2f_slash_Step_0_gml_58_0": "\\EP* 该死^1,你只想着跑去&偷吃蛋糕。/", @@ -1081,9 +1091,9 @@ "obj_ch2_room_castle_area_1_slash_Step_0_gml_104_0": "\\EE* Nubert 跑哪 去了/%", "obj_ch2_room_castle_area_1_slash_Step_0_gml_111_0": "\\E5* Nubert..^1. Nuby..^1. &你 在哪/%", "obj_ch2_room_castle_area_1_slash_Step_0_gml_126_0": "* 他说他是不会来的,&除非其它人都来了.../%", - "obj_ch2_room_castle_area_1_slash_Step_0_gml_142_0": "\\E4* Nubert/", + "obj_ch2_room_castle_area_1_slash_Step_0_gml_142_0": "", "obj_ch2_room_castle_area_1_slash_Step_0_gml_143_0": "\\EB* 直到 最后 都是 英雄/%", - "obj_ch2_room_castle_area_1_slash_Step_0_gml_150_0": "\\EE* Kris.../", + "obj_ch2_room_castle_area_1_slash_Step_0_gml_150_0": "", "obj_ch2_room_castle_area_1_slash_Step_0_gml_151_0": "\\EB* 我 知道 你已经 &竭力 停战/%", "obj_ch2_room_castle_area_1_slash_Step_0_gml_161_0": "\\EA* 哦 当然/", "obj_ch2_room_castle_area_1_slash_Step_0_gml_162_0": "\\E1* 这里 看着 像是&一个 绝妙的 小镇/%", @@ -1096,7 +1106,7 @@ "obj_ch2_room_castle_area_1_slash_Step_0_gml_220_0": "\\E2* 嘿 Kris 其他人呢/%", "obj_ch2_room_castle_area_1_slash_Step_0_gml_235_0": "* 别担心^1,女王!&我在这呢!/", "obj_ch2_room_castle_area_1_slash_Step_0_gml_236_0": "* 你有我^1,而且只有我!/%", - "obj_ch2_room_castle_area_1_slash_Step_0_gml_246_0": "\\E5* .../%", + "obj_ch2_room_castle_area_1_slash_Step_0_gml_246_0": "", "obj_ch2_room_castle_area_1_slash_Step_0_gml_254_0": "\\EB* 好吧 感觉 我还是/", "obj_ch2_room_castle_area_1_slash_Step_0_gml_255_0": "\\EB* “回自己屋”吧/", "obj_ch2_room_castle_area_1_slash_Step_0_gml_256_0": "\\E5* 哈哈/%", @@ -1107,7 +1117,7 @@ "obj_ch2_room_castle_susie_slash_Step_0_gml_50_0": "\\E1* 我尽量布置了些合你口味&的东西,不过.../", "obj_ch2_room_castle_susie_slash_Step_0_gml_51_0": "\\E2* 你也可以把任何你喜欢的&东西放在这里!/", "obj_ch2_room_castle_susie_slash_Step_0_gml_52_0": "\\EH* 我真心希望你能喜欢它!/%", - "obj_ch2_room_castle_susie_slash_Step_0_gml_74_0": "\\E0* .../", + "obj_ch2_room_castle_susie_slash_Step_0_gml_74_0": "", "obj_ch2_room_castle_susie_slash_Step_0_gml_75_0": "\\ED* ..^1. 我自己的房间吗。/%", "obj_ch2_room_castle_susie_slash_Step_0_gml_82_0": "\\EA* 感觉..^1. 还挺好的?/", "obj_ch2_room_castle_susie_slash_Step_0_gml_83_0": "\\EA* 我自己的房间..^1. 这个样子。/%", @@ -1123,7 +1133,7 @@ "obj_ch2_room_city_moss_slash_Step_0_gml_9_0": "\\E7* 真是好极了^1,我都不知道这里&还有苔藓!/", "obj_ch2_room_city_moss_slash_Step_0_gml_10_0": "\\EA* 而且还完全没被吃过.../", "obj_ch2_room_city_moss_slash_Step_0_gml_11_0": "\\E1* ..^1. 等下。/", - "obj_ch2_room_city_moss_slash_Step_0_gml_12_0": "\\E0* ..^1. Kris.../%", + "obj_ch2_room_city_moss_slash_Step_0_gml_12_0": "", "obj_ch2_room_city_moss_slash_Step_0_gml_28_0": "\\EK* 你这是..^1. 给我留的吗?/", "obj_ch2_room_city_moss_slash_Step_0_gml_29_0": "\\EQ* ..^1. 呵。/", "obj_ch2_room_city_moss_slash_Step_0_gml_30_0": "\\E2* 看来就连你也有好心的时候.../%", @@ -1180,7 +1190,7 @@ "obj_ch2_room_dungeon_2f_ee_slash_Step_0_gml_417_0": "\\E1* 指令 已接受/%", "obj_ch2_room_dungeon_2f_slash_Step_0_gml_24_0": "哇啊啊,#真可爱!", "obj_ch2_room_dungeon_2f_slash_Step_0_gml_25_0": "我们没什么#好聊的了!", - "obj_ch2_room_dungeon_2f_slash_Step_0_gml_28_0": "\\E5* .../", + "obj_ch2_room_dungeon_2f_slash_Step_0_gml_28_0": "", "obj_ch2_room_dungeon_2f_slash_Step_0_gml_29_0": "\\M1* 顺便问一句.../", "obj_ch2_room_dungeon_2f_slash_Step_0_gml_30_0": "\\E6\\E3* 我儿子现在..^1. &过得开心吗...?/", "obj_ch2_room_dungeon_2f_slash_Step_0_gml_32_0": "\\ER* 说的好像你在乎似的!/", @@ -1207,7 +1217,7 @@ "obj_ch2_room_mansion_entrance_slash_Step_0_gml_61_0": "* 啊?/%", "obj_ch2_room_mansion_entrance_slash_Step_0_gml_73_0": "* 哦.../%", "obj_ch2_room_mansion_entrance_slash_Step_0_gml_78_0": "* 所以说,只要我们把他带回&城堡镇.../", - "obj_ch2_room_mansion_entrance_slash_Step_0_gml_79_0": "* .../%", + "obj_ch2_room_mansion_entrance_slash_Step_0_gml_79_0": "", "obj_ch2_room_mansion_entrance_slash_Step_0_gml_85_0": "* 我们^1,呃^1,必须要这么做吗?/", "obj_ch2_room_mansion_entrance_slash_Step_0_gml_87_0": "* 唔^1,对。/", "obj_ch2_room_mansion_entrance_slash_Step_0_gml_89_0": "* 那随便吧。/%", @@ -1233,7 +1243,7 @@ "obj_ch2_room_town_hospital_slash_Step_0_gml_78_0": "\\E8* 唔^1,我还想留着呢?/", "obj_ch2_room_town_hospital_slash_Step_0_gml_80_0": "\\E3* 留着干嘛?留着过生日吗?&来嘛^1,用他个几瓶!/", "obj_ch2_room_town_hospital_slash_Step_0_gml_82_0": "\\ES* 好吧^1,老爸^1!&来尝尝这个^1!嗨呀!/", - "obj_ch2_room_town_hospital_slash_Step_0_gml_83_0": "\\E2* .../", + "obj_ch2_room_town_hospital_slash_Step_0_gml_83_0": "", "obj_ch2_room_town_hospital_slash_Step_0_gml_83_0_b": "\\E2* 诶?啊对^1,你说得没错。/", "obj_ch2_room_town_hospital_slash_Step_0_gml_84_0": "\\E8* 它..^1. 会反弹火焰攻击。/", "obj_ch2_room_town_hospital_slash_Step_0_gml_85_0": "\\E7* 来^1,让我操作操作呗?/%", @@ -1241,7 +1251,7 @@ "obj_ch2_room_town_hospital_slash_Step_0_gml_88_0": "\\E4* 要是在现实世界我也会&治疗魔法就好了。/", "obj_ch2_room_town_hospital_slash_Step_0_gml_89_0": "\\E9* 我就可以让你好起来.../", "obj_ch2_room_town_hospital_slash_Step_0_gml_90_0": "\\E7* 就不会..^1. &只剩下我和妈妈了。/", - "obj_ch2_room_town_hospital_slash_Step_0_gml_92_0": "\\E5* .../", + "obj_ch2_room_town_hospital_slash_Step_0_gml_92_0": "", "obj_ch2_room_town_hospital_slash_Step_0_gml_93_0": "\\E4* ..^1. 你母亲她.../", "obj_ch2_room_town_hospital_slash_Step_0_gml_94_0": "\\E2* 嘿^1,没事的^1,甜心。&我已经好很多了。/", "obj_ch2_room_town_hospital_slash_Step_0_gml_94_0_b": "\\E2* 不-不要啦^1!&我..^1. 我自己操作就好。/", @@ -1257,7 +1267,7 @@ "obj_ch2_room_town_hospital_slash_Step_0_gml_118_0": "\\E4* 我在图书馆里睡着了^1,然后.../", "obj_ch2_room_town_hospital_slash_Step_0_gml_119_0": "\\E4* ...做了一个奇怪的梦^1,哈哈。/", "obj_ch2_room_town_hospital_slash_Step_0_gml_121_0": "\\E3* 明天见^1,亲爱的。/", - "obj_ch2_room_town_hospital_slash_Step_0_gml_121_0_b": "\\E1* Noelle.../", + "obj_ch2_room_town_hospital_slash_Step_0_gml_121_0_b": "", "obj_ch2_room_town_hospital_slash_Step_0_gml_122_0": "\\E2* 我就知道那只臭鸟会让你&无聊到睡着的^1!哈哈!/", "obj_ch2_room_town_hospital_slash_Step_0_gml_123_0": "\\E4* 拜拜^1,老爸。&爱你哦!/%", "obj_ch2_room_town_hospital_slash_Step_0_gml_123_0_b": "\\E3* 他做了什么^1?&是不是又喋喋不休地跟你讲&他的那一堆大道理.../", @@ -1313,7 +1323,7 @@ "obj_ch2_room_town_shelter_slash_Step_0_gml_157_0": "\\EW* 不过在我看来^1,&你们最好还是.../%", "obj_ch2_room_town_shelter_slash_Step_0_gml_188_0": "\\EX* 先担心担心外头吧!/%", "obj_ch2_room_town_shelter_slash_Step_0_gml_192_0": "* 啊!!!!!!!!/%", - "obj_ch2_room_town_shelter_slash_Step_0_gml_278_0": "\\EV* .../", + "obj_ch2_room_town_shelter_slash_Step_0_gml_278_0": "", "obj_ch2_room_town_shelter_slash_Step_0_gml_279_0": "\\E1* 你没事吧^1,Kris?/%", "obj_ch2_room_town_shelter_slash_Step_0_gml_284_0": "\\E0* ..^1. 这地方是怎么了吗?/%", "obj_ch2_room_town_shelter_slash_Step_0_gml_293_0": "\\E2* 好吧^1,看来你不想开口。/%", @@ -1331,7 +1341,7 @@ "obj_ch2_scene_sideb_noelleroom_slash_Step_0_gml_82_0": "\\EA* 还有呃^1,那啥^1,&教她别碍我们的事。/%", "obj_ch2_scene_sideb_noelleroom_slash_Step_0_gml_93_0": "\\E6* ..^1. Kris?/%", "obj_ch2_scene_sideb_noelleroom_slash_Step_0_gml_100_0": "\\E5* 好吧^1,那我自己去!/%", - "obj_ch2_scene_sideb_noelleroom_slash_Step_0_gml_122_0": "\\E0* Kris.../", + "obj_ch2_scene_sideb_noelleroom_slash_Step_0_gml_122_0": "", "obj_ch2_scene_sideb_noelleroom_slash_Step_0_gml_123_0": "\\E2* 你不想知道..^1. &她们那边怎么样了吗?/%", "obj_ch2_scene_sideb_noelleroom_slash_Step_0_gml_133_0": "\\EQ* 唔^1,我的意思是^1,&你想不想知道.../", "obj_ch2_scene_sideb_noelleroom_slash_Step_0_gml_134_0": "\\EI* ..^1. Noelle和Susie&她们现在正在做些什么?/%", @@ -1377,7 +1387,7 @@ "obj_ch2_scene10_slash_Step_0_gml_210_0": "\\E9* 你们 这些 “家伙”/", "obj_ch2_scene10_slash_Step_0_gml_211_0": "\\E1* 嘿/", "obj_ch2_scene10_slash_Step_0_gml_212_0": "\\ED* 你们 想不想/", - "obj_ch2_scene10_slash_Step_0_gml_213_0": "\\E1* .../", + "obj_ch2_scene10_slash_Step_0_gml_213_0": "", "obj_ch2_scene10_slash_Step_0_gml_214_0": "\\ED* 随便 做点 什么/", "obj_ch2_scene10_slash_Step_0_gml_216_0": "* 我们是不会协助你的!!/%", "obj_ch2_scene10_slash_Step_0_gml_221_0": "\\E6* 理解。&回心转意 协议 &必要性 已确认/%", @@ -1443,7 +1453,7 @@ "obj_ch2_scene11a_slash_Step_0_gml_366_0": "\\EM* 你的..^1. 唔..^1. 过山车^1,&嗯..^1. 我很喜欢!/", "obj_ch2_scene11a_slash_Step_0_gml_368_0": "\\EK* 呃..^1. 彼此彼此?/", "obj_ch2_scene11a_slash_Step_0_gml_370_0": "\\EM* 谢..^1. 谢谢!/", - "obj_ch2_scene11a_slash_Step_0_gml_372_0": "\\EK* .../%", + "obj_ch2_scene11a_slash_Step_0_gml_372_0": "", "obj_ch2_scene11a_slash_Step_0_gml_383_0": "\\ED* 好吧 这 不管用&换 另一个人 来/%", "obj_ch2_scene11a_slash_Step_0_gml_430_0": "\\E2* 不用害怕^1,&我亲爱的Noelle!!/", "obj_ch2_scene11a_slash_Step_0_gml_431_0": "\\E6* 我这位智勇双全的战士/", @@ -1493,13 +1503,13 @@ "obj_ch2_scene11b_slash_Step_0_gml_355_0": "\\E2* 好点了吗?/%", "obj_ch2_scene11b_slash_Step_0_gml_362_0": "\\EH* 好点!^1?你不就走过来&然后--/%", "obj_ch2_scene11b_slash_Step_0_gml_372_0": "\\EM* 呃..^1. 感觉没变得更糟^1,&大概吧。/", - "obj_ch2_scene11b_slash_Step_0_gml_373_0": "\\EV* .../%", + "obj_ch2_scene11b_slash_Step_0_gml_373_0": "", "obj_ch2_scene11b_slash_Step_0_gml_383_0": "\\E0* 姑且问一句^1,&你是怎么做到的?/", "obj_ch2_scene11b_slash_Step_0_gml_384_0": "\\E1* 就那个..^1. 治疗的..^1. 玩意。/", "obj_ch2_scene11b_slash_Step_0_gml_386_0": "\\E2* 噢^1,你是说治疗魔法?&很简单的,Susie.&每个人都能学会。/", "obj_ch2_scene11b_slash_Step_0_gml_387_0": "\\EG* ..^1. 如果你感兴趣的话^1,&我也可以教你哦。/%", "obj_ch2_scene11b_slash_Step_0_gml_395_0": "\\EA* 呵^1,如果是什么爆血魔法^1,&我倒挺感兴趣。/%", - "obj_ch2_scene11b_slash_Step_0_gml_403_0": "\\E0* .../%", + "obj_ch2_scene11b_slash_Step_0_gml_403_0": "", "obj_ch2_scene11b_slash_Step_0_gml_413_0": "\\EQ* 不过^1,呃^1,既然你&这么想教的话^1,&我也不是不能学。/", "obj_ch2_scene11b_slash_Step_0_gml_414_0": "\\EK* 这样一来你就^1,那个^1,&不会拿这事来烦我了。/", "obj_ch2_scene11b_slash_Step_0_gml_416_0": "\\EG* 没问题^1,Susie.&下次有空的时候我就教你!/%", @@ -1562,7 +1572,7 @@ "obj_ch2_scene13_slash_Step_0_gml_565_0": "\\s0* 真是%%", "obj_ch2_scene13_slash_Step_0_gml_571_0": "\\ED* 我该 怎么说/", "obj_ch2_scene13_slash_Step_0_gml_572_0": "\\E1* 真是.../", - "obj_ch2_scene13_slash_Step_0_gml_573_0": "\\ED* .../%", + "obj_ch2_scene13_slash_Step_0_gml_573_0": "", "obj_ch2_scene13_slash_Step_0_gml_581_0": "\\EK* 聪明/", "obj_ch2_scene13_slash_Step_0_gml_582_0": "\\EK* 你可 真是 聪明/", "obj_ch2_scene13_slash_Step_0_gml_583_0": "\\EK* 我 真是 太喜欢&容忍你 的 感觉了/%", @@ -1600,7 +1610,7 @@ "obj_ch2_scene17b_slash_Step_0_gml_103_0": "\\EH* 闭嘴!!/", "obj_ch2_scene17b_slash_Step_0_gml_104_0": "\\E1* 总之^1,我们得赶紧想办法&离开这里!!/", "obj_ch2_scene17b_slash_Step_0_gml_105_0": "\\E0* Ralsei^1,&你有什么好点子吗...?/", - "obj_ch2_scene17b_slash_Step_0_gml_106_0": "\\E0* .../", + "obj_ch2_scene17b_slash_Step_0_gml_106_0": "", "obj_ch2_scene17b_slash_Step_0_gml_107_0": "\\EC* 喂..^1. Ralsei特么去哪了!?/%", "obj_ch2_scene17b_slash_Step_0_gml_133_0": "\\EC* 该死^1,那声软绵绵的尖叫-/", "obj_ch2_scene17b_slash_Step_0_gml_134_0": "\\EK* Kris^1,&那肯定是他啊!!/", @@ -1646,7 +1656,7 @@ "obj_ch2_scene18_slash_Step_0_gml_143_0": "\\E3* 我..^1. 我没事^1!&就是感觉..^1. 非常.../", "obj_ch2_scene18_slash_Step_0_gml_144_0": "\\E7* 冷.../%", "obj_ch2_scene18_slash_Step_0_gml_166_0": "\\EZ* 喂..^1. 喂^1,到底怎么回事!?/", - "obj_ch2_scene18_slash_Step_0_gml_168_0": "\\EB* .../", + "obj_ch2_scene18_slash_Step_0_gml_168_0": "", "obj_ch2_scene18_slash_Step_0_gml_170_0": "\\EZ* 你没事吧^1,老兄...?&来^1,我帮你治疗...!/%", "obj_ch2_scene18_slash_Step_0_gml_213_0": "\\E7* ..^1. 谢-谢了^1,&Susie..^1. 可是.../%", "obj_ch2_scene18_slash_Step_0_gml_219_0": "\\EC* 可..^1. 可恶^1,&看来治疗效果还不够强.../%", @@ -1695,16 +1705,16 @@ "obj_ch2_scene19b_slash_Step_0_gml_165_0": "\\E2* 但原始人早就灭绝了^1,&就是因为他们太蠢了!/%", "obj_ch2_scene19b_slash_Step_0_gml_173_0": "\\EC* 下一个谜题由我来解^1,&你们俩--/", "obj_ch2_scene19b_slash_Step_0_gml_174_0": "\\EB* 在我搞定之前就在原地&呆着别动!!/%", - "obj_ch2_scene19b_slash_Step_0_gml_180_0": "* .../", + "obj_ch2_scene19b_slash_Step_0_gml_180_0": "", "obj_ch2_scene19b_slash_Step_0_gml_181_0": "\\E2* 嘿^1,搞得好像我们会&乖乖等那么久似的。/%", "obj_ch2_scene19c_slash_Step_0_gml_60_0": "\\EB* 你们俩来这儿干吗!?&这个谜题是我的!/", "obj_ch2_scene19c_slash_Step_0_gml_61_0": "\\E7* 用不了几秒钟我就完事了^1,&所以你们为何不^1,/", "obj_ch2_scene19c_slash_Step_0_gml_62_0": "\\E6* 去自己的记忆宫殿里&休息会儿呢^1。/%", "obj_ch2_scene19c_slash_Step_0_gml_68_0": "\\E2* 不过里面估计也空空如也&就是了!/%", - "obj_ch2_scene19c_slash_Step_0_gml_74_0": "\\EB* .../", + "obj_ch2_scene19c_slash_Step_0_gml_74_0": "", "obj_ch2_scene19c_slash_Step_0_gml_75_0": "\\EC* 我只需要搞清楚..^1. &为什么.../", "obj_ch2_scene19c_slash_Step_0_gml_76_0": "* 这些形状拼不起来.../%", - "obj_ch2_scene19c_slash_Step_0_gml_88_0": "* .../", + "obj_ch2_scene19c_slash_Step_0_gml_88_0": "", "obj_ch2_scene19c_slash_Step_0_gml_89_0": "\\E6* 噢,嘿。/", "obj_ch2_scene19c_slash_Step_0_gml_90_0": "\\E7* 其实你只需要把整个方块&都给填满就行^1,对吧?/", "obj_ch2_scene19c_slash_Step_0_gml_91_0": "\\E7* 不如你就..^1. 随便摆摆^1,&把它全填满了拉倒。/", @@ -1761,7 +1771,7 @@ "obj_ch2_scene19c_slash_Step_0_gml_464_0": "\\E0* 就像《神龙斗士2》里&主角妹妹被诅咒的时候那样。/%", "obj_ch2_scene19c_slash_Step_0_gml_472_0": "\\EL* 即便她的属性很垃圾^1,&但她依然是你的队友。/%", "obj_ch2_scene19c_slash_Step_0_gml_487_0": "\\E5* S..^1. Susie!?&你说了一个真实的&《神龙斗士2》的梗...?/%", - "obj_ch2_scene19c_slash_Step_0_gml_493_0": "\\E5* ..^1. Susie.../%", + "obj_ch2_scene19c_slash_Step_0_gml_493_0": "", "obj_ch2_scene19c_slash_Step_0_gml_499_0": "\\EI* 你不仅善良^1,&还是一个真正的游戏宅。/%", "obj_ch2_scene19c_slash_Step_0_gml_502_0": "现在别说这个!!!", "obj_ch2_scene19c_slash_Step_0_gml_504_0": "\\EM* 或许我..^1. 真的低估了你。\\f0/%", @@ -1774,14 +1784,14 @@ "obj_ch2_scene19c_slash_Step_0_gml_532_0": "\\EL* 哈哈哈^1,&偶尔犯点小错^1,&我绝对会犯!!!/%", "obj_ch2_scene19c_slash_Step_0_gml_539_0": "\\E6* 勇往直前!!!/%", "obj_ch2_scene19c_slash_Step_0_gml_547_0": "\\EK* 烦死了^1,&这种思想品德课不应该&由Ralsei来教的吗!?/%", - "obj_ch2_scene19c_spelling_bee_slash_Create_0_gml_5_0": "SMART", - "obj_ch2_scene19c_spelling_bee_slash_Create_0_gml_6_0": "INTELLIGENT", - "obj_ch2_scene19c_spelling_bee_slash_Create_0_gml_7_0": "CLEVER", - "obj_ch2_scene19c_spelling_bee_slash_Create_0_gml_8_0": "GENIUS", - "obj_ch2_scene19c_spelling_bee_slash_Create_0_gml_9_0": "PRODIGY", - "obj_ch2_scene19c_spelling_bee_slash_Create_0_gml_10_0": "QUICK", - "obj_ch2_scene19c_spelling_bee_slash_Draw_0_gml_37_0": "IQ", - "obj_ch2_scene19c_spelling_bee_slash_Step_0_gml_21_0": "DECEMBER", + "obj_ch2_scene19c_spelling_bee_slash_Create_0_gml_5_0": "", + "obj_ch2_scene19c_spelling_bee_slash_Create_0_gml_6_0": "", + "obj_ch2_scene19c_spelling_bee_slash_Create_0_gml_7_0": "", + "obj_ch2_scene19c_spelling_bee_slash_Create_0_gml_8_0": "", + "obj_ch2_scene19c_spelling_bee_slash_Create_0_gml_9_0": "", + "obj_ch2_scene19c_spelling_bee_slash_Create_0_gml_10_0": "", + "obj_ch2_scene19c_spelling_bee_slash_Draw_0_gml_37_0": "", + "obj_ch2_scene19c_spelling_bee_slash_Step_0_gml_21_0": "", "obj_ch2_scene20_slash_Step_0_gml_112_0": "\\E6* 那..^1. 那声尖叫..^1. &是Ralsei吗...!?/%", "obj_ch2_scene20_slash_Step_0_gml_130_0": "\\EQ* 呃-呃^1,&你们不必叫那么大声的.../", "obj_ch2_scene20_slash_Step_0_gml_131_0": "\\E1* ..^1. 我知道你们很喜欢我&这身衣服啦!/%", @@ -1793,7 +1803,7 @@ "obj_ch2_scene20_slash_Step_0_gml_236_0": "\\EC* 噢-噢!/", "obj_ch2_scene20_slash_Step_0_gml_238_0": "\\EA* 哈哈..^1. &好..^1. 好冷啊.../%", "obj_ch2_scene20_slash_Step_0_gml_248_0": "\\E4* Susie.../%", - "obj_ch2_scene20_slash_Step_0_gml_255_0": "\\E6* .../%", + "obj_ch2_scene20_slash_Step_0_gml_255_0": "", "obj_ch2_scene20_slash_Step_0_gml_262_0": "\\E8* 恐怕..^1. &我也治不好这个。/", "obj_ch2_scene20_slash_Step_0_gml_264_0": "\\EZ* 什-什么?/", "obj_ch2_scene20_slash_Step_0_gml_266_0": "\\E4* Lancer他.../%", @@ -1810,7 +1820,7 @@ "obj_ch2_scene20_slash_Step_0_gml_365_0": "* ..^1. 所以我们只需要赶紧&离开这个世界?/%", "obj_ch2_scene20_slash_Step_0_gml_372_0": "\\E2* 是的。/", "obj_ch2_scene20_slash_Step_0_gml_374_0": "\\EC* ..^1. 行吧。/%", - "obj_ch2_scene20_slash_Step_0_gml_375_0_b": "\\E4* その世界を生み出した&  「闇の泉」の意志を&  受け継いだ者たちなんだよ。/", + "obj_ch2_scene20_slash_Step_0_gml_375_0_b": "", "obj_ch2_scene20_slash_Step_0_gml_378_0": "\\EA* Lancer^1,&我们会回来救你的^1,&伙计.../%", "obj_ch2_scene20_slash_Step_0_gml_394_0": "\\EI* 你的朋友..^1. &只要打败了女王^1,我们就能救他?/%", "obj_ch2_scene20_slash_Step_0_gml_414_0": "\\E0* 呃^1,对。/%", @@ -1818,8 +1828,8 @@ "obj_ch2_scene20_slash_Step_0_gml_431_0": "\\EG* ..^1. 一定会强迫Noelle&听命于她。/", "obj_ch2_scene20_slash_Step_0_gml_432_0": "\\E9* 要是Noelle拒绝的话.../", "obj_ch2_scene20_slash_Step_0_gml_433_0": "\\E8* ..^1. 女王或许就会把她的脸&改造成机器人的模样。/", - "obj_ch2_scene20_slash_Step_0_gml_435_0": "\\E0* .../%", - "obj_ch2_scene20_slash_Step_0_gml_451_0": "\\E8* Susie.../%", + "obj_ch2_scene20_slash_Step_0_gml_435_0": "", + "obj_ch2_scene20_slash_Step_0_gml_451_0": "", "obj_ch2_scene20_slash_Step_0_gml_458_0": "\\E9* 你可以..^1. &协助我一起去救Noelle吗?/", "obj_ch2_scene20_slash_Step_0_gml_460_0": "\\E6* ..^1. 哈...?&我-我?/%", "obj_ch2_scene20_slash_Step_0_gml_472_0": "\\E9* 光凭我一个人的力量..^1. &是肯定做不到的。/%", @@ -1832,7 +1842,7 @@ "obj_ch2_scene20_slash_Step_0_gml_507_0": "\\E0* 然后在屋顶将她转交给我。/", "obj_ch2_scene20_slash_Step_0_gml_508_0": "\\E1* 从那里^1,我会把她带到&一个安全的藏身处.../%", "obj_ch2_scene20_slash_Step_0_gml_516_0": "\\E1* 只要团结一致^1,&我们就能打败女王!/%", - "obj_ch2_scene20_slash_Step_0_gml_523_0": "\\E0* .../%", + "obj_ch2_scene20_slash_Step_0_gml_523_0": "", "obj_ch2_scene20_slash_Step_0_gml_534_0": "\\EK* 好吧^1,可以。&我们试试看吧。/", "obj_ch2_scene20_slash_Step_0_gml_536_0": "\\E6* 哈哈^1!精彩至极^1!&那么.../%", "obj_ch2_scene20_slash_Step_0_gml_563_0": "\\E7* 各位特工们^1,&那就屋顶再会了!/%", @@ -1840,7 +1850,7 @@ "obj_ch2_scene20_slash_Step_0_gml_607_0": "\\E5* ..^1. 我说你能不能把衣服&换回来啊!?/", "obj_ch2_scene20_slash_Step_0_gml_609_0": "\\EQ* 抱...抱歉!/%", "obj_ch2_scene21_loop_slash_Step_0_gml_130_0": "\\EB* Kris..^1.&嘿,Kris./%", - "obj_ch2_scene21_loop_slash_Step_0_gml_149_0": "\\ED* .../%", + "obj_ch2_scene21_loop_slash_Step_0_gml_149_0": "", "obj_ch2_scene21_loop_slash_Step_0_gml_157_0": "\\E1* 听到你这么说我好开心^1,&Kris.../%", "obj_ch2_scene21_loop_slash_Step_0_gml_169_0": "\\ED* 呃^1,那么^1,&我^1,呃.../%", "obj_ch2_scene21_loop_slash_Step_0_gml_177_0": "\\EU* 啊^1,反-反话^1!&我刚才只是在说反话!/", @@ -1864,7 +1874,7 @@ "obj_ch2_scene21_loop_slash_Step_0_gml_241_0": "\\EM* 这条小船^1,唔..^1. &它看起来有点像.../", "obj_ch2_scene21_loop_slash_Step_0_gml_242_0": "\\EJ* 有点像鸟之类的?/", "obj_ch2_scene21_loop_slash_Step_0_gml_243_0": "\\EK* ...唔^1,他的哪个部分&让你这么觉得的?/", - "obj_ch2_scene21_loop_slash_Step_0_gml_244_0": "\\EK* .../", + "obj_ch2_scene21_loop_slash_Step_0_gml_244_0": "", "obj_ch2_scene21_loop_slash_Step_0_gml_245_0": "\\EK* (就算你不回答也没关系...)/%", "obj_ch2_scene21_loop_slash_Step_0_gml_255_0": "\\ED* ...啊!?/%", "obj_ch2_scene21_loop_slash_Step_0_gml_261_0": "\\E1* 我的意思是^1,&我当然也在想你了,&这还用说吗.../%", @@ -1884,9 +1894,9 @@ "obj_ch2_scene21_loop_slash_Step_0_gml_308_0": "\\E1* 但是.../", "obj_ch2_scene21_loop_slash_Step_0_gml_309_0": "\\E2* Susie她..^1. &可以活成她自己的样子^1,&这不是很棒吗?/", "obj_ch2_scene21_loop_slash_Step_0_gml_310_0": "\\EI* 这就是..^1. &我今天才开始思考的东西。/%", - "obj_ch2_scene21_loop_slash_Step_0_gml_322_0": "\\EI* .../", + "obj_ch2_scene21_loop_slash_Step_0_gml_322_0": "", "obj_ch2_scene21_loop_slash_Step_0_gml_323_0": "\\EQ* 我只是不知道..^1. &什么才算是&“Ralsei的样子”..^1. ?/", - "obj_ch2_scene21_loop_slash_Step_0_gml_324_0": "\\E5* .../", + "obj_ch2_scene21_loop_slash_Step_0_gml_324_0": "", "obj_ch2_scene21_loop_slash_Step_0_gml_325_0": "\\E2* 抱歉^1!哈哈^1,&我说跑题了。/", "obj_ch2_scene21_loop_slash_Step_0_gml_326_0": "\\EQ* 我们现在还是好好享受&这趟旅程吧^1,Kris.&哈哈。/%", "obj_ch2_scene21_loop_slash_Step_0_gml_435_0": "\\EJ* 哇..^1. 哇哦^1,Kris^1!&看看那些小房子!/", @@ -1917,7 +1927,7 @@ "obj_ch2_scene21_loop_slash_Step_0_gml_563_0": "\\E3* 哈哈^1,很快^1,&汝等亦将第一时间&品尝到被废弃的滋味--/", "obj_ch2_scene21_loop_slash_Step_0_gml_564_0": "\\E1* 以多样子弹的形式!/%", "obj_ch2_scene21_loop_slash_Step_0_gml_569_0": "\\EM* 唔..^1. &这..^1. 这就是只鸭子。/", - "obj_ch2_scene21_loop_slash_Step_0_gml_571_0": "\\E5* .../", + "obj_ch2_scene21_loop_slash_Step_0_gml_571_0": "", "obj_ch2_scene21_loop_slash_Step_0_gml_572_0": "\\E6* 吾知晓其为何物^1,混账们!!/", "obj_ch2_scene21_loop_slash_Step_0_gml_573_0": "\\E1* 前进吧!!吾之呱呱叫橡皮鸭!!/%", "obj_ch2_scene21_loop_slash_Step_0_gml_730_0": "\\E2* 啊..^1. 啊啊^1,&哈 哈 哈...!/", @@ -1977,7 +1987,7 @@ "obj_ch2_scene21_slash_Step_0_gml_48_0": "\\EK* 你为什么会有这个!?/", "obj_ch2_scene21_slash_Step_0_gml_50_0": "\\EO* 这是 我 豪宅的 能源&还能 开怀 畅饮/", "obj_ch2_scene21_slash_Step_0_gml_51_0": "\\EP* 再见&哈 哈 哈。/%", - "obj_ch2_scene21_slash_Step_0_gml_58_0": "\\EL* .../", + "obj_ch2_scene21_slash_Step_0_gml_58_0": "", "obj_ch2_scene21_slash_Step_0_gml_59_0": "\\EE* 这..^1. 我们该怎么通过这里!?/%", "obj_ch2_scene21_slash_Step_0_gml_109_0": "\\EJ* 我想..^1. 这..^1. 行得通。&哈哈。/%", "obj_ch2_scene21_slash_Step_0_gml_173_0": "\\E1* 哇哦 我的 注意力 现在&真的 让你们 分散 了。/%", @@ -1992,7 +2002,7 @@ "obj_ch2_scene21_slash_Step_0_gml_246_0": "\\EJ* ..^1. 看来我们进入了一个隧道!/%", "obj_ch2_scene23b_slash_Step_0_gml_59_0": "\\E1* 真是一轮奇怪的月亮.../", "obj_ch2_scene23b_slash_Step_0_gml_60_0": "\\E5* 和我从前见过的所有景色都不一样。/", - "obj_ch2_scene23b_slash_Step_0_gml_61_0": "\\E1* .../", + "obj_ch2_scene23b_slash_Step_0_gml_61_0": "", "obj_ch2_scene23b_slash_Step_0_gml_62_0": "\\E9* 这个世界.../", "obj_ch2_scene23b_slash_Step_0_gml_63_0": "\\EA* ..^1. 真希望Dess也能看得见。/%", "obj_ch2_scene23b_slash_Step_0_gml_77_0": "\\E2* ..^1. 谁在那儿?/%", @@ -2002,7 +2012,7 @@ "obj_ch2_scene23b_slash_Step_0_gml_161_0": "\\E6* 你..^1. 你救了我...?/%", "obj_ch2_scene23b_slash_Step_0_gml_179_0": "\\EL* 下次记得小心点。/%", "obj_ch2_scene23b_slash_Step_0_gml_187_0": "\\EN* 唔..^1. 好^1,&我..^1. 我会的...!/", - "obj_ch2_scene23b_slash_Step_0_gml_188_0": "\\EP* .../%", + "obj_ch2_scene23b_slash_Step_0_gml_188_0": "", "obj_ch2_scene23b_slash_Step_0_gml_207_0": "\\EK* 很酷的月亮。/", "obj_ch2_scene23b_slash_Step_0_gml_209_0": "\\E2* 是..^1. 是啊。/", "obj_ch2_scene23b_slash_Step_0_gml_210_0": "\\E3* ..^1. 可这一切还是很奇怪,&你觉得呢?/%", @@ -2032,7 +2042,7 @@ "obj_ch2_scene23b_slash_Step_0_gml_369_0": "\\EK* 对^1,确实^1,呃^1,/%", "obj_ch2_scene23b_slash_Step_0_gml_377_0": "\\E8* ..^1. 等等^1,&你说你吃了那根笔!?/%", "obj_ch2_scene23b_slash_Step_0_gml_391_0": "\\E5* 嘿^1,听我说完!/%", - "obj_ch2_scene23b_slash_Step_0_gml_398_0": "\\E0* .../%", + "obj_ch2_scene23b_slash_Step_0_gml_398_0": "", "obj_ch2_scene23b_slash_Step_0_gml_410_0": "\\EK* 呃^1,嘿^1,那个^1,你..^1. &真的经常梦到我吗?/%", "obj_ch2_scene23b_slash_Step_0_gml_433_0": "\\EM* 哎呀^1,我该回去写作业了^1,&哈哈!/%", "obj_ch2_scene23b_slash_Step_0_gml_447_0": "\\EQ* 好了^1,Susie^1,&用你的斧子把我敲醒吧!/", @@ -2040,24 +2050,24 @@ "obj_ch2_scene23b_slash_Step_0_gml_455_0": "\\E8* 啊?为什么?&这不过就是一场梦^1,所以.../%", "obj_ch2_scene23b_slash_Step_0_gml_461_0": "\\EC* 唔^1,我想说的是.../", "obj_ch2_scene23b_slash_Step_0_gml_462_0": "\\EK* 你想不想..^1. &呃..^1. 去外面多逛一逛?/%", - "obj_ch2_scene23b_slash_Step_0_gml_473_0": "\\EL* .../%", + "obj_ch2_scene23b_slash_Step_0_gml_473_0": "", "obj_ch2_scene23b_slash_Step_0_gml_482_0": "\\EO* ..^1. 我想Berdly可以&再稍微等一会儿。/", "obj_ch2_scene23b_slash_Step_0_gml_484_0": "\\E2* 好^1!&那我们从这里出去吧。/%", "obj_ch2_scene23b_slash_Step_0_gml_513_0": "\\E2* 我们只需要往右走到.../", "obj_ch2_scene23b_slash_Step_0_gml_514_0": "\\EA* 呃..^1. 到这里^1,坐上^1,呃.../%", "obj_ch2_scene23b_slash_Step_0_gml_539_0": "\\EK* 满是爱心的。摩天轮。/", - "obj_ch2_scene23b_slash_Step_0_gml_541_0": "\\EM* .../", - "obj_ch2_scene23b_slash_Step_0_gml_543_0": "\\EK* .../%", + "obj_ch2_scene23b_slash_Step_0_gml_541_0": "", + "obj_ch2_scene23b_slash_Step_0_gml_543_0": "", "obj_ch2_scene23b_slash_Step_0_gml_556_0": "\\EH* 你还磨蹭什么呢!?&赶紧上去!!/", "obj_ch2_scene23b_slash_Step_0_gml_558_0": "\\EM* 对-对不起!/%", "obj_ch2_scene23c_slash_Step_0_gml_40_0": "我比较喜欢#黏糊糊的血...", - "obj_ch2_scene23c_slash_Step_0_gml_43_0": "\\E6* .../", + "obj_ch2_scene23c_slash_Step_0_gml_43_0": "", "obj_ch2_scene23c_slash_Step_0_gml_45_0": "\\EK* 那个^1,呃..^1. &摩天轮^1,哈。/", "obj_ch2_scene23c_slash_Step_0_gml_46_0": "\\E2* 真让人有点好奇到底什么样&的车才能装上这轮子。/", "obj_ch2_scene23c_slash_Step_0_gml_48_0": "\\E8* (这..^1. 这和跟Kris一起坐&的感觉不太一样...)/", "obj_ch2_scene23c_slash_Step_0_gml_50_0": "\\E4* ..^1. 到底怎么了^1,&你恐高?/", "obj_ch2_scene23c_slash_Step_0_gml_52_0": "\\EM* 不^1!不^1,&我..^1. 我喜欢高处^1!哈哈!/", - "obj_ch2_scene23c_slash_Step_0_gml_54_0": "\\E1* .../", + "obj_ch2_scene23c_slash_Step_0_gml_54_0": "", "obj_ch2_scene23c_slash_Step_0_gml_55_0": "\\E0* 你正在^1,呃^1,发抖。/", "obj_ch2_scene23c_slash_Step_0_gml_57_0": "\\E3* 好吧^1,唔^1,可能^1,&我是有点害怕^1,但..^1. 我.../", "obj_ch2_scene23c_slash_Step_0_gml_58_0": "\\E8* 说实话^1,我..^1. &我其实挺喜欢..^1. &吓人的东西。/", @@ -2069,7 +2079,7 @@ "obj_ch2_scene23c_slash_Step_0_gml_67_0": "\\EK* 安心?\\f0/", "obj_ch2_scene23c_slash_Step_0_gml_69_0": "\\E4* 虽然很可怕^1,&但我可以直接关掉它^1,对吧?/", "obj_ch2_scene23c_slash_Step_0_gml_70_0": "\\E3* 至于现在..^1. &我觉得还是人更加可怕。&哈哈。/", - "obj_ch2_scene23c_slash_Step_0_gml_72_0": "\\E0* .../", + "obj_ch2_scene23c_slash_Step_0_gml_72_0": "", "obj_ch2_scene23c_slash_Step_0_gml_73_0": "\\EY* 你干脆说是我得了。/", "obj_ch2_scene23c_slash_Step_0_gml_75_0": "\\E3* 哈哈..^1. 唔..^1. 的确..^1. &你-你可能确实也挺可怕的^1,&但.../", "obj_ch2_scene23c_slash_Step_0_gml_76_0": "\\E8* 但这..^1. 正是..^1. &你身上美好的部分^1,对吧?/", @@ -2113,7 +2123,7 @@ "obj_ch2_scene23c_slash_Step_0_gml_167_0": "\\E4* (它在摇摆...)/%", "obj_ch2_scene23c_slash_Step_0_gml_181_0": "\\E0* ..^1. 你不发抖了。/", "obj_ch2_scene23c_slash_Step_0_gml_183_0": "\\E6* 我可能安下心来了。/", - "obj_ch2_scene23c_slash_Step_0_gml_185_0": "\\E0* .../", + "obj_ch2_scene23c_slash_Step_0_gml_185_0": "", "obj_ch2_scene23c_slash_Step_0_gml_186_0": "\\EL* ..^1. 我也是。/%", "obj_ch2_scene23d_slash_Step_0_gml_52_0": "\\EL* 好吧^1,刚才还真不赖。/", "obj_ch2_scene23d_slash_Step_0_gml_54_0": "\\E4* 是..^1. 是啊。/%", @@ -2128,7 +2138,7 @@ "obj_ch2_scene23d_slash_Step_0_gml_136_0": "\\EH* (哦^1,&梦里美好的部分结束了。)/%", "obj_ch2_scene23d_slash_Step_0_gml_147_0": "\\E5* 没事的!!^1!&Berdly是来帮忙的!^1!&我们是盟友!!/%", "obj_ch2_scene23d_slash_Step_0_gml_159_0": "\\EJ* 对!^1!&别担心^1,Noelle!^1!&我现在是笨蛋了!!/", - "obj_ch2_scene23d_slash_Step_0_gml_161_0": "\\E2* .../%", + "obj_ch2_scene23d_slash_Step_0_gml_161_0": "", "obj_ch2_scene23d_slash_Step_0_gml_170_0": "\\E5* (他还真行!!!)/%", "obj_ch2_scene23d_slash_Step_0_gml_189_0": "\\E2* 嘿^1,听着,&我现在得去拯救世界了^1。/", "obj_ch2_scene23d_slash_Step_0_gml_191_0": "\\EN* 诶..^1. 啊!?&那..^1. 祝你好运^1,Susie!!/%", @@ -2165,7 +2175,7 @@ "obj_ch2_scene23d_slash_Step_0_gml_401_0": "\\EH* 啊??????????/%", "obj_ch2_scene23d_slash_Step_0_gml_410_0": "\\E5* 请不要吃醋。/", "obj_ch2_scene23d_slash_Step_0_gml_412_0": "\\EI* 吃谁的醋???????&???????????&???????????/%", - "obj_ch2_scene23d_slash_Step_0_gml_419_0": "\\E4* Susie/%", + "obj_ch2_scene23d_slash_Step_0_gml_419_0": "", "obj_ch2_scene23d_slash_Step_0_gml_433_0": "\\s0\\EK* 什么^3?什么^3?什么^3?什么^1?&什么^3?什么^3?什么^3?什么^1?&什么^3?什么^3?什么^3?什么^1?%%", "obj_ch2_scene24e_slash_Step_0_gml_75_0": "\\EI* 事情就是这样.../", "obj_ch2_scene24e_slash_Step_0_gml_77_0": "\\EH* 神兵天降!!!/%", @@ -2242,7 +2252,7 @@ "obj_ch2_scene25_slash_Step_0_gml_871_0": "\\EA* 你也许能对付得了三个人.../", "obj_ch2_scene25_slash_Step_0_gml_872_0": "\\EI* 但你能以一敌四吗!?/", "obj_ch2_scene25_slash_Step_0_gml_874_0": "\\E2* 正在 模拟:数字四/", - "obj_ch2_scene25_slash_Step_0_gml_875_0": "\\E5* .../", + "obj_ch2_scene25_slash_Step_0_gml_875_0": "", "obj_ch2_scene25_slash_Step_0_gml_876_0": "\\E2* 唔/", "obj_ch2_scene25_slash_Step_0_gml_877_0": "\\E1* 你们 绝对会 &让我 屁股:开花/", "obj_ch2_scene25_slash_Step_0_gml_878_0": "\\E9* 除非/%", @@ -2256,7 +2266,7 @@ "obj_ch2_scene25_slash_Step_0_gml_1013_0": "\\E5* 哈哈^1,刚才那下^1,&只不过是虚张声势罢了.../", "obj_ch2_scene25_slash_Step_0_gml_1014_0": "\\E8* 实话告诉你^1,那根电线.../", "obj_ch2_scene25_slash_Step_0_gml_1015_0": "\\EH* 早就吸干我所有美味可口&的能量饮料了。/%", - "obj_ch2_scene25_slash_Step_0_gml_1035_0": "\\E8* Berdly.../%", + "obj_ch2_scene25_slash_Step_0_gml_1035_0": "", "obj_ch2_scene26_powers_combined_old_slash_Step_0_gml_167_0": "* 其实..^1. 多数时候.../", "obj_ch2_scene26_powers_combined_slash_Create_0_gml_43_0": "* 最强图包!/%", "obj_ch2_scene26_powers_combined_slash_Create_0_gml_44_0": "* 闪耀灯光!/%", @@ -2278,12 +2288,12 @@ "obj_ch2_scene26_slash_Step_0_gml_102_0": "* 其意 贯彻 锋芒/%", "obj_ch2_scene26_slash_Step_0_gml_103_0": "* 造化 万物/%", "obj_ch2_scene26_slash_Step_0_gml_104_0": "* 让喷泉 涌现于 大地之上/%", - "obj_ch2_scene26_slash_Step_0_gml_115_0": "* .../", + "obj_ch2_scene26_slash_Step_0_gml_115_0": "", "obj_ch2_scene26_slash_Step_0_gml_116_0": "* 不幸的是&骑士 创造的 这世界/", "obj_ch2_scene26_slash_Step_0_gml_117_0": "* 被封闭在 图书馆 无法 蔓延/", "obj_ch2_scene26_slash_Step_0_gml_118_0": "* 如果 我们 有办法 &制造 更多 黑暗/", "obj_ch2_scene26_slash_Step_0_gml_119_0": "* 我们 或许能&让黑暗 笼罩 整个 世界/", - "obj_ch2_scene26_slash_Step_0_gml_120_0": "* .../", + "obj_ch2_scene26_slash_Step_0_gml_120_0": "", "obj_ch2_scene26_slash_Step_0_gml_131_0": "* 直到 这时 我才 发现/", "obj_ch2_scene26_slash_Step_0_gml_132_0": "* 这种 力量..^1. &这种 意志 的力量/", "obj_ch2_scene26_slash_Step_0_gml_133_0": "* 这种 决心 的力量.../%", @@ -2297,14 +2307,14 @@ "obj_ch2_scene26_slash_Step_0_gml_185_0": "* 造就一个 新的 骑士/%", "obj_ch2_scene26_slash_Step_0_gml_207_0": "\\EB* Noelle &宝贝 亲爱的&甜心 小肉肉/", "obj_ch2_scene26_slash_Step_0_gml_208_0": "\\E1* 你觉得 巨手 怎么样?/%", - "obj_ch2_scene26_slash_Step_0_gml_210_0": "* .../%", + "obj_ch2_scene26_slash_Step_0_gml_210_0": "", "obj_ch2_scene26_slash_Step_0_gml_212_0": "\\E1* 太棒了 &另外 你觉得 &统治世界 怎么样?/%", "obj_ch2_scene26_slash_Step_0_gml_235_0": "\\E8* 哦哦哦 哎呀 妈耶/%", "obj_ch2_scene26_slash_Step_0_gml_277_0": "\\EN* S-Susie...^1!&你..^1. 你来救我了!/%", "obj_ch2_scene26_slash_Step_0_gml_285_0": "\\E6* 不知怎么的^1,我..^1. &我..^1. 就知道你会来.../%", "obj_ch2_scene26_slash_Step_0_gml_292_0": "\\E3* 呃^1,你知道?/%", "obj_ch2_scene26_slash_Step_0_gml_298_0": "\\EP* 唔^1,我是说..^1. 我..^1. &唔.. 那个.../", - "obj_ch2_scene26_slash_Step_0_gml_306_0": "\\EL* .../%", + "obj_ch2_scene26_slash_Step_0_gml_306_0": "", "obj_ch2_scene26_slash_Step_0_gml_319_0": "\\EB* 等..^1. 等等^1!&等下等下等下!!/", "obj_ch2_scene26_slash_Step_0_gml_320_0": "\\EE* 快!^1!&你们得赶快离开这里!!/%", "obj_ch2_scene26_slash_Step_0_gml_333_0": "\\E6* 啊?!/%", @@ -2348,7 +2358,7 @@ "obj_ch2_scene26_slash_Step_0_gml_855_0": "\\m1  *在你们反抗女王的旅途中,/", "obj_ch2_scene26_slash_Step_0_gml_855_0_b": "* 我的 传感器& 在哪里都 感应不到 他/", "obj_ch2_scene26_slash_Step_0_gml_856_0": "\\m3  *你们交了很多朋友,对吧?!/", - "obj_ch2_scene26_slash_Step_0_gml_856_0_b": "* .../%", + "obj_ch2_scene26_slash_Step_0_gml_856_0_b": "", "obj_ch2_scene26_slash_Step_0_gml_857_0": "\\m1  *运用我们整破烂的技术.../", "obj_ch2_scene26_slash_Step_0_gml_858_0": "\\m3  *我们改造了大家.../", "obj_ch2_scene26_slash_Step_0_gml_859_0": "\\m2  *让大家能够团结一心!\\f0/%", @@ -2382,7 +2392,7 @@ "obj_ch2_scene26_slash_Step_0_gml_1081_0": "\\ED* 去吧 Kris^1,&将喷泉 封印吧/", "obj_ch2_scene26_slash_Step_0_gml_1082_0": "\\EB* 我不会 再 阻拦 你了/%", "obj_ch2_scene26_slash_Step_0_gml_1292_0_b": "\\E2* Kris^1,喷泉近在眼前了!/%", - "obj_ch2_scene26_slash_Step_0_gml_1328_0": "\\E0* .../%", + "obj_ch2_scene26_slash_Step_0_gml_1328_0": "", "obj_ch2_scene26_slash_Step_0_gml_1349_0": "\\E0* ..^1. 呃^1,嘿。&嘿^1,你等下。/%", "obj_ch2_scene26_slash_Step_0_gml_1357_0_b": "\\EC* 其实你不是非得要..^1. &我是说.../%", "obj_ch2_scene26_slash_Step_0_gml_1368_0": "\\ED* 呃^1,不用急着..^1. 说再见^1,&你懂吧?/", @@ -2401,7 +2411,7 @@ "obj_ch2_scene26_slash_Step_0_gml_1479_0": "\\E1* ..^1. 我..^1. 在那之前&先去看看Noelle./%", "obj_ch2_scene26_slash_Step_0_gml_1496_0": "\\EQ* 唔^1,Kris^1,我会跟女王&介绍一下我们小镇的!/%", "obj_ch2_scene26_slash_Step_0_gml_1509_0": "\\EN* Kris 我很 期待&成为 你的 古怪室友/%", - "obj_ch2_scene27_slash_Step_0_gml_70_0": "\\E1* Noelle/%", + "obj_ch2_scene27_slash_Step_0_gml_70_0": "", "obj_ch2_scene27_slash_Step_0_gml_71_0": "\\E1* 亲爱的/%", "obj_ch2_scene27_slash_Step_0_gml_72_0": "\\E1* 宝贝/%", "obj_ch2_scene27_slash_Step_0_gml_73_0": "\\E1* 甜心/%", @@ -2420,13 +2430,13 @@ "obj_ch2_scene27_slash_Step_0_gml_127_0": "\\Ef* 不!/", "obj_ch2_scene27_slash_Step_0_gml_128_0": "\\Ef* 在你的控制之下^1!&我永远都不会快乐!/", "obj_ch2_scene27_slash_Step_0_gml_129_0": "\\Ef* 你为什么就是不明白!?/", - "obj_ch2_scene27_slash_Step_0_gml_131_0": "\\E5* .../", - "obj_ch2_scene27_slash_Step_0_gml_132_0": "\\E5* .../", - "obj_ch2_scene27_slash_Step_0_gml_133_0": "\\E5* ..^1. Noelle.../", + "obj_ch2_scene27_slash_Step_0_gml_131_0": "", + "obj_ch2_scene27_slash_Step_0_gml_132_0": "", + "obj_ch2_scene27_slash_Step_0_gml_133_0": "", "obj_ch2_scene27_slash_Step_0_gml_134_0": "\\E5* 看来 我的 计算/", "obj_ch2_scene27_slash_Step_0_gml_135_0": "\\E5* 出了些 校准 错误/", - "obj_ch2_scene27_slash_Step_0_gml_137_0": "\\EC* .../", - "obj_ch2_scene27_slash_Step_0_gml_139_0": "\\E5* Noelle/", + "obj_ch2_scene27_slash_Step_0_gml_137_0": "", + "obj_ch2_scene27_slash_Step_0_gml_139_0": "", "obj_ch2_scene27_slash_Step_0_gml_140_0": "\\E5* 别管..^1. 我..^1. 了.../", "obj_ch2_scene27_slash_Step_0_gml_141_0": "\\E5* 用你 自己的 力量/", "obj_ch2_scene27_slash_Step_0_gml_142_0": "\\E1* 选择 一个 能让你..^1. &快乐的 世界/%", @@ -2501,7 +2511,7 @@ "obj_ch2_scene27_slash_Step_0_gml_609_0": "\\E8* (真的好刺激^1,&我都忘了这是个梦...)/%", "obj_ch2_scene27_slash_Step_0_gml_620_0": "\\E9* 那么..^1. 我只希望.../%", "obj_ch2_scene27_slash_Step_0_gml_629_0": "\\E4* 以后还能做更多这样的梦。/%", - "obj_ch2_scene27_slash_Step_0_gml_637_0": "\\E0* .../%", + "obj_ch2_scene27_slash_Step_0_gml_637_0": "", "obj_ch2_scene27_slash_Step_0_gml_644_0": "\\EC* 嘿^1,Noelle^1,&等你醒了以后..^1. &嗯.../%", "obj_ch2_scene27_slash_Step_0_gml_651_0": "\\EK* 那个^1,我就是想说..^1. &呃.../%", "obj_ch2_scene27_slash_Step_0_gml_656_0": "我在给 电池 充电 的时候 思考了 这事", @@ -2511,7 +2521,7 @@ "obj_ch2_scene27_slash_Step_0_gml_685_0": "\\E9* Noelle^1,&你 过度的 诚实/", "obj_ch2_scene27_slash_Step_0_gml_686_0": "\\E1* Susie^1,&你 愚蠢的 勇气/", "obj_ch2_scene27_slash_Step_0_gml_687_0": "\\EB* Kris^1,&你 冷漠的 气质/", - "obj_ch2_scene27_slash_Step_0_gml_688_0": "\\ED* .../", + "obj_ch2_scene27_slash_Step_0_gml_688_0": "", "obj_ch2_scene27_slash_Step_0_gml_689_0": "\\EF* B...Burghley?/%", "obj_ch2_scene27_slash_Step_0_gml_711_0": "\\E2* 我们用不着说再见^1,女王!/", "obj_ch2_scene27_slash_Step_0_gml_712_0": "\\E2* Kris可以&把你带回我们的城堡镇!/", @@ -2519,7 +2529,7 @@ "obj_ch2_scene27_slash_Step_0_gml_715_0": "\\E3* 哦/%", "obj_ch2_scene27_slash_Step_0_gml_728_0": "\\E1* 删除 <温柔告别.EXE>/%", "obj_ch2_scene27_slash_Step_0_gml_734_0": "\\E2* 好了^1!是时候完成&我们该做的事情了.../%", - "obj_ch2_scene27_slash_Step_0_gml_742_0": "\\E6* .../%", + "obj_ch2_scene27_slash_Step_0_gml_742_0": "", "obj_ch2_scene27_slash_Step_0_gml_750_0": "\\E0* 嘿^1,Noelle./", "obj_ch2_scene27_slash_Step_0_gml_751_0": "\\EC* ..^1. 如果你&见到了真正的Susie^1,&你要.../%", "obj_ch2_scene27_slash_Step_0_gml_759_0": "\\EK* 你要记得^1,她可能.../%", @@ -2533,7 +2543,7 @@ "obj_ch2_scene28b_slash_Step_0_gml_121_0": "\\E4* 是梦...?这一切果然只是.../%", "obj_ch2_scene28b_slash_Step_0_gml_122_0": "\\E9* 哦..^1. 那只是一场梦^1,&不是吗.../", "obj_ch2_scene28b_slash_Step_0_gml_124_0": "\\E3* 嗯..^1. 一场梦?&全都是..^1. 一场梦?/", - "obj_ch2_scene28b_slash_Step_0_gml_125_0": "\\E0* .../", + "obj_ch2_scene28b_slash_Step_0_gml_125_0": "", "obj_ch2_scene28b_slash_Step_0_gml_126_0": "\\E5* ..^1. 那..^1. 那当然了!^1!&那只能是一场梦!!/", "obj_ch2_scene28b_slash_Step_0_gml_127_0": "\\E6* 这种心情..^1. 这种思绪..^1. &哦^1,我滴乖乖啊!!/", "obj_ch2_scene28b_slash_Step_0_gml_128_0": "\\E7* 仔细想想^1,&我怎么可能会觉得Susie.../%", @@ -2551,7 +2561,7 @@ "obj_ch2_scene28b_slash_Step_0_gml_151_0": "* 呃--^1/", "obj_ch2_scene28b_slash_Step_0_gml_151_0_b": "\\Eb* 我只是..^1. &很高兴自己终于醒过来了。/", "obj_ch2_scene28b_slash_Step_0_gml_152_0": "\\E3* ..^1. 你之前邀请我们来学习的。&忘了吗?/%", - "obj_ch2_scene28b_slash_Step_0_gml_153_0": "\\EC* .../", + "obj_ch2_scene28b_slash_Step_0_gml_153_0": "", "obj_ch2_scene28b_slash_Step_0_gml_155_0": "\\E6* 不过..^1. &最后结局还是蛮不错的。/", "obj_ch2_scene28b_slash_Step_0_gml_157_0": "\\E7* 发生了什么?/%", "obj_ch2_scene28b_slash_Step_0_gml_163_0": "\\EJ* 哦-哦^1,对^1,&我^1,呃--我--/%", @@ -2559,7 +2569,7 @@ "obj_ch2_scene28b_slash_Step_0_gml_173_0": "\\E3* 什么!?&跟他们一起学习??/", "obj_ch2_scene28b_slash_Step_0_gml_174_0": "\\EI* Noelle!^1!老天呀!^1!&他们..^1. 他们.../%", "obj_ch2_scene28b_slash_Step_0_gml_175_0": "\\EO* 哈哈^1,嘿^1,醒醒啦Berdly^1!&我们该走了!/%", - "obj_ch2_scene28b_slash_Step_0_gml_182_0": "\\E9* .../%", + "obj_ch2_scene28b_slash_Step_0_gml_182_0": "", "obj_ch2_scene28b_slash_Step_0_gml_184_0": "\\E5* ..^1. Berdly?/%", "obj_ch2_scene28b_slash_Step_0_gml_189_0": "\\E5* ..^1. 好吧^1,&我们或许可以..^1. 试一试。/%", "obj_ch2_scene28b_slash_Step_0_gml_202_0": "\\E3* 嗯..^1. 啊??&我的..^1. 我的闹铃??/%", @@ -2596,7 +2606,7 @@ "obj_ch2_scene28b_slash_Step_0_gml_485_0": "\\EP* 人们要是知道世界陷入了&危机的话^1,会被吓坏的。/%", "obj_ch2_scene28b_slash_Step_0_gml_493_0": "* 现在^1,让我们加快脚步吧^1,&我亲爱的Noelle!/%", "obj_ch2_scene28b_slash_Step_0_gml_495_0": "\\EB* ..^1. 不过^1,Noelle也得忘记&可真有点扫兴.../", - "obj_ch2_scene28b_slash_Step_0_gml_496_0": "\\E0* .../%", + "obj_ch2_scene28b_slash_Step_0_gml_496_0": "", "obj_ch2_scene28b_slash_Step_0_gml_506_0": "\\E1* 不管了^1。&我们走吧。/%", "obj_ch2_scene28b_slash_Step_0_gml_561_0": "* (你在离开之前,把房间里的东西&全都收集了起来...)/%", "obj_ch2_scene29_slash_Step_0_gml_38_0": "* ..^1. 哎哟^1,都这么晚了...?/%", @@ -2614,10 +2624,10 @@ "obj_ch2_scene30a_slash_Step_0_gml_119_0": "\\EG* 呃-呃呃^1,&我^1,我..^1. &呃.../%", "obj_ch2_scene30a_slash_Step_0_gml_130_0": "\\EK* (Kris^1,我^1,呃^1,&差不多得走了^1,所以...)/%", "obj_ch2_scene30a_slash_Step_0_gml_138_0": "\\E4* 我准备烤一个派..^1. &你想来点吗?/%", - "obj_ch2_scene30a_slash_Step_0_gml_146_0": "\\E6* .../%", + "obj_ch2_scene30a_slash_Step_0_gml_146_0": "", "obj_ch2_scene30a_slash_Step_0_gml_154_0": "\\EK* (那我稍微做会儿客也行。)/%", "obj_ch2_scene30b_slash_Step_0_gml_48_0": "* 请不要客气。/%", - "obj_ch2_scene30b_slash_Step_0_gml_61_0": "\\EK* .../", + "obj_ch2_scene30b_slash_Step_0_gml_61_0": "", "obj_ch2_scene30b_slash_Step_0_gml_63_0": "* 哦^1,不好意思。&我是Kris的母亲^1,Toriel.../", "obj_ch2_scene30b_slash_Step_0_gml_65_0": "\\EK* 好...好的^1,老师。&我..^1. 记得您。/", "obj_ch2_scene30b_slash_Step_0_gml_67_0": "\\E4* 哦^1,是吗?&我记得你叫..^1. Susie^1,&对不对?/", @@ -2634,7 +2644,7 @@ "obj_ch2_scene30b_slash_Step_0_gml_132_0": "\\EK* ..^1. 好吧。/%", "obj_ch2_scene30b_slash_Step_0_gml_151_0": "\\E0* Kris^1,Susie看上去&是个不错的女孩。/", "obj_ch2_scene30b_slash_Step_0_gml_152_0": "\\E1* 我很高兴你能和她交朋友^1,&不过.../%", - "obj_ch2_scene30b_slash_Step_0_gml_160_0": "\\E1* .../%", + "obj_ch2_scene30b_slash_Step_0_gml_160_0": "", "obj_ch2_scene30b_slash_Step_0_gml_167_0": "\\E1* Kris^1,我..^1. 从Alphys那^1,&听说过她的..^1. 一些行为。/", "obj_ch2_scene30b_slash_Step_0_gml_168_0": "\\E8* 万一她^1,呃^1,&影响到了你^1,呃.../%", "obj_ch2_scene30b_slash_Step_0_gml_177_0": "\\E4* 不要吃粉笔^1,&好不好???/%", @@ -2684,7 +2694,7 @@ "obj_ch2_scene31_slash_Step_0_gml_441_0": "\\EA* 好的!/%", "obj_ch2_scene32_slash_Step_0_gml_130_0": "\\EA* 嘿Kris^1,下次动作快点,/", "obj_ch2_scene32_slash_Step_0_gml_131_0": "\\E2* 我们都快做完了.../%", - "obj_ch2_scene32_slash_Step_0_gml_148_0": "\\E1* .../%", + "obj_ch2_scene32_slash_Step_0_gml_148_0": "", "obj_ch2_scene32_slash_Step_0_gml_157_0": "\\E7* 下一步是什么?/%", "obj_ch2_scene32_slash_Step_0_gml_165_0": "\\E1* 哦^1,那个^1,关于派的事情.../%", "obj_ch2_scene32_slash_Step_0_gml_172_0": "\\E0* 我们已经花费了不少工夫了^1,&不是吗?/", @@ -2801,7 +2811,7 @@ "obj_ch2_scene6_slash_Step_0_gml_201_0": "* (ROUXLS变成了重要物品&虽然没人想要他来。)/%", "obj_ch2_scene6_slash_Step_0_gml_214_0": "* \\cY我\\cW也会\\cY参加\\cW/%", "obj_ch2_scene6_slash_Step_0_gml_238_0": "* (最初的   \\cYSTARWALKER\\cW&变成了重要物品。)/%", - "obj_ch2_scene6_slash_Step_0_gml_243_0": "\\EK* .../%", + "obj_ch2_scene6_slash_Step_0_gml_243_0": "", "obj_ch2_scene6_slash_Step_0_gml_250_0": "\\E0* 好了^1,够了。&我们走吧。/%", "obj_ch2_scene6_slash_Step_0_gml_276_0": "\\E2* 祝你今天好运^1,Kris.&我们待会儿见!/%", "obj_ch2_scene6_slash_Step_0_gml_543_0": "\\E1* 猜猜谁回来了^1,&小鬼头们!?/", @@ -2848,7 +2858,7 @@ "obj_ch2_scene8_slash_Step_0_gml_31_0": "\\E1* 好了。我们到了。/%", "obj_ch2_scene8_slash_Step_0_gml_35_0": "\\E2* 学校。作业。该死。/%", "obj_ch2_scene8_slash_Step_0_gml_48_0": "\\EA* 书本。该。死。&让我抓狂。/%", - "obj_ch2_scene8_slash_Step_0_gml_55_0": "\\E0* .../%", + "obj_ch2_scene8_slash_Step_0_gml_55_0": "", "obj_ch2_scene8_slash_Step_0_gml_63_0": "\\EK* 嘿^1,Kris^1,&大家都特么去哪了?/%", "obj_ch2_scene8_slash_Step_0_gml_71_0": "\\E0* 好像有些..^1. 不对劲。/%", "obj_ch2_scene8_slash_Step_0_gml_80_0": "\\E5* 管它的,我们还是去&电脑室里玩三维弹球吧。/%", @@ -2857,7 +2867,7 @@ "obj_ch2_scene8_slash_Step_0_gml_108_0": "\\EC* ..^1. 储物间里面?/%", "obj_ch2_scene8_slash_Step_0_gml_119_0": "\\E1* Kris^1,你觉得这该不会是.../%", "obj_ch2_scene8_slash_Step_0_gml_134_0": "* ...另一个黑暗世界?/%", - "obj_ch2_scene8_slash_Step_0_gml_142_0": "\\E0* .../", + "obj_ch2_scene8_slash_Step_0_gml_142_0": "", "obj_ch2_scene8_slash_Step_0_gml_143_0": "\\EA* 好吧。/", "obj_ch2_scene8_slash_Step_0_gml_144_0": "\\E2* 我想这意味着,&得把小组作业先放一放了。/", "obj_ch2_scene8_slash_Step_0_gml_145_0": "\\EQ* ..^1. 除非。/", @@ -2923,13 +2933,13 @@ "obj_ch2_scene9_slash_Step_0_gml_735_0": "\\E9* 走吧,Kris!/%", "obj_ch2_scene9_slash_Step_0_gml_778_0": "\\E2* 我们走吧!/%", "obj_ch2_sceneex1_slash_Step_0_gml_54_0": "\\E5* Kris...?&你想让我们留在这儿...?/", - "obj_ch2_sceneex1_slash_Step_0_gml_56_0": "* .../", + "obj_ch2_sceneex1_slash_Step_0_gml_56_0": "", "obj_ch2_sceneex1_slash_Step_0_gml_57_0": "\\E1* 行啊^1,随你便吧。/", "obj_ch2_sceneex1_slash_Step_0_gml_58_0": "\\EA* 就算没有你我跟Ralsei&也会玩得很开心的。/%", "obj_ch2_sceneex1_slash_Step_0_gml_165_0": "* 拜托^1,Susie!^1!&把我的眼镜还给我!!/", "obj_ch2_sceneex1_slash_Step_0_gml_167_0": "\\Ea* 哦哦^1,瞧瞧我^1,&我是个超爱写作业的&大蠢蛋!!/%", "obj_ch2_sceneex1_slash_Step_0_gml_184_0": "\\ES* 拜..^1. 拜托了.../%", - "obj_ch2_sceneex1_slash_Step_0_gml_189_0": "\\Ea* .../", + "obj_ch2_sceneex1_slash_Step_0_gml_189_0": "", "obj_ch2_sceneex1_slash_Step_0_gml_190_0": "\\EK* 好吧,还给你!!/%", "obj_ch2_sceneex1_slash_Step_0_gml_203_0": "\\EP* 谢谢你!/%", "obj_ch2_sceneex1_slash_Step_0_gml_214_0": "\\EJ* 哦,Kris^1!&一切都还好吗?/%", @@ -2942,7 +2952,7 @@ "obj_ch2_sceneex2_slash_Step_0_gml_148_0": "* 哈 哈 哈..^1. &这股力量是/%", "obj_ch2_sceneex2_slash_Step_0_gml_156_0": "* 自由。/%", "obj_ch2_sceneex2_slash_Step_0_gml_163_0": "* 我再也^1 &* 不会只是个^1 &* 木偶了!!!/", - "obj_ch2_sceneex2_slash_Step_0_gml_166_0": "* .../%", + "obj_ch2_sceneex2_slash_Step_0_gml_166_0": "", "obj_ch2_sceneex2_slash_Step_0_gml_174_0": "* 至少..^1. 我是..^1. 这么..^1. 觉得。/%", "obj_ch2_sceneex2_slash_Step_0_gml_183_0": "* 这些提线是什么!^1?&* 为什么我还是不够【大】!^1?&* 这里依然黑暗..^1. 太黑暗了!/%", "obj_ch2_sceneex2_slash_Step_0_gml_209_0": "* KRIS。/%", @@ -2957,7 +2967,7 @@ "obj_ch2_sceneex2_slash_Step_0_gml_298_0": "* 你^3的 &* 【【灵魂】】/%", "obj_ch2_sceneex2_slash_Step_0_gml_341_0": "\\E4* 刚才那家伙是个什么玩意!?/", "obj_ch2_sceneex2_slash_Step_0_gml_343_0": "\\EQ* Kris^1,我们很担心你^1,&所以就.../%", - "obj_ch2_sceneex2_slash_Step_0_gml_411_0": "\\E4* Kris!/%", + "obj_ch2_sceneex2_slash_Step_0_gml_411_0": "", "obj_ch2_sceneex2_slash_Step_0_gml_418_0": "* 今天,全家人都可以&来上一次【小镇环游】.../%", "obj_ch2_sceneex2_slash_Step_0_gml_442_0": "* KRIS!!^1!&你居然还有【朋友】!?/", "obj_ch2_sceneex2_slash_Step_0_gml_443_0": "* 你怎么没跟他们推荐&我的【三合一套餐】!?/", @@ -2970,7 +2980,7 @@ "obj_ch2_sceneex2_special_slash_Draw_0_gml_16_0": "按下", "obj_ch2_sceneex2_special_slash_Draw_0_gml_23_0": "按住", "obj_ch2_sceneex2_special_slash_Draw_0_gml_27_0": "松开", - "obj_ch2_sceneex2_special_slash_Draw_0_gml_39_0": "~1", + "obj_ch2_sceneex2_special_slash_Draw_0_gml_39_0": "", "obj_ch2_sceneex2a_slash_Step_0_gml_48_0": "* 结果到头来^1,&我也只是一个普通的木偶。/", "obj_ch2_sceneex2a_slash_Step_0_gml_49_0": "* 但是你们三个人不一样..^1. &你们很强大。/", "obj_ch2_sceneex2a_slash_Step_0_gml_52_0": "* 有那样的力量的话.../", @@ -2986,7 +2996,7 @@ "obj_ch2_sceneex2a_slash_Step_0_gml_132_0": "* 你明明能拿整整48个东西!!!/", "obj_ch2_sceneex2a_slash_Step_0_gml_133_0": "* 【为什么】你要这样做!^1?&* 为什么!^1?【为啥】!^1?&【為什麽】!^1?【沩亻十厺】!?/", "obj_ch2_sceneex2a_slash_Step_0_gml_134_0": "* KRIS 这可一点都不【酷】^1!&* 我要回我的【拖车】里了!/%", - "obj_ch2_sceneex3_slash_Step_0_gml_48_0": "\\E0* .../", + "obj_ch2_sceneex3_slash_Step_0_gml_48_0": "", "obj_ch2_sceneex3_slash_Step_0_gml_49_0": "\\E1* 那么..^1. 我们真的.../%", "obj_ch2_sceneex3_slash_Step_0_gml_57_0": "\\E0* 不打算谈谈&刚才到底发生了什么吗?/", "obj_ch2_sceneex3_slash_Step_0_gml_58_0": "\\EC* 那可太莫名其妙了。/%", @@ -2996,7 +3006,7 @@ "obj_ch2_sceneex3_slash_Step_0_gml_74_0": "\\E6* Susie^1,我..^1. &我并不觉得那有什么特殊含义。/", "obj_ch2_sceneex3_slash_Step_0_gml_75_0": "\\E4* 看样子它只是一个损坏的程序。/%", "obj_ch2_sceneex3_slash_Step_0_gml_83_0": "\\EI* 他现在变成了我们的盟友^1,&咱们就不要想太多了吧。/%", - "obj_ch2_sceneex3_slash_Step_0_gml_116_0": "\\E0* .../%", + "obj_ch2_sceneex3_slash_Step_0_gml_116_0": "", "obj_ch2_sceneex3_slash_Step_0_gml_124_0": "\\EC* (要是你这么紧张地回答我^1,)/", "obj_ch2_sceneex3_slash_Step_0_gml_125_0": "\\E1* (..^1. 我可不会觉得&你现在没事...)/", "obj_ch2_sceneex3_slash_Step_0_gml_126_0": "\\E0* (...)/%", @@ -3007,7 +3017,7 @@ "obj_ch2_sceneex3_slash_Step_0_gml_159_0": "\\E2* Kris^1,&我之后会为你准备点蛋糕的^1,&好吗?/", "obj_ch2_sceneex3_slash_Step_0_gml_160_0": "\\EQ* 我甚至可以做个巧克力味的^1,/", "obj_ch2_sceneex3_slash_Step_0_gml_161_0": "\\EQ* 奶油硬糖^1,肉桂..^1. &你想要什么口味都可以哦。/%", - "obj_ch2_sceneex3_slash_Step_0_gml_169_0": "\\E0* .../%", + "obj_ch2_sceneex3_slash_Step_0_gml_169_0": "", "obj_ch2_sceneex3_slash_Step_0_gml_176_0": "\\E2* 喂^1,人家鸡皮疙瘩还没消,&肚子反而在咕咕叫了。/%", "obj_ch2_sceneex3_slash_Step_0_gml_184_0": "\\E1* Kris^1,如果你觉得冷的话^1,&我可以把围巾借给你.../", "obj_ch2_sceneex3_slash_Step_0_gml_185_0": "\\EJ* 哦?或者^1,嗯^1,&当然^1,Susie也会...?/%", @@ -3022,17 +3032,17 @@ "obj_ch2_sceneex3_slash_Step_0_gml_306_0": "\\E0* 来个深呼吸^1,&然后想想.../", "obj_ch2_sceneex3_slash_Step_0_gml_307_0": "\\EQ* 你喜欢的东西。&美好的东西..^1. 柔软的东西。/", "obj_ch2_sceneex3_slash_Step_0_gml_308_0": "\\E2* 在你感到好起来之前^1,&我会一直陪伴你的^1,Kris./", - "obj_ch2_sceneex3_slash_Step_0_gml_309_0": "\\E1* .../%", - "obj_ch2_sceneex3_slash_Step_0_gml_326_0": "\\E0* .../", + "obj_ch2_sceneex3_slash_Step_0_gml_309_0": "", + "obj_ch2_sceneex3_slash_Step_0_gml_326_0": "", "obj_ch2_sceneex3_slash_Step_0_gml_327_0": "\\E1* Ralsei说的没错^1,Kris./", "obj_ch2_sceneex3_slash_Step_0_gml_328_0": "\\E0* 不管刚才发生了什么..^1. &我认为.../", "obj_ch2_sceneex3_slash_Step_0_gml_329_0": "\\E1* 那或许并不意味着什么。/", "obj_ch2_sceneex3_slash_Step_0_gml_330_0": "\\E0* 我不清楚你来这里的目的^1,&不过.../", "obj_ch2_sceneex3_slash_Step_0_gml_331_0": "\\EY* 让我们庆幸一下&你还没被干掉吧。&嘿。/", - "obj_ch2_sceneex3_slash_Step_0_gml_332_0": "\\E0* .../", + "obj_ch2_sceneex3_slash_Step_0_gml_332_0": "", "obj_ch2_sceneex3_slash_Step_0_gml_333_0": "\\EK* (只是..^1. 如果你下次还想再做&这样的蠢事的话...)/", "obj_ch2_sceneex3_slash_Step_0_gml_334_0": "\\EY* (记得提前告诉我们^1,好吗?)/%", - "obj_ch2_sceneex3_slash_Step_0_gml_350_0": "\\EK* .../", + "obj_ch2_sceneex3_slash_Step_0_gml_350_0": "", "obj_ch2_sceneex3_slash_Step_0_gml_351_0": "\\E5* 什么?&不要^1,我才不会拥抱你呢!/", "obj_ch2_sceneex3_slash_Step_0_gml_352_0": "\\EH* 那是Ralsei的活儿^1!&他就像一只随身携带的泰迪熊!/", "obj_ch2_sceneex3_slash_Step_0_gml_354_0": "\\EJ* 可是Susie^1,正是因为你&从来都没有拥抱过我们。/", @@ -3076,14 +3086,14 @@ "obj_checker_animtest_slash_Step_0_gml_689_0": "* 对啊^1!她没说错!!/", "obj_checker_animtest_slash_Step_0_gml_691_0": "* 再之前^1,你把一位无辜的人&的蛋糕吃掉了.../%", "obj_checker_animtest_slash_Step_0_gml_709_0": "* 蛋糕..^1. 也是我的敌人。/", - "obj_checker_animtest_slash_Step_0_gml_711_0": "* .../", + "obj_checker_animtest_slash_Step_0_gml_711_0": "", "obj_checker_animtest_slash_Step_0_gml_712_0": "\\E1* Susie..^1. 不管你乐不乐意.../", "obj_checker_animtest_slash_Step_0_gml_713_0": "\\E6* 你都是一名英雄。/", "obj_checker_animtest_slash_Step_0_gml_714_0": "\\E0* 一个有能力为未来&带来和平的英雄。/", "obj_checker_animtest_slash_Step_0_gml_715_0": "\\E5* 你可不可以表现得..^1. &像个英雄一样呢?/%", "obj_checker_animtest_slash_Step_0_gml_732_0": "* 哇^1,你这么一讲.../", "obj_checker_animtest_slash_Step_0_gml_733_0": "* 我这英雄当得是挺失败的^1,&对吧?/", - "obj_checker_animtest_slash_Step_0_gml_734_0": "* .../%", + "obj_checker_animtest_slash_Step_0_gml_734_0": "", "obj_checker_animtest_slash_Step_0_gml_762_0": "* 好吧^1,Ralsei^1。&* 我明白了。&* 我会改变自己。/", "obj_checker_animtest_slash_Step_0_gml_763_0": "* 从现在起^1,&我不再是个烂英雄了。/%", "obj_checker_animtest_slash_Step_0_gml_799_0": "* 我就当个坏蛋好了!/%", @@ -3099,9 +3109,9 @@ "obj_checker_animtest_slash_Step_0_gml_837_0": "* 唔^1,对?/", "obj_checker_animtest_slash_Step_0_gml_838_0": "\\E2* 总而言之^1,呃^1,伙计们^1,&后会无期。/", "obj_checker_animtest_slash_Step_0_gml_840_0": "* 哈哈!^1!不过首先你们得要&活得了那么久!/%", - "obj_checker_animtest_slash_Step_0_gml_893_0": "* Kris.../", + "obj_checker_animtest_slash_Step_0_gml_893_0": "", "obj_checker_animtest_slash_Step_0_gml_894_0": "\\E6* 或许我刚才不该对她&那么严格的。/", - "obj_checker_animtest_slash_Step_0_gml_895_0": "\\E1* .../", + "obj_checker_animtest_slash_Step_0_gml_895_0": "", "obj_checker_animtest_slash_Step_0_gml_896_0": "* 可是^1,我在担心Susie&要是太渴望战斗.../", "obj_checker_animtest_slash_Step_0_gml_897_0": "\\E4* 恐怕会.../", "obj_checker_animtest_slash_Step_0_gml_898_0": "\\E6* 总之^1,我们就对她好点吧^1,&怎么样^1,Kris?/", @@ -3130,7 +3140,7 @@ "obj_checkers_enemy_slash_Step_0_gml_334_0": "\\E0* Susie^1!帮我们向它鞠躬!/", "obj_checkers_enemy_slash_Step_0_gml_336_0": "* 不需要^1,皇冠自然会掉.../", "obj_checkers_enemy_slash_Step_0_gml_337_0": "\\E4* 在我打翻这家伙之后!/", - "obj_checkers_enemy_slash_Step_0_gml_339_0": "* .../%", + "obj_checkers_enemy_slash_Step_0_gml_339_0": "", "obj_checkers_enemy_slash_Step_0_gml_349_0": "* 嗯!?&几乎没有作用啊!/", "obj_checkers_enemy_slash_Step_0_gml_350_0": "\\E1* 我们要怎么把皇冠弄掉呢...?/", "obj_checkers_enemy_slash_Step_0_gml_352_0": "* ...唔。/%", @@ -3148,7 +3158,7 @@ "obj_checkers_enemy_slash_Step_0_gml_449_0": "\\E0* Susie^1!帮我们向它鞠躬!/", "obj_checkers_enemy_slash_Step_0_gml_451_0": "* 不需要^1,皇冠自然会掉.../", "obj_checkers_enemy_slash_Step_0_gml_452_0": "\\E4* 在我打翻这家伙之后!/", - "obj_checkers_enemy_slash_Step_0_gml_454_0": "* .../%", + "obj_checkers_enemy_slash_Step_0_gml_454_0": "", "obj_checkers_enemy_slash_Step_0_gml_487_0": "丢", "obj_checkers_enemy_slash_Step_0_gml_489_0": "* 按~1来决定角度!", "obj_checkers_enemy_slash_Step_0_gml_510_0": "* Susie^1?你想要行动^1?&唔^1,你有什么点子?/", @@ -3179,16 +3189,16 @@ "obj_classscene_slash_Step_0_gml_115_0": "\\Tn\\FN\\E3* 其-其实^1,我是想知道能不能.../", "obj_classscene_slash_Step_0_gml_116_0": "\\Ta\\Fa\\E6* Noelle^1,你大点声行不行?/%", "obj_classscene_slash_Step_0_gml_194_0": "* 你..^1. &* 你好^1,SUSIE。/%", - "obj_classscene_slash_Step_0_gml_207_0": "* .../", + "obj_classscene_slash_Step_0_gml_207_0": "", "obj_classscene_slash_Step_0_gml_208_0": "* ...我迟到了?/", "obj_classscene_slash_Step_0_gml_209_0": "\\Ta\\Fa\\E4* 噢^1,没-没有^1!&* 你很准时^1!&* 我-我们是在^1,呃.../", "obj_classscene_slash_Step_0_gml_210_0": "\\E5* 为下次小组作业挑选搭档^1,&还有.../", "obj_classscene_slash_Step_0_gml_211_0": "\\E6* 唔嗯^1,Susie^1,&你和Kris搭档!/", - "obj_classscene_slash_Step_0_gml_213_0": "* .../", + "obj_classscene_slash_Step_0_gml_213_0": "", "obj_classscene_slash_Step_0_gml_214_0": "* ...挺好。/%", - "obj_classscene_slash_Step_0_gml_234_0": "\\E5* .../", + "obj_classscene_slash_Step_0_gml_234_0": "", "obj_classscene_slash_Step_0_gml_235_0": "\\E6* 既-既然大家都到齐了^1,&那我就要布置作业了!/%", - "obj_classscene_slash_Step_0_gml_267_0": "* .../%", + "obj_classscene_slash_Step_0_gml_267_0": "", "obj_classscene_slash_Step_0_gml_298_0": "* 呃..^1. &* 有-有没有谁知道&粉笔哪去了?/", "obj_classscene_slash_Step_0_gml_299_0": "\\E4* 这已经是第三次了^1,而且.../", "obj_classscene_slash_Step_0_gml_300_0": "\\E9* 你-你们也都明白&没粉笔我可讲不了课!/%", @@ -3196,7 +3206,7 @@ "obj_classscene_slash_Step_0_gml_303_0": "\\E0* 你要我来帮你 - %", "obj_classscene_slash_Step_0_gml_304_0": "\\Ta\\Fa\\E6* 好-好主意^1,Noelle^1!&Susie^1,&因-因为你是最后到的.../", "obj_classscene_slash_Step_0_gml_305_0": "\\E7* 你可以帮我取一下吗...?/", - "obj_classscene_slash_Step_0_gml_306_0": "\\FS\\TS\\E0* .../", + "obj_classscene_slash_Step_0_gml_306_0": "", "obj_classscene_slash_Step_0_gml_307_0": "* ...无所谓。/%%", "obj_classscene_slash_Step_0_gml_323_0": "* 要-要不咱们这么办^1?&* 要是没人出来解释的话.../", "obj_classscene_slash_Step_0_gml_324_0": "* 你-你们就全都摊上麻烦了!/%", @@ -3205,7 +3215,7 @@ "obj_classscene_slash_Step_0_gml_342_0": "\\E0* Alphys老师^1,&* 要不然让我和Susie.../", "obj_classscene_slash_Step_0_gml_343_0": "\\Ta\\Fa\\E6* 好-好主意^1,Noelle^1!&* Susie^1,&因-因为你是最后到的.../", "obj_classscene_slash_Step_0_gml_344_0": "\\E7* 不如就由你去替我拿吧...?/", - "obj_classscene_slash_Step_0_gml_345_0": "\\FS\\TS\\E0* .../", + "obj_classscene_slash_Step_0_gml_345_0": "", "obj_classscene_slash_Step_0_gml_346_0": "* ...随便。/%%", "obj_classscene_slash_Step_0_gml_398_0": "\\E4* 还有,K...Kris..^1. &* 你能不能跟着她.../", "obj_classscene_slash_Step_0_gml_399_0": "\\E9* 嗯^1,确保她有拿到^1?&* 还有^1,嗯^1,免得她惹麻烦...?/", @@ -3245,7 +3255,7 @@ "obj_classscene_slash_Step_0_gml_741_0": "\\E0* 没-没关系^1!我没生气^1!&只..^1. 只是有点担心你!/", "obj_classscene_slash_Step_0_gml_742_0": "\\EA* (毕竟你平时只会睡过&最开始的那会。)/", "obj_classscene_slash_Step_0_gml_747_0": "\\E3* ...Kris..^1. &你和Susie昨天到底去哪儿了?/", - "obj_classscene_slash_Step_0_gml_748_0": "\\E3* .../", + "obj_classscene_slash_Step_0_gml_748_0": "", "obj_classscene_slash_Step_0_gml_749_0": "\\Ea* .../", "obj_classscene_slash_Step_0_gml_750_0": "\\E5* 呃^1,如果你不想告诉我的话^1,&也没关系。/", "obj_classscene_slash_Step_0_gml_751_0": "\\E9* 我只是真的..^1. 很担心你。/", @@ -3253,93 +3263,93 @@ "obj_classscene_slash_Step_0_gml_753_0": "\\E8* 好吧^1,我..^1. 我也做不了什么。&诶嘿。/", "obj_classscene_slash_Step_0_gml_754_0": "\\E0* 但是...如果你遇到什么麻烦的话^1,一定要告诉老师^1,好吗?/%", "obj_classscene_slash_Step_0_gml_758_0": "\\E0* 今晚好好睡一觉^1,好吗?/%", - "obj_clubsenemy_old_slash_Draw_0_gml_6_0": "(Tired)", - "obj_clubsenemy_old_slash_Step_0_gml_11_0": "Nice mouth", - "obj_clubsenemy_old_slash_Step_0_gml_12_0": "Anger mouth", - "obj_clubsenemy_old_slash_Step_0_gml_13_0": "Smart Mouth", - "obj_clubsenemy_old_slash_Step_0_gml_17_0": "Nice to&meet you!", - "obj_clubsenemy_old_slash_Step_0_gml_18_0": "Die!&Die!&Die!", - "obj_clubsenemy_old_slash_Step_0_gml_19_0": "Please&ignore&them.", - "obj_clubsenemy_old_slash_Step_0_gml_26_0": "I want the&fluffy one!", - "obj_clubsenemy_old_slash_Step_0_gml_27_0": "No, that&one's MINE!", - "obj_clubsenemy_old_slash_Step_0_gml_28_0": "(He's&boring...)", - "obj_clubsenemy_old_slash_Step_0_gml_32_0": "Where's&Mr. Fluffy?", - "obj_clubsenemy_old_slash_Step_0_gml_33_0": "YOU must&have&scared him!", - "obj_clubsenemy_old_slash_Step_0_gml_34_0": "(Who&cares?)", - "obj_clubsenemy_old_slash_Step_0_gml_40_0": "I'm the&oldest!", - "obj_clubsenemy_old_slash_Step_0_gml_41_0": "WHAT!?&I am!!!", - "obj_clubsenemy_old_slash_Step_0_gml_42_0": "We're&the same&age...", - "obj_clubsenemy_old_slash_Step_0_gml_47_0": "Nice&weather&today.", - "obj_clubsenemy_old_slash_Step_0_gml_48_0": "What?&It's just&awful!", - "obj_clubsenemy_old_slash_Step_0_gml_49_0": "Please&stop, you&two...", - "obj_clubsenemy_old_slash_Step_0_gml_61_0": "The King&is great!", - "obj_clubsenemy_old_slash_Step_0_gml_62_0": "He's&TERRIBLE!", - "obj_clubsenemy_old_slash_Step_0_gml_63_0": "Please&stop, you&two...", - "obj_clubsenemy_old_slash_Step_0_gml_67_0": "An angel&is watching&us.", - "obj_clubsenemy_old_slash_Step_0_gml_68_0": "You BELIEVE&that&garbage?", - "obj_clubsenemy_old_slash_Step_0_gml_69_0": "Please&stop, you&two...", - "obj_clubsenemy_old_slash_Step_0_gml_73_0": "I wanna&eat a&football.", - "obj_clubsenemy_old_slash_Step_0_gml_74_0": "Sports!&My favorite&food!", - "obj_clubsenemy_old_slash_Step_0_gml_75_0": "Oh!&I love you&two!", - "obj_clubsenemy_old_slash_Step_0_gml_86_0": "Lightners&deserve&respect.", - "obj_clubsenemy_old_slash_Step_0_gml_87_0": "Hell no!&They can&all die!", - "obj_clubsenemy_old_slash_Step_0_gml_88_0": "Please&stop, you&two...", - "obj_clubsenemy_old_slash_Step_0_gml_92_0": "Oh, oh! That&boy is ever&so cute!", - "obj_clubsenemy_old_slash_Step_0_gml_93_0": "So fluffy!&I want to&pet him!", + "obj_clubsenemy_old_slash_Draw_0_gml_6_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_11_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_12_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_13_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_17_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_18_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_19_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_26_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_27_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_28_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_32_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_33_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_34_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_40_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_41_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_42_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_47_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_48_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_49_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_61_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_62_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_63_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_67_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_68_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_69_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_73_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_74_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_75_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_86_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_87_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_88_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_92_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_93_0": "", "obj_clubsenemy_old_slash_Step_0_gml_94_0": "HIM???&...err,&sure.", - "obj_clubsenemy_old_slash_Step_0_gml_95_0": "(What&about the&girl..?)", - "obj_clubsenemy_old_slash_Step_0_gml_98_0": "Oh, oh!&I want a&sweet boy.", - "obj_clubsenemy_old_slash_Step_0_gml_99_0": "Someone&NICE, like&me!", - "obj_clubsenemy_old_slash_Step_0_gml_100_0": "...&Sure,&I guess.", - "obj_clubsenemy_old_slash_Step_0_gml_105_0": "I use a&gamepad to&aim!", - "obj_clubsenemy_old_slash_Step_0_gml_106_0": "IDIOT!&Mouse and&keyboard!", - "obj_clubsenemy_old_slash_Step_0_gml_107_0": "Please&stop, you&two...", - "obj_clubsenemy_old_slash_Step_0_gml_117_0": "I love&the smell&of trees.", - "obj_clubsenemy_old_slash_Step_0_gml_118_0": "Oh!&Me too!", - "obj_clubsenemy_old_slash_Step_0_gml_119_0": "Pollen&makes me...&Uh, sure!", - "obj_clubsenemy_old_slash_Step_0_gml_123_0": "A ghost&told me I&was stupid.", - "obj_clubsenemy_old_slash_Step_0_gml_124_0": "That was me,&you idiot!", - "obj_clubsenemy_old_slash_Step_0_gml_125_0": "Please&stop, you&two...", - "obj_clubsenemy_old_slash_Step_0_gml_130_0": "Our favorite&video game&is...", - "obj_clubsenemy_old_slash_Step_0_gml_131_0": "Shut up!!&They'll make&fun of us!!!", - "obj_clubsenemy_old_slash_Step_0_gml_132_0": "Please&stop, you&two...", - "obj_clubsenemy_old_slash_Step_0_gml_139_0": "Aww, he&MADE that!?&So caring!", - "obj_clubsenemy_old_slash_Step_0_gml_140_0": "It's SOOO&cute!&I want it!", - "obj_clubsenemy_old_slash_Step_0_gml_141_0": "(Isn't it&a bit...&childish?)", - "obj_clubsenemy_old_slash_Step_0_gml_146_0": "Ouchy!&That hurts!", - "obj_clubsenemy_old_slash_Step_0_gml_147_0": "Suck it up,&idiot!", - "obj_clubsenemy_old_slash_Step_0_gml_148_0": "(We're&fighting&again!?)", - "obj_clubsenemy_old_slash_Step_0_gml_204_0": "* Clover flashes a trio of terrible smiles.", - "obj_clubsenemy_old_slash_Step_0_gml_205_0": "* Clover is bickering with herselves.", - "obj_clubsenemy_old_slash_Step_0_gml_206_0": "* Clover is whispering about cute boys.", - "obj_clubsenemy_old_slash_Step_0_gml_207_0": "* Clover is arguing about whose toothbrush is whose.", - "obj_clubsenemy_old_slash_Step_0_gml_208_0": "* Clover hums like an out-of-tune choir.", - "obj_clubsenemy_old_slash_Step_0_gml_209_0": "* Smells like clover and dew.", - "obj_clubsenemy_old_slash_Step_0_gml_210_0": "* Clover seems TIRED of arguing so much.", - "obj_clubsenemy_old_slash_Step_0_gml_211_0": "* Clover starts to look wilted.", - "obj_clubsenemy_old_slash_Step_0_gml_212_0": "* Clover seems to be getting along with herselves.", - "obj_clubsenemy_old_slash_Step_0_gml_213_0": "* Clover's harmony was shattered by violence.", - "obj_clubsenemy_old_slash_Step_0_gml_247_0": "* CLOVER - AT 8 DF 2&* Two heads are better than one^1!&* Three..^1. maybe not./%", - "obj_clubsenemy_old_slash_Step_0_gml_261_0": "* You brought up the topic of POLITICS^1.&* CLOVER started to argue./%", - "obj_clubsenemy_old_slash_Step_0_gml_269_0": "* You brought up the topic of RELIGION^1.&* CLOVER started to argue./%", - "obj_clubsenemy_old_slash_Step_0_gml_277_0": "* You brought up the topic of SPORTS^1.&* CLOVER seems relieved./%", - "obj_clubsenemy_old_slash_Step_0_gml_293_0": "* You brought up the topic of KINDNESS^1.&* CLOVER started to argue./%", - "obj_clubsenemy_old_slash_Step_0_gml_301_0": "* You brought up the topic of CUTEBOYS^1.&* CLOVER seems excited./%", - "obj_clubsenemy_old_slash_Step_0_gml_309_0": "* You brought up the topic of GUNCONTROL^1.&* CLOVER started to argue./%", - "obj_clubsenemy_old_slash_Step_0_gml_324_0": "* You brought up the topic of TREES^1.&* CLOVER seems relieved./%", - "obj_clubsenemy_old_slash_Step_0_gml_332_0": "* You brought up the topic of GHOSTS^1.&* CLOVER started to argue./%", - "obj_clubsenemy_old_slash_Step_0_gml_340_0": "* You brought up the topic of GAMES^1.&* CLOVER started to argue./%", - "obj_clubsenemy_old_slash_Step_0_gml_354_0": "* You and Ralsei warned Clover about Susie^1.&* The enemy went on guard.../%", - "obj_clubsenemy_old_slash_Step_0_gml_356_0": "* You and Ralsei warned the enemies about Susie^1.&* Everyone went on guard./%", - "obj_clubsenemy_old_slash_Step_0_gml_359_0": "(Warned)", - "obj_clubsenemy_old_slash_Step_0_gml_377_0": "(Tired)", + "obj_clubsenemy_old_slash_Step_0_gml_95_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_98_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_99_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_100_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_105_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_106_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_107_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_117_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_118_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_119_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_123_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_124_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_125_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_130_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_131_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_132_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_139_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_140_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_141_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_146_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_147_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_148_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_204_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_205_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_206_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_207_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_208_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_209_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_210_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_211_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_212_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_213_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_247_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_261_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_269_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_277_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_293_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_301_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_309_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_324_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_332_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_340_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_354_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_356_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_359_0": "", + "obj_clubsenemy_old_slash_Step_0_gml_377_0": "", "obj_clubsenemy_slash_Create_0_gml_69_0": "可爱男孩子", "obj_clubsenemy_slash_Create_0_gml_70_0": "毛茸茸", "obj_clubsenemy_slash_Create_0_gml_71_0": "生日", "obj_clubsenemy_slash_Create_0_gml_72_0": "运动", "obj_clubsenemy_slash_Create_0_gml_73_0": "家庭", "obj_clubsenemy_slash_Create_0_gml_74_0": "洞", - "obj_clubsenemy_slash_Create_0_gml_75_0": "Rouxls", + "obj_clubsenemy_slash_Create_0_gml_75_0": "", "obj_clubsenemy_slash_Create_0_gml_76_0": "谜题", "obj_clubsenemy_slash_Create_0_gml_77_0": "聚会", "obj_clubsenemy_slash_Create_0_gml_78_0": "跳舞", @@ -3359,7 +3369,7 @@ "obj_clubsenemy_slash_Create_0_gml_100_0": "枪支", "obj_clubsenemy_slash_Create_0_gml_101_0": "作弊", "obj_clubsenemy_slash_Create_0_gml_102_0": "骰子", - "obj_clubsenemy_slash_Create_0_gml_103_0": "Starwalker", + "obj_clubsenemy_slash_Create_0_gml_103_0": "", "obj_clubsenemy_slash_Create_0_gml_104_0": "四叶草", "obj_clubsenemy_slash_Create_0_gml_105_0": "垃圾", "obj_clubsenemy_slash_Create_0_gml_106_0": "不是生日", @@ -3423,8 +3433,7 @@ "obj_controller_city_mice2_slash_Step_0_gml_457_0_b": "\\Ed* (...只是想让我变得更强。)/%", "obj_controller_city_mice2_slash_Step_0_gml_500_0": "\\E2* 我..^1. 我真希望它们不会再像&刚才那样朝我扑过来!/%", "obj_controller_city_mice2_slash_Step_0_gml_546_0": "* (我还要被老鼠袭击&多少次呢...?)/%", - "obj_controller_city_mice3_slash_Draw_0_gml_18_0": "ILOVEMOUSE", - "obj_controller_city_mice3_slash_Draw_0_gml_20_0": "ILUVNEZUMI", + "obj_controller_city_mice3_slash_Draw_0_gml_18_0": "", "obj_controller_city_mice3_slash_Step_0_gml_49_0": "\\E1* 是条死路...?/%", "obj_controller_city_mice3_slash_Step_0_gml_53_0": "\\E2* 这个谜题..^1. 就交给我吧!/%", "obj_controller_city_mice3_slash_Step_0_gml_74_0_b": "* 这不是挺好的吗?/", @@ -3438,7 +3447,7 @@ "obj_controller_city_mice3_slash_Step_0_gml_82_0": "* 我就能做到自己以前做不到的事。/", "obj_controller_city_mice3_slash_Step_0_gml_83_0": "* 这不是挺好的吗?/", "obj_controller_city_mice3_slash_Step_0_gml_84_0": "* ...我变得更强了。/", - "obj_controller_city_mice3_slash_Step_0_gml_85_0": "* .../", + "obj_controller_city_mice3_slash_Step_0_gml_85_0": "", "obj_controller_city_mice3_slash_Step_0_gml_86_0": "* 只要我..^1. 照着做就行了。/", "obj_controller_city_mice3_slash_Step_0_gml_87_0": "* 只要我.../%", "obj_controller_city_mice3_slash_Step_0_gml_88_0": "\\E4* 都解决掉了^1,Kris^1。&我们要去找更多的敌人吗?/%", @@ -3447,7 +3456,7 @@ "obj_controller_city_mice3_slash_Step_0_gml_208_0": "\\EE* KRIS!!!!!!!/", "obj_controller_city_mice3_slash_Step_0_gml_209_0": "\\E8* 天呐^1,幸亏Dess不在这里!/", "obj_controller_city_mice3_slash_Step_0_gml_210_0": "\\E8* 不然你就该被头朝下被&丢进老鼠堆里了!/", - "obj_controller_city_mice3_slash_Step_0_gml_211_0": "\\E8* .../", + "obj_controller_city_mice3_slash_Step_0_gml_211_0": "", "obj_controller_city_mice3_slash_Step_0_gml_212_0": "\\E6* 对..^1. 对不起^1,&我不是故意对你发这么大火的。/", "obj_controller_city_mice3_slash_Step_0_gml_213_0": "\\E0* 当然..^1. 好吧^1,&我们可以再试一下。/%", "obj_controller_city_mice3_slash_Step_0_gml_230_0": "\\E8* Kris!^1!你在做什么!^1!&你刚才让我--/%", @@ -3489,7 +3498,7 @@ "obj_controller_dw_city_big_2_slash_Step_0_gml_270_0": "\\E8* Kris^1!快回来这里!!/%", "obj_controller_dw_city_big_2_slash_Step_0_gml_280_0": "\\E4* 合作得不错!/%", "obj_controller_dw_city_big_2_slash_Step_0_gml_393_0": "\\E8* (这让我想起了我们的&小组作业...)/%", - "obj_controller_dw_city_big_2_slash_Step_0_gml_401_0": "\\E8* .../%", + "obj_controller_dw_city_big_2_slash_Step_0_gml_401_0": "", "obj_controller_dw_city_big_2_slash_Step_0_gml_429_0": "\\EE* 啊--啊啊啊!!/", "obj_controller_dw_city_big_2_slash_Step_0_gml_430_0": "\\E8* K..^1. Kris^1!拜托^1,&你..^1. 你知道这样做很不好!/", "obj_controller_dw_city_big_2_slash_Step_0_gml_431_0": "\\E8* (再晚一秒我就要&变成烤鹿了...)/%", @@ -3501,7 +3510,7 @@ "obj_controller_dw_city_big_2_slash_Step_0_gml_574_0": "\\E2* (嘿^1,为什么Kris看起来&那么受伤...?天呐...)/%", "obj_controller_dw_city_big_2_slash_Step_0_gml_600_0": "\\E8* Kris^1!快回来这里!!/%", "obj_controller_dw_city_big_2_slash_Step_0_gml_622_0": "\\E1* 当你从开关上走下来时^1,&电流就又出现了.../", - "obj_controller_dw_city_big_2_slash_Step_0_gml_623_0": "\\E5* .../", + "obj_controller_dw_city_big_2_slash_Step_0_gml_623_0": "", "obj_controller_dw_city_big_2_slash_Step_0_gml_624_0": "\\E4* 要不..^1. &等我踩在上面的时候^1,&你就走过去?/%", "obj_controller_dw_city_big_2_slash_Step_0_gml_693_0": "* (现在不应该离开。)/%", "obj_controller_dw_city_big_2_slash_Step_0_gml_739_0": "* (现在不应该离开。)/%", @@ -3514,9 +3523,9 @@ "obj_controller_dw_city_mice_slash_Step_0_gml_117_0": "\\EE* K-Kris!!/", "obj_controller_dw_city_mice_slash_Step_0_gml_118_0": "\\E8* 天呐^1,你是故意这么做的^1,&对不对!?/", "obj_controller_dw_city_mice_slash_Step_0_gml_119_0": "\\E3* (就像你上次把我的蛋奶酒&换成了蛋黄酱那样...)/%", - "obj_controller_dw_city_mice_slash_Step_0_gml_122_0": "\\E2* .../%", + "obj_controller_dw_city_mice_slash_Step_0_gml_122_0": "", "obj_controller_dw_cyber_viromaze2_slash_Step_0_gml_9_0": "* 听着像是有个力场被关闭了。/%", - "obj_controller_dw_mansion_bridges_funny_slash_Step_0_gml_180_0": "* .../", + "obj_controller_dw_mansion_bridges_funny_slash_Step_0_gml_180_0": "", "obj_controller_dw_mansion_bridges_funny_slash_Step_0_gml_181_0": "* 我想这次就算了吧。/%", "obj_controller_dw_mansion_fire_paintings_slash_Step_0_gml_29_0": "\\E1* 我看到 你们:&从自己的 房间 逃出来了。/%", "obj_controller_dw_mansion_fire_paintings_slash_Step_0_gml_50_0_b": "\\EC* 谁又能 责怪 你们&想参观我&金碧辉煌的 豪宅呢/", @@ -3542,74 +3551,146 @@ "obj_credits_2_slash_Draw_0_gml_18_0": "-预告片&视频制作-", "obj_credits_2_slash_Step_0_gml_27_0": "-主美工-", "obj_credits_2_slash_Step_0_gml_28_0": "-主动画师-", + "obj_credits_2_slash_Step_0_gml_29_0": "", + "obj_credits_2_slash_Step_0_gml_30_0": "", + "obj_credits_2_slash_Step_0_gml_31_0": "", + "obj_credits_2_slash_Step_0_gml_32_0": "", + "obj_credits_2_slash_Step_0_gml_33_0": "", + "obj_credits_2_slash_Step_0_gml_34_0": "", "obj_credits_2_slash_Step_0_gml_42_0": "-主创团队-", + "obj_credits_2_slash_Step_0_gml_43_0": "", + "obj_credits_2_slash_Step_0_gml_44_0": "", + "obj_credits_2_slash_Step_0_gml_45_0": "", + "obj_credits_2_slash_Step_0_gml_46_0": "", + "obj_credits_2_slash_Step_0_gml_47_0": "", + "obj_credits_2_slash_Step_0_gml_48_0": "", + "obj_credits_2_slash_Step_0_gml_49_0": "", "obj_credits_2_slash_Step_0_gml_68_0": "-背景概念艺术-", "obj_credits_2_slash_Step_0_gml_69_0": "(赛博田野,城市,豪宅)", + "obj_credits_2_slash_Step_0_gml_70_0": "", + "obj_credits_2_slash_Step_0_gml_71_0": "", "obj_credits_2_slash_Step_0_gml_72_0": "-黑暗世界角色服饰设计-", "obj_credits_2_slash_Step_0_gml_73_0": "Gigi DG [Kris,Susie]", - "obj_credits_2_slash_Step_0_gml_74_0": "Tcheska Lynn B (chess) [Berdly]", + "obj_credits_2_slash_Step_0_gml_74_0": "", + "obj_credits_2_slash_Step_0_gml_75_0": "", "obj_credits_2_slash_Step_0_gml_88_0": "-客串角色设计-", "obj_credits_2_slash_Step_0_gml_89_0": "(Lancer,方钻,心桃)", "obj_credits_2_slash_Step_0_gml_90_0": "(三头草,国王,Jevil)", + "obj_credits_2_slash_Step_0_gml_91_0": "", "obj_credits_2_slash_Step_0_gml_92_0": "", "obj_credits_2_slash_Step_0_gml_93_0": "-片尾曲演唱-", + "obj_credits_2_slash_Step_0_gml_94_0": "", "obj_credits_2_slash_Step_0_gml_95_0": "", "obj_credits_2_slash_Step_0_gml_109_0": "-客串角色设计-", "obj_credits_2_slash_Step_0_gml_110_0": "(弹出窗狗,救护矛兵,黑客等)", + "obj_credits_2_slash_Step_0_gml_111_0": "", "obj_credits_2_slash_Step_0_gml_112_0": "", "obj_credits_2_slash_Step_0_gml_113_0": "-客串角色设计-", "obj_credits_2_slash_Step_0_gml_114_0": "(Sweet,Cap'n,K_K)", "obj_credits_2_slash_Step_0_gml_115_0": "(任呜管理姬)", + "obj_credits_2_slash_Step_0_gml_116_0": "", "obj_credits_2_slash_Step_0_gml_131_0": "-像素艺术协助-", + "obj_credits_2_slash_Step_0_gml_132_0": "", + "obj_credits_2_slash_Step_0_gml_133_0": "", + "obj_credits_2_slash_Step_0_gml_134_0": "", + "obj_credits_2_slash_Step_0_gml_135_0": "", + "obj_credits_2_slash_Step_0_gml_136_0": "", "obj_credits_2_slash_Step_0_gml_137_0": "-开发工具(Cool)-", + "obj_credits_2_slash_Step_0_gml_138_0": "", "obj_credits_2_slash_Step_0_gml_151_0": "-程序协助-", + "obj_credits_2_slash_Step_0_gml_152_0": "", + "obj_credits_2_slash_Step_0_gml_153_0": "", + "obj_credits_2_slash_Step_0_gml_154_0": "", "obj_credits_2_slash_Step_0_gml_155_0": "-动画协助-", - "obj_credits_2_slash_Step_0_gml_156_0": "Tcheska Lynn B (chess)", - "obj_credits_2_slash_Step_0_gml_157_0": "Chelsea Saunders (pixelatedcrown)", + "obj_credits_2_slash_Step_0_gml_156_0": "", + "obj_credits_2_slash_Step_0_gml_157_0": "", + "obj_credits_2_slash_Step_0_gml_158_0": "", "obj_credits_2_slash_Step_0_gml_171_0": "-音乐协助-", + "obj_credits_2_slash_Step_0_gml_172_0": "", + "obj_credits_2_slash_Step_0_gml_173_0": "", + "obj_credits_2_slash_Step_0_gml_174_0": "", "obj_credits_2_slash_Step_0_gml_175_0": "-Undertale角色设计-", - "obj_credits_2_slash_Step_0_gml_176_0": "Betty Kwong (Temmie)", + "obj_credits_2_slash_Step_0_gml_176_0": "", "obj_credits_2_slash_Step_0_gml_177_0": "(オワライチョウ/モンスターの子)", + "obj_credits_2_slash_Step_0_gml_178_0": "", "obj_credits_2_slash_Step_0_gml_191_0": "-好人汉化组策划-", "obj_credits_2_slash_Step_0_gml_192_0": "好人Ⅲ[Lyra]", + "obj_credits_2_slash_Step_0_gml_193_0": "", "obj_credits_2_slash_Step_0_gml_194_0": "-汉化翻译-", + "obj_credits_2_slash_Step_0_gml_195_0": "", + "obj_credits_2_slash_Step_0_gml_196_0": "", + "obj_credits_2_slash_Step_0_gml_197_0": "", + "obj_credits_2_slash_Step_0_gml_198_0": "", "obj_credits_2_slash_Step_0_gml_211_0": "-汉化润色-####-汉化美工-###-汉化测试-", + "obj_credits_2_slash_Step_0_gml_212_0": "", + "obj_credits_2_slash_Step_0_gml_213_0": "", + "obj_credits_2_slash_Step_0_gml_214_0": "", "obj_credits_2_slash_Step_0_gml_215_0": " ", + "obj_credits_2_slash_Step_0_gml_216_0": "", + "obj_credits_2_slash_Step_0_gml_217_0": "", + "obj_credits_2_slash_Step_0_gml_218_0": "", "obj_credits_2_slash_Step_0_gml_231_0": "-平台开发-", + "obj_credits_2_slash_Step_0_gml_232_0": "", + "obj_credits_2_slash_Step_0_gml_233_0": "", "obj_credits_2_slash_Step_0_gml_234_0": "-程序支持-", + "obj_credits_2_slash_Step_0_gml_235_0": "", "obj_credits_2_slash_Step_0_gml_236_0": "-日语本地化绘图-", - "obj_credits_2_slash_Step_0_gml_251_0": "-QA-", + "obj_credits_2_slash_Step_0_gml_237_0": "", + "obj_credits_2_slash_Step_0_gml_238_0": "", + "obj_credits_2_slash_Step_0_gml_251_0": "", "obj_credits_2_slash_Step_0_gml_252_0": "DIGITAL HEARTS Co.,Ltd.", "obj_credits_2_slash_Step_0_gml_253_0": "Tomohiro Nakai [QA项目主管]", "obj_credits_2_slash_Step_0_gml_254_0": "Tomoyoshi Yamashita [QA主工程师]", "obj_credits_2_slash_Step_0_gml_255_0": "Ryohei Kishimoto [QA助理工程师]", "obj_credits_2_slash_Step_0_gml_256_0": "Shinji Yasue [销售部]", + "obj_credits_2_slash_Step_0_gml_257_0": "", + "obj_credits_2_slash_Step_0_gml_258_0": "", "obj_credits_2_slash_Step_0_gml_271_0": "-超级测试员-", + "obj_credits_2_slash_Step_0_gml_272_0": "", + "obj_credits_2_slash_Step_0_gml_273_0": "", + "obj_credits_2_slash_Step_0_gml_274_0": "", "obj_credits_2_slash_Step_0_gml_275_0": "-网站-", + "obj_credits_2_slash_Step_0_gml_276_0": "", + "obj_credits_2_slash_Step_0_gml_277_0": "", + "obj_credits_2_slash_Step_0_gml_278_0": "", + "obj_credits_2_slash_Step_0_gml_300_0": "", + "obj_credits_2_slash_Step_0_gml_301_0": "", + "obj_credits_2_slash_Step_0_gml_302_0": "", + "obj_credits_2_slash_Step_0_gml_303_0": "", + "obj_credits_2_slash_Step_0_gml_304_0": "", + "obj_credits_2_slash_Step_0_gml_305_0": "", + "obj_credits_2_slash_Step_0_gml_306_0": "", + "obj_credits_2_slash_Step_0_gml_307_0": "", "obj_credits_2_slash_Step_0_gml_314_0": "-特别鸣谢-", + "obj_credits_2_slash_Step_0_gml_315_0": "", + "obj_credits_2_slash_Step_0_gml_316_0": "", + "obj_credits_2_slash_Step_0_gml_317_0": "", "obj_credits_2_slash_Step_0_gml_318_0": "8-4 & Fangamer 全体员工", + "obj_credits_2_slash_Step_0_gml_319_0": "", + "obj_credits_2_slash_Step_0_gml_320_0": "", + "obj_credits_2_slash_Step_0_gml_321_0": "", "obj_credits_2_slash_Step_0_gml_339_0": "", "obj_credits_2_slash_Step_0_gml_340_0": "", "obj_credits_2_slash_Step_0_gml_341_0": "", "obj_credits_2_slash_Step_0_gml_344_0": "", "obj_credits_2_slash_Step_0_gml_345_0": "", "obj_credits_2_slash_Step_0_gml_346_0": "", - "obj_credits_slash_Step_0_gml_21_0": "DELTARUNE", + "obj_credits_slash_Step_0_gml_21_0": "", "obj_credits_slash_Step_0_gml_22_0": "第二章", - "obj_credits_slash_Step_0_gml_24_0": "by Toby Fox", + "obj_credits_slash_Step_0_gml_23_0": "", + "obj_credits_slash_Step_0_gml_24_0": "", "obj_credits_slash_Step_0_gml_38_0": "总美工,动画师,修正", "obj_credits_slash_Step_0_gml_39_0": "(背景,地面世界,战斗)", "obj_credits_slash_Step_0_gml_40_0": "(怀旧风配色及菜单美工)", - "obj_credits_slash_Step_0_gml_52_0": "主创团队", "obj_credits_slash_Step_0_gml_59_0": "Lancer,方钻,心桃", "obj_credits_slash_Step_0_gml_60_0": "三头草,国王,Jevil", "obj_credits_slash_Step_0_gml_61_0": "角色原创设计", "obj_credits_slash_Step_0_gml_80_0": "区域概念艺术", "obj_credits_slash_Step_0_gml_81_0": "黑暗世界角色服饰设计", "obj_credits_slash_Step_0_gml_95_0": "日语本地化", - "obj_credits_slash_Step_0_gml_96_0": "8-4 Ltd.", + "obj_credits_slash_Step_0_gml_96_0": "", "obj_credits_slash_Step_0_gml_98_0": "翻译者", - "obj_credits_slash_Step_0_gml_99_0": "Keiko Fukuichi", + "obj_credits_slash_Step_0_gml_99_0": "", "obj_credits_slash_Step_0_gml_103_0": "编程援助", "obj_credits_slash_Step_0_gml_106_0": "角色设计协助", "obj_credits_slash_Step_0_gml_119_0_b": "过场动画协助", @@ -3617,9 +3698,9 @@ "obj_credits_slash_Step_0_gml_142_0": "音乐协助", "obj_credits_slash_Step_0_gml_146_0": "烟花效果", "obj_credits_slash_Step_0_gml_152_0": "特别鸣谢", - "obj_credits_slash_Step_0_gml_153_0": "Fangamer", + "obj_credits_slash_Step_0_gml_153_0": "", "obj_credits_slash_Step_0_gml_155_0": "“Temmie”角色设计", - "obj_credits_slash_Step_0_gml_156_0": "Betty Kwong", + "obj_credits_slash_Step_0_gml_156_0": "", "obj_credits_slash_Step_0_gml_177_0": "测试人员", "obj_credits_slash_Step_0_gml_191_0": "敬请期待", "obj_credits_slash_Step_0_gml_192_0": "第三章", @@ -3654,7 +3735,7 @@ "obj_darkcontroller_slash_Create_0_gml_153_0": "动态", "obj_darkcontroller_slash_Create_0_gml_153_1": "简单", "obj_darkcontroller_slash_Create_0_gml_153_2": "无", - "obj_darkcontroller_slash_Draw_0_gml_47_0": "D$ ~1", + "obj_darkcontroller_slash_Draw_0_gml_47_0": "", "obj_darkcontroller_slash_Draw_0_gml_74_0": "设置", "obj_darkcontroller_slash_Draw_0_gml_82_0": "关", "obj_darkcontroller_slash_Draw_0_gml_82_1": "开", @@ -3731,18 +3812,18 @@ "obj_darkcontroller_slash_Draw_0_gml_453_0": "(无)", "obj_darkcontroller_slash_Draw_0_gml_465_0": "(无)", "obj_darkcontroller_slash_Draw_0_gml_477_0": "(无)", - "obj_darkcontroller_slash_Draw_0_gml_585_0": "---------", + "obj_darkcontroller_slash_Draw_0_gml_585_0": "", "obj_darkcontroller_slash_Draw_0_gml_586_0": "攻击:", "obj_darkcontroller_slash_Draw_0_gml_587_0": "防御:", "obj_darkcontroller_slash_Draw_0_gml_588_0": "魔力:", - "obj_darkcontroller_slash_Draw_0_gml_609_0": "---------", + "obj_darkcontroller_slash_Draw_0_gml_609_0": "", "obj_darkcontroller_slash_Draw_0_gml_766_0": "无能力", "obj_darkcontroller_slash_Draw_0_gml_803_0": "无能力", "obj_darkcontroller_slash_Draw_0_gml_837_0": "使用", "obj_darkcontroller_slash_Draw_0_gml_839_0": "丢弃", "obj_darkcontroller_slash_Draw_0_gml_841_0": "重要", "obj_darkcontroller_slash_Draw_0_gml_956_0": "真的要把#~1丢掉吗?", - "obj_darkcontroller_slash_Step_0_gml_135_0": "* .../%", + "obj_darkcontroller_slash_Step_0_gml_135_0": "", "obj_darkcontroller_slash_Step_0_gml_141_0": "* (你狠狠地扔掉了手册。^1)&* (它的内页飘散在风中。)/", "obj_darkcontroller_slash_Step_0_gml_143_0": "* ................../", "obj_darkcontroller_slash_Step_0_gml_144_0": "\\E5* 唔..^1. &* 没-没事的^1,Kris^1!&* 我还是可以.../", @@ -3755,7 +3836,7 @@ "obj_darkcontroller_slash_Step_0_gml_160_0": "* (你得到了手册。^1)&* (再一次。)/%", "obj_darkdoor_slash_Step_0_gml_21_0": "* 噢^1,储物柜到了^1。&* 真可惜.../", "obj_darkdoor_slash_Step_0_gml_22_0": "\\E2* 我们才刚找到点乐子呢。/%", - "obj_darkdoor_slash_Step_0_gml_72_0": "\\E5* .../", + "obj_darkdoor_slash_Step_0_gml_72_0": "", "obj_darkdoor_slash_Step_0_gml_73_0": "* 嘿^1,Kris^1,是我想多了^1?&你有没有觉得.../", "obj_darkdoor_slash_Step_0_gml_74_0": "\\E6* 这里头也太黑了?/%", "obj_darkdoor_slash_Step_0_gml_90_0": "\\E6* 磨蹭什么呢^1,Kris^1?&* 你到底进不进去?/%", @@ -3764,21 +3845,21 @@ "obj_darkdoor_slash_Step_0_gml_194_0": "* 天哪^1,太阳都快落山了.../", "obj_darkdoor_slash_Step_0_gml_195_0": "\\E3* 其他人肯定早就回家了。/%", "obj_darkdoor_slash_Step_0_gml_215_0": "\\E2* 我猜Alphys应该不至于笨到&再让我们去做事了吧?/%", - "obj_darkdoor_slash_Step_0_gml_252_0": "* .../%", + "obj_darkdoor_slash_Step_0_gml_252_0": "", "obj_darkdoor_slash_Step_0_gml_268_0": "\\E1* 好了^1,看来我们得走了。/", - "obj_darkdoor_slash_Step_0_gml_269_0": "\\E0* .../", + "obj_darkdoor_slash_Step_0_gml_269_0": "", "obj_darkdoor_slash_Step_0_gml_270_0": "\\E1* 那就..^1. 回头见。/%", - "obj_darkdoor_slash_Step_0_gml_298_0": "\\E0* .../", - "obj_darkdoor_slash_Step_0_gml_299_0": "\\E1* .../", + "obj_darkdoor_slash_Step_0_gml_298_0": "", + "obj_darkdoor_slash_Step_0_gml_299_0": "", "obj_darkdoor_slash_Step_0_gml_300_0": "\\E0* ...Kris?/%", "obj_darkdoor_slash_Step_0_gml_363_0": "\\E8* 我们明天再回那边一趟吧^1,&怎么样?/%", "obj_darkphone_event_slash_Step_0_gml_42_0": "* 除了乱哄哄的噪音^1,什么都没有。/%", "obj_debug_choicer_slash_Draw_0_gml_105_0": "\\C4", - "obj_debug_xy_slash_Draw_74_gml_26_0": "PgDown: Show All Info", - "obj_debug_xy_slash_Draw_74_gml_27_0": "CameraX: ~1 CameraY: ~2", - "obj_debug_xy_slash_Draw_74_gml_28_0": "Show Invisible", - "obj_debug_xy_slash_Draw_74_gml_29_0": "PgUp: XY Camera-Relative", - "obj_debug_xy_slash_Draw_74_gml_29_0_b": "instance_count: ~1", + "obj_debug_xy_slash_Draw_74_gml_26_0": "", + "obj_debug_xy_slash_Draw_74_gml_27_0": "", + "obj_debug_xy_slash_Draw_74_gml_28_0": "", + "obj_debug_xy_slash_Draw_74_gml_29_0": "", + "obj_debug_xy_slash_Draw_74_gml_29_0_b": "", "obj_debug_xy_slash_Draw_74_gml_33_0": "XY is camera-relative!", "obj_debug_xy_slash_Draw_74_gml_34_0": "XY is StartXY relative!", "obj_dojo_spareenemy_slash_Step_0_gml_19_0": "\\M2老板^1!别听他的^1!&不是这样【行动】的^1!&你不能这么【行动】^1!/%", @@ -3803,7 +3884,6 @@ "obj_dojo_spareenemy_slash_Step_0_gml_74_0": "立刻使用&Ralsei&的安抚!/", "obj_dojo_spareenemy_slash_Step_0_gml_75_0": "众所周知,&安抚是魔法,&所以你需要TP。/", "obj_dojo_spareenemy_slash_Step_0_gml_76_0": "必要的时候&用一个回合防御&来获得TP,&老板!/%", - "obj_dojo_spareenemy_slash_Step_0_gml_79_0": "", "obj_dojo_spareenemy_slash_Step_0_gml_82_0": "* Jigsaw Joe喝下了咖啡^1!&Jigsaw Joe不再【疲惫】了!/%", "obj_dojo_spareenemy_slash_Step_0_gml_89_0": "老板^1!如果你的TP&不足以使出【安抚】 ^1,&可以用【防御】获得TP!/%", "obj_dojo_spareenemy_slash_Step_0_gml_91_0": "老板^1!你得让我【睡着】才行^1!&让我感到【疲惫】后再&【安抚】我就可以啦,老板!/%", @@ -3832,7 +3912,7 @@ "obj_dummyenemy_slash_Step_0_gml_127_0": "\\E1* 呃..^1. &* Kris?/", "obj_dummyenemy_slash_Step_0_gml_128_0": "\\E8* 目前还没有子弹啦^1,&而且你也不能使用TP.../", "obj_dummyenemy_slash_Step_0_gml_129_0": "\\E8* 所以^1,呃^1,你可以不用再防御了?/%", - "obj_dummyenemy_slash_Step_0_gml_136_0": "\\E9* .../%", + "obj_dummyenemy_slash_Step_0_gml_136_0": "", "obj_dummyenemy_slash_Step_0_gml_142_0": "\\E8* 太棒了^1,Kris!&* 现在你收集到了TP -/", "obj_dummyenemy_slash_Step_0_gml_143_0": "\\E0* 让我用TP来施展\\cY法术\\cW吧?/", "obj_dummyenemy_slash_Step_0_gml_144_0": "* 因为你把敌人揍到一定程度后^1,&它就会变得\\cB疲惫\\cW。/", @@ -3918,7 +3998,7 @@ "obj_dummyenemy_slash_Step_0_gml_406_0": "\\E6* Kris..^1. &* 请试着按下 ~1。/%", "obj_dummyenemy_slash_Step_0_gml_407_0": "\\E6* 呃^1,Kris^1?&* 你能看见那条白色的长方形吗?/%", "obj_dummyenemy_slash_Step_0_gml_408_0": "\\E8* 你知道长方形吧^1?&* 长得像画砸了的正方形?/%", - "obj_dummyenemy_slash_Step_0_gml_412_0": "\\E9* .../%", + "obj_dummyenemy_slash_Step_0_gml_412_0": "", "obj_dummyenemy_slash_Step_0_gml_417_0": "\\E6* 唔^1,也许我们可以试试别的?/%", "obj_dummyenemy_slash_Step_0_gml_421_0": "\\E6* 唔^1,也许我们可以试试别的?/", "obj_dummyenemy_slash_Step_0_gml_422_0": "\\E0* Kris^1,不知道你有没有&注意到^1,在你用过【防御】后 -/", @@ -3927,7 +4007,7 @@ "obj_dummyenemy_slash_Step_0_gml_425_0": "* 因为你把敌人揍到一定程度后^1,&它就会变得\\cB疲惫\\cW。/", "obj_dummyenemy_slash_Step_0_gml_426_0": "* 现在^1,如果对它使用我的&\\cY安抚\\cW法术.../", "obj_dummyenemy_slash_Step_0_gml_427_0": "* 它就会睡着^1,&这样我们就可以和平取胜啦!/%", - "obj_dummyenemy_slash_Step_0_gml_441_0": "\\E9* .../", + "obj_dummyenemy_slash_Step_0_gml_441_0": "", "obj_dummyenemy_slash_Step_0_gml_442_0": "\\E8* Kris^1,我觉得我^1,呃^1,好像.../", "obj_dummyenemy_slash_Step_0_gml_443_0": "\\E1* 今天已经没什么能教给你的了。/", "obj_dummyenemy_slash_Step_0_gml_444_0": "\\E0* 我们去找Susie吧。/%", @@ -3958,7 +4038,7 @@ "obj_dummyenemy_slash_Step_0_gml_714_0": "* 太棒了^1,Kris^1!&* 不过^1,只抱一次就可以啦!/%", "obj_dummyenemy_slash_Step_0_gml_715_0": "\\E8* Kris^1,你不需要再抱它了啦。/%", "obj_dummyenemy_slash_Step_0_gml_722_0": "* 嗯...^1?Kris^1,&你宁可抱它也不愿战斗?/", - "obj_dummyenemy_slash_Step_0_gml_723_0": "\\E1* .../", + "obj_dummyenemy_slash_Step_0_gml_723_0": "", "obj_dummyenemy_slash_Step_0_gml_724_0": "\\E8* 这样啊^1,没关系^1!&我们不需要战斗!/", "obj_dummyenemy_slash_Step_0_gml_725_0": "* 好^1,接下来试试【防御】吧。(\\I1  )/", "obj_dummyenemy_slash_Step_0_gml_726_0": "* 选择(\\I1  )^1,&你受到的伤害就会减少.../", @@ -3988,7 +4068,7 @@ "obj_dummyenemy_slash_Step_0_gml_869_0": "\\E1* (除了练习人偶^1,测试的时候,)/", "obj_dummyenemy_slash_Step_0_gml_870_0": "\\E2* 所以我不能教你任何东西^1,&抱歉.../", "obj_dummyenemy_slash_Step_0_gml_871_0": "\\E7* 我想应该由你来教我才对^1,&哈哈!/%", - "obj_dummyenemy_slash_Step_0_gml_876_0": "\\E2* .../%", + "obj_dummyenemy_slash_Step_0_gml_876_0": "", "obj_dw_leave_slash_Step_0_gml_71_0": "\\EN* 等你们写完作业的时候&再回来!/", "obj_dw_leave_slash_Step_0_gml_73_0": "\\EK* (拥有一个无法在里面偷懒的房间^1,&意义何在?)/%", "obj_dw_mansion_mouseLottery_Chest_slash_Step_0_gml_8_0": "* (老鼠们拿到了$20。)&* (你什么也没拿到。)/%", @@ -3998,8 +4078,8 @@ "obj_event_mouse3_berdlymonologue_slash_Step_0_gml_13_0": "呆萌???", "obj_event_mouse3_berdlymonologue_slash_Step_0_gml_14_0": "...啊?Berdly?", "obj_event_mouse3_berdlymonologue_slash_Step_0_gml_15_0": "BERDLY???BERDLY知道这事????", - "obj_event_mouse3_berdlymonologue_slash_Step_0_gml_16_0": "...", - "obj_event_mouse3_berdlymonologue_slash_Step_0_gml_17_0": "Berdly...", + "obj_event_mouse3_berdlymonologue_slash_Step_0_gml_16_0": "", + "obj_event_mouse3_berdlymonologue_slash_Step_0_gml_17_0": "", "obj_event_mouse3_berdlymonologue_slash_Step_0_gml_18_0": "说啥啊!?", "obj_event_mouse3_berdlymonologue_slash_Step_0_gml_21_0": "\\E5* 啊啊^1,Kris.&看来你在这个谜题上卡住了^1,&是吧?/", "obj_event_mouse3_berdlymonologue_slash_Step_0_gml_22_0": "\\E7* 我本以为我听到了&Noelle的呼救声^1,但是.../", @@ -4027,10 +4107,10 @@ "obj_event_mouse3_berdlymonologue_slash_Step_0_gml_44_0": "\\EE* 同时还是^1,我在竞速游戏上&唯一值得称道的对手。\\f9 ^1/%", "obj_event_mouse3_berdlymonologue_slash_Step_0_gml_61_0": "\\E8* (你真的要用这句话&来收尾吗!?)/%", "obj_example_cutscene_slash_Step_0_gml_34_0": "* 嘘嘘镇。/", - "obj_example_cutscene_slash_Step_0_gml_35_0": " * Box 1/", + "obj_example_cutscene_slash_Step_0_gml_35_0": "", "obj_example_cutscene_slash_Step_0_gml_36_0": "* 有点意思。/%", - "obj_example_cutscene_slash_Step_0_gml_36_0_b": " * Box 2/", - "obj_example_cutscene_slash_Step_0_gml_37_0": " * Box 3/", + "obj_example_cutscene_slash_Step_0_gml_36_0_b": "", + "obj_example_cutscene_slash_Step_0_gml_37_0": "", "obj_example_cutscene_slash_Step_0_gml_55_0": "\\E3* ..^1. 哎哟^1,都这么晚了...?/%", "obj_example_cutscene_slash_Step_0_gml_60_0": "\\E0* ...你得回家了^1,对吧?/%", "obj_example_cutscene_slash_Step_0_gml_64_0": "\\EQ* 好了^1,你用不着说出口。/%", @@ -4052,15 +4132,15 @@ "obj_fountainkris_ch2_sideb_slash_Step_0_gml_225_0": "* 【付出】.../%", "obj_fountainkris_ch2_sideb_slash_Step_0_gml_238_0": "* 你那【转瞬即逝】的生命吧!!!/%", "obj_fountainkris_slash_Step_0_gml_49_0": "这就是...喷泉...?/%", - "obj_fountainkris_slash_Step_0_gml_56_0": "Kris.../%", + "obj_fountainkris_slash_Step_0_gml_56_0": "", "obj_fountainkris_slash_Step_0_gml_75_0": "不知怎么的.../", "obj_fountainkris_slash_Step_0_gml_76_0": "感觉我们&撞见了一个/", "obj_fountainkris_slash_Step_0_gml_77_0": "非常了不得的&玩意儿,对吧...?/", - "obj_fountainkris_slash_Step_0_gml_78_0": ".../%", + "obj_fountainkris_slash_Step_0_gml_78_0": "", "obj_fountainkris_slash_Step_0_gml_85_0": "看来我们又到这里了.../", "obj_fountainkris_slash_Step_0_gml_86_0": "呼啸骑士.../", "obj_fountainkris_slash_Step_0_gml_87_0": "不管是怎样的存在&正在制造这些喷泉.../", - "obj_fountainkris_slash_Step_0_gml_88_0": ".../%", + "obj_fountainkris_slash_Step_0_gml_88_0": "", "obj_fountainkris_slash_Step_0_gml_104_0": "算了,已经没工夫&去考虑那种事了。/", "obj_fountainkris_slash_Step_0_gml_105_0": "现在.../", "obj_fountainkris_slash_Step_0_gml_106_0": "是时候回家了,/", @@ -4068,7 +4148,7 @@ "obj_fountainkris_slash_Step_0_gml_114_0": "这...真的是件坏事吗...?/", "obj_fountainkris_slash_Step_0_gml_115_0": "自从这些喷泉开始出现,/", "obj_fountainkris_slash_Step_0_gml_116_0": "一切都变得有趣多了,&不是吗...?/", - "obj_fountainkris_slash_Step_0_gml_117_0": ".../", + "obj_fountainkris_slash_Step_0_gml_117_0": "", "obj_fountainkris_slash_Step_0_gml_118_0": "好吧,我们现在&也用不着考虑这些事情.../", "obj_fountainkris_slash_Step_0_gml_119_0": "Kris,该你上场了。/%", "obj_fountainkris_slash_Step_0_gml_150_0": "(当你站在喷泉前方时,)/", @@ -4120,22 +4200,22 @@ "obj_fusionmenu_slash_Step_0_gml_124_0": "否", "obj_fusionmenu_slash_Step_0_gml_139_0": "擦弹挑战1", "obj_fusionmenu_slash_Step_0_gml_140_0": "再战三头草", - "obj_fusionmenu_slash_Step_0_gml_140_0_b": "Jigsaw Joe", - "obj_fusionmenu_slash_Step_0_gml_141_0": "-------------", - "obj_fusionmenu_slash_Step_0_gml_142_0": "-------------", + "obj_fusionmenu_slash_Step_0_gml_140_0_b": "", + "obj_fusionmenu_slash_Step_0_gml_141_0": "", + "obj_fusionmenu_slash_Step_0_gml_142_0": "", "obj_fusionmenu_slash_Step_0_gml_144_0": "在不被击中的情况下攒够100%TP!#您可以的,老板!", "obj_fusionmenu_slash_Step_0_gml_145_0": "今天可不是三头草的生日!#它不会对你手下留情咯!", "obj_fusionmenu_slash_Step_0_gml_146_0": "", "obj_fusionmenu_slash_Step_0_gml_146_0_b": "学习如何像专家那样饶恕。", "obj_fusionmenu_slash_Step_0_gml_147_0": "", - "obj_fusionmenu_slash_Step_0_gml_150_0": "$100", + "obj_fusionmenu_slash_Step_0_gml_150_0": "", "obj_fusionmenu_slash_Step_0_gml_151_0": "梅花三明治", - "obj_fusionmenu_slash_Step_0_gml_152_0": "---", - "obj_fusionmenu_slash_Step_0_gml_153_0": "---", + "obj_fusionmenu_slash_Step_0_gml_152_0": "", + "obj_fusionmenu_slash_Step_0_gml_153_0": "", "obj_fusionmenu_slash_Step_0_gml_153_0_b": "Joe的毕生积蓄", "obj_fusionmenu_slash_Step_0_gml_176_0": "任呜管理姬的游戏", "obj_fusionmenu_slash_Step_0_gml_177_0": "第二章 全明星", - "obj_fusionmenu_slash_Step_0_gml_178_0": "$250", + "obj_fusionmenu_slash_Step_0_gml_178_0": "", "obj_fusionmenu_slash_Step_0_gml_179_0": "紧迫宝石", "obj_fusionmenu_slash_Step_0_gml_180_0": "就跟写ABC一样容易!#你总共有三次机会,老板!", "obj_fusionmenu_slash_Step_0_gml_181_0": "和所有人进行一场车轮战!#可能要花费些精力...", @@ -4164,11 +4244,11 @@ "obj_fusionmenu_slash_Step_0_gml_580_0": "潘多拉宫殿", "obj_fusionmenu_slash_Step_0_gml_581_0": "女王", "obj_fusionmenu_slash_Step_0_gml_582_0": "炫酷混音带", - "obj_fusionmenu_slash_Step_0_gml_583_0": "Rouxls Kaard", + "obj_fusionmenu_slash_Step_0_gml_583_0": "", "obj_fusionmenu_slash_Step_0_gml_584_0": "读作“规则”", "obj_fusionmenu_slash_Step_0_gml_585_0": "灯火", "obj_gigaqueen_enemy_slash_Create_0_gml_19_0": "揍人机", - "obj_gigaqueen_enemy_slash_Destroy_0_gml_4_0": "Kris", + "obj_gigaqueen_enemy_slash_Destroy_0_gml_4_0": "", "obj_gigaqueen_enemy_slash_Step_0_gml_56_0": "哦不 你这是&忘了 怎么操控&巨型 机器人&了吗/%", "obj_gigaqueen_enemy_slash_Step_0_gml_57_0_b": "再提示 一次&按 ~1和 ~2&来躲避/%", "obj_gigaqueen_enemy_slash_Step_0_gml_63_0": "聊天 时间&已经 结束/%", @@ -4177,7 +4257,7 @@ "obj_gigaqueen_enemy_slash_Step_0_gml_66_0": "将力量 集中于&她的锋刃&她会 创造一个&全新的 黑暗喷泉/%", "obj_gigaqueen_enemy_slash_Step_0_gml_67_0": "然后,&当整个 世界&都笼罩于&黑暗中时/%", "obj_gigaqueen_enemy_slash_Step_0_gml_68_0": "Kris,Susie,&你们也 助我&一臂之力吧?/%", - "obj_gigaqueen_enemy_slash_Step_0_gml_69_0": "Susie/%", + "obj_gigaqueen_enemy_slash_Step_0_gml_69_0": "", "obj_gigaqueen_enemy_slash_Step_0_gml_70_0": "还有 Kris&亲爱的 停战友&你要多少 有多少/%", "obj_gigaqueen_enemy_slash_Step_0_gml_71_0": "是不是 还有&一个 家伙&来着????/%", "obj_gigaqueen_enemy_slash_Step_0_gml_72_0": "加入我 你们&都会 变得&又酷 又强/%", @@ -4191,7 +4271,7 @@ "obj_gigaqueen_enemy_slash_Step_0_gml_109_0": "她 还有 所有人&都能 生活在 没有&恐惧 与 痛苦&的世界里/%", "obj_gigaqueen_enemy_slash_Step_0_gml_110_0": "创造 属于你的&梦的 世界&(还有 我的梦)/%", "obj_gigaqueen_enemy_slash_Step_0_gml_111_0": "伙计 就让我&用空手道 劈你&以后你 想要&多少滑板 都给你/%", - "obj_gigaqueen_enemy_slash_Step_0_gml_113_0": ".../%", + "obj_gigaqueen_enemy_slash_Step_0_gml_113_0": "", "obj_gigaqueen_enemy_slash_Step_0_gml_114_0_b": "好吧 我承认&我 不记得&你喜欢 什么/%", "obj_gigaqueen_enemy_slash_Step_0_gml_116_0": "同时 我不需要&自我改善 因为&我已经 很完美了&还会从 高逼格&的酒杯里 射激光/%", "obj_gigaqueen_enemy_slash_Step_0_gml_118_0": "现在 是&(循环错误)&的 时间/%", @@ -4242,36 +4322,36 @@ "obj_hatguy_enemy_slash_Step_0_gml_279_0": "* Ralsei和Cap'n一同起舞!/", "obj_hatguy_enemy_slash_Step_0_gml_280_0": "* Cap'n沉浸在了节奏之中!/%", "obj_hatguy_enemy_slash_Step_0_gml_285_0": "* Ralsei和Cap'n一同起舞!/%", - "obj_healwriter_slash_Draw_0_gml_4_0": "+~1", - "obj_heartenemy_slash_Step_0_gml_223_0": "* Where'd you get it^1?&* Heh heh heh heh./", - "obj_heartenemy_slash_Step_0_gml_225_0": "* (Umm^1, Kris^1, maybe Susie shouldn't ACT anymore...)/%", - "obj_heartenemy_slash_Step_0_gml_228_0": "\\E7* H-hey^1, what gives!?/", - "obj_heartenemy_slash_Step_0_gml_230_0": "* (Wow^1, that was close^1, Kris...)/", - "obj_heartenemy_slash_Step_0_gml_231_0": "* (Maybe Susie shouldn't ACT anymore...)/%", + "obj_healwriter_slash_Draw_0_gml_4_0": "", + "obj_heartenemy_slash_Step_0_gml_223_0": "", + "obj_heartenemy_slash_Step_0_gml_225_0": "", + "obj_heartenemy_slash_Step_0_gml_228_0": "", + "obj_heartenemy_slash_Step_0_gml_230_0": "", + "obj_heartenemy_slash_Step_0_gml_231_0": "", "obj_initializer_slash_Create_0_gml_47_0": "", - "obj_initializer_slash_Create_0_gml_48_0": "Kris", - "obj_initializer_slash_Create_0_gml_49_0": "Susie", - "obj_initializer_slash_Create_0_gml_50_0": "Ralsei", + "obj_initializer_slash_Create_0_gml_48_0": "", + "obj_initializer_slash_Create_0_gml_49_0": "", + "obj_initializer_slash_Create_0_gml_50_0": "", "obj_initializer_slash_Create_0_gml_114_0": "已知数量", - "obj_initializer_slash_Create_0_gml_158_0": " ", - "obj_initializer_slash_Create_0_gml_169_0": " ", - "obj_initializer_slash_Create_0_gml_173_0": "%%", - "obj_initializer_slash_Create_0_gml_176_0": "\\FR* i3", + "obj_initializer_slash_Create_0_gml_158_0": "", + "obj_initializer_slash_Create_0_gml_169_0": "", + "obj_initializer_slash_Create_0_gml_173_0": "", + "obj_initializer_slash_Create_0_gml_176_0": "", "obj_initializer_slash_Create_0_gml_179_0": "\\FS* i4 \\f1", - "obj_initializer_slash_Create_0_gml_182_0": "\\T1\\F0* i5./%", - "obj_initializer_slash_Create_0_gml_183_0": "\\FT* i6!/%", - "obj_initializer2_slash_Create_0_gml_2_0": "0123456789-+", + "obj_initializer_slash_Create_0_gml_182_0": "", + "obj_initializer_slash_Create_0_gml_183_0": "", + "obj_initializer2_slash_Create_0_gml_2_0": "", "obj_initializer2_slash_Create_0_gml_22_0": "动态", "obj_interactablesolid_slash_Other_10_gml_2_0": "* 你看得见我...?/%", - "obj_kingcutscene_slash_Draw_0_gml_15_0": "kingx:", - "obj_kingcutscene_slash_Draw_0_gml_16_0": "kingy:", - "obj_kingcutscene_slash_Draw_0_gml_18_0": "view_xview:", - "obj_kingcutscene_slash_Draw_0_gml_19_0": "view_yview:", - "obj_kingcutscene_slash_Draw_0_gml_21_0": "con:", - "obj_kingcutscene_slash_Draw_0_gml_25_0": "krisx:", - "obj_kingcutscene_slash_Draw_0_gml_26_0": "krisy:", - "obj_kingcutscene_slash_Draw_0_gml_31_0": "susiex:", - "obj_kingcutscene_slash_Draw_0_gml_32_0": "susiey:", + "obj_kingcutscene_slash_Draw_0_gml_15_0": "", + "obj_kingcutscene_slash_Draw_0_gml_16_0": "", + "obj_kingcutscene_slash_Draw_0_gml_18_0": "", + "obj_kingcutscene_slash_Draw_0_gml_19_0": "", + "obj_kingcutscene_slash_Draw_0_gml_21_0": "", + "obj_kingcutscene_slash_Draw_0_gml_25_0": "", + "obj_kingcutscene_slash_Draw_0_gml_26_0": "", + "obj_kingcutscene_slash_Draw_0_gml_31_0": "", + "obj_kingcutscene_slash_Draw_0_gml_32_0": "", "obj_kk_enemy_slash_Draw_0_gml_106_0": "在跳舞!", "obj_kk_enemy_slash_Draw_0_gml_111_0": "两回合!", "obj_kk_enemy_slash_Draw_0_gml_116_0": "不在跳舞", @@ -4305,12 +4385,12 @@ "obj_kk_enemy_slash_Step_0_gml_287_0": "* Ralsei和K_K一同起舞!/", "obj_kk_enemy_slash_Step_0_gml_288_0": "* K_K沉浸在了节奏之中!/%", "obj_kk_enemy_slash_Step_0_gml_293_0": "* Ralsei和K_K一同起舞!/%", - "obj_krisroom_slash_Create_0_gml_16_0": "The Beginning", + "obj_krisroom_slash_Create_0_gml_16_0": "", "obj_krisroom_slash_Create_0_gml_23_0": "* KRIS!/", "obj_krisroom_slash_Create_0_gml_24_0": "* Kris你再不起床&我们上学就要迟到了!/%", "obj_krisroom_slash_Step_0_gml_94_0": "* 我在外面等你^1,好吗?/%", "obj_krisroom_slash_Step_0_gml_283_0": "* (但是^1,当你睁开双眼时...)/%", - "obj_krisroom_slash_Step_0_gml_293_0": "THE DARK", + "obj_krisroom_slash_Step_0_gml_293_0": "", "obj_krisroom_slash_Step_0_gml_321_0": "Kris...?/%", "obj_krisroom_slash_Step_0_gml_322_0": "Kris,亲爱的...&   你醒了么...?^6 %%", "obj_krisroom_slash_Step_0_gml_323_0": "...等...等等!^6 %%", @@ -4322,22 +4402,31 @@ "obj_krisroom_slash_Step_0_gml_394_0": "\\E8* 哦,Kris.../%", "obj_krisroom_slash_Step_0_gml_399_0": "\\E4* 我是不是又得把烤炉锁起来了?/%", "obj_krisroom_slash_Step_0_gml_406_0": "\\E1* 好了^1,赶紧从床上起来^1。&该去上学了。/%", - "obj_lancerbakesale_event_slash_Step_0_gml_80_0": "* Alright^1, which one do you want?/", - "obj_lancerbakesale_event_slash_Step_0_gml_82_0": "* Hahahah!^1! Hmmm.../%", - "obj_lancerbakesale_event_slash_Step_0_gml_103_0": "* Wait^1, you're buying it for me?/", - "obj_lancerbakesale_event_slash_Step_0_gml_105_0": "* You said you didn't eat anything earlier^1, right...?/", - "obj_lancerbakesale_event_slash_Step_0_gml_106_0": "\\E2* It'd be annoying if you starved to death^1, y'know./", - "obj_lancerbakesale_event_slash_Step_0_gml_108_0": "* Wow...!/", - "obj_lancerbakesale_event_slash_Step_0_gml_109_0": "* You're the best teammate ever^1, Purple Girl...!/%", - "obj_lancerbakesale_event_slash_Step_0_gml_237_0": "* Hey^1! You can't not buy from us!/", - "obj_lancerbakesale_event_slash_Step_0_gml_239_0": "* Hey DUMBASS^1!&* It's for a GOOD CAUSE!/", - "obj_lancerbakesale_event_slash_Step_0_gml_241_0": "* (Kris let's just buy one.)/%", + "obj_lancerbakesale_event_slash_Step_0_gml_80_0": "", + "obj_lancerbakesale_event_slash_Step_0_gml_82_0": "", + "obj_lancerbakesale_event_slash_Step_0_gml_103_0": "", + "obj_lancerbakesale_event_slash_Step_0_gml_105_0": "", + "obj_lancerbakesale_event_slash_Step_0_gml_106_0": "", + "obj_lancerbakesale_event_slash_Step_0_gml_108_0": "", + "obj_lancerbakesale_event_slash_Step_0_gml_109_0": "", + "obj_lancerbakesale_event_slash_Step_0_gml_237_0": "", + "obj_lancerbakesale_event_slash_Step_0_gml_239_0": "", + "obj_lancerbakesale_event_slash_Step_0_gml_241_0": "", "obj_lancerchaseevent_slash_Step_0_gml_16_0": "* 嘿^1,Kris^1。&* 有人在上面冲我们招手呢。/", "obj_lancerchaseevent_slash_Step_0_gml_17_0": "* 不知道他在打什么主意...?/%", "obj_lancerchaseevent_slash_Step_0_gml_137_0": "* 快-快跑^1,Kris!/%", - "obj_lancerscare2_slash_Step_0_gml_311_0": "* .../%", - "obj_lancerscare2_slash_Step_0_gml_343_0": "* Well^1, that was weird./%", + "obj_lancerscare2_slash_Step_0_gml_311_0": "", + "obj_lancerscare2_slash_Step_0_gml_343_0": "", "obj_lancerslideevent_slash_Step_0_gml_34_0": "* Kris^1,这边!/%", + "obj_lang_settings_1_0": "", + "obj_lang_settings_2_0": "", + "obj_lang_settings_3_0": "", + "obj_lang_settings_4_0": "", + "obj_lang_settings_5_0": "", + "obj_lang_settings_6_0": "", + "obj_lang_settings_7_0": "", + "obj_lang_settings_8_0": "", + "obj_lang_settings_9_0": "", "obj_legend_neo_slash_Draw_0_gml_38_0": " 当光明 被阴影淹没", "obj_legend_neo_slash_Draw_0_gml_46_0": " 当喷泉 覆盖天空", "obj_legend_neo_slash_Draw_0_gml_69_0": " 一切都将陷入混沌", @@ -4467,16 +4556,16 @@ "obj_mazecheese_slash_Step_0_gml_103_0": "* (你意识到你忘记了什么才是重要的...)/%", "obj_moneydisplay_slash_Draw_0_gml_22_0": "随身物品空间:", "obj_moneydisplay_slash_Draw_0_gml_23_0": "库存空间:", - "obj_monster1_slash_Step_0_gml_25_0": "Line1", - "obj_monster1_slash_Step_0_gml_26_0": "Line2", - "obj_monster1_slash_Step_0_gml_53_0": "* Line3", - "obj_monster1_slash_Step_0_gml_54_0": "* Line4", - "obj_monster1_slash_Step_0_gml_55_0": "* Line5", - "obj_monster1_slash_Step_0_gml_56_0": "* Line6", - "obj_monster1_slash_Step_0_gml_57_0": "* Line7", - "obj_monster1_slash_Step_0_gml_75_0": "* Line8/%", - "obj_monster1_slash_Step_0_gml_82_0": "Line9", - "obj_monster1_slash_Step_0_gml_91_0": "* スージィと クリスは&  デュアルバスターを 発動した!/%", + "obj_monster1_slash_Step_0_gml_25_0": "", + "obj_monster1_slash_Step_0_gml_26_0": "", + "obj_monster1_slash_Step_0_gml_53_0": "", + "obj_monster1_slash_Step_0_gml_54_0": "", + "obj_monster1_slash_Step_0_gml_55_0": "", + "obj_monster1_slash_Step_0_gml_56_0": "", + "obj_monster1_slash_Step_0_gml_57_0": "", + "obj_monster1_slash_Step_0_gml_75_0": "", + "obj_monster1_slash_Step_0_gml_82_0": "", + "obj_monster1_slash_Step_0_gml_91_0": "", "obj_mouseSpawnSwitch_slash_Step_0_gml_123_0": "\\E2* 老-老-老-老-老.../", "obj_mouseSpawnSwitch_slash_Step_0_gml_124_0": "\\EE* 老鼠!?/%", "obj_mouseSpawnSwitch_slash_Step_0_gml_171_0": "\\E3* 抱..^1. 抱歉^1,Kris^1,&你能不能..^1. &想-想个法子解决它们?/", @@ -4491,7 +4580,7 @@ "obj_mouseSpawnSwitch_slash_Step_0_gml_358_0": "\\E3* Kris^1,你^1,嗯..^1. &不会把我留在这儿吧^1,&对吧?/", "obj_mouseSpawnSwitch_slash_Step_0_gml_359_0": "\\E2* 想-想想我给你的那些&铅-铅笔嘛!/", "obj_mouseSpawnSwitch_slash_Step_0_gml_360_0": "\\E2* 还..^1. 还有我分你的薄荷饼干!!/%", - "obj_mouseSpawnSwitch_slash_Step_0_gml_364_0": "\\E8* .../", + "obj_mouseSpawnSwitch_slash_Step_0_gml_364_0": "", "obj_mouseSpawnSwitch_slash_Step_0_gml_365_0": "\\E8* 我会替你做作业的。/%", "obj_mouseSpawnSwitch_slash_Step_0_gml_395_0": "\\E4* 噢^1,热巧Kris啊--!/", "obj_mouseSpawnSwitch_slash_Step_0_gml_396_0": "\\E8* 那是我们来的方向!/%", @@ -4583,12 +4672,12 @@ "obj_npc_conbini_slash_Step_0_gml_131_0": "\\E1* 行了^1,我们之后会一起&讨论那件事的。/", "obj_npc_conbini_slash_Step_0_gml_133_0": "\\E6* 一言为定^1!&记得替我和Kris问好!/", "obj_npc_conbini_slash_Step_0_gml_135_0": "\\E1* 没问题。&祝你今天过得愉快。/%", - "obj_npc_conbini_slash_Step_0_gml_153_0": "\\E2* .../", + "obj_npc_conbini_slash_Step_0_gml_153_0": "", "obj_npc_conbini_slash_Step_0_gml_154_0": "\\E2* 你知道我想要啥的^1,&骨头小子。/", "obj_npc_conbini_slash_Step_0_gml_156_0": "\\E1* ..^1. 是啊。/", "obj_npc_conbini_slash_Step_0_gml_157_0": "\\E2* 免费腌黄瓜。/", "obj_npc_conbini_slash_Step_0_gml_159_0": "\\E5* 哎呀^1,太谢谢你啦!/", - "obj_npc_conbini_slash_Step_0_gml_160_0": "\\E2* .../", + "obj_npc_conbini_slash_Step_0_gml_160_0": "", "obj_npc_conbini_slash_Step_0_gml_161_0": "\\E2* 我能问一句么?/", "obj_npc_conbini_slash_Step_0_gml_162_0": "\\E2* 你觉得^1,什么样的花^1,/", "obj_npc_conbini_slash_Step_0_gml_163_0": "\\E3* 能够让她回想起曾经的感受?/", @@ -4602,7 +4691,7 @@ "obj_npc_conbini_slash_Step_0_gml_177_0": "\\E2* 没错。&和..^1. 和那部电影真的很像。/", "obj_npc_conbini_slash_Step_0_gml_179_0": "\\E0* ..^1. 好吧^1,祝你一切顺利。/", "obj_npc_conbini_slash_Step_0_gml_181_0": "\\E6* 哈哈^1!我会加油的!/%", - "obj_npc_conbini_slash_Step_0_gml_199_0": "\\EK* .../", + "obj_npc_conbini_slash_Step_0_gml_199_0": "", "obj_npc_conbini_slash_Step_0_gml_200_0": "\\EK* 嘿^1,Kris^1,呃.../", "obj_npc_conbini_slash_Step_0_gml_201_0": "\\EK* 呃..^1. 算了。/%", "obj_npc_dojo_slash_Step_0_gml_45_0": "* 真是一场漂亮的战斗!/", @@ -4695,7 +4784,7 @@ "obj_npc_facing_slash_Other_10_gml_252_0": "\\E2* 为社会做贡献?/", "obj_npc_facing_slash_Other_10_gml_253_0": "\\E2* 你哪天也该试试^1,Kris!/", "obj_npc_facing_slash_Other_10_gml_254_0": "\\E2* 那真的很令人满足!/%", - "obj_npc_facing_slash_Other_10_gml_257_0": "* ?/%", + "obj_npc_facing_slash_Other_10_gml_257_0": "", "obj_npc_facing_slash_Other_10_gml_269_0": "* Kris^1!咋了!/", "obj_npc_facing_slash_Other_10_gml_270_0": "* Catti打工去了^1,所以我开始独自^1&做我们的作业了!/", "obj_npc_facing_slash_Other_10_gml_271_0": "* 我已经^1,复制了好多图了。/", @@ -4715,7 +4804,7 @@ "obj_npc_facing_slash_Other_10_gml_376_0": "\\E2* (Kris^1,去一趟旧教室^1,&然后把那里的东西一起&带过来吧。)/", "obj_npc_facing_slash_Other_10_gml_377_0": "\\E0* (就是你们上次回到&光明世界时的地方。)/", "obj_npc_facing_slash_Other_10_gml_378_0": "\\E2* (离开黑暗世界以后&往东走就可以了。)/%", - "obj_npc_facing_slash_Other_10_gml_383_0": "\\E1* .../", + "obj_npc_facing_slash_Other_10_gml_383_0": "", "obj_npc_facing_slash_Other_10_gml_384_0": "\\EJ* 噢^1,抱歉^1!&我刚才在想些事情.../", "obj_npc_facing_slash_Other_10_gml_385_0": "\\E2* 我们大概不再需要那个&训练人偶了!/", "obj_npc_facing_slash_Other_10_gml_386_0": "\\E1* (..^1. 或许你可以&直接用真家伙?)/%", @@ -4731,12 +4820,12 @@ "obj_npc_facing_slash_Other_10_gml_429_0": "今天才不是我的生日!!!", "obj_npc_facing_slash_Other_10_gml_432_0": "\\E1* 噢 Kris&恭喜你:一败涂地/", "obj_npc_facing_slash_Other_10_gml_433_0": "\\ED* 我 已将 内置时钟 调整至&我 获胜 的时刻/", - "obj_npc_facing_slash_Other_10_gml_435_0": "\\f0 \\f1\\f2/%", - "obj_npc_facing_slash_Other_10_gml_438_0": "* Heh^1, my clothes are gonna be so great./", + "obj_npc_facing_slash_Other_10_gml_435_0": "", + "obj_npc_facing_slash_Other_10_gml_438_0": "", "obj_npc_facing_slash_Other_10_gml_439_0": "\\E1* 你是否 知晓&你已被 传唤/", "obj_npc_facing_slash_Other_10_gml_440_0": "\\ED* 你的 巨型 街机 &要 凉了哦/%", - "obj_npc_facing_slash_Other_10_gml_442_0": "* That's just..^1. a bunch of torn up pieces of felt./", - "obj_npc_facing_slash_Other_10_gml_444_0": "* Can you PLEASE stop acting so jealous for ONE second?/%", + "obj_npc_facing_slash_Other_10_gml_442_0": "", + "obj_npc_facing_slash_Other_10_gml_444_0": "", "obj_npc_facing_slash_Other_10_gml_456_0": "\\E0* Kris^1,我想你可以&推动这些方块.../", "obj_npc_facing_slash_Other_10_gml_457_0": "\\E3* 我-我吗^1?不-不行^1,& 我过不去那里^1,我.../%", "obj_npc_facing_slash_Other_10_gml_461_0": "\\E4* Kris..^1. &这个房间是不是有点奇怪?/", @@ -4744,15 +4833,15 @@ "obj_npc_facing_slash_Other_10_gml_463_0": "\\E8* 也许你可以试着把它们推到&老鼠移动的路线上...?/%", "obj_npc_facing_slash_Other_10_gml_467_0": "\\E2* 别-别让老鼠撞到墙壁^1,&Kris!/", "obj_npc_facing_slash_Other_10_gml_468_0": "\\E3* 它们会弹到这边然后&扑到我身上的...!/%", - "obj_npc_facing_slash_Other_10_gml_470_0": "* Stuck on this puzzle too?/", - "obj_npc_facing_slash_Other_10_gml_472_0": "* Don't talk to me while I'm scheming./", - "obj_npc_facing_slash_Other_10_gml_474_0": "* Say^1, why don't you just walk over the spikes like before...?/", - "obj_npc_facing_slash_Other_10_gml_476_0": "* Heh^1, why bother when you guys will solve it for us?/", - "obj_npc_facing_slash_Other_10_gml_478_0": "* (Oh^1, I thought it was because I'm afraid of spikes.)/", - "obj_npc_facing_slash_Other_10_gml_480_0": "* SHHHH!/%", + "obj_npc_facing_slash_Other_10_gml_470_0": "", + "obj_npc_facing_slash_Other_10_gml_472_0": "", + "obj_npc_facing_slash_Other_10_gml_474_0": "", + "obj_npc_facing_slash_Other_10_gml_476_0": "", + "obj_npc_facing_slash_Other_10_gml_478_0": "", + "obj_npc_facing_slash_Other_10_gml_480_0": "", "obj_npc_facing_slash_Other_10_gml_489_0": "\\E2* (怎么说呢^1,&我确实挺擅长&这种解谜的。)/", "obj_npc_facing_slash_Other_10_gml_490_0": "\\E3* (可是^1,我不-不觉得&自己能一个人解决...)/%", - "obj_npc_facing_slash_Other_10_gml_492_0": "* Can you stop ruining everything?/%", + "obj_npc_facing_slash_Other_10_gml_492_0": "", "obj_npc_facing_slash_Other_10_gml_500_0": "\\E1* Ralsei 很快会 为我&在楼上 <安装.EXE> 房间/", "obj_npc_facing_slash_Other_10_gml_501_0": "\\EA* 不必 担心/", "obj_npc_facing_slash_Other_10_gml_502_0": "\\EP* 我的 需求单 可长了 哈哈/", @@ -4803,7 +4892,7 @@ "obj_npc_puzzlemaster1_slash_Step_0_gml_60_0": "* 唔^1,Susie^1,&我之前说的你可能忘了.../", "obj_npc_puzzlemaster1_slash_Step_0_gml_61_0": "\\E0* 作为英雄^1,&我们有能力去创造一个&和平的未来。/", "obj_npc_puzzlemaster1_slash_Step_0_gml_62_0": "\\E8* 所以^1,从现在开始^1,&让我们避免【战斗】^1,好吗?/", - "obj_npc_puzzlemaster1_slash_Step_0_gml_64_0": "* .../", + "obj_npc_puzzlemaster1_slash_Step_0_gml_64_0": "", "obj_npc_puzzlemaster1_slash_Step_0_gml_66_0": "* 唔^1,你可不可以稍稍&手下留情呢...?/", "obj_npc_puzzlemaster1_slash_Step_0_gml_67_0": "\\E1* 只要你弱化了敌人^1,&我就可以使用【安抚】法术了。/", "obj_npc_puzzlemaster1_slash_Step_0_gml_68_0": "\\E8* 这可以让精疲力竭的人&安然入眠!/", @@ -4825,7 +4914,7 @@ "obj_npc_room_animated_slash_Other_10_gml_35_0": "* 给我加冰^1!&* 给我加冰^1,老板!!!/%", "obj_npc_room_animated_slash_Other_10_gml_40_0": "* (哦^1,上天啊^1,真的有人来了...)&* 呃.../", "obj_npc_room_animated_slash_Other_10_gml_41_0": "* (Ice-E的“冰”萨^1,&热腾腾“冰”萨的第“一”选择!)/", - "obj_npc_room_animated_slash_Other_10_gml_42_0": "* .../", + "obj_npc_room_animated_slash_Other_10_gml_42_0": "", "obj_npc_room_animated_slash_Other_10_gml_43_0": "* ...呃..^1. 嗯^1?&* 嘿,等等!/", "obj_npc_room_animated_slash_Other_10_gml_44_0": "* 我认识你诶!/%", "obj_npc_room_animated_slash_Other_10_gml_51_0": "* 我喜欢这里女服务员的气质^1。&* 没准我也应该来应聘.../", @@ -4953,9 +5042,9 @@ "obj_npc_room_animated_slash_Other_10_gml_563_0": "* 我想乘机偷点什么^1,&可这些东西也太烂了.../%", "obj_npc_room_animated_slash_Other_10_gml_567_0": "* 烂到我就连没付钱都觉得亏了.../%", "obj_npc_room_animated_slash_Other_10_gml_578_0": "* 电线..^1. 电线.../%", - "obj_npc_room_animated_slash_Other_10_gml_583_0": "* .../%", + "obj_npc_room_animated_slash_Other_10_gml_583_0": "", "obj_npc_room_animated_slash_Other_10_gml_592_0": "* 大家都被.../%", - "obj_npc_room_animated_slash_Other_10_gml_597_0": "* .../%", + "obj_npc_room_animated_slash_Other_10_gml_597_0": "", "obj_npc_room_animated_slash_Other_10_gml_605_0": "* 我老是会搞成这个样子.../", "obj_npc_room_animated_slash_Other_10_gml_606_0": "* 不能说我扇长这个..^1. &不对,我能吗?/%", "obj_npc_room_animated_slash_Other_10_gml_611_0": "\\m1  *这个小镇可真棒!/", @@ -4999,7 +5088,7 @@ "obj_npc_room_slash_Other_10_gml_151_0": "嗨Susie!!", "obj_npc_room_slash_Other_10_gml_154_0": "\\EL* 是..^1. 是谁把我的人偶搞成了&这个样子!?/", "obj_npc_room_slash_Other_10_gml_155_0": "\\EN* 作-作为你们的王子^1,&我..^1. 我命令你们将其&恢复原状!!/", - "obj_npc_room_slash_Other_10_gml_156_0": "\\EM* .../", + "obj_npc_room_slash_Other_10_gml_156_0": "", "obj_npc_room_slash_Other_10_gml_157_0": "\\EK* 呃^1,有..^1. 有人在听吗...?/", "obj_npc_room_slash_Other_10_gml_159_0": "\\E8* 我听着呢~!\\f0\\f1\\f2/%", "obj_npc_room_slash_Other_10_gml_163_0": "\\E0* (要是Noelle在的话...)/", @@ -5009,50 +5098,50 @@ "obj_npc_room_slash_Other_10_gml_173_0": "* 要来个免费小样吗?&尝一口衣服现在只需$4.99!!/%", "obj_npc_room_slash_Other_10_gml_183_0": "\\E0* Ralsei^1,你不戴帽子了吗?/", "obj_npc_room_slash_Other_10_gml_185_0": "\\E1* 怎么了?&我以前的样子比较可爱吗?/", - "obj_npc_room_slash_Other_10_gml_186_0": "* Are you puzzled by COMBAT^1?&* Wanna know how TP works?/%", + "obj_npc_room_slash_Other_10_gml_186_0": "", "obj_npc_room_slash_Other_10_gml_187_0": "\\EK* 呃呃^1,不^1,我的意思是.../", - "obj_npc_room_slash_Other_10_gml_188_0": "* My cohorts to the WEST will gladly help you put the pieces together./%", + "obj_npc_room_slash_Other_10_gml_188_0": "", "obj_npc_room_slash_Other_10_gml_189_0": "\\E1* 那就是说..^1. 你觉得我&现在的模样更可爱一点?/", "obj_npc_room_slash_Other_10_gml_191_0": "\\EH* 我只是觉得你别把自己&遮那么严实才比较像样! \\f0/%", "obj_npc_room_slash_Other_10_gml_192_0": "你说得我都脸红啦!", - "obj_npc_room_slash_Other_10_gml_193_0": "* Your friends can't \\cYACT\\cW alone^1, but they can still help you win peacefully./", - "obj_npc_room_slash_Other_10_gml_194_0": "* The \\cGDARK PRINCE\\cW's \\cYPACIFY\\cW spell can remove \\cBTIRED\\cW enemies safely from battle./", - "obj_npc_room_slash_Other_10_gml_195_0": "* If nothing else^1, why not try using an \\cYITEM\\cW?/", - "obj_npc_room_slash_Other_10_gml_196_0": "* Even if it seems useless^1, the effects may surprise you./%", + "obj_npc_room_slash_Other_10_gml_193_0": "", + "obj_npc_room_slash_Other_10_gml_194_0": "", + "obj_npc_room_slash_Other_10_gml_195_0": "", + "obj_npc_room_slash_Other_10_gml_196_0": "", "obj_npc_room_slash_Other_10_gml_197_0": "\\E5* 给我麻利点,Kris./", "obj_npc_room_slash_Other_10_gml_198_0": "\\EK* 你磨蹭得越久^1,&我就要陪这个怪胎待的越久。/", "obj_npc_room_slash_Other_10_gml_200_0": "\\EH* 如果Susie你觉得无聊的话^2,&我们可以来织一些钩花围巾.../", "obj_npc_room_slash_Other_10_gml_201_0": "* Today's lesson is..^1. &* \\cRGet out of my way when I'm building a ladder!\\cW /", "obj_npc_room_slash_Other_10_gml_202_0": "\\E6* 等等^1,“勾画”是指那个^1,&呃^1,类似简笔画的那种吗?/", "obj_npc_room_slash_Other_10_gml_204_0": "\\EJ* 呃..^1. 和织毛衣有点像。/", - "obj_npc_room_slash_Other_10_gml_205_0": "* What?/", + "obj_npc_room_slash_Other_10_gml_205_0": "", "obj_npc_room_slash_Other_10_gml_206_0": "\\E2* 好啊。&只要让我也动上两笔。/%", - "obj_npc_room_slash_Other_10_gml_211_0": "\\E0* .../", - "obj_npc_room_slash_Other_10_gml_212_0": "\\E1* .../", + "obj_npc_room_slash_Other_10_gml_211_0": "", + "obj_npc_room_slash_Other_10_gml_212_0": "", "obj_npc_room_slash_Other_10_gml_214_0": "\\E2* ..^1. 所以你抱那个Ralsei&的雕像是在搞毛啊?/", - "obj_npc_room_slash_Other_10_gml_215_0": "* It also lets you focus^1, \\cYrestoring TP\\cW. You need \\cYTP\\cW to \\cRCAST SPELLS\\cW!/", + "obj_npc_room_slash_Other_10_gml_215_0": "", "obj_npc_room_slash_Other_10_gml_216_0": "\\EQ* 让Kris做自己想做的事情嘛^1,&Susie!\\f0/", "obj_npc_room_slash_Other_10_gml_217_0": "再说了,那也不是雕像啊?", "obj_npc_room_slash_Other_10_gml_220_0": "\\E0* 话说回来,你为毛搞一座&Ralsei的雕像?/", - "obj_npc_room_slash_Other_10_gml_221_0": "* Getting close to \\cYBULLETS\\cW is really exciting^1, isn't it?/", + "obj_npc_room_slash_Other_10_gml_221_0": "", "obj_npc_room_slash_Other_10_gml_222_0": "\\E1* Susie也想练习一下拥抱吗?\\f1 ^1 /%", "obj_npc_room_slash_Other_10_gml_223_0": "KRIS赶紧出发吧!", - "obj_npc_room_slash_Other_10_gml_224_0": "* It's quite \\cRdangerous\\cW though^1.&* So no worries if you don't want to try./%", + "obj_npc_room_slash_Other_10_gml_224_0": "", "obj_npc_room_slash_Other_10_gml_232_0": "* 哦^1!外套请交给我们^1!&然后扔马桶里^1!哈^1!&...不过^1,我们这没有马桶。/", "obj_npc_room_slash_Other_10_gml_233_0": "* 请尝尝棒球~^1!&* 嗯^1!噎死你^1!&* ...他们也吃运动吗?/", "obj_npc_room_slash_Other_10_gml_234_0": "* 然后我们可以来玩扭扭乐~^1!&但是不要打扰我们^1!&...我们自己都玩不赢。/%", - "obj_npc_room_slash_Other_10_gml_236_0": "* (It's a candy tree.^1)&* (All the ripe candy has been picked.)/", + "obj_npc_room_slash_Other_10_gml_236_0": "", "obj_npc_room_slash_Other_10_gml_237_0": "* 你们有受到邀请吗^1?&你们没有!!^1!&你伤害了我们.../", "obj_npc_room_slash_Other_10_gml_238_0": "* 尴尬哦..^1. &* 你想要重赛!^1?&* 你还是走吧.../%", - "obj_npc_room_slash_Other_10_gml_240_0": "* What^1? Sour^1, sweet^1, meaty^1, bitter..^1. if it's candy^1, it's good!/", - "obj_npc_room_slash_Other_10_gml_242_0": "* Well^1, that's accepting of you.../", + "obj_npc_room_slash_Other_10_gml_240_0": "", + "obj_npc_room_slash_Other_10_gml_242_0": "", "obj_npc_room_slash_Other_10_gml_243_0": "* 我是第一个来参加“牌队”的^1。&* 我负责当DPS^1。&* (打盘手。)/%", "obj_npc_room_slash_Other_10_gml_247_0": "* (心桃是第二个来参加“牌队”的^1。&她是奶妈。)/", "obj_npc_room_slash_Other_10_gml_248_0": "* (她负责提供食物。)/", "obj_npc_room_slash_Other_10_gml_249_0": "* (可惜她点的蛋糕被毁了。)/%", - "obj_npc_room_slash_Other_10_gml_250_0": "* Y'know^1.&* Whatever it's called^1.&* Uhhh^1, jerky./", + "obj_npc_room_slash_Other_10_gml_250_0": "", "obj_npc_room_slash_Other_10_gml_252_0": "* (这是所有订蛋糕的人都会&遇到的风险。)/%", - "obj_npc_room_slash_Other_10_gml_254_0": "* Then why is it next to it in the store!?/%", + "obj_npc_room_slash_Other_10_gml_254_0": "", "obj_npc_room_slash_Other_10_gml_281_0": "* 我喜欢看书^1。&* 尤其是这楼上的书^1。&* 你真应该试试。/", "obj_npc_room_slash_Other_10_gml_282_0": "* 去读一读!/%", "obj_npc_room_slash_Other_10_gml_286_0": "* 我喜欢看书^1。&* 特别是那些.../", @@ -5083,14 +5172,14 @@ "obj_npc_room_slash_Other_10_gml_367_0": "* 要想理解成年人的世界^1,&你还需要提高自己的知识水平。/%", "obj_npc_room_slash_Other_10_gml_373_0": "* 那个秃子老是想给我看他公文包&里面的东西。/", "obj_npc_room_slash_Other_10_gml_374_0": "* 他是不是想贿赂我...?&我可真是深陷政治泥潭里了.../%", - "obj_npc_room_slash_Other_10_gml_388_0": "* .../", + "obj_npc_room_slash_Other_10_gml_388_0": "", "obj_npc_room_slash_Other_10_gml_389_0": "\\E1* 你还活着。/", - "obj_npc_room_slash_Other_10_gml_390_0": "\\E0* .../", + "obj_npc_room_slash_Other_10_gml_390_0": "", "obj_npc_room_slash_Other_10_gml_391_0": "\\E2* 好样的。/", - "obj_npc_room_slash_Other_10_gml_393_0": "\\E1* .../", + "obj_npc_room_slash_Other_10_gml_393_0": "", "obj_npc_room_slash_Other_10_gml_394_0": "\\E1* 我在工作。/%", - "obj_npc_room_slash_Other_10_gml_394_0_b": "\\E0* .../", - "obj_npc_room_slash_Other_10_gml_398_0": "* .../", + "obj_npc_room_slash_Other_10_gml_394_0_b": "", + "obj_npc_room_slash_Other_10_gml_398_0": "", "obj_npc_room_slash_Other_10_gml_399_0": "\\E1* 这身制服是.../", "obj_npc_room_slash_Other_10_gml_400_0": "\\E0* 规定。/%", "obj_npc_room_slash_Other_10_gml_406_0": "* 呃^1,我们要一份今天的特别菜品^1,&对了你们有可食用的小亮片吗?/", @@ -5106,7 +5195,7 @@ "obj_npc_room_slash_Other_10_gml_428_0": "* 他会给你点一杯热巧克力.../", "obj_npc_room_slash_Other_10_gml_429_0": "* 然后你们二人就坐在&角落里的那张桌子旁边.../", "obj_npc_room_slash_Other_10_gml_430_0": "* ...把气哈在窗玻璃上画画。/", - "obj_npc_room_slash_Other_10_gml_431_0": "* .../", + "obj_npc_room_slash_Other_10_gml_431_0": "", "obj_npc_room_slash_Other_10_gml_432_0": "* 你一定特别想他^1,是吧?/", "obj_npc_room_slash_Other_10_gml_433_0": "* ...来^1,尝尝这个?/", "obj_npc_room_slash_Other_10_gml_434_0": "* (Kris得到了热巧克力。)/", @@ -5222,7 +5311,7 @@ "obj_npc_room_slash_Other_10_gml_814_0": "* ツイスターゲームも しようね~^1?&* うちらの じゃまは しないでよ^1!&* 私たちだけでやっても ムリなのに.../%", "obj_npc_room_slash_Other_10_gml_821_0": "* 没什么能比得上&和我最好的兄弟&一起约在湖边.../", "obj_npc_room_slash_Other_10_gml_822_0": "* 看着潮起潮落.../%", - "obj_npc_room_slash_Other_10_gml_826_0": "* .../", + "obj_npc_room_slash_Other_10_gml_826_0": "", "obj_npc_room_slash_Other_10_gml_827_0": "* ...是啊。/%", "obj_npc_room_slash_Other_10_gml_848_0": "* 呱呱^1,呱呱。/", "obj_npc_room_slash_Other_10_gml_849_0": "* (那边的房子,&时不时会传出美妙的歌声。)/", @@ -5234,12 +5323,12 @@ "obj_npc_room_slash_Other_10_gml_871_0": "* 我想买点花来着^1,&可是这家店已经关门了。/", "obj_npc_room_slash_Other_10_gml_872_0": "* 后门是开着的^1,&但我感觉擅自进去不太好.../%", "obj_npc_room_slash_Other_10_gml_876_0": "* 我透过后面的窗户看到了一张床..^1. &有点好奇是做什么用的。/%", - "obj_npc_room_slash_Other_10_gml_877_0": "* 今度のケーキは 金属製にするヨ!&  そしたら 魔物に 食われない!/%", - "obj_npc_room_slash_Other_10_gml_880_0": "* ああ! クローバーのママ^1!&* ワタシのケーキ^1 いつでも&  試食してくださネ!/", + "obj_npc_room_slash_Other_10_gml_877_0": "", + "obj_npc_room_slash_Other_10_gml_880_0": "", "obj_npc_room_slash_Other_10_gml_882_0": "* ...試食は&  クローバーのママ&  限定なのか?/", - "obj_npc_room_slash_Other_10_gml_884_0": "* はい^1! 限定デス^1!&  たった今 そう決めたのデス!/%", - "obj_npc_room_slash_Other_10_gml_888_0": "* マーマ ミーバ^1!&  これは めでたい^1!&  みなさん 勢ぞろい!/", - "obj_npc_room_slash_Other_10_gml_889_0": "* ワタシが焼いた あのケーキは&  このバースデーパーティ用&  だったのネ!/", + "obj_npc_room_slash_Other_10_gml_884_0": "", + "obj_npc_room_slash_Other_10_gml_888_0": "", + "obj_npc_room_slash_Other_10_gml_889_0": "", "obj_npc_room_slash_Other_10_gml_890_0": "* クローバーのバースデー^1!&  ああ... 胸が いっぱいだヨ!&  ワタシ 泣いちゃいそうだヨ!/", "obj_npc_room_slash_Other_10_gml_892_0": "* いや... ちがくて..^1. &  この騒ぎは その..^1. &  うちらのせい...っつーか.../", "obj_npc_room_slash_Other_10_gml_894_0": "* オウ^1! マァ アミーゴ^1!&  とゆうことは..^1. アナタが&  クローバーのママですカ!?/", @@ -5259,13 +5348,13 @@ "obj_npc_room_slash_Other_10_gml_964_0": "\\E0* 呃不^1,只是过来转转。/", "obj_npc_room_slash_Other_10_gml_966_0": "* ..^1. 我知道了。/%", "obj_npc_room_slash_Other_10_gml_970_0": "* “转转”这事^1,&要帮你们预约一下吗?/%", - "obj_npc_room_slash_Other_10_gml_972_0": "* ついに^1 暴君を 権力の座から&  引きずり降ろしたな^1!&  よくぞ なし遂げた!/", + "obj_npc_room_slash_Other_10_gml_972_0": "", "obj_npc_room_slash_Other_10_gml_973_0": "* では..^1. きみに 助力した私も&  報奨金を いただくとしよう.../", "obj_npc_room_slash_Other_10_gml_974_0": "* ...ただし あの暴君が 再び現れた&  ときには..^2. 私は一切 手を&  貸していないことにしてくれたまえ!/%", "obj_npc_room_slash_Other_10_gml_975_0": "* (我叫金泰阳。)/%", - "obj_npc_room_slash_Other_10_gml_978_0": "* ドウドウ^1!&  あんたたちにゃ 感謝しても&  しきれねェなぁ。/", - "obj_npc_room_slash_Other_10_gml_979_0": "* これで オレたち駒の&  コマった問題は 片づいた。&  これからは 平和に暮らせるぜ。/%", - "obj_npc_room_slash_Other_10_gml_982_0": "* いやぁ^1 オレの鼻の穴も&  あんたたちには 感謝してるぜ。/%", + "obj_npc_room_slash_Other_10_gml_978_0": "", + "obj_npc_room_slash_Other_10_gml_979_0": "", + "obj_npc_room_slash_Other_10_gml_982_0": "", "obj_npc_room_slash_Other_10_gml_1031_0": "* 哇哦^1,我的同事最近看起来真的&很有精神呢!!/", "obj_npc_room_slash_Other_10_gml_1032_0": "* 我不知道他是怎么了^1,&不过.../", "obj_npc_room_slash_Other_10_gml_1033_0": "* 看到他那么开心^1,&也让我很开心!!/", @@ -5308,7 +5397,7 @@ "obj_npc_room_slash_Other_10_gml_1123_0_b": "\\E1* 哇哦!^1!Susie小火车!^1!&城堡镇里最棒的游乐项目!!!/", "obj_npc_room_slash_Other_10_gml_1124_0": "* 看来她真的挺喜欢寒冷^3。&或者说喜欢华夫饼。/%", "obj_npc_room_slash_Other_10_gml_1124_0_b": "\\E1* 我就喜欢地板上&到处都是洞的样子!/%", - "obj_npc_room_slash_Other_10_gml_1125_0": "\\EJ* .../", + "obj_npc_room_slash_Other_10_gml_1125_0": "", "obj_npc_room_slash_Other_10_gml_1127_0": "\\EH* 你和KRIS别站成一条线!!/%", "obj_npc_room_slash_Other_10_gml_1139_0": "\\E9* Lancer^1,&你一定不敢相信我的&房间有多炫!/", "obj_npc_room_slash_Other_10_gml_1141_0": "\\E2* 像你一样炫的房间?^1!&哇哦!^1!&我真想看看!!/", @@ -5500,7 +5589,7 @@ "obj_npc_room_slash_Other_10_gml_2028_0": "* 由于无人守卫^1,&一股神秘的力量占领了整个豪宅!/%", "obj_npc_room_slash_Other_10_gml_2030_0": "* 感谢您的帮助。/", "obj_npc_room_slash_Other_10_gml_2031_0": "* 我本想来楼上做些\\cY扫除\\cW,&结果就被困住了。/%", - "obj_npc_room_slash_Other_10_gml_2037_0": "* .../%", + "obj_npc_room_slash_Other_10_gml_2037_0": "", "obj_npc_room_slash_Other_10_gml_2041_0": "* (你做了什么!?)/", "obj_npc_room_slash_Other_10_gml_2042_0": "* (你在解决那个谜题的时候&给了其他老鼠$~1!)/", "obj_npc_room_slash_Other_10_gml_2043_0": "* (照这样下去^1,&每只老鼠都会戴上一顶假发的...)/%", @@ -5619,7 +5708,7 @@ "obj_npc_room_slash_Other_10_gml_2521_0": "* 只剩下一部悬着听筒的电话。/", "obj_npc_room_slash_Other_10_gml_2522_0": "* 他肯定是只聊了一半便匆匆离开了。/", "obj_npc_room_slash_Other_10_gml_2523_0": "* 因为我还能依稀听到^1,&另一头有人在说话.../", - "obj_npc_room_slash_Other_10_gml_2524_0": "* .../", + "obj_npc_room_slash_Other_10_gml_2524_0": "", "obj_npc_room_slash_Other_10_gml_2525_0": "* 可当我把听筒放到耳边时.../", "obj_npc_room_slash_Other_10_gml_2526_0": "* 除了乱哄哄的噪音^1,什么都没有。/%", "obj_npc_room_slash_Other_10_gml_2532_0": "* 即使那样^1,&他还是变得越来越成功。/", @@ -5680,14 +5769,14 @@ "obj_npc_rudy_slash_Step_0_gml_39_0": "\\E5* 嗯^1,我也要!/", "obj_npc_rudy_slash_Step_0_gml_41_0": "\\E7* 我们拆了他的骨头&做个木琴敲着玩!/%", "obj_npc_sign_slash_Other_10_gml_10_0": "* 你不知道这些符号是什么意思..^1. &* 也许是因为写的太难看了。/%", - "obj_npc_sign_slash_Other_10_gml_15_0": "BottomLeft", - "obj_npc_sign_slash_Other_10_gml_16_0": "RightTop", + "obj_npc_sign_slash_Other_10_gml_15_0": "", + "obj_npc_sign_slash_Other_10_gml_16_0": "", "obj_npc_sign_slash_Other_10_gml_17_0": "MidMid", - "obj_npc_sign_slash_Other_10_gml_18_0": "Right BottomMid", - "obj_npc_sign_slash_Other_10_gml_19_0": "rightmid BottomMid", - "obj_npc_sign_slash_Other_10_gml_20_0": "leftmid BottomMid", - "obj_npc_sign_slash_Other_10_gml_22_0": "* ENEMY - AT 1 DF 1&* Susceptible to Brainshock.\\f0 ^1 \\f1 ^1 \\f2 ^1 \\f3 /", - "obj_npc_sign_slash_Other_10_gml_23_0": "\\f0 \\f1 \\f2 \\f3 \\f4 \\f5 /%", + "obj_npc_sign_slash_Other_10_gml_18_0": "", + "obj_npc_sign_slash_Other_10_gml_19_0": "", + "obj_npc_sign_slash_Other_10_gml_20_0": "", + "obj_npc_sign_slash_Other_10_gml_22_0": "", + "obj_npc_sign_slash_Other_10_gml_23_0": "", "obj_npc_sign_slash_Other_10_gml_27_0": "* (这是~1花^1,&被悉心保护在容器中...)/%", "obj_npc_sign_slash_Other_10_gml_32_0": "* (这是你爸爸的卡车。)/", "obj_npc_sign_slash_Other_10_gml_33_0": "* (在车的座位前,&废纸和乡村音乐CD扔得满地都是...)/%", @@ -5695,8 +5784,8 @@ "obj_npc_sign_slash_Other_10_gml_55_0": "* (这是你妈妈的小货车。)/%", "obj_npc_sign_slash_Other_10_gml_62_0": "* (金属制的野餐桌。)/", "obj_npc_sign_slash_Other_10_gml_64_0": "\\EK* (靠^1,我手指插不进&桌子上的洞...)/%", - "obj_npc_sign_slash_Other_10_gml_68_0": "* (Hathy, in case you wanted to make us a birthday gift...)/", - "obj_npc_sign_slash_Other_10_gml_69_0": "* (My favorite things are trees^1, boys^1, and sports!)&* (SIGNED^1, CLOVER)/%", + "obj_npc_sign_slash_Other_10_gml_68_0": "", + "obj_npc_sign_slash_Other_10_gml_69_0": "", "obj_npc_sign_slash_Other_10_gml_97_0": "* (一辆破旧的自行车。)/", "obj_npc_sign_slash_Other_10_gml_98_0": "* (它的喇叭似乎能发出绝望的轰鸣。)/%", "obj_npc_sign_slash_Other_10_gml_116_0": "* 我们是臭名昭著的狗贼群-^1-&湿鼻子大盗。/", @@ -5803,7 +5892,7 @@ "obj_npc_sign_slash_Other_10_gml_481_0": "\\EK* 啊^1,没什么。/%", "obj_npc_sign_slash_Other_10_gml_490_0": "\\E0* 嗯^1,呃.../", "obj_npc_sign_slash_Other_10_gml_491_0": "* (一座雕像。&你感觉在哪见过它。)/%", - "obj_npc_sign_slash_Other_10_gml_492_0": "\\E0* .../", + "obj_npc_sign_slash_Other_10_gml_492_0": "", "obj_npc_sign_slash_Other_10_gml_493_0": "\\EC* (她正偷偷把糖从袋子里拿出来...)/", "obj_npc_sign_slash_Other_10_gml_495_0": "\\E1* Susie?/", "obj_npc_sign_slash_Other_10_gml_497_0": "\\EG* 怎-怎么了?/", @@ -5841,8 +5930,8 @@ "obj_npc_sign_slash_Other_10_gml_641_0": "\\E4* 这是个什么玩意!?&呼哈哈哈哈.../", "obj_npc_sign_slash_Other_10_gml_642_0": "\\E0* ..^1. 呼!/", "obj_npc_sign_slash_Other_10_gml_642_0_b": "* 还剩~1个。/%", - "obj_npc_sign_slash_Other_10_gml_643_0": "\\E3* .../", - "obj_npc_sign_slash_Other_10_gml_644_0": "\\E2* .../", + "obj_npc_sign_slash_Other_10_gml_643_0": "", + "obj_npc_sign_slash_Other_10_gml_644_0": "", "obj_npc_sign_slash_Other_10_gml_645_0": "\\E8* (Kris^1,你能不能别再&盯着它看了?)/%", "obj_npc_sign_slash_Other_10_gml_649_0": "* 还剩~1个。/%", "obj_npc_sign_slash_Other_10_gml_651_0": "* (工艺品的独具匠心令你为之倾倒。)/", @@ -5898,7 +5987,7 @@ "obj_npc_sign_slash_Other_10_gml_897_0": "\\EP* 我 需求单 可长了 哈哈/", "obj_npc_sign_slash_Other_10_gml_898_0": "\\E1* 既然 我有了&这么棒的 一个 房间/", "obj_npc_sign_slash_Other_10_gml_899_0": "\\E5* 这次 我要 强迫谁&来享受 它呢/", - "obj_npc_sign_slash_Other_10_gml_900_0": "\\E5* .../", + "obj_npc_sign_slash_Other_10_gml_900_0": "", "obj_npc_sign_slash_Other_10_gml_901_0": "\\EA* ..^1. 不知道 Noelle 现在&怎么样了/%", "obj_npc_sign_slash_Other_10_gml_905_0": "\\EA* ..^1. 不知道 Noelle 现在&怎么样了/%", "obj_npc_sign_slash_Other_10_gml_913_0": "小蜜桃!小蜜桃!", @@ -5977,7 +6066,7 @@ "obj_npc_sign_slash_Other_10_gml_1253_0": "\\EK* ..^1. 呃^1,虽然我太不喜欢这样,&但是这么做应该管用。/%", "obj_npc_sign_slash_Other_10_gml_1258_0": "* (空气宝藏^1。三位合一^1,置一于三。)/%", "obj_npc_sign_slash_Other_10_gml_1266_0": "* (一个下水道。)/%", - "obj_npc_sign_slash_Other_10_gml_1324_0": "* .../%", + "obj_npc_sign_slash_Other_10_gml_1324_0": "", "obj_npc_sign_slash_Other_10_gml_1330_0": "\\E1* 真棒&那么 我能 把你的 城堡&变成 我的 豪宅吗?/", "obj_npc_sign_slash_Other_10_gml_1332_0": "\\EL* (等等^1,我不是这个意思...)/%", "obj_npc_sign_slash_Other_10_gml_1338_0": "\\E2* Kris^1,快去封印喷泉吧!/%", @@ -6050,9 +6139,9 @@ "obj_overworldc_slash_Draw_0_gml_82_0": "防具: ~1", "obj_overworldc_slash_Draw_0_gml_83_0": "金钱: ~1", "obj_overworldc_slash_Draw_0_gml_88_0": "???", - "obj_overworldc_slash_Draw_0_gml_92_0": "EXP: ~1", + "obj_overworldc_slash_Draw_0_gml_92_0": "", "obj_overworldc_slash_Draw_0_gml_95_0": "从章节~1#开始", - "obj_overworldc_slash_Draw_0_gml_113_0": "NEXT: ~1", + "obj_overworldc_slash_Draw_0_gml_113_0": "", "obj_overworldc_slash_Step_0_gml_34_0": "* 你把~1放在地上,&轻轻拍了拍它。", "obj_overworldc_slash_Step_0_gml_34_0_b": "* 你轻声地跟~1道了个别。", "obj_overworldc_slash_Step_0_gml_36_0": "* 你把~1丢在地上,&这正是它这样的垃圾&应有的待遇。", @@ -6063,28 +6152,28 @@ "obj_overworldc_slash_Step_0_gml_66_0": "* (你不太理解为什么...)/", "obj_overworldc_slash_Step_0_gml_67_0": "* (但你感觉丢掉这个东西的念头&大错特错。)/%", "obj_pipis_enemy_slash_Other_22_gml_21_0": "Pipis小姐", - "obj_pipis_enemy_slash_Step_0_gml_73_0": "* Pipis", + "obj_pipis_enemy_slash_Step_0_gml_73_0": "", "obj_pipis_enemy_slash_Step_0_gml_97_0": " ~1个人点赞了!", "obj_pipis_enemy_slash_Step_0_gml_100_0": "PIPIS - “原型体” &一种入侵性淡水蚌。 \\f0 /%", "obj_pipis_enemy_slash_Step_0_gml_110_0": "* 什么也没有发生!/%", - "obj_placeholderenemy_slash_Step_0_gml_11_0": "Message&A", - "obj_placeholderenemy_slash_Step_0_gml_12_0": "Message&B", - "obj_placeholderenemy_slash_Step_0_gml_13_0": "Message&C", - "obj_placeholderenemy_slash_Step_0_gml_14_0": "Message&D", - "obj_placeholderenemy_slash_Step_0_gml_16_0": "WlyWlyWlyWly&WlyWlyWlyWly&WlyWlyWlyWly&WlyWlyWlyWly", - "obj_placeholderenemy_slash_Step_0_gml_63_0": "* Placeholder Message A.", - "obj_placeholderenemy_slash_Step_0_gml_64_0": "* Placeholder Message B.", - "obj_placeholderenemy_slash_Step_0_gml_65_0": "* Placeholder Message C.", - "obj_placeholderenemy_slash_Step_0_gml_66_0": "* Placeholder Message D.", - "obj_placeholderenemy_slash_Step_0_gml_99_0": "A special&scenario&occurred!!/%", - "obj_placeholderenemy_slash_Step_0_gml_135_0": "* エネミー - ATK 1 DEF 1&* 私は 敵です。/%", - "obj_placeholderenemy_slash_Step_0_gml_146_0": "* You warned the enemy^1.&* It guarded from Susie's attack./%", - "obj_placeholderenemy_slash_Step_0_gml_147_0": "(Warned)", - "obj_placeholderenemy_slash_Step_0_gml_156_0": "* Its body was filled with a kind feeling./%", - "obj_placeholderenemy_slash_Step_0_gml_164_0": "* Its body will result in a kind feeling at the end of the combat./%", - "obj_placeholderenemy_slash_Step_0_gml_172_0": "* Its body will result in a speech after attack./%", - "obj_placeholderenemy_slash_Step_0_gml_180_0": "* Its body became tired./%", - "obj_placeholderenemy_slash_Step_0_gml_181_0": "(Tired)", + "obj_placeholderenemy_slash_Step_0_gml_11_0": "", + "obj_placeholderenemy_slash_Step_0_gml_12_0": "", + "obj_placeholderenemy_slash_Step_0_gml_13_0": "", + "obj_placeholderenemy_slash_Step_0_gml_14_0": "", + "obj_placeholderenemy_slash_Step_0_gml_16_0": "", + "obj_placeholderenemy_slash_Step_0_gml_63_0": "", + "obj_placeholderenemy_slash_Step_0_gml_64_0": "", + "obj_placeholderenemy_slash_Step_0_gml_65_0": "", + "obj_placeholderenemy_slash_Step_0_gml_66_0": "", + "obj_placeholderenemy_slash_Step_0_gml_99_0": "", + "obj_placeholderenemy_slash_Step_0_gml_135_0": "", + "obj_placeholderenemy_slash_Step_0_gml_146_0": "", + "obj_placeholderenemy_slash_Step_0_gml_147_0": "", + "obj_placeholderenemy_slash_Step_0_gml_156_0": "", + "obj_placeholderenemy_slash_Step_0_gml_164_0": "", + "obj_placeholderenemy_slash_Step_0_gml_172_0": "", + "obj_placeholderenemy_slash_Step_0_gml_180_0": "", + "obj_placeholderenemy_slash_Step_0_gml_181_0": "", "obj_ponman_enemy_slash_Step_0_gml_10_0": "", "obj_ponman_enemy_slash_Step_0_gml_64_0": "* 棋兵一步一步地往前走。", "obj_ponman_enemy_slash_Step_0_gml_65_0": "* 棋兵洗耳恭听^1,&虽然没有耳朵。", @@ -6102,9 +6191,7 @@ "obj_ponman_enemy_slash_Step_0_gml_152_0": "* 你和Ralsei警告敌人们&小心Susie^1。&* 所有人都警觉起来。/%", "obj_ponman_enemy_slash_Step_0_gml_186_0": "* 棋兵睡着了^1!&* 敌人们都变得疲惫了!/%", "obj_ponman_enemy_slash_Step_0_gml_198_0": "* 棋兵睡着了^1!&* SUSIE睡着了^1!&* 敌人们都变得疲惫了!/%", - "obj_poppup_enemy_slash_Step_0_gml_18_0": "", "obj_poppup_enemy_slash_Step_0_gml_22_0": "神�業锟斤機〇拷稲�荷?", - "obj_poppup_enemy_slash_Step_0_gml_25_0": "", "obj_poppup_enemy_slash_Step_0_gml_27_0": "來佺玩銈吧�", "obj_poppup_enemy_slash_Step_0_gml_28_0": "生棩日��快妤�楽?", "obj_poppup_enemy_slash_Step_0_gml_29_0": "該應用程式僅支援&作業系統2000。", @@ -6112,10 +6199,8 @@ "obj_poppup_enemy_slash_Step_0_gml_35_0": "...想睡...", "obj_poppup_enemy_slash_Step_0_gml_41_0": "看...&看&...我...", "obj_poppup_enemy_slash_Step_0_gml_48_0": "...開心...", - "obj_poppup_enemy_slash_Step_0_gml_110_0": "", "obj_poppup_enemy_slash_Step_0_gml_112_0": "* 弹出窗狗用狗狗的眼神乞求你&点击一个失效链接。", "obj_poppup_enemy_slash_Step_0_gml_113_0": "* 弹出窗狗正在仔细打扮&自己诡异Q弹的身躯。", - "obj_poppup_enemy_slash_Step_0_gml_116_0": "", "obj_poppup_enemy_slash_Step_0_gml_120_0": "利莫莓。", "obj_poppup_enemy_slash_Step_0_gml_123_0": "玩耍时间。", "obj_poppup_enemy_slash_Step_0_gml_126_0": "它的舌头被抵住&就不会感到饥饿。", @@ -6154,12 +6239,12 @@ "obj_poppup_enemy_slash_Step_0_gml_527_0": "* Noelle点到了游戏恐怖BUG合集的链接!/", "obj_poppup_enemy_slash_Step_0_gml_530_0": "* Noelle点到了&“圣诞辣妈,同城交友”的广告!/", "obj_poppup_enemy_slash_Step_0_gml_536_0": "\\E8* 啥-啥?!&我做错什么了吗??/%", - "obj_pushableblock_slash_Other_10_gml_61_0": "* (You haven't decided if you want to do the puzzle yet.)/%", - "obj_pushableblock_slash_Other_10_gml_66_0": "* (もう 動かない)/%", - "obj_pushableblock_slash_Other_10_gml_74_0": "* What!^1?&* The puzzle!?/", - "obj_pushableblock_slash_Other_10_gml_75_0": "\\E0* I thought you were on MY side^1, Kris./", + "obj_pushableblock_slash_Other_10_gml_61_0": "", + "obj_pushableblock_slash_Other_10_gml_66_0": "", + "obj_pushableblock_slash_Other_10_gml_74_0": "", + "obj_pushableblock_slash_Other_10_gml_75_0": "", "obj_pushableblock_slash_Other_10_gml_76_0": "\\E2* ...wait a sec^1.&* Those boxes..^1.!&* I get it!/", - "obj_pushableblock_slash_Other_10_gml_77_0": "* Wait a second^1, Kris!/%", + "obj_pushableblock_slash_Other_10_gml_77_0": "", "obj_queen_enemy_slash_Draw_0_gml_67_0": "护盾", "obj_queen_enemy_slash_Draw_0_gml_78_0": "(已防护)", "obj_queen_enemy_slash_Draw_0_gml_82_0": "(无防护)", @@ -6286,10 +6371,9 @@ "obj_queenart_red_slash_Other_10_gml_91_0": "* (你找到了一个复活薄荷!)/", "obj_queenart_red_slash_Other_10_gml_107_0": "* (这里什么都没有。)/%", "obj_queencar_slash_Step_0_gml_36_0": "\\EJ* Kris^1,我们走吧!/%", - "obj_queencar_slash_Step_0_gml_110_0": "* .../%", "obj_queencar_slash_Step_0_gml_147_0": "\\EM* 我们现在得想点办法&分散女王的注意力.../%", "obj_queencar_slash_Step_0_gml_155_0": "\\EM* 这些..^1. 小房子是什么?/%", - "obj_ralseienemy_slash_Step_0_gml_36_0": "* .../%", + "obj_ralseienemy_slash_Step_0_gml_36_0": "", "obj_ralseienemy_slash_Step_0_gml_42_0": "\\E0* 你看见那颗\\cR红心\\cW了吗,Kris?/", "obj_ralseienemy_slash_Step_0_gml_43_0": "* 那是你的\\cR灵魂\\cW,&可以说是你生命的精华所在!/", "obj_ralseienemy_slash_Step_0_gml_44_0": "\\EB* 在那里面^1,&承载着你的【意志力】..^1. &你的【同情心】.../", @@ -6304,7 +6388,7 @@ "obj_ralseienemy_slash_Step_0_gml_77_0": "\\E1* 呃..^1. &* Kris?/", "obj_ralseienemy_slash_Step_0_gml_78_0": "\\E8* 目前还没有子弹啦^1,&而且你也不能使用TP.../", "obj_ralseienemy_slash_Step_0_gml_79_0": "\\E8* 所以^1,呃^1,你可以不用再防御了?/%", - "obj_ralseienemy_slash_Step_0_gml_86_0": "* .../%", + "obj_ralseienemy_slash_Step_0_gml_86_0": "", "obj_ralseienemy_slash_Step_0_gml_96_0": "* 你获得了一件道具^1!&* 这^1,呃^1,很好^1,Kris.../%", "obj_ralseienemy_slash_Step_0_gml_107_0": "\\E3* 哇...哇哦^1,Kris!&* 那一下真棒!/", "obj_ralseienemy_slash_Step_0_gml_108_0": "\\E8* 难道你曾经战斗过吗...?/", @@ -6320,7 +6404,7 @@ "obj_ralseienemy_slash_Step_0_gml_131_0": "\\E8* 我已经知道你很擅长攻击啦!/%", "obj_ralseienemy_slash_Step_0_gml_137_0": "* 嘿^1,Kris^1?&* 我知道你很喜欢攻击^1,但是.../", "obj_ralseienemy_slash_Step_0_gml_138_0": "\\E8* 你不需要攻击也可以获胜的哦?/%", - "obj_ralseienemy_slash_Step_0_gml_144_0": "* .../", + "obj_ralseienemy_slash_Step_0_gml_144_0": "", "obj_ralseienemy_slash_Step_0_gml_145_0": "\\E1* Kris^1,你能^1,嗯^1,停下吗...?/%", "obj_ralseienemy_slash_Step_0_gml_154_0": "\\E3* 哦^1,抱歉^1,Kris^1!&* 我忘了说^1!&* 当你【攻击】时.../", "obj_ralseienemy_slash_Step_0_gml_155_0": "\\E8* 当标记进入框子后要再次按下Z!/%", @@ -6330,14 +6414,14 @@ "obj_ralseienemy_slash_Step_0_gml_162_0": "* Kris..^1. &* 试试按Z键。/%", "obj_ralseienemy_slash_Step_0_gml_163_0": "\\E6* 呃^1,Kris^1?&* 你能看见那条白色的长方形吗?/%", "obj_ralseienemy_slash_Step_0_gml_164_0": "\\E8* 你知道长方形吧^1?&* 长得像画砸了的正方形?/%", - "obj_ralseienemy_slash_Step_0_gml_168_0": "* .../%", + "obj_ralseienemy_slash_Step_0_gml_168_0": "", "obj_ralseienemy_slash_Step_0_gml_173_0": "* 嗯^1,我们还是试试别的吧?/%", "obj_ralseienemy_slash_Step_0_gml_174_0": "* 选择行动图标然后拥抱人偶!", - "obj_ralseienemy_slash_Step_0_gml_187_0": "* .../", + "obj_ralseienemy_slash_Step_0_gml_187_0": "", "obj_ralseienemy_slash_Step_0_gml_188_0": "\\E8* 嘿^1,Kris^1,我觉得^1,嗯.../", "obj_ralseienemy_slash_Step_0_gml_189_0": "\\E1* 今天已经没什么能教给你的了。/", "obj_ralseienemy_slash_Step_0_gml_190_0": "\\E0* 我们去找Susie吧。/%", - "obj_ralseienemy_slash_Step_0_gml_195_0": "* .../", + "obj_ralseienemy_slash_Step_0_gml_195_0": "", "obj_ralseienemy_slash_Step_0_gml_196_0": "* Kris^1,嗯.../", "obj_ralseienemy_slash_Step_0_gml_197_0": "\\E3* 我很难一边应付你的攻击一边教你东西。/", "obj_ralseienemy_slash_Step_0_gml_198_0": "\\E8* 我们休息一下,去找Susie吧^1,好吗?/%", @@ -6348,14 +6432,14 @@ "obj_ralseienemy_slash_Step_0_gml_223_0": "\\E8* 我们来学学如何行动^1,好吗?/%", "obj_ralseienemy_slash_Step_0_gml_224_0": "* 选择行动图标然后拥抱人偶!", "obj_ralseienemy_slash_Step_0_gml_231_0": "* K-Kris!^1?&* 你-你又没打中吗!?/", - "obj_ralseienemy_slash_Step_0_gml_232_0": "\\E1* .../", + "obj_ralseienemy_slash_Step_0_gml_232_0": "", "obj_ralseienemy_slash_Step_0_gml_233_0": "\\E2* 不过^1,如果你是想打我的话^1,也没关系的.../%", "obj_ralseienemy_slash_Step_0_gml_288_0": "* Ralsei看起来很期待。", "obj_ralseienemy_slash_Step_0_gml_334_0": "* 耶^1!&* 你做到了^1,Kris!/%", "obj_ralseienemy_slash_Step_0_gml_343_0": "* 哎呦..^2.&* 是太多了吗?/", "obj_ralseienemy_slash_Step_0_gml_344_0": "\\E8* 来^1,只弄一个试试!/%", "obj_ralseienemy_slash_Step_0_gml_369_0": "* 耶^1!&* 你做到了^1,Kris!/%", - "obj_ralseienemy_slash_Step_0_gml_378_0": "* .../%", + "obj_ralseienemy_slash_Step_0_gml_378_0": "", "obj_ralseienemy_slash_Step_0_gml_399_0": "\\E8* 没事的^1,Kris^1!&* 你躲开了一个!/%", "obj_ralseienemy_slash_Step_0_gml_410_0": "* 那么^1,我们来讲讲\\cY选择命令\\cW。/", "obj_ralseienemy_slash_Step_0_gml_411_0": "* 这些图标能让你为你的小队下达指令。/", @@ -6403,7 +6487,7 @@ "obj_readable_room1_slash_Other_10_gml_91_0": "* 装衣服的抽屉。/%", "obj_readable_room1_slash_Other_10_gml_96_0": "* 你的床。/%", "obj_readable_room1_slash_Other_10_gml_112_0": "* 这里有一片污渍。/%", - "obj_readable_room1_slash_Other_10_gml_113_0": "* れいぞうこに しゃしんが&  はってある^1。うつっているのは&  じぶんと^1 ママと おにいちゃんだ。/%", + "obj_readable_room1_slash_Other_10_gml_113_0": "", "obj_readable_room1_slash_Other_10_gml_120_0": "* 门锁住了。/%", "obj_readable_room1_slash_Other_10_gml_127_0": "* 只有你。/%", "obj_readable_room1_slash_Other_10_gml_133_0": "* (这是他们所谓之“你”。)/%", @@ -6461,17 +6545,17 @@ "obj_readable_room1_slash_Other_10_gml_362_0": "* (你打开了饮水台。^1)&* (水温温的。)/%", "obj_readable_room1_slash_Other_10_gml_363_0": "* (你打开了饮水台。^1)&* (不冷不热。)/%", "obj_readable_room1_slash_Other_10_gml_364_0": "* (你打开了饮水台。^1)&* (水很清凉。)/%", - "obj_readable_room1_slash_Other_10_gml_366_0": "* (カギが かかっている)/%", + "obj_readable_room1_slash_Other_10_gml_366_0": "", "obj_readable_room1_slash_Other_10_gml_367_0": "* (没这个必要。)/%", "obj_readable_room1_slash_Other_10_gml_368_0": "* (你在饮水台喝了一口水。)/", "obj_readable_room1_slash_Other_10_gml_370_0": "* 嘿嘿^1,人们都喜欢贴着水龙头喝^1,&你知道吧。/%", - "obj_readable_room1_slash_Other_10_gml_371_0": "* (カギが かかっている)/%", - "obj_readable_room1_slash_Other_10_gml_372_0": "* (ボロボロになった ぬいぐるみだ)/%", - "obj_readable_room1_slash_Other_10_gml_373_0": "* (あかりの スイッチだ)/%", - "obj_readable_room1_slash_Other_10_gml_374_0": "* (チェッカーのボードだ^1)&* (うえに チェスの ポーンが&  ちらばっている)/%", + "obj_readable_room1_slash_Other_10_gml_371_0": "", + "obj_readable_room1_slash_Other_10_gml_372_0": "", + "obj_readable_room1_slash_Other_10_gml_373_0": "", + "obj_readable_room1_slash_Other_10_gml_374_0": "", "obj_readable_room1_slash_Other_10_gml_375_0": "* 我刚刚不是在怂恿你^1,蠢蛋!/%", - "obj_readable_room1_slash_Other_10_gml_378_0": "* (みどりのカメを かいた&  つたない えだ。&  かみは きばんでいる)/", - "obj_readable_room1_slash_Other_10_gml_379_0": "* (「アルビン」と&  なまえが かいてある)/%", + "obj_readable_room1_slash_Other_10_gml_378_0": "", + "obj_readable_room1_slash_Other_10_gml_379_0": "", "obj_readable_room1_slash_Other_10_gml_380_0": "* (还没到洗手的时候。)/%", "obj_readable_room1_slash_Other_10_gml_382_0": "* 你喜欢^1,新鲜空气吗^1?&抑或是大步流星^1,--无论你用不用脚?/", "obj_readable_room1_slash_Other_10_gml_383_0": "* 尽管通常是^1,需要用脚的?/", @@ -6508,7 +6592,7 @@ "obj_readable_room1_slash_Other_10_gml_522_0": "* (正一百二十胞体...)/%", "obj_readable_room1_slash_Other_10_gml_526_0": "* (儿童读物。^1)&* (其中有一些曾经是你的。)/%", "obj_readable_room1_slash_Other_10_gml_530_0": "* (一幅你母亲肖像的简笔画。)/%", - "obj_readable_room1_slash_Other_10_gml_531_0": "* (暗くなるほど^1 よく見える)/%", + "obj_readable_room1_slash_Other_10_gml_531_0": "", "obj_readable_room1_slash_Other_10_gml_537_0": "* (某种简单的雕像。)&* (谁知道它是什么呢?)/%", "obj_readable_room1_slash_Other_10_gml_541_0": "* (よぉ~く見る^1と&  木の中に スイッチがある...!)/%", "obj_readable_room1_slash_Other_10_gml_543_0": "* (神之王座。)/%", @@ -6645,8 +6729,8 @@ "obj_readable_room1_slash_Other_10_gml_964_0": "\\E7* 送花给我?&我还想康复呢^1,老兄^1!&我可不想得花粉症!/", "obj_readable_room1_slash_Other_10_gml_966_0": "\\EC* ..^1. 你想让Kris告诉他爸爸&别再给你送花了吗?/", "obj_readable_room1_slash_Other_10_gml_968_0": "\\E2* 啥?不不不^1!&我什么时候说过?&哈哈哈!/%", - "obj_readable_room1_slash_Other_10_gml_975_0": "* どうした^1? おじさんだけ&  ネームプレートが あって&  うらやましいかい?/", - "obj_readable_room1_slash_Other_10_gml_976_0": "* まちの みんなの&  ぜいきんは^1 こんなものに&  つかわれてるんだぞぉ?/%", + "obj_readable_room1_slash_Other_10_gml_975_0": "", + "obj_readable_room1_slash_Other_10_gml_976_0": "", "obj_readable_room1_slash_Other_10_gml_983_0": "* (这个小镇的图画。)/%", "obj_readable_room1_slash_Other_10_gml_988_0": "* (是棵小松树。)/%", "obj_readable_room1_slash_Other_10_gml_991_0": "* (一把椅子。^1)&* (可能它也对政治感兴趣。)/%", @@ -6656,20 +6740,20 @@ "obj_readable_room1_slash_Other_10_gml_1012_0": "* (这是某种目录..^1. &下面有一本汽车杂志。)/%", "obj_readable_room1_slash_Other_10_gml_1017_0": "* (它被熟练地修整过。)/%", "obj_readable_room1_slash_Other_10_gml_1018_0": "* (里面是各种各样的花。)/%", - "obj_readable_room1_slash_Other_10_gml_1024_0": "* (ふつうの シンクだ)/%", + "obj_readable_room1_slash_Other_10_gml_1024_0": "", "obj_readable_room1_slash_Other_10_gml_1027_0": "* (这是一扇门。^1)&* (被锁住了。)/%", - "obj_readable_room1_slash_Other_10_gml_1028_0": "* (もとは せのたかい 1つのシンク&  だったのを はんぶんに きって&  2つに したのだろう)/%", + "obj_readable_room1_slash_Other_10_gml_1028_0": "", "obj_readable_room1_slash_Other_10_gml_1031_0": "* (几袋不同类型的土。)/%", "obj_readable_room1_slash_Other_10_gml_1032_0": "* (这是个肮脏的洒水壶。)/%", "obj_readable_room1_slash_Other_10_gml_1034_0": "* (一些脏兮兮的毛&堵在下水道里。)/%", "obj_readable_room1_slash_Other_10_gml_1036_0": "* (看样子她在休养自己的声带。)/%", "obj_readable_room1_slash_Other_10_gml_1037_0": "* (这是一台小电视。)&* (顶上有一些&超级英雄的漫画书。)/%", - "obj_readable_room1_slash_Other_10_gml_1041_0": "* (たなの なかを みた)/", + "obj_readable_room1_slash_Other_10_gml_1041_0": "", "obj_readable_room1_slash_Other_10_gml_1042_0": "* (...ものすごく ちいさなピアノが&  とってつけたように しまってある)/%", "obj_readable_room1_slash_Other_10_gml_1044_0": "* (这是一张便签。)&* (上面写着...)/", "obj_readable_room1_slash_Other_10_gml_1045_0": "* 又没交房租。屡错屡犯。&* 别再送花了。&* 赶紧开始卖。/", "obj_readable_room1_slash_Other_10_gml_1046_0": "* 给你最后一个月时间。& &         - C/%", - "obj_readable_room1_slash_Other_10_gml_1047_0": "* (レベルゼロ0では^1 たのしそうな かお^1)&* (レベル10では^1 たのしそうな&  かおで あせを かいている)/%", + "obj_readable_room1_slash_Other_10_gml_1047_0": "", "obj_readable_room1_slash_Other_10_gml_1051_0": "* オレは このしろの&  「白のまほうつかい」によって&  「いやしの間」に ゆうへいされた.../", "obj_readable_room1_slash_Other_10_gml_1052_0": "* (这是个充气床垫。^1)&* (显然不是超大号的...)/", "obj_readable_room1_slash_Other_10_gml_1054_0": "* Kris^1,你想在这过夜吗?/", @@ -6732,7 +6816,7 @@ "obj_readable_room1_slash_Other_10_gml_1278_0": "* 现在^1,你是时候打道回府了吧?/%", "obj_readable_room1_slash_Other_10_gml_1282_0": "* 我和你说了^1,你找的人不在家。/", "obj_readable_room1_slash_Other_10_gml_1283_0": "* ...啊^1,你只是想和我说话...?/", - "obj_readable_room1_slash_Other_10_gml_1284_0": "* .../", + "obj_readable_room1_slash_Other_10_gml_1284_0": "", "obj_readable_room1_slash_Other_10_gml_1285_0": "* 我很抱歉^1,美人儿^1。&* 恐怕我不值得你赏脸。/%", "obj_readable_room1_slash_Other_10_gml_1302_0": "* (门锁住了。)/%", "obj_readable_room1_slash_Other_10_gml_1353_0": "\\E7* 嘿^1,Kris^1,&这个免费牛奶简直太赞了。/", @@ -6883,12 +6967,12 @@ "obj_readable_room1_slash_Other_10_gml_2075_0": "\\E8* (我只能对Kris和老爸&说出“不”字...)/%", "obj_readable_room1_slash_Other_10_gml_2087_0": "* (一张女王牌清洁剂的广告。)/", "obj_readable_room1_slash_Other_10_gml_2088_0": "* (“我完全 不知道&这是 做什么 用的”)/%", - "obj_readable_room1_slash_Other_10_gml_2093_0": "\\Ee* .../%", + "obj_readable_room1_slash_Other_10_gml_2093_0": "", "obj_readable_room1_slash_Other_10_gml_2101_0": "* (门锁住了。)~1", "obj_readable_room1_slash_Other_10_gml_2106_0": "\\EB* Kris...?&为什么带我来这里...?/", "obj_readable_room1_slash_Other_10_gml_2107_0": "\\E4* 屋里没人..^1. &不^1,这附近根本一个人都没有。/", "obj_readable_room1_slash_Other_10_gml_2108_0": "\\E4* 这个地方..^1. &真让人起鸡皮疙瘩.../", - "obj_readable_room1_slash_Other_10_gml_2109_0": "\\Ee* .../", + "obj_readable_room1_slash_Other_10_gml_2109_0": "", "obj_readable_room1_slash_Other_10_gml_2110_0": "\\Ed* (虽说如此^1,&却有一种令人怀念的感觉...)/%", "obj_readable_room1_slash_Other_10_gml_2124_0": "* 妈妈咪叭^1!欢迎光临顶尖糕点房!/", "obj_readable_room1_slash_Other_10_gml_2125_0": "* 我们的特别大厨旋转烤制品的技巧&可是顶尖的!/%", @@ -7073,7 +7157,7 @@ "obj_rouxls_enemy_slash_Step_0_gml_51_0": "呃,Kaard先生?&我们要是&赢了怎么办?/%", "obj_rouxls_enemy_slash_Step_0_gml_57_0": "住手!!!!!&勿建屋舍!!!&胜利我所欲也!/%", "obj_rouxls_enemy_slash_Step_0_gml_85_0": "侵占屋舍!&占取最多&屋舍之人,&胜焉!/%", - "obj_rouxls_enemy_slash_Step_0_gml_86_0": ".../%", + "obj_rouxls_enemy_slash_Step_0_gml_86_0": "", "obj_rouxls_enemy_slash_Step_0_gml_102_0": "呃 哦/%", "obj_rouxls_enemy_slash_Step_0_gml_136_0": "* 你需要建更多的~1。", "obj_rouxls_enemy_slash_Step_0_gml_142_0": "* 你的城市还缺少~1。", @@ -7081,10 +7165,10 @@ "obj_rouxls_enemy_slash_Step_0_gml_147_1": "* 你不禁注意到敌舰是多么的~1。", "obj_rouxls_enemy_slash_Step_0_gml_150_0": "* 闻起来像样板房。", "obj_rouxls_enemy_slash_Step_0_gml_171_0": "* ROUXLS - 被雇来的小BOSS。&就算被解雇了也还会出现。&“吾亦可参加派对”/%", - "obj_rouxls_enemy_slash_Step_0_gml_178_0": "%%", - "obj_rouxls_enemy_slash_Step_0_gml_187_0": "%%", - "obj_rouxls_enemy_slash_Step_0_gml_196_0": "%%", - "obj_rouxls_enemy_slash_Step_0_gml_205_0": "%%", + "obj_rouxls_enemy_slash_Step_0_gml_178_0": "", + "obj_rouxls_enemy_slash_Step_0_gml_187_0": "", + "obj_rouxls_enemy_slash_Step_0_gml_196_0": "", + "obj_rouxls_enemy_slash_Step_0_gml_205_0": "", "obj_rouxls_enemy_slash_Step_0_gml_214_0": "* Ralsei进行了干扰!&Rouxls下回合会少占领一个房子。/%", "obj_rouxls_enemy_slash_Step_0_gml_215_0": "* Ralsei进行了干扰!&但是失败了。/%", "obj_rouxls_enemy_slash_Step_0_gml_230_0": "挺好", @@ -7133,7 +7217,7 @@ "obj_rudinnranger_slash_Step_0_gml_158_0": "* 方钻游骑兵 - 攻击 8 防御 0&* 五彩斑斓才是最理想的,&但它们都想变成红色。/%", "obj_rudinnranger_slash_Step_0_gml_167_0": "* 你试图解释为什么战斗是不好的。/", "obj_rudinnranger_slash_Step_0_gml_168_0": "* 可方钻游骑兵仅仅是变得\\cB疲惫\\cW了.../%", - "obj_rudinnranger_slash_Step_0_gml_169_0": "(くたびれ)", + "obj_rudinnranger_slash_Step_0_gml_169_0": "", "obj_rudinnranger_slash_Step_0_gml_181_0": "* Susie称赞了敌人...?/", "obj_rudinnranger_slash_Step_0_gml_184_0": "* “你的穿着一点也不恶心。”/%", "obj_rudinnranger_slash_Step_0_gml_185_0": "* “请继续撞击饮料机。”/%", @@ -7143,7 +7227,7 @@ "obj_rudinnranger_slash_Step_0_gml_193_0": "\\E2* 对想要我们命的人,有什么可&称赞的?/", "obj_rudinnranger_slash_Step_0_gml_195_0": "* 哦^1,Susie..^1. &要是你没有头绪的话^1,不妨试试.../", "obj_rudinnranger_slash_Step_0_gml_196_0": "* ...说些你想从别人嘴里听到的话?/", - "obj_rudinnranger_slash_Step_0_gml_198_0": "* .../", + "obj_rudinnranger_slash_Step_0_gml_198_0": "", "obj_rudinnranger_slash_Step_0_gml_199_0": "\\E2* “你已获准再次参加&免费火腿三明治节”/%", "obj_rudinnranger_slash_Step_0_gml_205_0": "* Susie并没有表扬敌人!/", "obj_rudinnranger_slash_Step_0_gml_207_0": "* 看吧^1,要是继续这么下去&就会变得尴尬了。/%", @@ -7162,7 +7246,7 @@ "obj_rudy_slash_Step_0_gml_55_0": "\\E2* 总之^1,神龙斗士III打得&怎么样了^1?&* 通关了没?/", "obj_rudy_slash_Step_0_gml_57_0": "\\E4* 没^1,还在冰之宫殿呢^1。&* 其实我是想.../", "obj_rudy_slash_Step_0_gml_58_0": "\\E9* ...想等着跟你一起&把它打通来着^1,老爸。/", - "obj_rudy_slash_Step_0_gml_60_0": "\\E4* ...&* Noelle.../", + "obj_rudy_slash_Step_0_gml_60_0": "", "obj_rudy_slash_Step_0_gml_61_0": "\\E5* 也许..^1. &* 也许你根本不该等。/", "obj_rudy_slash_Step_0_gml_63_0": "\\E7* 老..^1. 老爸?/", "obj_rudy_slash_Step_0_gml_65_0": "\\E7* 你就该把它带过来^1!&* 这鬼地方都快让我无聊死了!/", @@ -7178,9 +7262,9 @@ "obj_rudy_slash_Step_0_gml_82_0": "\\E8* 我走啦^1!老爸。/", "obj_rudy_slash_Step_0_gml_84_0": "\\E2* 拜拜^1,亲爱的。/%", "obj_rudy_slash_Step_0_gml_140_0": "* ...噢^1?&* 嗨^1,Kris...?/%", - "obj_savemenu_slash_Create_0_gml_8_0": "Kris", - "obj_savemenu_slash_Create_0_gml_75_0": "Kris", - "obj_savemenu_slash_Draw_0_gml_34_0": "LV ~1", + "obj_savemenu_slash_Create_0_gml_8_0": "", + "obj_savemenu_slash_Create_0_gml_75_0": "", + "obj_savemenu_slash_Draw_0_gml_34_0": "", "obj_savemenu_slash_Draw_0_gml_47_0": "保存", "obj_savemenu_slash_Draw_0_gml_48_0": "返回", "obj_savemenu_slash_Draw_0_gml_52_0": "文件已储存。", @@ -7252,8 +7336,8 @@ "obj_shop_ch2_music_slash_Draw_0_gml_175_0": "\\m1  *哐!&\\m3 砰!&\\m2 嘣!", "obj_shop_ch2_music_slash_Draw_0_gml_176_0": "\\m2  *美妙的歌曲。", "obj_shop_ch2_music_slash_Draw_0_gml_194_0": "播放音乐", - "obj_shop_ch2_music_slash_Draw_0_gml_195_0": "Lancer", - "obj_shop_ch2_music_slash_Draw_0_gml_250_0": "$~1", + "obj_shop_ch2_music_slash_Draw_0_gml_195_0": "", + "obj_shop_ch2_music_slash_Draw_0_gml_250_0": "", "obj_shop_ch2_music_slash_Draw_0_gml_262_0": "\\m3  *挑你喜欢& 的吧!", "obj_shop_ch2_music_slash_Draw_0_gml_266_0": "\\m1  *伙计们,& 多谢了!", "obj_shop_ch2_music_slash_Draw_0_gml_267_0": "\\m2  *我看& 不见。", @@ -7340,21 +7424,21 @@ "obj_shop_ch2_spamton_slash_Draw_0_gml_469_0": "\\E0我们来&做个交易吧。", "obj_shop_ch2_spamton_slash_Draw_0_gml_506_0": "出售库存物品", "obj_shop_ch2_spamton_slash_Draw_0_gml_507_0": "返回", - "obj_shop_ch2_spamton_slash_Draw_0_gml_511_0": " ", - "obj_shop_ch2_spamton_slash_Draw_0_gml_512_0": " ", - "obj_shop_ch2_spamton_slash_Draw_0_gml_513_0": " ", - "obj_shop_ch2_spamton_slash_Draw_0_gml_598_0": " ", - "obj_shop_ch2_spamton_slash_Draw_0_gml_599_0": " ", - "obj_shop_ch2_spamton_slash_Draw_0_gml_600_0": " ", - "obj_shop_ch2_spamton_slash_Draw_0_gml_601_0": " ", - "obj_shop_ch2_spamton_slash_Draw_0_gml_602_0": " ", - "obj_shop_ch2_spamton_slash_Draw_0_gml_603_0": " ", - "obj_shop_ch2_spamton_slash_Draw_0_gml_604_0": " ", + "obj_shop_ch2_spamton_slash_Draw_0_gml_511_0": "", + "obj_shop_ch2_spamton_slash_Draw_0_gml_512_0": "", + "obj_shop_ch2_spamton_slash_Draw_0_gml_513_0": "", + "obj_shop_ch2_spamton_slash_Draw_0_gml_598_0": "", + "obj_shop_ch2_spamton_slash_Draw_0_gml_599_0": "", + "obj_shop_ch2_spamton_slash_Draw_0_gml_600_0": "", + "obj_shop_ch2_spamton_slash_Draw_0_gml_601_0": "", + "obj_shop_ch2_spamton_slash_Draw_0_gml_602_0": "", + "obj_shop_ch2_spamton_slash_Draw_0_gml_603_0": "", + "obj_shop_ch2_spamton_slash_Draw_0_gml_604_0": "", "obj_shop_ch2_spamton_slash_Draw_0_gml_619_0": "$~1", "obj_shop_ch2_spamton_slash_Draw_0_gml_647_0": "\\E2* 千万不要忘了【点赞加订阅】&以便收到更多【链接已屏蔽】!/%", "obj_shop_ch2_spamton_slash_Draw_0_gml_648_0": "\\E2* 豪宅...地下室!&* 帮我找到它!!/%", "obj_shop_ch2_spamton_slash_Draw_0_gml_649_0": "\\E2* 这就要走!?&* 我要的磁盘呢!?!?/%", - "obj_shop_ch2_spamton_slash_Draw_0_gml_650_0": " /%", + "obj_shop_ch2_spamton_slash_Draw_0_gml_650_0": "", "obj_shop_ch2_spamton_slash_Draw_0_gml_662_0": "\\E0* KRIS!!^1!&你这块【小海绵】^1!&我就知道你肯定会在【【周六晚上】】&来我这的!/", "obj_shop_ch2_spamton_slash_Draw_0_gml_663_0": "\\E3* 毕竟^1,&你不是想成为【大人物】吗?&啊哈哈哈哈!!/", "obj_shop_ch2_spamton_slash_Draw_0_gml_664_0": "\\E0* 可是你该怎么做呢?/", @@ -7401,15 +7485,15 @@ "obj_shop_ch2_spamton_slash_Draw_0_gml_744_0": "\\E3* 咱们根本不需要其他人!!^1!&不需要什么【【画板架】】&还有【【阴极射线管】】!/", "obj_shop_ch2_spamton_slash_Draw_0_gml_745_0": "\\E4* 不需要什么【【男女老少】&还有【【半价优惠】】!!/", "obj_shop_ch2_spamton_slash_Draw_0_gml_746_0": "\\E5* 咱们不需要【【MIKE】】!!!/", - "obj_shop_ch2_spamton_slash_Draw_0_gml_747_0": "\\E8* ..^4.&* ..^1. Mike.../", + "obj_shop_ch2_spamton_slash_Draw_0_gml_747_0": "", "obj_shop_ch2_spamton_slash_Draw_0_gml_748_0": "\\E7* KRIS!!^1!千万别相信&【【你在电视上看到的!】】&* 听好了^1,&那家伙就是个罪犯^1!是个罪犯!!/%", "obj_shop_ch2_spamton_slash_Draw_0_gml_758_0": "\\E2* 你在害怕什么???&引用自【【百科全书】】&条目【【害怕】】/", "obj_shop_ch2_spamton_slash_Draw_0_gml_759_0": "\\E3* 根本没什么好怕的,&除了/", - "obj_shop_ch2_spamton_slash_Draw_0_gml_761_0": "\\E8* .../", + "obj_shop_ch2_spamton_slash_Draw_0_gml_761_0": "", "obj_shop_ch2_spamton_slash_Draw_0_gml_762_0": "* ..^1. 有人听得见吗^1?救救我..^1. /", "obj_shop_ch2_spamton_slash_Draw_0_gml_763_0": "\\E3* 啊??&啥??&不^1,我刚才什么都没听见!!!/", "obj_shop_ch2_spamton_slash_Draw_0_gml_764_0": "\\E7* ..^1. 不过好像有人在跟你说话。/%", - "obj_shop_ch2_spamton_slash_Draw_0_gml_768_0": "\\E0* .../%", + "obj_shop_ch2_spamton_slash_Draw_0_gml_768_0": "", "obj_shop_ch2_spamton_slash_Draw_0_gml_800_0": "转移", "obj_shop_ch2_spamton_slash_Draw_0_gml_801_0": "不要", "obj_shop_ch2_spamton_slash_Draw_0_gml_813_0": "\\E3* 大功告成!!^1!&我就知道你会【【请求已接受】】/", @@ -7422,7 +7506,7 @@ "obj_shop_ch2_swatch_slash_Create_0_gml_81_0_b": "防具#高贵而奢华#的胸针", "obj_shop_ch2_swatch_slash_Draw_0_gml_79_0": "\\E0* 无需忧虑。&* 我们永远在此恭候。", "obj_shop_ch2_swatch_slash_Draw_0_gml_81_0": "\\E0* 欢迎光临多彩咖啡馆。&* 让我们温暖您的一天。", - "obj_shop_ch2_swatch_slash_Draw_0_gml_120_0": "$~1", + "obj_shop_ch2_swatch_slash_Draw_0_gml_120_0": "", "obj_shop_ch2_swatch_slash_Draw_0_gml_132_0": "\\E0我们有为您&特别准备的&菜单。", "obj_shop_ch2_swatch_slash_Draw_0_gml_136_0": "\\E0女王感谢&您的惠顾。", "obj_shop_ch2_swatch_slash_Draw_0_gml_139_0": "\\E0慢慢来。&我们随时&恭候。", @@ -7431,7 +7515,7 @@ "obj_shop_ch2_swatch_slash_Draw_0_gml_142_0": "\\E2谢谢惠顾,&已经放入&您的库存。", "obj_shop_ch2_swatch_slash_Draw_0_gml_160_0": "$~1?", "obj_shop_ch2_swatch_slash_Draw_0_gml_213_0": "业务内容", - "obj_shop_ch2_swatch_slash_Draw_0_gml_214_0": "Rouxls Kaard", + "obj_shop_ch2_swatch_slash_Draw_0_gml_214_0": "", "obj_shop_ch2_swatch_slash_Draw_0_gml_217_0": "你的制服", "obj_shop_ch2_swatch_slash_Draw_0_gml_222_0": "地下室", "obj_shop_ch2_swatch_slash_Draw_0_gml_227_0": "地下室机器人", @@ -7486,7 +7570,7 @@ "obj_shop_ch2_swatch_slash_Draw_0_gml_481_0": "* 放松点^1。&来杯饮料^1,声音放轻一些.../", "obj_shop_ch2_swatch_slash_Draw_0_gml_482_0": "* 不然你会打扰到其他顾客的。/%", "obj_shop_ch2_swatch_slash_Draw_0_gml_487_0": "* ..^1. 原来是这么一回事。/", - "obj_shop_ch2_swatch_slash_Draw_0_gml_488_0": "* .../", + "obj_shop_ch2_swatch_slash_Draw_0_gml_488_0": "", "obj_shop_ch2_swatch_slash_Draw_0_gml_489_0": "* 那个机器人&原本是一位光之民梦想的具现化。/", "obj_shop_ch2_swatch_slash_Draw_0_gml_490_0": "* 而我也曾..^1. &参与到其制作当中。/", "obj_shop_ch2_swatch_slash_Draw_0_gml_491_0": "* 挥手之间^1,泼洒万千色彩。/", @@ -7509,13 +7593,13 @@ "obj_shop1_slash_Draw_0_gml_108_0": "交谈", "obj_shop1_slash_Draw_0_gml_109_0": "离开", "obj_shop1_slash_Draw_0_gml_139_0": "离开", - "obj_shop1_slash_Draw_0_gml_143_0": "$~1", + "obj_shop1_slash_Draw_0_gml_143_0": "", "obj_shop1_slash_Draw_0_gml_148_0": "\\E0你想买点&什么?", "obj_shop1_slash_Draw_0_gml_149_0": "\\E2谢谢惠顾。", "obj_shop1_slash_Draw_0_gml_150_0": "\\E0怎么,&看不上&它吗?", "obj_shop1_slash_Draw_0_gml_151_0": "\\E3你的钱&不够。", "obj_shop1_slash_Draw_0_gml_152_0": "\\E3你带的&东西&太多了。", - "obj_shop1_slash_Draw_0_gml_153_0": "/*", + "obj_shop1_slash_Draw_0_gml_153_0": "", "obj_shop1_slash_Draw_0_gml_159_0": "\\E2谢谢惠顾,&已经放入&您的库存。", "obj_shop1_slash_Draw_0_gml_167_0": "可以吗?", "obj_shop1_slash_Draw_0_gml_169_0": "是", @@ -7588,7 +7672,7 @@ "obj_shop1_slash_Draw_0_gml_472_0": "\\E3* 呃...^1?你指什么^1?&一位举止怪异的囚犯...?/", "obj_shop1_slash_Draw_0_gml_473_0": "\\E1* ...不^1,你不会是在说【他】吧...?/", "obj_shop1_slash_Draw_0_gml_474_0": "\\E3* ...这样啊^1。&* 我历尽千辛万苦把他关起来^1,&你却想把他放了?/", - "obj_shop1_slash_Draw_0_gml_475_0": "\\E0* .../", + "obj_shop1_slash_Draw_0_gml_475_0": "", "obj_shop1_slash_Draw_0_gml_476_0": "\\E1* 唔^1,既然你提到了他^1,&那么放任不管也会造成不少麻烦.../", "obj_shop1_slash_Draw_0_gml_477_0": "\\E0* 没错^1,也许交给你们这些英雄处理&会更妥当...?/", "obj_shop1_slash_Draw_0_gml_478_0": "\\E2* 反正^1,在这里不管发生什么事^1,&最终都无关紧要。/", @@ -7626,10 +7710,10 @@ "obj_shop1_slash_Draw_0_gml_585_0": "\\E0* 对..^1. 你肯定没注意到。/", "obj_shop1_slash_Draw_0_gml_586_0": "\\E3* 这颗水晶..^1. 几乎是隐形的^1,&而你一直都带着它。/", "obj_shop1_slash_Draw_0_gml_587_0": "\\E0* 来^1,我来帮你鉴定一下。/", - "obj_shop1_slash_Draw_0_gml_588_0": "\\E3* .../", + "obj_shop1_slash_Draw_0_gml_588_0": "", "obj_shop1_slash_Draw_0_gml_589_0": "\\E1* 难以置信^1!他居然还有暗影水晶.../", "obj_shop1_slash_Draw_0_gml_590_0": "\\E0* 暗影水晶^1,&此物因只见其影,却不见其形而得名。/", - "obj_shop1_slash_Draw_0_gml_591_0": "\\E0* .../", + "obj_shop1_slash_Draw_0_gml_591_0": "", "obj_shop1_slash_Draw_0_gml_592_0": "\\E3* 我有种预感^1,&你可能还会找到更多的暗影水晶.../", "obj_shop1_slash_Draw_0_gml_593_0": "\\E2* ..^1. 只要能你继续打败像\\cY他\\c0那样&强大的对手^1。/", "obj_shop1_slash_Draw_0_gml_594_0": "\\E0* 要是你搞到了更多的暗影水晶^1,&就把它们带过来吧!/", @@ -7644,9 +7728,9 @@ "obj_shop1_slash_Draw_0_gml_606_0": "\\E0* 或者说^1,这是属于你的幸运?&正是因为如此^1,你才获得了一颗新的水晶。/", "obj_shop1_slash_Draw_0_gml_607_0": "\\E2* 来^1,我替你拿着。哈哈哈!/%", "obj_shop1_slash_Draw_0_gml_619_0": "\\E1* ..^1. 这是什么?&看来你有一颗暗影水晶。/", - "obj_shop1_slash_Draw_0_gml_620_0": "\\E3* .../", + "obj_shop1_slash_Draw_0_gml_620_0": "", "obj_shop1_slash_Draw_0_gml_621_0": "\\E0* 很不幸的是^1,我觉得你可能在上次的&冒险中漏掉了一块。/", - "obj_shop1_slash_Draw_0_gml_622_0": "\\E0* .../", + "obj_shop1_slash_Draw_0_gml_622_0": "", "obj_shop1_slash_Draw_0_gml_623_0": "\\E3* 不过^1,你确定吗?&你确定你没打败过那个小丑...?/", "obj_shop1_slash_Draw_0_gml_624_0": "\\E0* 也许..^1. 你只是事后忘记了。/", "obj_shop1_slash_Draw_0_gml_625_0": "\\E2* 没错^1,只要你曾经击败过这个敌人.../", @@ -7676,7 +7760,7 @@ "obj_shop1_slash_Draw_0_gml_675_0_b": "\\E2* 我想你一定会喜欢有个&除我之外的选择^1,哈哈。/", "obj_shop1_slash_Draw_0_gml_681_0": "\\E1* ..^1. 看来你还没有拿到第二颗暗影水晶。/", "obj_shop1_slash_Draw_0_gml_682_0": "\\E0* 嗯。也能理解。&击败那种水平的对手绝非易事。/", - "obj_shop1_slash_Draw_0_gml_683_0": "\\E3* .../", + "obj_shop1_slash_Draw_0_gml_683_0": "", "obj_shop1_slash_Draw_0_gml_684_0": "\\E1* 好吧^1,当我没说。/", "obj_shop1_slash_Draw_0_gml_685_0": "\\E0* 虽说你是个光之民,&倒也没必要为此耗“光”自己的性命!/%", "obj_shop1_slash_Draw_0_gml_706_0": "* 你已经收集到了两颗暗影水晶。/", @@ -7702,7 +7786,7 @@ "obj_shop2_slash_Draw_0_gml_83_0": "出售", "obj_shop2_slash_Draw_0_gml_84_0": "交谈", "obj_shop2_slash_Draw_0_gml_85_0": "离开", - "obj_shop2_slash_Draw_0_gml_113_0": "$~1", + "obj_shop2_slash_Draw_0_gml_113_0": "", "obj_shop2_slash_Draw_0_gml_115_0": "离开", "obj_shop2_slash_Draw_0_gml_124_0": "\\E0汝等&需购&何物?", "obj_shop2_slash_Draw_0_gml_125_0": "\\E2谢谢你,&蠕虫。", @@ -7710,7 +7794,7 @@ "obj_shop2_slash_Draw_0_gml_127_0": "\\E3要不要&看看&其他货?", "obj_shop2_slash_Draw_0_gml_128_0": "\\E6汝&盘缠&紧缺。", "obj_shop2_slash_Draw_0_gml_129_0": "\\E3汝&行李&繁重。", - "obj_shop2_slash_Draw_0_gml_130_0": "/*", + "obj_shop2_slash_Draw_0_gml_130_0": "", "obj_shop2_slash_Draw_0_gml_144_0": "汝欲易之?", "obj_shop2_slash_Draw_0_gml_146_0": "是", "obj_shop2_slash_Draw_0_gml_147_0": "否", @@ -7767,7 +7851,7 @@ "obj_shop2_slash_Draw_0_gml_404_0": "\\E3* 还称呼吾为其“小爸爸”。/", "obj_shop2_slash_Draw_0_gml_405_0": "\\E6* 你个小水鳖^1,&汝等非亲非故^1!&吾顾之乃因其父也!/", "obj_shop2_slash_Draw_0_gml_406_0": "\\E6* 吾才不愿听你MP3里的歌^1!&吾更愿聆听那甜美的死亡之歌!/", - "obj_shop2_slash_Draw_0_gml_407_0": "\\E3* .../", + "obj_shop2_slash_Draw_0_gml_407_0": "", "obj_shop2_slash_Draw_0_gml_408_0": "\\E2* 不论如何^1,他现在怎么样了?/%", "obj_shop2_slash_Draw_0_gml_413_0": "\\E3* 或许我说得有点太过了...&国王的子嗣是件珍宝!/", "obj_shop2_slash_Draw_0_gml_414_0": "\\E6* 一件奇怪还气人的珍宝!/", @@ -7791,7 +7875,7 @@ "obj_spamton_attack_mode_slash_Step_0_gml_69_3": "$“实惠”$", "obj_spamton_attack_mode_slash_Step_0_gml_69_4": "$$价格$$", "obj_spamton_attack_mode_slash_Step_0_gml_69_5": "$$便宜货$$", - "obj_spamton_attack_mode_slash_Step_0_gml_69_6": "$$49.998", + "obj_spamton_attack_mode_slash_Step_0_gml_69_6": "", "obj_spamton_attack_mode_slash_Step_0_gml_70_0": "$$价值$$", "obj_spamton_attack_mode_slash_Step_0_gml_70_1": "$$价值$$", "obj_spamton_enemy_slash_Step_0_gml_20_0": "让自己&大起莱", @@ -7877,7 +7961,6 @@ "obj_spamton_enemy_slash_Step_0_gml_452_0": "\\M0错误/%", "obj_spamton_enemy_slash_Step_0_gml_464_0": "\\M3那么生意成交!!!/", "obj_spamton_enemy_slash_Step_0_gml_465_0": "\\M2和你这孩子谈生意&很是愉快!!!/%", - "obj_spamton_neo_enemy_slash_Other_11_gml_7_0": "", "obj_spamton_neo_enemy_slash_Step_0_gml_56_0": "KRIS!&这具身体不正是&【天堂】所赐!?/%", "obj_spamton_neo_enemy_slash_Step_0_gml_57_0": "我们会把那些&【无知】和&【无羞无耻】&的傻瓜送进&【玫瑰墓】里/%", "obj_spamton_neo_enemy_slash_Step_0_gml_58_0": "NEO 的&【丝滑口感】/%", @@ -8039,24 +8122,24 @@ "obj_spamton_neo_enemy_slash_Step_0_gml_1285_0": "* Ralsei试着扯断提线...&但是失败了!/%", "obj_spamton_neo_enemy_slash_Step_0_gml_1288_0": "* Ralsei扯断了提线!/%", "obj_spamton_neo_enemy_slash_Step_0_gml_1492_0": "尊敬的顾客&您正试图清空&我的HP!/%", - "obj_suitspuzzle_event_slash_Step_0_gml_16_0": "* Then add a mustache over there.../", - "obj_suitspuzzle_event_slash_Step_0_gml_18_0": "* Hee hee^1, like this?/", - "obj_suitspuzzle_event_slash_Step_0_gml_20_0": "* Haha^1! Yeah^1! Like that!/%", - "obj_suitspuzzle_event_slash_Step_0_gml_41_0": "* How's the scheming coming along^1, you two?/", - "obj_suitspuzzle_event_slash_Step_0_gml_43_0": "* Hey^1, don't LOOK^1! We aren't done yet!/", - "obj_suitspuzzle_event_slash_Step_0_gml_45_0": "* You're going to spoil it for yourselves!/", - "obj_suitspuzzle_event_slash_Step_0_gml_47_0": "* C'mon^1, we're working hard on this!/", - "obj_suitspuzzle_event_slash_Step_0_gml_49_0": "* Sorry^1! Sorry./%", + "obj_suitspuzzle_event_slash_Step_0_gml_16_0": "", + "obj_suitspuzzle_event_slash_Step_0_gml_18_0": "", + "obj_suitspuzzle_event_slash_Step_0_gml_20_0": "", + "obj_suitspuzzle_event_slash_Step_0_gml_41_0": "", + "obj_suitspuzzle_event_slash_Step_0_gml_43_0": "", + "obj_suitspuzzle_event_slash_Step_0_gml_45_0": "", + "obj_suitspuzzle_event_slash_Step_0_gml_47_0": "", + "obj_suitspuzzle_event_slash_Step_0_gml_49_0": "", "obj_suitspuzzle_event_slash_Step_0_gml_71_0": "* ...I notice there is a puzzle here./", - "obj_suitspuzzle_event_slash_Step_0_gml_73_0": "* Yeah?/", - "obj_suitspuzzle_event_slash_Step_0_gml_75_0": "* Would you two..^1. like to..^1. do it...?/", - "obj_suitspuzzle_event_slash_Step_0_gml_77_0": "* Uh^1, no^1. That's for heroes./", - "obj_suitspuzzle_event_slash_Step_0_gml_78_0": "* We're bad guys^1.&* We don't have to do anything./", - "obj_suitspuzzle_event_slash_Step_0_gml_80_0": "* Except scheme./", - "obj_suitspuzzle_event_slash_Step_0_gml_82_0": "* Yeah^1. Except scheme./", - "obj_suitspuzzle_event_slash_Step_0_gml_83_0": "* So have fun^1, we'll be here./%", + "obj_suitspuzzle_event_slash_Step_0_gml_73_0": "", + "obj_suitspuzzle_event_slash_Step_0_gml_75_0": "", + "obj_suitspuzzle_event_slash_Step_0_gml_77_0": "", + "obj_suitspuzzle_event_slash_Step_0_gml_78_0": "", + "obj_suitspuzzle_event_slash_Step_0_gml_80_0": "", + "obj_suitspuzzle_event_slash_Step_0_gml_82_0": "", + "obj_suitspuzzle_event_slash_Step_0_gml_83_0": "", "obj_suitspuzzle_event_slash_Step_0_gml_133_0": "* ...?/%", - "obj_suitspuzzle_event_slash_Step_0_gml_137_0": "* Just do the puzzle, Kris./%", + "obj_suitspuzzle_event_slash_Step_0_gml_137_0": "", "obj_suitspuzzle_event_slash_Step_0_gml_189_0": "* .../%", "obj_swatchling_enemy_slash_Step_0_gml_46_0": "我已与我的制服&相互协调。", "obj_swatchling_enemy_slash_Step_0_gml_54_0": "欢迎,&小主人们。", @@ -8068,9 +8151,6 @@ "obj_swatchling_enemy_slash_Step_0_gml_119_0": "忧郁蓝调。", "obj_swatchling_enemy_slash_Step_0_gml_122_0": "红光满面。", "obj_swatchling_enemy_slash_Step_0_gml_125_0": "飞黄腾达。", - "obj_swatchling_enemy_slash_Step_0_gml_147_0": "欢迎,&小主人们。", - "obj_swatchling_enemy_slash_Step_0_gml_150_0": "我们准备了&几种攻击模式&以供你们消遣。", - "obj_swatchling_enemy_slash_Step_0_gml_153_0": "请在方便的&时候享用吧。", "obj_swatchling_enemy_slash_Step_0_gml_157_0": "啧,啧。&看起来很痛。", "obj_swatchling_enemy_slash_Step_0_gml_160_0": "要不要&来点橘皮。", "obj_swatchling_enemy_slash_Step_0_gml_162_0": "我们会为你们擦亮鞋子&擦得又黑又蓝。", @@ -8193,9 +8273,7 @@ "obj_tasque_enemy_slash_Step_0_gml_252_1": "* 任呜对Noelle露出肚皮!/%", "obj_tasque_manager_enemy_slash_Other_24_gml_235_0": "* Kris像一只动物一样被驯服了!!/%", "obj_tasque_manager_enemy_slash_Other_24_gml_238_0": "* Kris被管理了!/%", - "obj_tasque_manager_enemy_slash_Step_0_gml_15_0": "", "obj_tasque_manager_enemy_slash_Step_0_gml_19_0": "进程!服务!&性能!详情!", - "obj_tasque_manager_enemy_slash_Step_0_gml_23_0": "", "obj_tasque_manager_enemy_slash_Step_0_gml_27_0": "皱巴巴的衣服?", "obj_tasque_manager_enemy_slash_Step_0_gml_30_0": "挺不直的腰板?", "obj_tasque_manager_enemy_slash_Step_0_gml_33_0": "调皮捣蛋的性格?", @@ -8210,7 +8288,6 @@ "obj_tasque_manager_enemy_slash_Step_0_gml_106_0": "你怎么敢&对我可爱的&猫猫出手!", "obj_tasque_manager_enemy_slash_Step_0_gml_112_0": "你怎么敢!", "obj_tasque_manager_enemy_slash_Step_0_gml_113_0": "你真是只&坏狗狗...", - "obj_tasque_manager_enemy_slash_Step_0_gml_161_0": "", "obj_tasque_manager_enemy_slash_Step_0_gml_164_0": "* 任呜管理姬列出她明年要穿的服饰。&全是同一件衣服。", "obj_tasque_manager_enemy_slash_Step_0_gml_167_0": "* 任呜管理姬在她的每日计划里的&所有条目旁边都写下“任务管理”。", "obj_tasque_manager_enemy_slash_Step_0_gml_170_0": "* 任呜管理姬用直发器拉直她的鞭子。", @@ -8261,39 +8338,40 @@ "obj_tem_school_slash_Other_10_gml_61_0": "* 然后 tem 就会..^1. &TEM 就会变得...!!/", "obj_tem_school_slash_Other_10_gml_62_0": "* 哈哈哈..^1. &说的好像你能想得出来似的。/%", "obj_tem_school_slash_Other_10_gml_66_0": "* (目前为止你所收集到的蛋。&总共有~1个。)/%", - "obj_tensionbar_slash_Draw_0_gml_18_0": "%", - "obj_tensionbar_slash_Draw_0_gml_25_0": "M", - "obj_tensionbar_slash_Draw_0_gml_26_0": "A", - "obj_tensionbar_slash_Draw_0_gml_27_0": "X", - "obj_thrashafter_event_slash_Step_0_gml_22_0": "* Y..^1. You got past Thrash World!?/", - "obj_thrashafter_event_slash_Step_0_gml_23_0": "\\E7* Hng..^1. Even with your help^1, I couldn't stop you.../", - "obj_thrashafter_event_slash_Step_0_gml_25_0": "* Hey^1, it's alright^1, Lancer^1. It was a nice effort./", - "obj_thrashafter_event_slash_Step_0_gml_27_0": "* Yeah^1, I mean^1, you gotta be realistic./", - "obj_thrashafter_event_slash_Step_0_gml_28_0": "\\E2* Nothing can stop us^1. Not even ourselves./", - "obj_thrashafter_event_slash_Step_0_gml_29_0": "Guys", - "obj_thrashafter_event_slash_Step_0_gml_30_0": "The (Censored) Squad", - "obj_thrashafter_event_slash_Step_0_gml_31_0": "The Lancer Fan Club", - "obj_thrashafter_event_slash_Step_0_gml_32_0": "The Friendly Fun Gang", - "obj_thrashafter_event_slash_Step_0_gml_34_0": "* That's right!^1!&* The ~1!!/", - "obj_thrashafter_event_slash_Step_0_gml_35_0": "* You crush everything that gets in your way!/%", - "obj_thrashafter_event_slash_Step_0_gml_59_0": "* Hmmm..^1. What am I supposed to do^1, then.../", - "obj_thrashafter_event_slash_Step_0_gml_60_0": "\\E4* If I can't stop you^1, then.../", - "obj_thrashafter_event_slash_Step_0_gml_61_0": "\\E5* Then^1, my dad will.../%", - "obj_thrashafter_event_slash_Step_0_gml_77_0": "* .../", - "obj_thrashafter_event_slash_Step_0_gml_78_0": "* Well.../", - "obj_thrashafter_event_slash_Step_0_gml_79_0": "\\E2* Why don't you come with us.../", - "obj_thrashafter_event_slash_Step_0_gml_80_0": "\\E1* And maybe you'll think of how to stop us on the way./%", - "obj_thrashafter_event_slash_Step_0_gml_104_0": "* R..^1. Really!^1?&* You'd let me tag along...!?/", - "obj_thrashafter_event_slash_Step_0_gml_106_0": "* Sure^1, why not^1. You can be an unofficial team member./", - "obj_thrashafter_event_slash_Step_0_gml_108_0": "* Wow^1! M..^1. Me!^1? In the ~1!?/", - "obj_thrashafter_event_slash_Step_0_gml_109_0": "\\E4* W..^1. Wait.../%", - "obj_thrashafter_event_slash_Step_0_gml_125_0": "* Can we have monogrammed track jackets?/", - "obj_thrashafter_event_slash_Step_0_gml_127_0": "* Yeah^1.&* Ralsei will make them./", + "obj_tensionbar_slash_Draw_0_gml_18_0": "", + "obj_tensionbar_slash_Draw_0_gml_25_0": "", + "obj_tensionbar_slash_Draw_0_gml_26_0": "", + "obj_tensionbar_slash_Draw_0_gml_27_0": "", + "obj_tensionbar_slash_Draw_0_gml_28_0": "", + "obj_thrashafter_event_slash_Step_0_gml_22_0": "", + "obj_thrashafter_event_slash_Step_0_gml_23_0": "", + "obj_thrashafter_event_slash_Step_0_gml_25_0": "", + "obj_thrashafter_event_slash_Step_0_gml_27_0": "", + "obj_thrashafter_event_slash_Step_0_gml_28_0": "", + "obj_thrashafter_event_slash_Step_0_gml_29_0": "", + "obj_thrashafter_event_slash_Step_0_gml_30_0": "", + "obj_thrashafter_event_slash_Step_0_gml_31_0": "", + "obj_thrashafter_event_slash_Step_0_gml_32_0": "", + "obj_thrashafter_event_slash_Step_0_gml_34_0": "", + "obj_thrashafter_event_slash_Step_0_gml_35_0": "", + "obj_thrashafter_event_slash_Step_0_gml_59_0": "", + "obj_thrashafter_event_slash_Step_0_gml_60_0": "", + "obj_thrashafter_event_slash_Step_0_gml_61_0": "", + "obj_thrashafter_event_slash_Step_0_gml_77_0": "", + "obj_thrashafter_event_slash_Step_0_gml_78_0": "", + "obj_thrashafter_event_slash_Step_0_gml_79_0": "", + "obj_thrashafter_event_slash_Step_0_gml_80_0": "", + "obj_thrashafter_event_slash_Step_0_gml_104_0": "", + "obj_thrashafter_event_slash_Step_0_gml_106_0": "", + "obj_thrashafter_event_slash_Step_0_gml_108_0": "", + "obj_thrashafter_event_slash_Step_0_gml_109_0": "", + "obj_thrashafter_event_slash_Step_0_gml_125_0": "", + "obj_thrashafter_event_slash_Step_0_gml_127_0": "", "obj_thrashafter_event_slash_Step_0_gml_129_0": "* 嗯..^1. 嗯!?/", "obj_thrashafter_event_slash_Step_0_gml_130_0": "\\E8* ...Okay^1, sure!/", - "obj_thrashafter_event_slash_Step_0_gml_132_0": "* Ahahah!!^1!&* Lancer joins the team!!!/%", + "obj_thrashafter_event_slash_Step_0_gml_132_0": "", "obj_thrashafter_event_slash_Step_0_gml_144_0": "* Lancer joined the party!      %%", - "obj_thrashafter_event_slash_Step_0_gml_159_0": "* No./%", + "obj_thrashafter_event_slash_Step_0_gml_159_0": "", "obj_throwralsei_slash_Step_0_gml_26_0": "* 按下~1以支配力量!", "obj_town_event_slash_Step_0_gml_120_0": "* (他们关上了帘子...)/%", "obj_town_event_slash_Step_0_gml_157_0": "* (你冲了马桶!)/%", @@ -8315,7 +8393,7 @@ "obj_unusedclassevent_slash_Step_0_gml_124_0": "\\E1* 这到底.../", "obj_unusedclassevent_slash_Step_0_gml_125_0": "\\E0* 这到底怎么回事...?/", "obj_unusedclassevent_slash_Step_0_gml_126_0": "\\E3* 感觉^1,&之前好像并不是在做梦之类的^1,&没错吧...?/%", - "obj_unusedclassevent_slash_Step_0_gml_141_0": "\\E0* .../", + "obj_unusedclassevent_slash_Step_0_gml_141_0": "", "obj_unusedclassevent_slash_Step_0_gml_142_0": "\\E3* 总之,像我说的,/", "obj_unusedclassevent_slash_Step_0_gml_143_0": "\\E2* 咱们就告诉Alphys&根本找不到粉笔吧。/%", "obj_unusedclassevent_slash_Step_0_gml_186_0": "* 你把地上的所有垃圾都聚集到一起.../%", @@ -8353,7 +8431,7 @@ "obj_virovirokun_enemy_slash_Step_0_gml_320_0": "\\E2* 如果我要那样做.../", "obj_virovirokun_enemy_slash_Step_0_gml_321_0": "\\EH* 还得穿上奇装异服才行。/%", "obj_virovirokun_enemy_slash_Step_0_gml_331_0": "嗯哼", - "obj_virovirokun_enemy_slash_Step_0_gml_344_0": "\\EH* .../%", + "obj_virovirokun_enemy_slash_Step_0_gml_344_0": "", "obj_virovirokun_enemy_slash_Step_0_gml_428_0": "* Ralsei煮好了一副药。/", "obj_virovirokun_enemy_slash_Step_0_gml_433_0": "\\EH* 生病了就应该喝汤吧?&张嘴“啊--”~!/", "obj_virovirokun_enemy_slash_Step_0_gml_436_0": "* 病被治好了!所有人的HP都提升了!/%", @@ -8447,28 +8525,28 @@ "obj_wordbullet_slash_Create_0_gml_29_0": "喜欢", "obj_wordbullet_slash_Create_0_gml_30_0": "评测", "obj_wordbullet_slash_Draw_0_gml_15_0": "$", - "obj_wordbullet_slash_Draw_0_gml_15_1": "@", + "obj_wordbullet_slash_Draw_0_gml_15_1": "", "obj_wordbullet_slash_Draw_0_gml_15_2": "!", "obj_wordbullet_slash_Draw_0_gml_15_3": "", - "obj_wordbullet_slash_Draw_0_gml_15_4": "&", - "obj_writer_slash_Alarm_0_gml_20_0": "\\", - "obj_writer_slash_Alarm_0_gml_31_0": "\\", - "obj_writer_slash_Draw_0_gml_72_0": "\\", - "obj_writer_slash_Draw_0_gml_272_0": "\\", + "obj_wordbullet_slash_Draw_0_gml_15_4": "", + "obj_writer_slash_Alarm_0_gml_20_0": "", + "obj_writer_slash_Alarm_0_gml_31_0": "", + "obj_writer_slash_Draw_0_gml_72_0": "", + "obj_writer_slash_Draw_0_gml_272_0": "", "obj_zpoppup_enemy_slash_Step_0_gml_489_0": "* Ralsei试着点击了一个&有城堡图片的广告.../", - "scr_84_debug_slash_scr_84_debug_gml_246_0": "test", - "scr_84_debug_slash_scr_84_debug_gml_282_0": "test", - "scr_84_debug_slash_scr_84_debug_gml_310_0": "test", + "scr_84_debug_slash_scr_84_debug_gml_246_0": "", + "scr_84_debug_slash_scr_84_debug_gml_282_0": "", + "scr_84_debug_slash_scr_84_debug_gml_310_0": "", "scr_84_load_ini_slash_scr_84_load_ini_gml_13_0": "[空白]", - "scr_actinfo_slash_scr_actinfo_gml_21_0": "Compliment", - "scr_actinfo_slash_scr_actinfo_gml_28_0": "DualBuster", - "scr_anyface_slash_scr_anyface_gml_23_0": "\\TX \\F0 \\E~1 \\FB \\TB %", - "scr_anyface_slash_scr_anyface_gml_24_0": "\\TX \\F0 \\E~1 \\Fa \\Ta %", - "scr_anyface_slash_scr_anyface_gml_27_0": "\\TX \\F0 \\E~1 \\FQ \\TQ %", - "scr_anyface_slash_scr_anyface_gml_28_0": "\\TX \\F0 \\E~1 \\Fs \\Ts %", - "scr_anyface_slash_scr_anyface_gml_28_0_b": "\\TX \\F0 \\E~1 \\F0 \\Tq %", - "scr_anyface_slash_scr_anyface_gml_29_0": "\\TX \\F0 \\E~1 \\FU \\TU %", - "scr_anyface_slash_scr_anyface_gml_30_0": "\\TX \\F0 \\E~1 \\Fb \\T0 %", + "scr_actinfo_slash_scr_actinfo_gml_21_0": "", + "scr_actinfo_slash_scr_actinfo_gml_28_0": "", + "scr_anyface_slash_scr_anyface_gml_23_0": "", + "scr_anyface_slash_scr_anyface_gml_24_0": "", + "scr_anyface_slash_scr_anyface_gml_27_0": "", + "scr_anyface_slash_scr_anyface_gml_28_0": "", + "scr_anyface_slash_scr_anyface_gml_28_0_b": "", + "scr_anyface_slash_scr_anyface_gml_29_0": "", + "scr_anyface_slash_scr_anyface_gml_30_0": "", "scr_armorinfo_slash_scr_armorinfo_gml_2_0": "", "scr_armorinfo_slash_scr_armorinfo_gml_7_0": "", "scr_armorinfo_slash_scr_armorinfo_gml_8_0": "喂,把手拿开!", @@ -8527,7 +8605,7 @@ "scr_armorinfo_slash_scr_armorinfo_gml_191_0": "钱,我需要钱。", "scr_armorinfo_slash_scr_armorinfo_gml_192_0": "可以刷信用卡吗?", "scr_armorinfo_slash_scr_armorinfo_gml_193_0": "和我的手表很搭!", - "scr_armorinfo_slash_scr_armorinfo_gml_203_0": "$ +5%", + "scr_armorinfo_slash_scr_armorinfo_gml_203_0": "", "scr_armorinfo_slash_scr_armorinfo_gml_210_0": "成对缎带", "scr_armorinfo_slash_scr_armorinfo_gml_211_0": "两条缎带。#你得梳个双马尾才能戴。", "scr_armorinfo_slash_scr_armorinfo_gml_212_0": "...没完没了了。", @@ -8539,25 +8617,25 @@ "scr_armorinfo_slash_scr_armorinfo_gml_234_0": "哎哟,打结了。", "scr_armorinfo_slash_scr_armorinfo_gml_235_0": "让我把结解开...", "scr_armorinfo_slash_scr_armorinfo_gml_236_0": "看起来像假日的彩灯...", - "scr_armorinfo_slash_scr_armorinfo_gml_247_0": " ", + "scr_armorinfo_slash_scr_armorinfo_gml_247_0": "", "scr_armorinfo_slash_scr_armorinfo_gml_254_0": "连锁甲", "scr_armorinfo_slash_scr_armorinfo_gml_255_0": "热度即硬度。转发给十个人,#否则降低防御等级。", "scr_armorinfo_slash_scr_armorinfo_gml_256_0": "该死,我好像被诅咒了。", "scr_armorinfo_slash_scr_armorinfo_gml_257_0": "一封信?...给我的...?", "scr_armorinfo_slash_scr_armorinfo_gml_258_0": "防具?(还挺酷的...)", - "scr_armorinfo_slash_scr_armorinfo_gml_269_0": " ", + "scr_armorinfo_slash_scr_armorinfo_gml_269_0": "", "scr_armorinfo_slash_scr_armorinfo_gml_276_0": "大人物领结", "scr_armorinfo_slash_scr_armorinfo_gml_277_0": "帅气的领结。#它的商标好像被剪掉了。", "scr_armorinfo_slash_scr_armorinfo_gml_278_0": "呃,我看起来像个书呆子。", "scr_armorinfo_slash_scr_armorinfo_gml_279_0": "能给我一对背带吗?", "scr_armorinfo_slash_scr_armorinfo_gml_280_0": "...我是不是要把它扎在头发上?", - "scr_armorinfo_slash_scr_armorinfo_gml_291_0": " ", + "scr_armorinfo_slash_scr_armorinfo_gml_291_0": "", "scr_armorinfo_slash_scr_armorinfo_gml_298_0": "尖刺腕带", "scr_armorinfo_slash_scr_armorinfo_gml_299_0": "一条满是尖刺的黑色腕带。#可能被自己的刺卡住。", "scr_armorinfo_slash_scr_armorinfo_gml_300_0": "谁能拒绝尖刺呢?", "scr_armorinfo_slash_scr_armorinfo_gml_301_0": "呃,我看起来...硬汉些没?", "scr_armorinfo_slash_scr_armorinfo_gml_302_0": "(Susie会喜欢这幅打扮吗?)", - "scr_armorinfo_slash_scr_armorinfo_gml_313_0": " ", + "scr_armorinfo_slash_scr_armorinfo_gml_313_0": "", "scr_armorinfo_slash_scr_armorinfo_gml_320_0": "银色怀表", "scr_armorinfo_slash_scr_armorinfo_gml_321_0": "擦弹效果对回合时长#的影响提高10%", "scr_armorinfo_slash_scr_armorinfo_gml_322_0": "扁人时间到!", @@ -8599,31 +8677,31 @@ "scr_armorinfo_slash_scr_armorinfo_gml_493_0": "钱,我需要钱。", "scr_armorinfo_slash_scr_armorinfo_gml_494_0": "两副眼镜?", "scr_armorinfo_slash_scr_armorinfo_gml_495_0": "(看着好像...挺眼熟?)", - "scr_armorinfo_slash_scr_armorinfo_gml_505_0": "$ +30%", + "scr_armorinfo_slash_scr_armorinfo_gml_505_0": "", "scr_armorinfo_slash_scr_armorinfo_gml_516_0": "皇室胸针", "scr_armorinfo_slash_scr_armorinfo_gml_517_0": "刻有女王的脸的胸针。#小心针尖。", "scr_armorinfo_slash_scr_armorinfo_gml_518_0": "雄震?哦,胸针,呵呵。", "scr_armorinfo_slash_scr_armorinfo_gml_519_0": "我是一块可爱的软木板!", "scr_armorinfo_slash_scr_armorinfo_gml_520_0": "女王...给了我这个。", - "scr_ascii_input_names_slash_scr_ascii_input_names_gml_5_0": "Backspace", - "scr_ascii_input_names_slash_scr_ascii_input_names_gml_6_0": "Tab", + "scr_ascii_input_names_slash_scr_ascii_input_names_gml_5_0": "", + "scr_ascii_input_names_slash_scr_ascii_input_names_gml_6_0": "", "scr_ascii_input_names_slash_scr_ascii_input_names_gml_7_0": "小键盘 5(NumLock OFF)", - "scr_ascii_input_names_slash_scr_ascii_input_names_gml_8_0": "Enter", - "scr_ascii_input_names_slash_scr_ascii_input_names_gml_9_0": "Pause", - "scr_ascii_input_names_slash_scr_ascii_input_names_gml_10_0": "Caps lock", + "scr_ascii_input_names_slash_scr_ascii_input_names_gml_8_0": "", + "scr_ascii_input_names_slash_scr_ascii_input_names_gml_9_0": "", + "scr_ascii_input_names_slash_scr_ascii_input_names_gml_10_0": "", "scr_ascii_input_names_slash_scr_ascii_input_names_gml_11_0": "Esc", - "scr_ascii_input_names_slash_scr_ascii_input_names_gml_12_0": "Space", - "scr_ascii_input_names_slash_scr_ascii_input_names_gml_13_0": "Page up", - "scr_ascii_input_names_slash_scr_ascii_input_names_gml_14_0": "Page down", - "scr_ascii_input_names_slash_scr_ascii_input_names_gml_15_0": "End", - "scr_ascii_input_names_slash_scr_ascii_input_names_gml_16_0": "Home", + "scr_ascii_input_names_slash_scr_ascii_input_names_gml_12_0": "", + "scr_ascii_input_names_slash_scr_ascii_input_names_gml_13_0": "", + "scr_ascii_input_names_slash_scr_ascii_input_names_gml_14_0": "", + "scr_ascii_input_names_slash_scr_ascii_input_names_gml_15_0": "", + "scr_ascii_input_names_slash_scr_ascii_input_names_gml_16_0": "", "scr_ascii_input_names_slash_scr_ascii_input_names_gml_17_0": "←", "scr_ascii_input_names_slash_scr_ascii_input_names_gml_18_0": "↑", "scr_ascii_input_names_slash_scr_ascii_input_names_gml_19_0": "→", "scr_ascii_input_names_slash_scr_ascii_input_names_gml_20_0": "↓", - "scr_ascii_input_names_slash_scr_ascii_input_names_gml_21_0": "Insert", - "scr_ascii_input_names_slash_scr_ascii_input_names_gml_22_0": "Delete", - "scr_ascii_input_names_slash_scr_ascii_input_names_gml_59_0": "Windows", + "scr_ascii_input_names_slash_scr_ascii_input_names_gml_21_0": "", + "scr_ascii_input_names_slash_scr_ascii_input_names_gml_22_0": "", + "scr_ascii_input_names_slash_scr_ascii_input_names_gml_59_0": "", "scr_ascii_input_names_slash_scr_ascii_input_names_gml_60_0": "小键盘 0", "scr_ascii_input_names_slash_scr_ascii_input_names_gml_61_0": "小键盘 1", "scr_ascii_input_names_slash_scr_ascii_input_names_gml_62_0": "小键盘 2", @@ -8639,19 +8717,19 @@ "scr_ascii_input_names_slash_scr_ascii_input_names_gml_72_0": "小键盘 -", "scr_ascii_input_names_slash_scr_ascii_input_names_gml_73_0": "小键盘 .", "scr_ascii_input_names_slash_scr_ascii_input_names_gml_74_0": "小键盘 /", - "scr_ascii_input_names_slash_scr_ascii_input_names_gml_87_0": "Num Lock", - "scr_ascii_input_names_slash_scr_ascii_input_names_gml_88_0": "Scroll Lock", + "scr_ascii_input_names_slash_scr_ascii_input_names_gml_87_0": "", + "scr_ascii_input_names_slash_scr_ascii_input_names_gml_88_0": "", "scr_ascii_input_names_slash_scr_ascii_input_names_gml_89_0": "Shift(左)", "scr_ascii_input_names_slash_scr_ascii_input_names_gml_90_0": "Shift(右)", "scr_ascii_input_names_slash_scr_ascii_input_names_gml_91_0": "Ctrl(左)", "scr_ascii_input_names_slash_scr_ascii_input_names_gml_92_0": "Ctrl(右)", "scr_ascii_input_names_slash_scr_ascii_input_names_gml_93_0": "Alt(左)", "scr_ascii_input_names_slash_scr_ascii_input_names_gml_94_0": "Alt(右)", - "scr_ascii_input_names_slash_scr_ascii_input_names_gml_103_0": "\\", - "scr_ascii_input_names_slash_scr_ascii_input_names_gml_107_0": "Shift", + "scr_ascii_input_names_slash_scr_ascii_input_names_gml_103_0": "", + "scr_ascii_input_names_slash_scr_ascii_input_names_gml_107_0": "", "scr_ascii_input_names_slash_scr_ascii_input_names_gml_108_0": "Ctrl", - "scr_ascii_input_names_slash_scr_ascii_input_names_gml_109_0": "Alt", - "scr_asgface_slash_scr_asgface_gml_1_0": "\\TX \\F0 \\E~1 \\FA \\TA %", + "scr_ascii_input_names_slash_scr_ascii_input_names_gml_109_0": "", + "scr_asgface_slash_scr_asgface_gml_1_0": "", "scr_encountersetup_slash_scr_encountersetup_gml_34_0": "* 是已知的。", "scr_encountersetup_slash_scr_encountersetup_gml_60_0": "* 测试敌人出现了。", "scr_encountersetup_slash_scr_encountersetup_gml_98_0": "* 方钻接近了!", @@ -8747,43 +8825,41 @@ "scr_fusion_info_slash_scr_fusion_info_gml_56_0": "擦弹区域+", "scr_fusion_info_slash_scr_fusion_info_gml_56_0_b": "攻击+", "scr_fusion_info_slash_scr_fusion_info_gml_67_0": "擦弹TP+", - "scr_gamestart_slash_scr_gamestart_gml_19_0": "", - "scr_gamestart_slash_scr_gamestart_gml_69_0": "Normal", + "scr_gamestart_slash_scr_gamestart_gml_69_0": "", "scr_gamestart_slash_scr_gamestart_gml_72_0": "", - "scr_gamestart_slash_scr_gamestart_gml_99_0": "Kris", - "scr_gamestart_slash_scr_gamestart_gml_100_0": "Susie", - "scr_gamestart_slash_scr_gamestart_gml_101_0": "Ralsei", + "scr_gamestart_slash_scr_gamestart_gml_99_0": "", + "scr_gamestart_slash_scr_gamestart_gml_100_0": "", + "scr_gamestart_slash_scr_gamestart_gml_101_0": "", "scr_gamestart_slash_scr_gamestart_gml_101_0_b": "", - "scr_gamestart_slash_scr_gamestart_gml_105_0": "Noelle", + "scr_gamestart_slash_scr_gamestart_gml_105_0": "", "scr_gamestart_slash_scr_gamestart_gml_231_0": "艾奇德娜", "scr_gamestart_slash_scr_gamestart_gml_282_0": "", "scr_gamestart_slash_scr_gamestart_gml_293_0": "", - "scr_gamestart_slash_scr_gamestart_gml_297_0": "%%", + "scr_gamestart_slash_scr_gamestart_gml_297_0": "", "scr_gamestart_slash_scr_gamestart_gml_300_0": "", "scr_gamestart_slash_scr_gamestart_gml_303_0": "", "scr_gamestart_slash_scr_gamestart_gml_305_0": "", "scr_gamestart_slash_scr_gamestart_gml_306_0": "", "scr_gamestart_slash_scr_gamestart_gml_307_0": "", - "scr_gamestart_slash_scr_gamestart_gml_325_0": "Yes", - "scr_gamestart_slash_scr_gamestart_gml_326_0": "No", - "scr_gamestart_slash_scr_gamestart_gml_327_0": "Maybe", - "scr_gamestart_slash_scr_gamestart_gml_328_0": "Don't know", - "scr_gamestart_slash_scr_gamestart_gml_341_0": "", + "scr_gamestart_slash_scr_gamestart_gml_325_0": "", + "scr_gamestart_slash_scr_gamestart_gml_326_0": "", + "scr_gamestart_slash_scr_gamestart_gml_327_0": "", + "scr_gamestart_slash_scr_gamestart_gml_328_0": "", "scr_gamestart_slash_scr_gamestart_gml_353_0": "", "scr_gamestart_slash_scr_gamestart_gml_356_0": "家", "scr_gamestart_slash_scr_gamestart_gml_356_0_b": "是", "scr_gamestart_slash_scr_gamestart_gml_357_0": "否", "scr_gamestart_slash_scr_gamestart_gml_358_0": "有可能", "scr_gamestart_slash_scr_gamestart_gml_359_0": "不知道", - "scr_gamestart_slash_scr_gamestart_gml_396_0": "Kris", - "scr_itemdesc_b_slash_scr_itemdesc_b_gml_11_0": "Heals#60HP", - "scr_itemdesc_b_slash_scr_itemdesc_b_gml_14_0": "Revive#ally#(Weak)", + "scr_gamestart_slash_scr_gamestart_gml_396_0": "", + "scr_itemdesc_b_slash_scr_itemdesc_b_gml_11_0": "", + "scr_itemdesc_b_slash_scr_itemdesc_b_gml_14_0": "", "scr_itemdesc_oldtype_slash_scr_itemdesc_oldtype_gml_2_0": "* 不可能。/%", "scr_itemdesc_oldtype_slash_scr_itemdesc_oldtype_gml_6_0": "* 一股虚无填满了你的双手。/%", "scr_itemdesc_oldtype_slash_scr_itemdesc_oldtype_gml_9_0": "* “黑暗糖果” - 回复60HP&* 棉花糖口味的红黑色星星。/%", "scr_itemdesc_oldtype_slash_scr_itemdesc_oldtype_gml_12_0": "* “生命露水” - 复活队友(效果弱)&* 发光的露水...&* 能够滋润你的【灵魂】。/%", - "scr_itemdesc_single_slash_scr_itemdesc_single_gml_1_0": "---", - "scr_itemdesc_single_slash_scr_itemdesc_single_gml_5_0": "---", + "scr_itemdesc_single_slash_scr_itemdesc_single_gml_1_0": "", + "scr_itemdesc_single_slash_scr_itemdesc_single_gml_5_0": "", "scr_itemdesc_single_slash_scr_itemdesc_single_gml_8_0": "回复40HP。一颗红黑相间的星星,#口感像棉花糖。", "scr_itemdesc_single_slash_scr_itemdesc_single_gml_11_0": "使倒下的同伴HP回复至全满。#一颗薄荷味的绿色水晶。", "scr_itemdesc_single_slash_scr_itemdesc_single_gml_14_0": "闪烁着点点微光的碎片。#用途不明。", @@ -8825,6 +8901,7 @@ "scr_itemget_anytype_text_slash_scr_itemget_anytype_text_gml_44_0": "重要物品", "scr_itemget_anytype_text_slash_scr_itemget_anytype_text_gml_51_0": "储钱洞", "scr_itemget_anytype_text_slash_scr_itemget_anytype_text_gml_52_0": "黑暗币", + "scr_itemget_anytype_text_slash_scr_itemget_anytype_text_gml_52_1": "", "scr_iteminfo_slash_scr_iteminfo_gml_15_0": "黑暗糖果", "scr_iteminfo_slash_scr_iteminfo_gml_16_0": "回复#40HP", "scr_iteminfo_slash_scr_iteminfo_gml_22_0": "复活薄荷", @@ -9036,9 +9113,9 @@ "scr_itemuse_slash_scr_itemuse_gml_624_0": "* 你把水晶举到眼前。/", "scr_itemuse_slash_scr_itemuse_gml_625_0": "* ..^1. 但是什么也没有发生。/%", "scr_itemuse_slash_scr_itemuse_gml_629_0": "* 看来这东西没什么用。/%", - "scr_keyiteminfo_slash_scr_keyiteminfo_gml_2_0": "---", + "scr_keyiteminfo_slash_scr_keyiteminfo_gml_2_0": "", "scr_keyiteminfo_slash_scr_keyiteminfo_gml_3_0": "", - "scr_keyiteminfo_slash_scr_keyiteminfo_gml_9_0": "---", + "scr_keyiteminfo_slash_scr_keyiteminfo_gml_9_0": "", "scr_keyiteminfo_slash_scr_keyiteminfo_gml_10_0": "", "scr_keyiteminfo_slash_scr_keyiteminfo_gml_13_0": "可以用来打电话。", "scr_keyiteminfo_slash_scr_keyiteminfo_gml_14_0": "手机", @@ -9056,10 +9133,10 @@ "scr_keyiteminfo_slash_scr_keyiteminfo_gml_40_0": "钥匙碎片C", "scr_keyiteminfo_slash_scr_keyiteminfo_gml_43_0": "吼吼吼!我是个坚强的小男孩!#把我当作物品一样使用就好!", "scr_keyiteminfo_slash_scr_keyiteminfo_gml_46_0": "吼吼吼!ROUXLS跳出了你的口袋!#多么的(小)爸气外露!", - "scr_keyiteminfo_slash_scr_keyiteminfo_gml_48_0": "Lancer", + "scr_keyiteminfo_slash_scr_keyiteminfo_gml_48_0": "", "scr_keyiteminfo_slash_scr_keyiteminfo_gml_50_0": "吼吼吼!那个游戏看上去好好玩!#下次让我来当板凳!", "scr_keyiteminfo_slash_scr_keyiteminfo_gml_52_0": "汝正凝视之人无上俊美。#此人拥有常人绝无可能比拟之智慧,其至高之才甚至超越喂让我把话说完", - "scr_keyiteminfo_slash_scr_keyiteminfo_gml_53_0": "Rouxls Kaard", + "scr_keyiteminfo_slash_scr_keyiteminfo_gml_53_0": "", "scr_keyiteminfo_slash_scr_keyiteminfo_gml_54_0": "外面听起来有牛奶。啪叽!#你们三个没有背着我吸收牛奶吧?", "scr_keyiteminfo_slash_scr_keyiteminfo_gml_56_0": "从一台奇怪的机器上拿到的磁盘。#是不是有人想要这个来着?", "scr_keyiteminfo_slash_scr_keyiteminfo_gml_57_0": "空磁盘", @@ -9083,14 +9160,14 @@ "scr_keyiteminfo_slash_scr_keyiteminfo_gml_105_0": "吼吼!真是场精彩的少年冒险。#我该伸个懒腰休息下了...", "scr_keyiteminfo_slash_scr_keyiteminfo_gml_109_0": "欧啦啦!那位英俊的小胡子少年是谁!#我好像恋爱啦!", "scr_keyiteminfo_slash_scr_keyiteminfo_gml_114_0": "(气喘吁吁)好啦,我又回到你的口袋里了!#你可以随时使用我的力量!", - "scr_keyiteminfo_slash_scr_keyiteminfo_gml_123_0": "Starwalker", + "scr_keyiteminfo_slash_scr_keyiteminfo_gml_123_0": "", "scr_keyiteminfo_slash_scr_keyiteminfo_gml_124_0": "最初的                     #         (Starwalker)", "scr_keyiteminfo_slash_scr_keyiteminfo_gml_126_0": "呜呼,陛下!吾,您最为忠实之奴仆,#正栖身于此,未尝离去!", "scr_keyiteminfo_slash_scr_keyiteminfo_gml_132_0": "纯净水晶", "scr_keyiteminfo_slash_scr_keyiteminfo_gml_133_0": "某只猫的力量将暗影净化了", - "scr_kingface_slash_scr_kingface_gml_3_0": "\\TX \\F0 \\E~1 \\FK \\TK %", - "scr_kingface_slash_scr_kingface_gml_7_0": "\\TX \\F0 \\E~1 \\TK %", - "scr_lanface_slash_scr_lanface_gml_1_0": "\\TX \\F0 \\E~1 \\FL \\TL %", + "scr_kingface_slash_scr_kingface_gml_3_0": "", + "scr_kingface_slash_scr_kingface_gml_7_0": "", + "scr_lanface_slash_scr_lanface_gml_1_0": "", "scr_litemdesc_slash_scr_litemdesc_gml_1_0": "* 你的视线变得模糊。/%", "scr_litemdesc_slash_scr_litemdesc_gml_5_0": "* 你的心跳加快了。/%", "scr_litemdesc_slash_scr_litemdesc_gml_8_0": "* “热巧克力” - 顶上缀有兔子&形状的手工棉花糖。/%", @@ -9230,13 +9307,13 @@ "scr_litemuseb_slash_scr_litemuseb_gml_366_0": "* (叮铃^1,叮铃...)/", "scr_litemuseb_slash_scr_litemuseb_gml_368_0": "\\E0* 你好^1,这里是Dreemurr家。/", "scr_litemuseb_slash_scr_litemuseb_gml_369_0": "\\E8* 什么?&你想和“Susie”讲两句?/", - "scr_litemuseb_slash_scr_litemuseb_gml_370_0": "\\E3* .../", + "scr_litemuseb_slash_scr_litemuseb_gml_370_0": "", "scr_litemuseb_slash_scr_litemuseb_gml_371_0": "\\E4* 当然可以^1,给你电话。/", "scr_litemuseb_slash_scr_litemuseb_gml_373_0": "\\EH* 靠啦KRIS&给我洗手去啊!!!/%", "scr_litemuseb_slash_scr_litemuseb_gml_378_0": "* (叮铃^1,叮铃...)/", "scr_litemuseb_slash_scr_litemuseb_gml_380_0": "\\E1* Kris^1,电话响了。/", "scr_litemuseb_slash_scr_litemuseb_gml_381_0": "\\E0* 你能替我接一下吗,&我还在忙着.../", - "scr_litemuseb_slash_scr_litemuseb_gml_382_0": "\\E8* .../", + "scr_litemuseb_slash_scr_litemuseb_gml_382_0": "", "scr_litemuseb_slash_scr_litemuseb_gml_383_0": "\\E3* Kris?&你为什么要打家里的电话?/%", "scr_litemuseb_slash_scr_litemuseb_gml_389_0": "* (叮铃^1,叮铃...)/", "scr_litemuseb_slash_scr_litemuseb_gml_390_0": "* (大家好像都忙到没空去接这个电话...)/%", @@ -9244,14 +9321,14 @@ "scr_lrecoitem_slash_scr_lrecoitem_gml_16_0": "* 你的HP达到最大值了。/%", "scr_monster_make_tired_slash_scr_monster_make_tired_gml_1_0": "(疲惫)", "scr_monster_statreset_slash_scr_monster_statreset_gml_5_0": "", - "scr_monstersetup_slash_scr_monstersetup_gml_4_0": "Enemy", + "scr_monstersetup_slash_scr_monstersetup_gml_4_0": "", "scr_monstersetup_slash_scr_monstersetup_gml_7_0": "敌人", "scr_monstersetup_slash_scr_monstersetup_gml_19_0": "查看", - "scr_monstersetup_slash_scr_monstersetup_gml_20_0": "Victory", + "scr_monstersetup_slash_scr_monstersetup_gml_20_0": "", "scr_monstersetup_slash_scr_monstersetup_gml_21_0": "警告", - "scr_monstersetup_slash_scr_monstersetup_gml_22_0": "Victory (D)", + "scr_monstersetup_slash_scr_monstersetup_gml_22_0": "", "scr_monstersetup_slash_scr_monstersetup_gml_23_0": "胜利", - "scr_monstersetup_slash_scr_monstersetup_gml_24_0": "Victory (S)", + "scr_monstersetup_slash_scr_monstersetup_gml_24_0": "", "scr_monstersetup_slash_scr_monstersetup_gml_25_0": "同步舞蹈", "scr_monstersetup_slash_scr_monstersetup_gml_28_0": "胜利(S)", "scr_monstersetup_slash_scr_monstersetup_gml_30_0": "说教", @@ -9259,24 +9336,24 @@ "scr_monstersetup_slash_scr_monstersetup_gml_35_0": "同步舞蹈", "scr_monstersetup_slash_scr_monstersetup_gml_40_0": "酷酷舞蹈", "scr_monstersetup_slash_scr_monstersetup_gml_42_0": "同步舞蹈", - "scr_monstersetup_slash_scr_monstersetup_gml_50_0": "Lancer", + "scr_monstersetup_slash_scr_monstersetup_gml_50_0": "", "scr_monstersetup_slash_scr_monstersetup_gml_61_0": "查看", "scr_monstersetup_slash_scr_monstersetup_gml_64_0": "警告", "scr_monstersetup_slash_scr_monstersetup_gml_67_0": "称赞", "scr_monstersetup_slash_scr_monstersetup_gml_69_0": "* Lancer闯了进来!", "scr_monstersetup_slash_scr_monstersetup_gml_77_0": "训练人偶", - "scr_monstersetup_slash_scr_monstersetup_gml_83_0": "Ralsei", + "scr_monstersetup_slash_scr_monstersetup_gml_83_0": "", "scr_monstersetup_slash_scr_monstersetup_gml_88_0": "查看", "scr_monstersetup_slash_scr_monstersetup_gml_90_0": "拥抱", "scr_monstersetup_slash_scr_monstersetup_gml_92_0": "拥抱Ralsei", "scr_monstersetup_slash_scr_monstersetup_gml_96_0": "* 教学开始了。", - "scr_monstersetup_slash_scr_monstersetup_gml_97_0": "Hug", - "scr_monstersetup_slash_scr_monstersetup_gml_98_0": "* The tutorial begins.", - "scr_monstersetup_slash_scr_monstersetup_gml_100_0": "Ralsei", + "scr_monstersetup_slash_scr_monstersetup_gml_97_0": "", + "scr_monstersetup_slash_scr_monstersetup_gml_98_0": "", + "scr_monstersetup_slash_scr_monstersetup_gml_100_0": "", "scr_monstersetup_slash_scr_monstersetup_gml_112_0": "查看", "scr_monstersetup_slash_scr_monstersetup_gml_114_0": "拥抱", "scr_monstersetup_slash_scr_monstersetup_gml_115_0": "* 教学开始了。", - "scr_monstersetup_slash_scr_monstersetup_gml_119_0": "せっきょう", + "scr_monstersetup_slash_scr_monstersetup_gml_119_0": "", "scr_monstersetup_slash_scr_monstersetup_gml_121_0": "方钻", "scr_monstersetup_slash_scr_monstersetup_gml_132_0": "查看", "scr_monstersetup_slash_scr_monstersetup_gml_134_0": "说服", @@ -9289,18 +9366,18 @@ "scr_monstersetup_slash_scr_monstersetup_gml_171_0": "警告", "scr_monstersetup_slash_scr_monstersetup_gml_177_0": "S-恭维", "scr_monstersetup_slash_scr_monstersetup_gml_188_0": "三头草", - "scr_monstersetup_slash_scr_monstersetup_gml_190_0": "Politics", - "scr_monstersetup_slash_scr_monstersetup_gml_192_0": "Religion", - "scr_monstersetup_slash_scr_monstersetup_gml_194_0": "Sports", - "scr_monstersetup_slash_scr_monstersetup_gml_199_0": "Kindness", + "scr_monstersetup_slash_scr_monstersetup_gml_190_0": "", + "scr_monstersetup_slash_scr_monstersetup_gml_192_0": "", + "scr_monstersetup_slash_scr_monstersetup_gml_194_0": "", + "scr_monstersetup_slash_scr_monstersetup_gml_199_0": "", "scr_monstersetup_slash_scr_monstersetup_gml_201_0": "查看", - "scr_monstersetup_slash_scr_monstersetup_gml_203_0": "GunControl", + "scr_monstersetup_slash_scr_monstersetup_gml_203_0": "", "scr_monstersetup_slash_scr_monstersetup_gml_207_0": "政治", - "scr_monstersetup_slash_scr_monstersetup_gml_208_0": "Trees", + "scr_monstersetup_slash_scr_monstersetup_gml_208_0": "", "scr_monstersetup_slash_scr_monstersetup_gml_209_0": "宗教", - "scr_monstersetup_slash_scr_monstersetup_gml_210_0": "Ghosts", + "scr_monstersetup_slash_scr_monstersetup_gml_210_0": "", "scr_monstersetup_slash_scr_monstersetup_gml_211_0": "运动", - "scr_monstersetup_slash_scr_monstersetup_gml_212_0": "Games", + "scr_monstersetup_slash_scr_monstersetup_gml_212_0": "", "scr_monstersetup_slash_scr_monstersetup_gml_216_0": "温柔", "scr_monstersetup_slash_scr_monstersetup_gml_218_0": "可爱男孩子", "scr_monstersetup_slash_scr_monstersetup_gml_220_0": "枪支管控", @@ -9313,7 +9390,7 @@ "scr_monstersetup_slash_scr_monstersetup_gml_257_0": "赌博", "scr_monstersetup_slash_scr_monstersetup_gml_259_0": "X-赌博", "scr_monstersetup_slash_scr_monstersetup_gml_269_0": "跳棋", - "scr_monstersetup_slash_scr_monstersetup_gml_274_0": "けいこく", + "scr_monstersetup_slash_scr_monstersetup_gml_274_0": "", "scr_monstersetup_slash_scr_monstersetup_gml_280_0": "查看", "scr_monstersetup_slash_scr_monstersetup_gml_288_0": "X-称赞", "scr_monstersetup_slash_scr_monstersetup_gml_291_0": "警告", @@ -9327,11 +9404,11 @@ "scr_monstersetup_slash_scr_monstersetup_gml_346_0": "晚安", "scr_monstersetup_slash_scr_monstersetup_gml_348_0": "安眠曲", "scr_monstersetup_slash_scr_monstersetup_gml_354_0": "警告", - "scr_monstersetup_slash_scr_monstersetup_gml_364_0": "Lancer", + "scr_monstersetup_slash_scr_monstersetup_gml_364_0": "", "scr_monstersetup_slash_scr_monstersetup_gml_375_0": "查看", - "scr_monstersetup_slash_scr_monstersetup_gml_377_0": "ぶんせき", + "scr_monstersetup_slash_scr_monstersetup_gml_377_0": "", "scr_monstersetup_slash_scr_monstersetup_gml_383_0": "尘兔", - "scr_monstersetup_slash_scr_monstersetup_gml_386_0": "けいこく", + "scr_monstersetup_slash_scr_monstersetup_gml_386_0": "", "scr_monstersetup_slash_scr_monstersetup_gml_394_0": "查看", "scr_monstersetup_slash_scr_monstersetup_gml_396_0": "吹气", "scr_monstersetup_slash_scr_monstersetup_gml_398_0": "吹走全体", @@ -9340,7 +9417,7 @@ "scr_monstersetup_slash_scr_monstersetup_gml_423_0": "查看", "scr_monstersetup_slash_scr_monstersetup_gml_425_0": "重新组装", "scr_monstersetup_slash_scr_monstersetup_gml_429_0": "挑战", - "scr_monstersetup_slash_scr_monstersetup_gml_432_0": "ぶんせき", + "scr_monstersetup_slash_scr_monstersetup_gml_432_0": "", "scr_monstersetup_slash_scr_monstersetup_gml_438_0": "拼图怪", "scr_monstersetup_slash_scr_monstersetup_gml_449_0": "查看", "scr_monstersetup_slash_scr_monstersetup_gml_451_0": "交友", @@ -9352,31 +9429,31 @@ "scr_monstersetup_slash_scr_monstersetup_gml_487_0": "谈体育", "scr_monstersetup_slash_scr_monstersetup_gml_490_0": "谈动物", "scr_monstersetup_slash_scr_monstersetup_gml_492_0": "谈树木", - "scr_monstersetup_slash_scr_monstersetup_gml_496_0": "ぶんせき", - "scr_monstersetup_slash_scr_monstersetup_gml_498_0": "Hug", + "scr_monstersetup_slash_scr_monstersetup_gml_496_0": "", + "scr_monstersetup_slash_scr_monstersetup_gml_498_0": "", "scr_monstersetup_slash_scr_monstersetup_gml_501_0": "毁灭坦克", - "scr_monstersetup_slash_scr_monstersetup_gml_504_0": "Diplomacy", - "scr_monstersetup_slash_scr_monstersetup_gml_506_0": "Smile", + "scr_monstersetup_slash_scr_monstersetup_gml_504_0": "", + "scr_monstersetup_slash_scr_monstersetup_gml_506_0": "", "scr_monstersetup_slash_scr_monstersetup_gml_513_0": "查看", "scr_monstersetup_slash_scr_monstersetup_gml_515_0": "拥抱", "scr_monstersetup_slash_scr_monstersetup_gml_518_0": "恭维", "scr_monstersetup_slash_scr_monstersetup_gml_521_0": "外交", "scr_monstersetup_slash_scr_monstersetup_gml_523_0": "微笑", - "scr_monstersetup_slash_scr_monstersetup_gml_530_0": "Lancer", + "scr_monstersetup_slash_scr_monstersetup_gml_530_0": "", "scr_monstersetup_slash_scr_monstersetup_gml_541_0": "查看", "scr_monstersetup_slash_scr_monstersetup_gml_544_0": "想点办法", "scr_monstersetup_slash_scr_monstersetup_gml_547_0": "X-想点办法", - "scr_monstersetup_slash_scr_monstersetup_gml_556_0": "Susie", + "scr_monstersetup_slash_scr_monstersetup_gml_556_0": "", "scr_monstersetup_slash_scr_monstersetup_gml_567_0": "查看", "scr_monstersetup_slash_scr_monstersetup_gml_570_0": "想点办法", "scr_monstersetup_slash_scr_monstersetup_gml_573_0": "唱歌", - "scr_monstersetup_slash_scr_monstersetup_gml_580_0": "JEVIL", + "scr_monstersetup_slash_scr_monstersetup_gml_580_0": "", "scr_monstersetup_slash_scr_monstersetup_gml_591_0": "查看", "scr_monstersetup_slash_scr_monstersetup_gml_596_0": "单足旋转", "scr_monstersetup_slash_scr_monstersetup_gml_597_0": "无常混沌", "scr_monstersetup_slash_scr_monstersetup_gml_602_0": "催眠", "scr_monstersetup_slash_scr_monstersetup_gml_603_0": "使其疲惫", - "scr_monstersetup_slash_scr_monstersetup_gml_606_0": "チェック", + "scr_monstersetup_slash_scr_monstersetup_gml_606_0": "", "scr_monstersetup_slash_scr_monstersetup_gml_612_0": "国王跳棋", "scr_monstersetup_slash_scr_monstersetup_gml_623_0": "查看", "scr_monstersetup_slash_scr_monstersetup_gml_624_0": "跳着看", @@ -9458,7 +9535,7 @@ "scr_monstersetup_slash_scr_monstersetup_gml_1085_0": "颜色变冷", "scr_monstersetup_slash_scr_monstersetup_gml_1088_0": "颜色稍微变暖", "scr_monstersetup_slash_scr_monstersetup_gml_1091_0": "颜色稍微变冷", - "scr_monstersetup_slash_scr_monstersetup_gml_1097_0": "Cap'n", + "scr_monstersetup_slash_scr_monstersetup_gml_1097_0": "", "scr_monstersetup_slash_scr_monstersetup_gml_1099_0": "颜色变暖#2阶", "scr_monstersetup_slash_scr_monstersetup_gml_1103_0": "颜色变冷#2阶", "scr_monstersetup_slash_scr_monstersetup_gml_1107_0": "颜色变暖#1阶", @@ -9473,7 +9550,8 @@ "scr_monstersetup_slash_scr_monstersetup_gml_1150_0": "跳舞 X", "scr_monstersetup_slash_scr_monstersetup_gml_1153_0": "跳舞", "scr_monstersetup_slash_scr_monstersetup_gml_1157_0": "跳舞", - "scr_monstersetup_slash_scr_monstersetup_gml_1165_0": "Sweet", + "scr_monstersetup_slash_scr_monstersetup_gml_1165_0": "", + "scr_monstersetup_slash_scr_monstersetup_gml_1166_0": "", "scr_monstersetup_slash_scr_monstersetup_gml_1176_0": "查看", "scr_monstersetup_slash_scr_monstersetup_gml_1179_0": "跳舞", "scr_monstersetup_slash_scr_monstersetup_gml_1184_0": "跳舞 X", @@ -9494,7 +9572,7 @@ "scr_monstersetup_slash_scr_monstersetup_gml_1276_0": "查看", "scr_monstersetup_slash_scr_monstersetup_gml_1280_0": "规矩", "scr_monstersetup_slash_scr_monstersetup_gml_1285_0": "规矩X", - "scr_monstersetup_slash_scr_monstersetup_gml_1289_0": "Berdly", + "scr_monstersetup_slash_scr_monstersetup_gml_1289_0": "", "scr_monstersetup_slash_scr_monstersetup_gml_1289_0_b": "S-行动", "scr_monstersetup_slash_scr_monstersetup_gml_1293_0": "R-行动", "scr_monstersetup_slash_scr_monstersetup_gml_1312_0": "查看", @@ -9512,14 +9590,14 @@ "scr_monstersetup_slash_scr_monstersetup_gml_1367_0": "查看", "scr_monstersetup_slash_scr_monstersetup_gml_1378_0": "S-行动", "scr_monstersetup_slash_scr_monstersetup_gml_1384_0": "R-行动", - "scr_monstersetup_slash_scr_monstersetup_gml_1385_0": "Rouxls", + "scr_monstersetup_slash_scr_monstersetup_gml_1385_0": "", "scr_monstersetup_slash_scr_monstersetup_gml_1405_0": "查看", "scr_monstersetup_slash_scr_monstersetup_gml_1408_0": "占领1座房子", "scr_monstersetup_slash_scr_monstersetup_gml_1413_0": "占领2座房子", "scr_monstersetup_slash_scr_monstersetup_gml_1419_0": "占领3座房子", "scr_monstersetup_slash_scr_monstersetup_gml_1425_0": "占领4座房子", "scr_monstersetup_slash_scr_monstersetup_gml_1430_0": "S-行动", - "scr_monstersetup_slash_scr_monstersetup_gml_1433_0": "Berdly", + "scr_monstersetup_slash_scr_monstersetup_gml_1433_0": "", "scr_monstersetup_slash_scr_monstersetup_gml_1433_0_b": "干扰", "scr_monstersetup_slash_scr_monstersetup_gml_1453_0": "查看", "scr_monstersetup_slash_scr_monstersetup_gml_1456_0": "瞪视", @@ -9545,7 +9623,7 @@ "scr_monstersetup_slash_scr_monstersetup_gml_1558_0": "双重治疗", "scr_monstersetup_slash_scr_monstersetup_gml_1559_0": "治疗#所有人", "scr_monstersetup_slash_scr_monstersetup_gml_1563_0": "松动", - "scr_monstersetup_slash_scr_monstersetup_gml_1564_0": "Spamton", + "scr_monstersetup_slash_scr_monstersetup_gml_1564_0": "", "scr_monstersetup_slash_scr_monstersetup_gml_1566_0": "松动", "scr_monstersetup_slash_scr_monstersetup_gml_1576_0": "查看", "scr_monstersetup_slash_scr_monstersetup_gml_1579_0": "交易", @@ -9566,7 +9644,7 @@ "scr_monstersetup_slash_scr_monstersetup_gml_1698_0": "扯断提线", "scr_monstersetup_slash_scr_monstersetup_gml_1701_0": "回旋#护盾", "scr_monstersetup_slash_scr_monstersetup_gml_1703_0": "毛毛守护", - "scr_monstersetup_slash_scr_monstersetup_gml_1727_0": "Jigsaw Joe", + "scr_monstersetup_slash_scr_monstersetup_gml_1727_0": "", "scr_monstersetup_slash_scr_monstersetup_gml_1730_0": "火焰模式", "scr_monstersetup_slash_scr_monstersetup_gml_1730_1": "强力#攻击", "scr_monstersetup_slash_scr_monstersetup_gml_1731_0": "利刃模式", @@ -9580,23 +9658,23 @@ "scr_monstersetup_slash_scr_monstersetup_gml_1742_0": "刮胡子", "scr_monstersetup_slash_scr_monstersetup_gml_1743_0": "自我修复", "scr_monstersetup_slash_scr_monstersetup_gml_1744_0": "回复#100HP", - "scr_monstersetup_slash_scr_monstersetup_gml_1790_0": "Pipis", + "scr_monstersetup_slash_scr_monstersetup_gml_1790_0": "", "scr_monstersetup_slash_scr_monstersetup_gml_1816_0": "S-行动", "scr_monstersetup_slash_scr_monstersetup_gml_1820_0": "R-行动", - "scr_noeface_slash_scr_noeface_gml_1_0": "\\TX \\F0 \\E~1 \\FN \\TN %", - "scr_noface_slash_scr_noface_gml_1_0": "\\TX \\F0 \\T0 %", + "scr_noeface_slash_scr_noeface_gml_1_0": "", + "scr_noface_slash_scr_noface_gml_1_0": "", "scr_phonename_slash_scr_phonename_gml_3_0": "", "scr_phonename_slash_scr_phonename_gml_17_0": "打给家里", "scr_phonename_slash_scr_phonename_gml_18_0": "打给Toriel", "scr_phonename_slash_scr_phonename_gml_21_0": "Sans的号码", "scr_phonename_slash_scr_phonename_gml_22_0": "不是Sans的号码", - "scr_ralface_slash_scr_ralface_gml_1_0": "\\TX \\F0 \\E~1 \\FR \\TR %", + "scr_ralface_slash_scr_ralface_gml_1_0": "", "scr_recruit_info_all_slash_scr_recruit_info_all_gml_46_0": "尚未招揽完全", "scr_recruit_info_all_slash_scr_recruit_info_all_gml_47_0": "?", "scr_recruit_info_all_slash_scr_recruit_info_all_gml_48_0": "?", "scr_recruit_info_slash_scr_recruit_info_gml_10_0": "已知数量", "scr_recruit_info_slash_scr_recruit_info_gml_11_0": "是已知的。", - "scr_recruit_info_slash_scr_recruit_info_gml_22_0": "%%", + "scr_recruit_info_slash_scr_recruit_info_gml_22_0": "", "scr_recruit_info_slash_scr_recruit_info_gml_29_0": "方钻", "scr_recruit_info_slash_scr_recruit_info_gml_30_0": "据说是什么人最好的朋友,#但也好像并非如此。#继续闪耀吧,你这懒惰的方钻!", "scr_recruit_info_slash_scr_recruit_info_gml_31_0": "亮闪闪的东西", @@ -9633,13 +9711,12 @@ "scr_recruit_info_slash_scr_recruit_info_gml_102_0": "Susie的斧子", "scr_recruit_info_slash_scr_recruit_info_gml_107_0": "鼠 谜", "scr_recruit_info_slash_scr_recruit_info_gml_108_0": "* 来点柠檬水?..^1. 好啊/%", - "scr_recruit_info_slash_scr_recruit_info_gml_113_0": "JEVIL", + "scr_recruit_info_slash_scr_recruit_info_gml_113_0": "", "scr_recruit_info_slash_scr_recruit_info_gml_114_0": "混沌的代理人,#他变成了你口袋里的恶魔飞刀。", "scr_recruit_info_slash_scr_recruit_info_gml_115_0": "混沌", "scr_recruit_info_slash_scr_recruit_info_gml_116_0": "无聊", "scr_recruit_info_slash_scr_recruit_info_gml_118_0": "???", "scr_recruit_info_slash_scr_recruit_info_gml_121_0": "混沌 混沌", - "scr_recruit_info_slash_scr_recruit_info_gml_122_0": "", "scr_recruit_info_slash_scr_recruit_info_gml_128_0": "方钻游骑兵", "scr_recruit_info_slash_scr_recruit_info_gml_129_0": "沉迷于骑兵节目,#跟所有人都说它比方钻要强。", "scr_recruit_info_slash_scr_recruit_info_gml_130_0": "拍马屁", @@ -9705,7 +9782,6 @@ "scr_recruit_info_slash_scr_recruit_info_gml_281_0": "新潮电子音乐", "scr_recruit_info_slash_scr_recruit_info_gml_282_0": "不成对的袜子", "scr_recruit_info_slash_scr_recruit_info_gml_287_0": "猫 秩序", - "scr_recruit_info_slash_scr_recruit_info_gml_288_0": "", "scr_recruit_info_slash_scr_recruit_info_gml_295_0": "鼠飙滚轮", "scr_recruit_info_slash_scr_recruit_info_gml_296_0": "你招揽了三只大老鼠。#现在你甩不掉了。", "scr_recruit_info_slash_scr_recruit_info_gml_297_0": "伪装成轮胎", @@ -9713,7 +9789,7 @@ "scr_recruit_info_slash_scr_recruit_info_gml_303_0": "鼠 鼠 鼠", "scr_recruit_info_slash_scr_recruit_info_gml_304_0": "* (它正在利用融化的奶酪发电,&就像水车一样。)/%", "scr_roomname_slash_scr_roomname_gml_1_0": "黑暗世界?", - "scr_roomname_slash_scr_roomname_gml_2_0": "---", + "scr_roomname_slash_scr_roomname_gml_2_0": "", "scr_roomname_slash_scr_roomname_gml_3_0": "Kris的房间", "scr_roomname_slash_scr_roomname_gml_4_0": "城堡镇", "scr_roomname_slash_scr_roomname_gml_5_0": "城堡镇", @@ -9734,11 +9810,11 @@ "scr_roomname_slash_scr_roomname_gml_19_0": "女王的豪宅 - 地下室", "scr_roomname_slash_scr_roomname_gml_20_0": "女王的豪宅 - 4楼", "scr_roomname_slash_scr_roomname_gml_23_0": "女王的豪宅 - 屋顶", - "scr_rudface_slash_scr_rudface_gml_1_0": "\\TX \\F0 \\E~1 \\Fr \\Tr %", - "scr_rurusface_slash_scr_rurusface_gml_1_0": "\\TX \\F0 \\E~1 \\Fu \\T0 %", - "scr_shopmenu_slash_scr_shopmenu_gml_158_0": "$~1", - "scr_shopmenu_slash_scr_shopmenu_gml_270_0": "$~1", - "scr_shopmenu_slash_scr_shopmenu_gml_389_0": "$~1", + "scr_rudface_slash_scr_rudface_gml_1_0": "", + "scr_rurusface_slash_scr_rurusface_gml_1_0": "", + "scr_shopmenu_slash_scr_shopmenu_gml_158_0": "", + "scr_shopmenu_slash_scr_shopmenu_gml_270_0": "", + "scr_shopmenu_slash_scr_shopmenu_gml_389_0": "", "scr_smallface_reset_slash_scr_smallface_reset_gml_12_0": "* ...什么?", "scr_spellinfo_slash_scr_spellinfo_gml_3_0": "", "scr_spellinfo_slash_scr_spellinfo_gml_5_0": "", @@ -9819,11 +9895,9 @@ "scr_spelltext_slash_scr_spelltext_gml_109_0": "* 发光碎片消失了!/%", "scr_spelltext_slash_scr_spelltext_gml_122_0": "* ~1阅读了手册!/", "scr_spelltext_slash_scr_spelltext_gml_123_0": "* 但什么也没有发生.../%", - "scr_spelltext_slash_scr_spelltext_gml_126_0": "", "scr_spelltext_slash_scr_spelltext_gml_143_0": "变得欣喜若狂!&", "scr_spelltext_slash_scr_spelltext_gml_166_0": "(疲惫)", "scr_spelltext_slash_scr_spelltext_gml_179_0": "* ~1使用了坏掉的蛋糕!/%", - "scr_spelltext_slash_scr_spelltext_gml_182_0": "", "scr_spelltext_slash_scr_spelltext_gml_183_0": "* ~1使用了顶尖蛋糕!/%", "scr_spelltext_slash_scr_spelltext_gml_187_0": "* ~1使用了旋转蛋糕!/%", "scr_spelltext_slash_scr_spelltext_gml_191_0": "* ~1使用了黑暗汉堡!/%", @@ -9856,7 +9930,7 @@ "scr_spelltext_slash_scr_spelltext_gml_279_0": "* ~1使用了复活之光!/%", "scr_spelltext_slash_scr_spelltext_gml_282_0": "* ~1掷出了S.毒药!/%", "scr_spelltext_slash_scr_spelltext_gml_298_0": "* ~1 赞美了狗币!/%", - "scr_susface_slash_scr_susface_gml_1_0": "\\TX \\F0 \\E~1 \\FS \\TS %", + "scr_susface_slash_scr_susface_gml_1_0": "", "scr_talkroom_slash_scr_talkroom_gml_4_0": "* 你的声音盲目地回响着。/%", "scr_text_slash_scr_text_gml_8_0": "#丢掉", "scr_text_slash_scr_text_gml_9_0": "#算了", @@ -9890,14 +9964,14 @@ "scr_text_slash_scr_text_gml_82_0": "\\E2* 由【你】来负责我们的作业。/", "scr_text_slash_scr_text_gml_83_0": "* いいな?& &   はい          いやです\\C1", "scr_text_slash_scr_text_gml_86_0": "", - "scr_text_slash_scr_text_gml_90_0": " %%", + "scr_text_slash_scr_text_gml_90_0": "", "scr_text_slash_scr_text_gml_92_0": "#拿", "scr_text_slash_scr_text_gml_93_0": "#不拿", "scr_text_slash_scr_text_gml_96_0": "", "scr_text_slash_scr_text_gml_97_0": "", "scr_text_slash_scr_text_gml_98_0": "* (里面有什么东西正发着光。)/", "scr_text_slash_scr_text_gml_99_0": "* (取出来吗?)/", - "scr_text_slash_scr_text_gml_100_0": " \\C2", + "scr_text_slash_scr_text_gml_100_0": "", "scr_text_slash_scr_text_gml_104_0": "* (里面很暗。)/%", "scr_text_slash_scr_text_gml_112_0": "* (你获得了闪光碎片。)/%", "scr_text_slash_scr_text_gml_119_0": "* (原封不动。)/%", @@ -9918,7 +9992,7 @@ "scr_text_slash_scr_text_gml_144_0": "", "scr_text_slash_scr_text_gml_145_0": "", "scr_text_slash_scr_text_gml_146_0": "* 那好.../%", - "scr_text_slash_scr_text_gml_150_0": "* .../", + "scr_text_slash_scr_text_gml_150_0": "", "scr_text_slash_scr_text_gml_151_0": "\\E1* 嗯,真-真的^1?&* 你确定吗^1?&* 很重要的哦。/", "scr_text_slash_scr_text_gml_152_0": "* 呃...而且^1,我个人感觉^1,&这个\\cY预言\\cW还是挺美好的!/", "scr_text_slash_scr_text_gml_153_0": "* 我觉得你们会喜欢的!/", @@ -9935,12 +10009,12 @@ "scr_text_slash_scr_text_gml_180_0": "* 是那个喷泉^1。&* 造就\\cY黑暗世界\\cW的喷泉。/", "scr_text_slash_scr_text_gml_181_0": "\\E1* ...嗯^1,你确定你真的了解&传说吗?/", "scr_text_slash_scr_text_gml_183_0": "* 听着。/", - "scr_text_slash_scr_text_gml_184_0": "* .../", + "scr_text_slash_scr_text_gml_184_0": "", "scr_text_slash_scr_text_gml_185_0": "* 不了解。/", "scr_text_slash_scr_text_gml_186_0": "* 不过,我觉得我现在知道的&就已经够用了。/", "scr_text_slash_scr_text_gml_187_0": "* 两位回头见。/", "scr_text_slash_scr_text_gml_189_0": "* 等-等等^1!&* 起码先让我告诉你怎么.../%", - "scr_text_slash_scr_text_gml_193_0": "I'll be#Your#Subject", + "scr_text_slash_scr_text_gml_193_0": "", "scr_text_slash_scr_text_gml_194_0": "有梦最美", "scr_text_slash_scr_text_gml_196_0": " 我来当#你的臣民", "scr_text_slash_scr_text_gml_197_0": "有梦最美", @@ -9948,26 +10022,26 @@ "scr_text_slash_scr_text_gml_199_0": "", "scr_text_slash_scr_text_gml_200_0": "* 这里是城堡小镇^2,& 我的臣民居住的地方.../", "scr_text_slash_scr_text_gml_201_0": "\\E1* 呃,好吧,&前提是我有臣民的话.../", - "scr_text_slash_scr_text_gml_202_0": " \\C2", + "scr_text_slash_scr_text_gml_202_0": "", "scr_text_slash_scr_text_gml_202_0_b": "\\E8* 噢,不用为我担心,Kris!/", "scr_text_slash_scr_text_gml_203_0": "\\E0* 我早晚有一天&会有自己的臣民的.../", "scr_text_slash_scr_text_gml_205_0": "", "scr_text_slash_scr_text_gml_210_0": "\\E3* 嗯..^1. 嗯!?/", - "scr_text_slash_scr_text_gml_211_0": "\\E7* Why^1, Kris^1, you don't have to do that.../", + "scr_text_slash_scr_text_gml_211_0": "", "scr_text_slash_scr_text_gml_212_0": "\\E1* ...but^1, if you insist.../", "scr_text_slash_scr_text_gml_213_0": "\\E3* 呃..^1. 啊!?/", "scr_text_slash_scr_text_gml_214_0": "\\E7* 为什么^1,Kris^1,你不必做到这种地步.../", "scr_text_slash_scr_text_gml_215_0": "\\E1* ...但是^1,&如果你这么坚持的话.../", "scr_text_slash_scr_text_gml_216_0": "\\E0* Kris,以我王子的权力,我命令你...!/", "scr_text_slash_scr_text_gml_217_0": "\\E8* 请你告诉我,我该怎么做!/%", - "scr_text_slash_scr_text_gml_221_0": "* Oh^1, thank you^1, Kris^2!&* I will!/%", + "scr_text_slash_scr_text_gml_221_0": "", "scr_text_slash_scr_text_gml_224_0": "* 噢^1,谢谢你^1,Kris^2!&* 我会的!/%", "scr_text_slash_scr_text_gml_227_0": "#我知道", "scr_text_slash_scr_text_gml_228_0": "#真的吗!?", "scr_text_slash_scr_text_gml_231_0": "", "scr_text_slash_scr_text_gml_232_0": "* 呃^1,Kris^1,&你知道可以按住[~1]&来奔跑吗...?/", "scr_text_slash_scr_text_gml_232_0_b": "", - "scr_text_slash_scr_text_gml_233_0": " \\C2", + "scr_text_slash_scr_text_gml_233_0": "", "scr_text_slash_scr_text_gml_236_0": "", "scr_text_slash_scr_text_gml_242_0": "* 真的^1?&* 而你还是选择慢慢走...?/", "scr_text_slash_scr_text_gml_243_0": "\\E6* 也好^1,谁知道这样的休闲时光&还能持续多久呢.../", @@ -9980,7 +10054,7 @@ "scr_text_slash_scr_text_gml_262_0": "* 唔^1,Kris^1,你知道吗.../", "scr_text_slash_scr_text_gml_262_0_b": "", "scr_text_slash_scr_text_gml_263_0": "", - "scr_text_slash_scr_text_gml_264_0": " \\C2", + "scr_text_slash_scr_text_gml_264_0": "", "scr_text_slash_scr_text_gml_265_0": "* ...你可以按住[~1]来跳过对话?/", "scr_text_slash_scr_text_gml_267_0": "", "scr_text_slash_scr_text_gml_273_0": "* ...真的^1?&* 所以说你一直.../", @@ -9996,7 +10070,7 @@ "scr_text_slash_scr_text_gml_294_0": "\\E8* 现在是做好面对敌人准备&的好机会。/", "scr_text_slash_scr_text_gml_294_0_b": "", "scr_text_slash_scr_text_gml_295_0": "\\E0* 你想要我来教你怎么战斗吗?/", - "scr_text_slash_scr_text_gml_296_0": " \\C2", + "scr_text_slash_scr_text_gml_296_0": "", "scr_text_slash_scr_text_gml_299_0": "", "scr_text_slash_scr_text_gml_303_0": "\\E0* 好^1!&* 请准备好,Kris!/%", "scr_text_slash_scr_text_gml_308_0": "\\E3* 对哦,你已经与Lancer战斗过了,&是吧...?/", @@ -10011,7 +10085,7 @@ "scr_text_slash_scr_text_gml_323_0_b": "", "scr_text_slash_scr_text_gml_324_0": "* 怪不得Lancer可以过来.../", "scr_text_slash_scr_text_gml_324_0_b": "", - "scr_text_slash_scr_text_gml_325_0": "\\E1* .../", + "scr_text_slash_scr_text_gml_325_0": "", "scr_text_slash_scr_text_gml_326_0": "* Kris,一旦我们&通过了这扇门.../", "scr_text_slash_scr_text_gml_327_0": "* 我们的冒险就真正开始了。/", "scr_text_slash_scr_text_gml_328_0": "* 一场早已准确写在预言中&的旅途.../", @@ -10024,7 +10098,7 @@ "scr_text_slash_scr_text_gml_335_0": "\\E6* 如果不这样做的话^1,恐怕.../", "scr_text_slash_scr_text_gml_336_0": "\\E1* ...你可能不会..^1.&得到你喜欢的结果。/", "scr_text_slash_scr_text_gml_337_0": "\\E3* ...噢^1,我很抱歉^1!&我是不是要求得过多了?/", - "scr_text_slash_scr_text_gml_338_0": " \\C2", + "scr_text_slash_scr_text_gml_338_0": "", "scr_text_slash_scr_text_gml_341_0": "", "scr_text_slash_scr_text_gml_343_0": "\\E0* Kris^1,见到你的那一瞬间&我就知道你是个英雄。/", "scr_text_slash_scr_text_gml_344_0": "\\E8* 尽我们最大的努力吧^1,好吗?/%", @@ -10038,10 +10112,10 @@ "scr_text_slash_scr_text_gml_363_0": "", "scr_text_slash_scr_text_gml_364_0": "* (树上挂着两个东西。)/", "scr_text_slash_scr_text_gml_365_0": "* (拿一个吗?)/", - "scr_text_slash_scr_text_gml_366_0": "\\C2", + "scr_text_slash_scr_text_gml_366_0": "", "scr_text_slash_scr_text_gml_370_0": "* (树上挂着一颗糖果。)/", "scr_text_slash_scr_text_gml_371_0": "* (拿一个吗?)/", - "scr_text_slash_scr_text_gml_372_0": "\\C2", + "scr_text_slash_scr_text_gml_372_0": "", "scr_text_slash_scr_text_gml_377_0": "* (树上没有你够得到的东西了。)/%", "scr_text_slash_scr_text_gml_388_0": "* (你获得了黑暗糖果。)/%", "scr_text_slash_scr_text_gml_393_0": "* (你拿不了更多的东西了。)/%", @@ -10052,10 +10126,10 @@ "scr_text_slash_scr_text_gml_409_0": "", "scr_text_slash_scr_text_gml_410_0": "* (树上挂着两个东西。)/", "scr_text_slash_scr_text_gml_411_0": "* (拿一个吗?)/", - "scr_text_slash_scr_text_gml_412_0": " \\C2", + "scr_text_slash_scr_text_gml_412_0": "", "scr_text_slash_scr_text_gml_416_0": "* (树上挂着一颗糖果。)/", "scr_text_slash_scr_text_gml_417_0": "* (拿一个吗?)/", - "scr_text_slash_scr_text_gml_418_0": " \\C2", + "scr_text_slash_scr_text_gml_418_0": "", "scr_text_slash_scr_text_gml_423_0": "* (树上没有你够得到的东西了。)/%", "scr_text_slash_scr_text_gml_434_0": "* (你获得了黑暗糖果。)/%", "scr_text_slash_scr_text_gml_439_0": "* (你拿不了更多的东西了。)/%", @@ -10066,7 +10140,7 @@ "scr_text_slash_scr_text_gml_455_0": "", "scr_text_slash_scr_text_gml_456_0": "* (剩下的蛋糕还在冒烟...)/", "scr_text_slash_scr_text_gml_457_0": "* (拿一块?)/", - "scr_text_slash_scr_text_gml_458_0": " \\C2", + "scr_text_slash_scr_text_gml_458_0": "", "scr_text_slash_scr_text_gml_462_0": "* (剩下的蛋糕还在冒烟...)/%", "scr_text_slash_scr_text_gml_473_0": "* (坏掉的蛋糕被放进了你的&\\cY重要物品\\cW中。)/%", "scr_text_slash_scr_text_gml_478_0": "* (你拿不了更多的东西了。)/%", @@ -10086,7 +10160,7 @@ "scr_text_slash_scr_text_gml_512_0": "\\E6* ...唔嗯。/", "scr_text_slash_scr_text_gml_513_0": "\\E7* 我觉得我不应该念出来。/", "scr_text_slash_scr_text_gml_517_0": "* 哇啊啊^1,像这种辅导级的脏话&我是不能讲的!/", - "scr_text_slash_scr_text_gml_517_0_b": "* 这个是要读成^1,“$!?#小队。”/", + "scr_text_slash_scr_text_gml_517_0_b": "* 它念作^1,“$!$?小分队”。/", "scr_text_slash_scr_text_gml_518_0": "\\E3* 哇噢^1。你们三个的爸爸&加起来一定酷爆了。/", "scr_text_slash_scr_text_gml_520_0": "* 呃^1,没准儿咱们也可以&稍微换个名字?/", "scr_text_slash_scr_text_gml_522_0": "* Ralsei^1,又没人逼你&加入我们的小分队。/", @@ -10137,7 +10211,7 @@ "scr_text_slash_scr_text_gml_602_0": "\\E2* 你为什么要来拜访我?&* 是你妈妈要你来的吗?/", "scr_text_slash_scr_text_gml_603_0": "\\C2", "scr_text_slash_scr_text_gml_606_0": "", - "scr_text_slash_scr_text_gml_608_0": " #Noelle", + "scr_text_slash_scr_text_gml_608_0": "", "scr_text_slash_scr_text_gml_609_0": " #家庭", "scr_text_slash_scr_text_gml_610_0": "疾病", "scr_text_slash_scr_text_gml_612_0": "\\E0* 嘿^1,Kris^1,&你想聊些什么吗?/", @@ -10205,8 +10279,8 @@ "scr_text_slash_scr_text_gml_708_0": "* 青少年以上的人都应该接触一下&这部黑暗的杰作!/", "scr_text_slash_scr_text_gml_709_0": "* 不愿透露姓名的黄色蜥蜴^1,&敬上/%", "scr_text_slash_scr_text_gml_710_0": "* (你决定不去读它。)/%", - "scr_text_slash_scr_text_gml_713_0": " #Sit", - "scr_text_slash_scr_text_gml_714_0": " #Don't Sit", + "scr_text_slash_scr_text_gml_713_0": "", + "scr_text_slash_scr_text_gml_714_0": "", "scr_text_slash_scr_text_gml_716_0": " #坐", "scr_text_slash_scr_text_gml_717_0": " #不坐", "scr_text_slash_scr_text_gml_718_0": "* (Gerson Boom纪念长椅)/", @@ -10216,9 +10290,9 @@ "scr_text_slash_scr_text_gml_720_0": "* “在这儿稍事休息吧。&若有人问起--你就说是在写作!”/%", "scr_text_slash_scr_text_gml_721_0": "\\C2", "scr_text_slash_scr_text_gml_724_0": "", - "scr_text_slash_scr_text_gml_727_0": "* (Didn't feel like it.)/%", + "scr_text_slash_scr_text_gml_727_0": "", "scr_text_slash_scr_text_gml_730_0": "* (不是很想坐。)/%", - "scr_text_slash_scr_text_gml_733_0": "* (You decided not to sit.)/%", + "scr_text_slash_scr_text_gml_733_0": "", "scr_text_slash_scr_text_gml_736_0": "* (你决定不坐下来。)/%", "scr_text_slash_scr_text_gml_739_0": " #插进去", "scr_text_slash_scr_text_gml_740_0": " #算了", @@ -10244,7 +10318,7 @@ "scr_text_slash_scr_text_gml_780_0": "\\M0* 你愿意做我的朋友吗?/", "scr_text_slash_scr_text_gml_781_0": "\\C2", "scr_text_slash_scr_text_gml_784_0": "", - "scr_text_slash_scr_text_gml_787_0": " #Kris", + "scr_text_slash_scr_text_gml_787_0": "", "scr_text_slash_scr_text_gml_788_0": " #叫马不是马#有张大嘴巴", "scr_text_slash_scr_text_gml_791_0": "", "scr_text_slash_scr_text_gml_792_0": "", @@ -10253,7 +10327,7 @@ "scr_text_slash_scr_text_gml_797_0": "\\M2* 朋友^1,你叫什么名字?/", "scr_text_slash_scr_text_gml_798_0": "\\C2", "scr_text_slash_scr_text_gml_801_0": "", - "scr_text_slash_scr_text_gml_807_0": "%%%", + "scr_text_slash_scr_text_gml_807_0": "", "scr_text_slash_scr_text_gml_810_0": " #洋葱", "scr_text_slash_scr_text_gml_811_0": " #美人", "scr_text_slash_scr_text_gml_812_0": "Asriel二世", @@ -10261,10 +10335,10 @@ "scr_text_slash_scr_text_gml_818_0": "\\M0* 原来你叫Kris!^1!&* 这个朋友的名字真好听!/", "scr_text_slash_scr_text_gml_823_0": "\\M0* 叫..^1. 叫妈..^1. 叫麻..^1. 叫骂..^1. &* 嗯^1,叫马不是马有张大嘴巴^1!成了^1!&* 虽然名字很长^1,但也值得一记!/", "scr_text_slash_scr_text_gml_826_0": "\\M1* 噢^1,不好意思^1!&* 我忘记自我介绍了!/", - "scr_text_slash_scr_text_gml_827_0": "\\M1* .../", + "scr_text_slash_scr_text_gml_827_0": "", "scr_text_slash_scr_text_gml_828_0": "\\M3* ...其实^1,因为没人和我讲话,&我把自己的名字忘了.../", "scr_text_slash_scr_text_gml_831_0": "\\M1* ~1^1!&* 你能给我起个名字吗...?/", - "scr_text_slash_scr_text_gml_831_0_b": "Kris", + "scr_text_slash_scr_text_gml_831_0_b": "", "scr_text_slash_scr_text_gml_832_0": "\\C4", "scr_text_slash_scr_text_gml_832_0_b": "叫马不是马有张大嘴巴", "scr_text_slash_scr_text_gml_835_0": "", @@ -10277,9 +10351,9 @@ "scr_text_slash_scr_text_gml_858_0": "\\M2* Asriel二世..^1. 唔..^1. &* 听上去..^1. 好耳熟^1。&* 那是..^1. 回忆的感觉!/", "scr_text_slash_scr_text_gml_859_0": "\\M4* 听上去像是那个善良的男孩...&* 他给我喂过好吃的梨子。/", "scr_text_slash_scr_text_gml_860_0": "\\M2* 等下^1,那名字叫什么来着^1?&* 爱吃..^1. 爱吃梨儿^1?没错^1!我爱吃梨^1!&* 让我浸泡在梨子里吧!/", - "scr_text_slash_scr_text_gml_869_0": "%%%", + "scr_text_slash_scr_text_gml_869_0": "", "scr_text_slash_scr_text_gml_870_0": "\\M0* 谢谢你给我起名^1!&* 我会好好珍惜的^1,你听到没!?/", - "scr_text_slash_scr_text_gml_871_0": "\\M0* .../", + "scr_text_slash_scr_text_gml_871_0": "", "scr_text_slash_scr_text_gml_872_0": "\\M2* 巧..^1. Krismas^1?&* 我没记错你的名字吧?/", "scr_text_slash_scr_text_gml_873_0": "\\M3* 嗯^1,叫..^1. 叫麻..^1. 嗯..^1. &* 叫嘛不是嘛有种打嘴巴^1。&* 我没记错你的名字吧?/", "scr_text_slash_scr_text_gml_874_0": "\\M1* 我明天..^1. 想告诉你..^1. &一件事.../", @@ -10310,7 +10384,7 @@ "scr_text_slash_scr_text_gml_949_0": "* (她拿着一捧七朵花的花束。)/", "scr_text_slash_scr_text_gml_950_0": "* (一只长得像驯鹿的怪物&穿着礼服站在旁边。)/", "scr_text_slash_scr_text_gml_951_0": "* (他们看起来都很开心。)/%", - "scr_text_slash_scr_text_gml_956_0": " #Asriel", + "scr_text_slash_scr_text_gml_956_0": "", "scr_text_slash_scr_text_gml_957_0": " #邻居", "scr_text_slash_scr_text_gml_958_0": "妹妹", "scr_text_slash_scr_text_gml_959_0": "没事了", @@ -10318,7 +10392,7 @@ "scr_text_slash_scr_text_gml_963_0": "\\E2* 么^1!&* 么^1!&* 么!/", "scr_text_slash_scr_text_gml_964_0": "\\E8* 哈哈哈^1!&* 你看看我,又不是你真的姨妈&还对你做这种事!/", "scr_text_slash_scr_text_gml_965_0": "\\E5* 噢天哪..^1. &* 我可以和你聊点事吗?/", - "scr_text_slash_scr_text_gml_966_0": "* .../", + "scr_text_slash_scr_text_gml_966_0": "", "scr_text_slash_scr_text_gml_967_0": "\\E6* 实际上^1,那个^1,什么事^1,都可以^1。&* 你来选。/", "scr_text_slash_scr_text_gml_968_0": "\\C4", "scr_text_slash_scr_text_gml_971_0": "\\E4* 小Krissy^1!&* 你想聊点别的吗!?/", @@ -10396,7 +10470,7 @@ "scr_text_slash_scr_text_gml_1093_0": "\\M0* 嘿嘿嘿..^1. &* 这边请^1,好先生们!/%", "scr_text_slash_scr_text_gml_1097_0": "\\M1* 真-真的!^1?&* 你真的愿意买么!?/", "scr_text_slash_scr_text_gml_1098_0": "\\M0* 嘿嘿嘿..^1. &* 只要把钱交过来^1,然后.../", - "scr_text_slash_scr_text_gml_1099_0": "\\M1* .../", + "scr_text_slash_scr_text_gml_1099_0": "", "scr_text_slash_scr_text_gml_1100_0": "\\M2* 你们钱不够!?/", "scr_text_slash_scr_text_gml_1101_0": "\\M1* 拼了个图的^1!&* 你..^1. &* 你们...!/", "scr_text_slash_scr_text_gml_1102_0": "\\M0* 你们就和我们一样^1。&* 像我们这样的人就应该&互帮互助。/", @@ -10411,7 +10485,7 @@ "scr_text_slash_scr_text_gml_1133_0": "\\M0* 嘿嘿嘿..^1. &* 这边请^1,好先生们!/%", "scr_text_slash_scr_text_gml_1137_0": "\\M1* 真-真的!^1?&* 你真的愿意买么!?/", "scr_text_slash_scr_text_gml_1138_0": "\\M0* 嘿嘿嘿..^1. &* 只要把钱交过来^1,然后.../", - "scr_text_slash_scr_text_gml_1139_0": "\\M1* .../", + "scr_text_slash_scr_text_gml_1139_0": "", "scr_text_slash_scr_text_gml_1140_0": "\\M2* 你们钱不够!?/", "scr_text_slash_scr_text_gml_1141_0": "\\M1* 拼了个图的^1!&* 你..^1. &* 你们...!/", "scr_text_slash_scr_text_gml_1142_0": "\\M0* 你们就和我们一样^1。&* 像我们这样的人就应该&互帮互助。/", @@ -10422,7 +10496,7 @@ "scr_text_slash_scr_text_gml_1169_0": "\\M0* 嘿嘿嘿..^1. &* 这边请^1,好先生们!/%", "scr_text_slash_scr_text_gml_1173_0": "\\M1* 终-终于!/", "scr_text_slash_scr_text_gml_1174_0": "\\M0* 嘿嘿嘿..^1. &* 只要把钱交过来^1,然后.../", - "scr_text_slash_scr_text_gml_1175_0": "\\M1* .../", + "scr_text_slash_scr_text_gml_1175_0": "", "scr_text_slash_scr_text_gml_1176_0": "\\M2* 你们连一块钱都没有!?/", "scr_text_slash_scr_text_gml_1177_0": "\\M1* 拼了个图的^1!&* 你..^1. &* 你们...!/", "scr_text_slash_scr_text_gml_1178_0": "\\M0* 你们就和我们一样^1。&* 像我们这样的人就应该&互帮互助。/", @@ -10489,7 +10563,7 @@ "scr_text_slash_scr_text_gml_1326_0": "* Susie总是攻击^1,最上方那一位。/", "scr_text_slash_scr_text_gml_1327_0": "* 她会猛砸一斧^1,将那敌人粉碎。/", "scr_text_slash_scr_text_gml_1328_0": "* 她总对首先出现的东西^1,&予以一记重击.../", - "scr_text_slash_scr_text_gml_1330_0": "* .../", + "scr_text_slash_scr_text_gml_1330_0": "", "scr_text_slash_scr_text_gml_1332_0": "\\M1* 哦不^1,哦不^1!&* 她正盯着我不怀好意!/%", "scr_text_slash_scr_text_gml_1336_0": "* Susie已经离去^1,再也没有攻击。/", "scr_text_slash_scr_text_gml_1337_0": "* 你们俩还能否收拾这场残局?/%", @@ -10559,7 +10633,7 @@ "scr_text_slash_scr_text_gml_1490_0": "\\E1* ...装满了辣椒酱。/", "scr_text_slash_scr_text_gml_1492_0": "\\E3* 答对了^1,你们两个乖宝宝!/", "scr_text_slash_scr_text_gml_1493_0": "\\E1* 这是我的私藏品^1。&* 为你们准备的一份小食.../", - "scr_text_slash_scr_text_gml_1495_0": "* .../", + "scr_text_slash_scr_text_gml_1495_0": "", "scr_text_slash_scr_text_gml_1496_0": "\\E8* 唔^1。美味^1。真是太好吃了.../", "scr_text_slash_scr_text_gml_1498_0": "* 拜托^1,你只是装作在吃!/", "scr_text_slash_scr_text_gml_1500_0": "* 哈哈^1,对^1!同样的^1,&我也是这么做的!/", @@ -10581,14 +10655,14 @@ "scr_text_slash_scr_text_gml_1551_0": "\\E5* Kris...?/%", "scr_text_slash_scr_text_gml_1560_0": "\\E0* Kris^1,亲爱的^1,&你都已经长这么大了.../", "scr_text_slash_scr_text_gml_1561_0": "\\E9* 很快你也要出去上大学了.../", - "scr_text_slash_scr_text_gml_1562_0": "\\E1* .../", + "scr_text_slash_scr_text_gml_1562_0": "", "scr_text_slash_scr_text_gml_1563_0": "\\E9* 你还记得小时候.../", "scr_text_slash_scr_text_gml_1564_0": "\\E8* 你问自己什么时候&才能长出角来吗?/", "scr_text_slash_scr_text_gml_1565_0": "\\E0* 所以我们买了那条&带着红色角的头带。/", "scr_text_slash_scr_text_gml_1566_0": "\\E4* 噢^1,你一口气戴了好几个月!&后来它怎么样了?/%", - "scr_text_slash_scr_text_gml_1572_0": "\\E2* Kris^1, I need to grade these assignments./", - "scr_text_slash_scr_text_gml_1573_0": "\\E0* Perhaps you should go to bed...?/", - "scr_text_slash_scr_text_gml_1574_0": "\\E1* You do not look very well.../%", + "scr_text_slash_scr_text_gml_1572_0": "", + "scr_text_slash_scr_text_gml_1573_0": "", + "scr_text_slash_scr_text_gml_1574_0": "", "scr_text_slash_scr_text_gml_1575_0": "\\E2* Kris^1,我要批改这些作业。/", "scr_text_slash_scr_text_gml_1576_0": "\\E0* 或许你该去睡个觉...?/", "scr_text_slash_scr_text_gml_1577_0": "\\E1* 你看上去有些不太舒服.../%", @@ -10647,7 +10721,7 @@ "scr_text_slash_scr_text_gml_1663_0": "\\C3", "scr_text_slash_scr_text_gml_1664_0": "", "scr_text_slash_scr_text_gml_1666_0": "", - "scr_text_slash_scr_text_gml_1682_0": " %%", + "scr_text_slash_scr_text_gml_1682_0": "", "scr_text_slash_scr_text_gml_1684_0": " #延续", "scr_text_slash_scr_text_gml_1685_0": " #不延续", "scr_text_slash_scr_text_gml_1688_0": "* (生命的存在离不开进食。^1)&* (哪怕是苔藓也要喝水。)/", @@ -10676,9 +10750,9 @@ "scr_text_slash_scr_text_gml_1751_0": " #她会#没事的", "scr_text_slash_scr_text_gml_1754_0": "\\E6* ...谢谢你帮助她^1,Kris^1。&她很感激。/", "scr_text_slash_scr_text_gml_1754_0_b": "", - "scr_text_slash_scr_text_gml_1755_0": "\\E1* .../", + "scr_text_slash_scr_text_gml_1755_0": "", "scr_text_slash_scr_text_gml_1755_0_b": "", - "scr_text_slash_scr_text_gml_1756_0": "\\E1* Kris.../", + "scr_text_slash_scr_text_gml_1756_0": "", "scr_text_slash_scr_text_gml_1757_0": "\\E6* 你在担心Susie吗?/", "scr_text_slash_scr_text_gml_1758_0": "\\C2", "scr_text_slash_scr_text_gml_1761_0": "", @@ -10769,7 +10843,7 @@ "scr_text_slash_scr_text_gml_2019_0": "* 嘿^1!不许不从我们这里买东西!/", "scr_text_slash_scr_text_gml_2021_0": "* 听着笨蛋^1!&* 这可是为了大义!/", "scr_text_slash_scr_text_gml_2023_0": "* (我们还是买一块吧^1,Kris.)/%", - "scr_text_slash_scr_text_gml_2028_0": "#Alphys", + "scr_text_slash_scr_text_gml_2028_0": "", "scr_text_slash_scr_text_gml_2029_0": "#黑暗世界", "scr_text_slash_scr_text_gml_2030_0": "帮忙", "scr_text_slash_scr_text_gml_2031_0": "没事了", @@ -10799,7 +10873,7 @@ "scr_text_slash_scr_text_gml_2076_0": "\\E6* 别做违法的事哦^1,&  你个小混球~!/", "scr_text_slash_scr_text_gml_2077_0": "\\E3* 还有,如果你有关于紫色女孩&的线索就通知我一声。/", "scr_text_slash_scr_text_gml_2078_0": "\\E4* 有个紫色女孩&因屡次模仿动画里的&危险恶作剧正被通缉。/%", - "scr_text_slash_scr_text_gml_2083_0": "#Asriel", + "scr_text_slash_scr_text_gml_2083_0": "", "scr_text_slash_scr_text_gml_2084_0": "#工作", "scr_text_slash_scr_text_gml_2085_0": "同事", "scr_text_slash_scr_text_gml_2086_0": "否", @@ -10867,11 +10941,11 @@ "scr_text_slash_scr_text_gml_2199_0": "& &          是           否\\C1", "scr_text_slash_scr_text_gml_2199_0_b": "", "scr_text_slash_scr_text_gml_2202_0": "", - "scr_text_slash_scr_text_gml_2205_0": " \\C2", - "scr_text_slash_scr_text_gml_2216_0": "%%", + "scr_text_slash_scr_text_gml_2205_0": "", + "scr_text_slash_scr_text_gml_2216_0": "", "scr_text_slash_scr_text_gml_2219_0": "* (节约用水是种美德。)/%", - "scr_text_slash_scr_text_gml_2223_0": "#ひく", - "scr_text_slash_scr_text_gml_2224_0": "#ひかない", + "scr_text_slash_scr_text_gml_2223_0": "", + "scr_text_slash_scr_text_gml_2224_0": "", "scr_text_slash_scr_text_gml_2226_0": "#弹", "scr_text_slash_scr_text_gml_2227_0": "#不弹", "scr_text_slash_scr_text_gml_2228_0": "* (这是医院的公用钢琴^1,&为了放在角落里而做得很小。)/", @@ -10892,8 +10966,8 @@ "scr_text_slash_scr_text_gml_2256_0": "\\E8* ...啊?/", "scr_text_slash_scr_text_gml_2257_0": "\\E1* ...朋友?/", "scr_text_slash_scr_text_gml_2258_0": "\\E0* 你之前在陪你的..^1. 朋友?/", - "scr_text_slash_scr_text_gml_2259_0": "\\E0* .../", - "scr_text_slash_scr_text_gml_2260_0": "\\E9* Kris.../", + "scr_text_slash_scr_text_gml_2259_0": "", + "scr_text_slash_scr_text_gml_2260_0": "", "scr_text_slash_scr_text_gml_2261_0": "\\E0* 我这次就网开一面。/", "scr_text_slash_scr_text_gml_2262_0": "* 你们可以继续在外面玩一会儿。/", "scr_text_slash_scr_text_gml_2263_0": "\\E1* 但你回家之后.../", @@ -10943,7 +11017,7 @@ "scr_text_slash_scr_text_gml_2356_0": "\\E2* 哇啊,打住^1,&你肉食系吗。/", "scr_text_slash_scr_text_gml_2357_0": "\\E0* 你可不能直接就&跨上友谊的小船。/", "scr_text_slash_scr_text_gml_2358_0": "\\E2* 这是需要时间的。/", - "scr_text_slash_scr_text_gml_2359_0": "\\E3* .../", + "scr_text_slash_scr_text_gml_2359_0": "", "scr_text_slash_scr_text_gml_2360_0": "\\E2* 好了^1,时间够了。/", "scr_text_slash_scr_text_gml_2361_0": "\\E0* 那么,带上这个吧。/", "scr_text_slash_scr_text_gml_2362_0": "\\E5* 你随时都可以打这个号码。/", @@ -10964,11 +11038,11 @@ "scr_text_slash_scr_text_gml_2388_0": "\\E0* 总之^1,&我们之间是^1,呃^1,&纯粹的商业关系。/", "scr_text_slash_scr_text_gml_2389_0": "\\E2* 所以^1,呃^1,&我想我也只好随她便了。/%", "scr_text_slash_scr_text_gml_2393_0": "\\E1* 真无情^1,&不过也情有可原。/%", - "scr_text_slash_scr_text_gml_2398_0": "#1", - "scr_text_slash_scr_text_gml_2399_0": "#2", - "scr_text_slash_scr_text_gml_2402_0": "3", + "scr_text_slash_scr_text_gml_2398_0": "", + "scr_text_slash_scr_text_gml_2399_0": "", + "scr_text_slash_scr_text_gml_2402_0": "", "scr_text_slash_scr_text_gml_2403_0": "* (叮铃^1,叮铃...)/", - "scr_text_slash_scr_text_gml_2403_0_b": "4", + "scr_text_slash_scr_text_gml_2403_0_b": "", "scr_text_slash_scr_text_gml_2404_0": "* 您好。/", "scr_text_slash_scr_text_gml_2405_0": "* 这里是智障婴儿热线。/", "scr_text_slash_scr_text_gml_2406_0": "* 智障请按1^1,婴儿请按2^1,&智障婴儿请按3^1,其他请按4。/", @@ -10979,7 +11053,7 @@ "scr_text_slash_scr_text_gml_2419_0": "* 啊^1,你是个智障?/", "scr_text_slash_scr_text_gml_2420_0": "* 啊^1,你是个婴儿?/", "scr_text_slash_scr_text_gml_2421_0": "* 啊^1,你是个智障婴儿?/", - "scr_text_slash_scr_text_gml_2422_0": "* .../", + "scr_text_slash_scr_text_gml_2422_0": "", "scr_text_slash_scr_text_gml_2423_0": "* 跟你说实话^1,其实我也是。/", "scr_text_slash_scr_text_gml_2424_0": "* 咱们共勉吧^1,好吗?/", "scr_text_slash_scr_text_gml_2425_0": "* (嘀...)/%", @@ -11018,7 +11092,7 @@ "scr_text_slash_scr_text_gml_2490_0": "\\E0* 毕竟他是新面孔^1,&需要交朋友的。/", "scr_text_slash_scr_text_gml_2491_0": "\\E2* 总之^1,谢谢你肯答应我&陪他一起玩。/", "scr_text_slash_scr_text_gml_2492_0": "\\E5* 回见。/%", - "scr_text_slash_scr_text_gml_2499_0": " #Susie", + "scr_text_slash_scr_text_gml_2499_0": "", "scr_text_slash_scr_text_gml_2500_0": " #钥匙", "scr_text_slash_scr_text_gml_2501_0": "想点办法", "scr_text_slash_scr_text_gml_2502_0": "没事了", @@ -11030,8 +11104,8 @@ "scr_text_slash_scr_text_gml_2508_0": "\\E3* 我忘了房门钥匙^1,而且.../", "scr_text_slash_scr_text_gml_2509_0": "\\E4* 抱歉^1,Kris^1,我之后再帮你^1,&可以吗?/", "scr_text_slash_scr_text_gml_2510_0": "\\E0* 学校见^1,Kris!/", - "scr_text_slash_scr_text_gml_2511_0": "\\E1* .../", - "scr_text_slash_scr_text_gml_2512_0": "\\E5* .../", + "scr_text_slash_scr_text_gml_2511_0": "", + "scr_text_slash_scr_text_gml_2512_0": "", "scr_text_slash_scr_text_gml_2513_0": "\\E4* 呃^1,Kris?/", "scr_text_slash_scr_text_gml_2514_0": "\\E0* 你想要..^1. 聊点什么吗?/", "scr_text_slash_scr_text_gml_2515_0": "\\C4", @@ -11040,11 +11114,11 @@ "scr_text_slash_scr_text_gml_2525_0": " #她人很好", "scr_text_slash_scr_text_gml_2526_0": " #人品很糟", "scr_text_slash_scr_text_gml_2527_0": "她吃粉笔", - "scr_text_slash_scr_text_gml_2528_0": "...", + "scr_text_slash_scr_text_gml_2528_0": "", "scr_text_slash_scr_text_gml_2531_0": "\\E4* Susie^1!没错^1,&你之前和Susie呆在一起!/", "scr_text_slash_scr_text_gml_2532_0": "\\E3* 你们没回来上课^1,&搞得我很担心^1,但是.../", "scr_text_slash_scr_text_gml_2533_0": "\\E4* 最后还是一切顺利解决了^1!&大概?/", - "scr_text_slash_scr_text_gml_2534_0": "\\E5* .../", + "scr_text_slash_scr_text_gml_2534_0": "", "scr_text_slash_scr_text_gml_2535_0": "\\E3* ...呃^1,Kris^1?&我能问你个问题吗?/", "scr_text_slash_scr_text_gml_2536_0": "\\E4* Susie..^1. 我有点..^1. &好奇她是怎样的一个人?/", "scr_text_slash_scr_text_gml_2537_0": "\\E8* 我是说^1,谁不对她好奇嘛^1?&她从来不和任何人说话。/", @@ -11060,7 +11134,7 @@ "scr_text_slash_scr_text_gml_2560_0": "\\E1* 唔..^1. Kris...^1?&你感觉还好吗?/", "scr_text_slash_scr_text_gml_2561_0": "\\E5* 你通常不这么...健谈的。/", "scr_text_slash_scr_text_gml_2562_0": "\\E4* 噢!我不是故意说得像&你有什么毛病一样的。/", - "scr_text_slash_scr_text_gml_2563_0": "\\E4* .../", + "scr_text_slash_scr_text_gml_2563_0": "", "scr_text_slash_scr_text_gml_2564_0": "\\E2* 唔^1,Kris^1,出什么事了吗?/", "scr_text_slash_scr_text_gml_2565_0": "\\E3* 为什么你会&去医院看我爸爸...?/", "scr_text_slash_scr_text_gml_2566_0": "\\E2* 我是说^1,我知道他会很感激的^1,&但...唔.../", @@ -11092,7 +11166,7 @@ "scr_text_slash_scr_text_gml_2613_0": "\\E3* 就、就像你那次告诉我Ice-E&是真的^1,还吃小孩.../", "scr_text_slash_scr_text_gml_2614_0": "\\E8* 结果你就被Dess用软球棒敲^1,&敲到承认撒谎为止。/", "scr_text_slash_scr_text_gml_2615_0": "\\E2* ...嗯^1?你在说实话^1?&没开玩笑?/", - "scr_text_slash_scr_text_gml_2616_0": "\\E5* .../", + "scr_text_slash_scr_text_gml_2616_0": "", "scr_text_slash_scr_text_gml_2617_0": "\\E0* 唔^1,那样的话..^1. &她喜欢吃哪种颜色的粉笔?/", "scr_text_slash_scr_text_gml_2618_0": "\\E4* 还有^1,你觉得她喜欢细的&还是粗的粉笔...?/", "scr_text_slash_scr_text_gml_2619_0": "\\E8* (等等^1,或许给她做一份&粉笔便当有点愚蠢...)/%", @@ -11172,8 +11246,8 @@ "scr_text_slash_scr_text_gml_2766_0": "* (你把钥匙放在门前。)/%", "scr_text_slash_scr_text_gml_2771_0": "* 你早就已经无法回头啦^1!&你别无选择!/%", "scr_text_slash_scr_text_gml_2777_0": "* 请勿逗留!/%", - "scr_text_slash_scr_text_gml_2780_0": " #Blaze", - "scr_text_slash_scr_text_gml_2781_0": " #Do Not Blaze", + "scr_text_slash_scr_text_gml_2780_0": "", + "scr_text_slash_scr_text_gml_2781_0": "", "scr_text_slash_scr_text_gml_2783_0": " #烧", "scr_text_slash_scr_text_gml_2784_0": " #不烧", "scr_text_slash_scr_text_gml_2785_0": "", @@ -11210,9 +11284,9 @@ "scr_text_slash_scr_text_gml_2864_0": " #一楼", "scr_text_slash_scr_text_gml_2865_0": "????", "scr_text_slash_scr_text_gml_2867_0": "* (要乘电梯前往哪里?)/", - "scr_text_slash_scr_text_gml_2868_0": "\\C3", + "scr_text_slash_scr_text_gml_2868_0": "", "scr_text_slash_scr_text_gml_2868_0_b": "", - "scr_text_slash_scr_text_gml_2874_0": "%%", + "scr_text_slash_scr_text_gml_2874_0": "", "scr_text_slash_scr_text_gml_2893_0": "* (你已经在那了。)/%", "scr_text_slash_scr_text_gml_2909_0": "* (你已经在那了。)/%", "scr_text_slash_scr_text_gml_2925_0": "* (你已经在那了。)/%", @@ -11220,9 +11294,9 @@ "scr_text_slash_scr_text_gml_2935_0": " #不坐", "scr_text_slash_scr_text_gml_2938_0": "* (乘坐电梯吗?)/", "scr_text_slash_scr_text_gml_2938_0_b": "", - "scr_text_slash_scr_text_gml_2939_0": "\\C2", + "scr_text_slash_scr_text_gml_2939_0": "", "scr_text_slash_scr_text_gml_2939_0_b": "", - "scr_text_slash_scr_text_gml_2945_0": "%%", + "scr_text_slash_scr_text_gml_2945_0": "", "scr_text_slash_scr_text_gml_2966_0": " #好啊", "scr_text_slash_scr_text_gml_2967_0": " #算了", "scr_text_slash_scr_text_gml_2970_0": "", @@ -11234,7 +11308,7 @@ "scr_text_slash_scr_text_gml_2977_0": "\\E2* 其实你想跟每个人&正式地告个别^1,我说中了吧?/", "scr_text_slash_scr_text_gml_2978_0": "\\E3* 这个嘛^1,我反正一点都不打算&再多留半刻^1,不过.../", "scr_text_slash_scr_text_gml_2979_0": "\\E2* 咱们回去多待一会儿也不是不行^1。&按你的意思。/", - "scr_text_slash_scr_text_gml_2980_0": "\\C2", + "scr_text_slash_scr_text_gml_2980_0": "", "scr_text_slash_scr_text_gml_2986_0": "\\E2* 好了^1,&那咱们还磨蹭什么呢?/", "scr_text_slash_scr_text_gml_2987_0": "\\E9* 咱们回头吧!/%", "scr_text_slash_scr_text_gml_2991_0": "\\E4* 拜托^1,别逞强了!/", @@ -11249,12 +11323,12 @@ "scr_text_slash_scr_text_gml_3005_0": "\\E4* ...并且对我们言听计从。/", "scr_text_slash_scr_text_gml_3007_0": "* 吼吼吼!^1!我们的话就是命令! !/", "scr_text_slash_scr_text_gml_3010_0": "\\E1* 所以^1,你们怎么看...?/", - "scr_text_slash_scr_text_gml_3011_0": "\\C2", + "scr_text_slash_scr_text_gml_3011_0": "", "scr_text_slash_scr_text_gml_3015_0": "* 呃^1,没必要回答了。/", "scr_text_slash_scr_text_gml_3016_0": "\\E2* 反正怎样我们都要&揍扁你们的^1,所以.../", "scr_text_slash_scr_text_gml_3017_0": "\\E3* 拜拜了!/%", "scr_text_slash_scr_text_gml_3022_0": " #我", - "scr_text_slash_scr_text_gml_3023_0": " #Asriel", + "scr_text_slash_scr_text_gml_3023_0": "", "scr_text_slash_scr_text_gml_3024_0": "派", "scr_text_slash_scr_text_gml_3025_0": "花", "scr_text_slash_scr_text_gml_3026_0": "没什么", @@ -11262,10 +11336,10 @@ "scr_text_slash_scr_text_gml_3028_0": "\\C4", "scr_text_slash_scr_text_gml_3033_0": "\\E0* クリスも すっかり&  おおきくなっちゃって.../", "scr_text_slash_scr_text_gml_3034_0": "\\E9* あなたも じきに&  だいがくへ&  いってしまうのね.../", - "scr_text_slash_scr_text_gml_3036_0": "\\E1* .../", + "scr_text_slash_scr_text_gml_3036_0": "", "scr_text_slash_scr_text_gml_3036_0_b": "\\E0* Kris^1,亲爱的^1,&你都已经长这么大了.../", "scr_text_slash_scr_text_gml_3037_0": "\\E9* 很快你也要出去上大学了.../", - "scr_text_slash_scr_text_gml_3038_0": "\\E0* あかいツノが ついた&  カチューシャを&  かってあげたでしょう?/", + "scr_text_slash_scr_text_gml_3038_0": "", "scr_text_slash_scr_text_gml_3039_0": "\\E9* 你还记得小时候.../", "scr_text_slash_scr_text_gml_3040_0": "\\E8* 还记得你问自己什么时候&才能长出角来吗?/", "scr_text_slash_scr_text_gml_3041_0": "\\E0* 所以我们给你买了那条&带着红色角的头带。/", @@ -11286,11 +11360,11 @@ "scr_text_slash_scr_text_gml_3060_0": "\\E5* ...当然^1,我得能吃到一份。/%", "scr_text_slash_scr_text_gml_3064_0": "\\E8* 噢^1。Kris...^1?花^1?&给妈妈的...?/", "scr_text_slash_scr_text_gml_3065_0": "\\E9* 真开心.../", - "scr_text_slash_scr_text_gml_3066_0": "\\E9* .../", + "scr_text_slash_scr_text_gml_3066_0": "", "scr_text_slash_scr_text_gml_3067_0": "\\E5* 这些花是他的^1,对吧。/", "scr_text_slash_scr_text_gml_3069_0": "\\E0* 呃^1,好吧^1,别担心^1,&Kris^1,我会.../", "scr_text_slash_scr_text_gml_3070_0": "\\E5* ...找个地方放起来的。/%", - "scr_text_slash_scr_text_gml_3070_0_b": "\\E1* .../", + "scr_text_slash_scr_text_gml_3070_0_b": "", "scr_text_slash_scr_text_gml_3078_0": "\\E1* Kris^1,或许你今晚该&早点睡了.../", "scr_text_slash_scr_text_gml_3079_0": "* 你看起来像换了个人似的。/%", "scr_text_slash_scr_text_gml_3084_0": " #平原", @@ -11344,12 +11418,12 @@ "scr_text_slash_scr_text_gml_3234_0": "实际上我#睡眠质量#还提升了", "scr_text_slash_scr_text_gml_3235_0": "", "scr_text_slash_scr_text_gml_3236_0": "", - "scr_text_slash_scr_text_gml_3239_0": "\\E3* Kris.../", + "scr_text_slash_scr_text_gml_3239_0": "", "scr_text_slash_scr_text_gml_3240_0": "\\E5* 关于这个小组搭档的事情.../", "scr_text_slash_scr_text_gml_3241_0": "\\E9* 你该不会是因为这个&而睡不着觉吧?/", "scr_text_slash_scr_text_gml_3242_0": "\\C2", "scr_text_slash_scr_text_gml_3250_0": "\\E1* 你说这话的时候^1,&没带一点儿负面情绪。/", - "scr_text_slash_scr_text_gml_3251_0": "\\EC* .../", + "scr_text_slash_scr_text_gml_3251_0": "", "scr_text_slash_scr_text_gml_3252_0": "\\E1* Kris^1,作为你的老师^1,&我^1,呃.../", "scr_text_slash_scr_text_gml_3253_0": "\\E5* 我在自己的职权范围内^1,&能给出的建议非常有限。/", "scr_text_slash_scr_text_gml_3254_0": "\\E7* 但如果你感兴趣的话^1,&我倒有个推荐。/", @@ -11400,7 +11474,7 @@ "scr_text_slash_scr_text_gml_3354_0": "\\E4\\M3* 看我用这个巨型仓鼠水壶&大喝特喝!/", "scr_text_slash_scr_text_gml_3355_0": "\\E4* 哈哈哈!^1!&* (咕噜咕噜^1)&* 感受绝望吧!!/", "scr_text_slash_scr_text_gml_3357_0": "\\EB* 呃^1,当我没说。/", - "scr_text_slash_scr_text_gml_3358_0": "\\M0 %%", + "scr_text_slash_scr_text_gml_3358_0": "", "scr_text_slash_scr_text_gml_3363_0": "\\EQ* 国王先生^1,光之民把大家&都平安地带过来了。/", "scr_text_slash_scr_text_gml_3364_0": "\\EI* 所以^1,&您能否再考虑一下.../", "scr_text_slash_scr_text_gml_3366_0": "\\E5* 什么?&在你小子统治的王国里生活?/", @@ -11423,7 +11497,7 @@ "scr_text_slash_scr_text_gml_3388_0": "\\ED* 还是要/", "scr_text_slash_scr_text_gml_3389_0": "\\EC* 在我 胸猛的 统治下&欣欣向荣/", "scr_text_slash_scr_text_gml_3390_0": "\\C2", - "scr_text_slash_scr_text_gml_3394_0": "%%", + "scr_text_slash_scr_text_gml_3394_0": "", "scr_text_slash_scr_text_gml_3398_0": " 撒谎# 回答#还想听", "scr_text_slash_scr_text_gml_3399_0": "不聊了", "scr_text_slash_scr_text_gml_3400_0": "", @@ -11471,7 +11545,7 @@ "scr_text_slash_scr_text_gml_3486_0": "\\E2* 嘿嘿^1,好主意^1。&人们喜欢用嘴贴着水龙头喝^1, &你知道的。/", "scr_text_slash_scr_text_gml_3487_0": "\\EK* 啥?啥!?&会有人这样干的吧^1,&会的吧!?/%", "scr_text_slash_scr_text_gml_3492_0": "#黑暗世界", - "scr_text_slash_scr_text_gml_3493_0": "#...", + "scr_text_slash_scr_text_gml_3493_0": "", "scr_text_slash_scr_text_gml_3494_0": "", "scr_text_slash_scr_text_gml_3495_0": "", "scr_text_slash_scr_text_gml_3497_0": "* 喂^1!别站在马路中间!!/", @@ -11492,7 +11566,7 @@ "scr_text_slash_scr_text_gml_3565_0": "\\E4* 哦..^1. 哦^1,&我的自行车吗...?它..^1. &诶嘿嘿^1,已经成一堆破烂了.../", "scr_text_slash_scr_text_gml_3566_0": "\\E5* 我..^1. 唔..^1. &出了一个小车祸^1,呃.../", "scr_text_slash_scr_text_gml_3567_0": "\\E6* 要知道^1,有那位警-警官在^1,&而且..^1. 呃.../", - "scr_text_slash_scr_text_gml_3568_0": "\\EB* .../", + "scr_text_slash_scr_text_gml_3568_0": "", "scr_text_slash_scr_text_gml_3569_0": "\\E4* 情况很复杂。&你最近怎么样?/", "scr_text_slash_scr_text_gml_3570_0": "\\C3", "scr_text_slash_scr_text_gml_3574_0": "* K..^1. Kris^1!&老-老师能帮你什么吗...?/", @@ -11537,39 +11611,39 @@ "scr_text_slash_scr_text_gml_3637_0": "\\M4* 噢!!^1!&我被人想念了!!!/", "scr_text_slash_scr_text_gml_3638_0": "* 我的存在!!&有人还记得!^1!/", "scr_text_slash_scr_text_gml_3639_0": "* 棒上天啦^1,你听到没!!/", - "scr_text_slash_scr_text_gml_3640_0": "* .../", + "scr_text_slash_scr_text_gml_3640_0": "", "scr_text_slash_scr_text_gml_3641_0": "\\M1* 你听到没..^1. 你凑近些听我说。/", "scr_text_slash_scr_text_gml_3642_0": "\\M2* 你是我的朋友,没错吧?/", "scr_text_slash_scr_text_gml_3643_0": "\\M0* 作为我的朋友..^1. 你想不想..^1. &听一个我的小秘密?/", - "scr_text_slash_scr_text_gml_3644_0": "* .../", + "scr_text_slash_scr_text_gml_3644_0": "", "scr_text_slash_scr_text_gml_3645_0": "\\M5* 时不时的..^1. 我会在晚上听到一首歌。/", "scr_text_slash_scr_text_gml_3646_0": "\\M0* 只是一首歌的一小部分。/", "scr_text_slash_scr_text_gml_3647_0": "\\M2* 听起来就像是..^1. &从水底传上来的。&很深的水底。/", - "scr_text_slash_scr_text_gml_3648_0": "* .../", + "scr_text_slash_scr_text_gml_3648_0": "", "scr_text_slash_scr_text_gml_3649_0": "* 你..^1. 你觉得.../", "scr_text_slash_scr_text_gml_3650_0": "\\M0* 会不会是有人想作为主唱&加入我的乐队!?/", "scr_text_slash_scr_text_gml_3651_0": "\\M2* 哇啊^1,我又要交到新朋友了^1!&我有预感^1,你听到没!!/", - "scr_text_slash_scr_text_gml_3652_0": "* .../", + "scr_text_slash_scr_text_gml_3652_0": "", "scr_text_slash_scr_text_gml_3653_0": "\\M5* 你想听听我另一个秘密吗...?/", - "scr_text_slash_scr_text_gml_3654_0": "* .../", + "scr_text_slash_scr_text_gml_3654_0": "", "scr_text_slash_scr_text_gml_3655_0": "* ..^1. 我觉得.../", "scr_text_slash_scr_text_gml_3656_0": "\\E0* ...自己好像.../", - "scr_text_slash_scr_text_gml_3657_0": "* .../", + "scr_text_slash_scr_text_gml_3657_0": "", "scr_text_slash_scr_text_gml_3658_0": "\\M2* ..^1. 曾经听过那首歌..^1. &从海上传来的。/", "scr_text_slash_scr_text_gml_3659_0": "* 完整的那首歌。/", "scr_text_slash_scr_text_gml_3660_0": "* 那不是一首“新曲”。/", "scr_text_slash_scr_text_gml_3661_0": "\\M1* 但是..^1. 我不记得了..^1. &我..^1. 我不记得了^1,你听到没!/", "scr_text_slash_scr_text_gml_3662_0": "\\M0* 我准备去调查一番^1,你听到没!/", "scr_text_slash_scr_text_gml_3663_0": "* 记得明天也要来哦^1,你听到没!/", - "scr_text_slash_scr_text_gml_3664_0": "Onion", + "scr_text_slash_scr_text_gml_3664_0": "", "scr_text_slash_scr_text_gml_3667_0": "美人", "scr_text_slash_scr_text_gml_3670_0": "Asriel二世", "scr_text_slash_scr_text_gml_3672_0": "* ~1正在调查这件事情!/", "scr_text_slash_scr_text_gml_3673_0": "\\M3* (那是我的名字^1,对吧?)/", "scr_text_slash_scr_text_gml_3674_0": "打嘴吧!!", - "scr_text_slash_scr_text_gml_3674_1": "Kiss!", + "scr_text_slash_scr_text_gml_3674_1": "", "scr_text_slash_scr_text_gml_3675_0": "\\M0* 回见^1,~1^1!/%", - "scr_text_slash_scr_text_gml_3678_0": "%%", + "scr_text_slash_scr_text_gml_3678_0": "", "scr_text_slash_scr_text_gml_3683_0": "#我们走吧!#我们走吧!", "scr_text_slash_scr_text_gml_3684_0": "#我们可以用#我家的电脑", "scr_text_slash_scr_text_gml_3685_0": "", @@ -11581,7 +11655,7 @@ "scr_text_slash_scr_text_gml_3699_0": "\\EY* 我等不及想要再来一次了!/", "scr_text_slash_scr_text_gml_3700_0": "\\EQ* 虽然我不知道这里面会有什么^1,&但是.../", "scr_text_slash_scr_text_gml_3701_0": "\\EY* 不进去看个究竟,&活着还有什么意思啊!?/%", - "scr_text_slash_scr_text_gml_3706_0": "\\EV* .../", + "scr_text_slash_scr_text_gml_3706_0": "", "scr_text_slash_scr_text_gml_3707_0": "\\EV* Kris^1,你说得对。/", "scr_text_slash_scr_text_gml_3708_0": "\\EW* 你刚刚所说的^1,&确实是最正确的选择。/", "scr_text_slash_scr_text_gml_3709_0": "\\EV* 但你犯了一个错。/", @@ -11591,7 +11665,7 @@ "scr_text_slash_scr_text_gml_3713_0": "\\EV* 而且只要你在我旁边.../", "scr_text_slash_scr_text_gml_3714_0": "\\EY* 我就会把你也一起拽下去!/%", "scr_text_slash_scr_text_gml_3719_0": "#聊聊", - "scr_text_slash_scr_text_gml_3720_0": "#Susie", + "scr_text_slash_scr_text_gml_3720_0": "", "scr_text_slash_scr_text_gml_3721_0": "不要", "scr_text_slash_scr_text_gml_3722_0": "", "scr_text_slash_scr_text_gml_3733_0": "\\E5* (窃笑^1,窃笑)/", @@ -11649,27 +11723,27 @@ "scr_text_slash_scr_text_gml_3841_0": "#你的家人# 真奇怪", "scr_text_slash_scr_text_gml_3842_0": "", "scr_text_slash_scr_text_gml_3843_0": "", - "scr_text_slash_scr_text_gml_3845_0": "\\E0* .../", + "scr_text_slash_scr_text_gml_3845_0": "", "scr_text_slash_scr_text_gml_3846_0": "\\E1* ..^1. 别理他们。/", "scr_text_slash_scr_text_gml_3847_0": "\\E0* ..^1. 我知道的。/", "scr_text_slash_scr_text_gml_3848_0": "\\E0* 他们真令人尴尬。/", - "scr_text_slash_scr_text_gml_3849_0": "\\E0* .../", + "scr_text_slash_scr_text_gml_3849_0": "", "scr_text_slash_scr_text_gml_3850_0": "\\E1* 为什么他们要来这儿?/", "scr_text_slash_scr_text_gml_3851_0": "\\C2", - "scr_text_slash_scr_text_gml_3858_0": "\\E0* .../", + "scr_text_slash_scr_text_gml_3858_0": "", "scr_text_slash_scr_text_gml_3859_0": "* ..^1. 那样的话他们可以。/", "scr_text_slash_scr_text_gml_3860_0": "\\E1* 关心点别的。/", - "scr_text_slash_scr_text_gml_3861_0": "\\E0* .../%", + "scr_text_slash_scr_text_gml_3861_0": "", "scr_text_slash_scr_text_gml_3867_0": "\\E0* ..^1. 我懂。/", - "scr_text_slash_scr_text_gml_3868_0": "\\E0* .../", + "scr_text_slash_scr_text_gml_3868_0": "", "scr_text_slash_scr_text_gml_3869_0": "\\E0* 我希望他们能..^1. 正常一点。/", "scr_text_slash_scr_text_gml_3870_0": "\\E1* ..^1. 或者至少/", "scr_text_slash_scr_text_gml_3871_0": "\\E2* 更哥特一点。/%", - "scr_text_slash_scr_text_gml_3877_0": "#Noelle", + "scr_text_slash_scr_text_gml_3877_0": "", "scr_text_slash_scr_text_gml_3878_0": "#家庭", - "scr_text_slash_scr_text_gml_3879_0": "Jockington", + "scr_text_slash_scr_text_gml_3879_0": "", "scr_text_slash_scr_text_gml_3880_0": "没事了", - "scr_text_slash_scr_text_gml_3882_0": "\\E0* .../", + "scr_text_slash_scr_text_gml_3882_0": "", "scr_text_slash_scr_text_gml_3883_0": "\\E1* 怎样?/", "scr_text_slash_scr_text_gml_3884_0": "\\C4", "scr_text_slash_scr_text_gml_3891_0": "\\E0* 发金黄,眼汪汪。/", @@ -11678,16 +11752,16 @@ "scr_text_slash_scr_text_gml_3894_0": "\\E0* 教会她.../", "scr_text_slash_scr_text_gml_3895_0": "\\E1* 保护咒。/", "scr_text_slash_scr_text_gml_3896_0": "\\E2* 让她见识..^1. 神秘学。/", - "scr_text_slash_scr_text_gml_3897_0": "\\E1* .../", + "scr_text_slash_scr_text_gml_3897_0": "", "scr_text_slash_scr_text_gml_3898_0": "\\E0* 但是最近,她陷入了.../", "scr_text_slash_scr_text_gml_3899_0": "\\E0* ..^1. 深邃的黑暗中。/", - "scr_text_slash_scr_text_gml_3900_0": "\\E0* .../", + "scr_text_slash_scr_text_gml_3900_0": "", "scr_text_slash_scr_text_gml_3901_0": "\\E1* ...Kris./", "scr_text_slash_scr_text_gml_3902_0": "\\E0* 你在黑暗之中前行。/", "scr_text_slash_scr_text_gml_3903_0": "\\E0* 保护好她。/", "scr_text_slash_scr_text_gml_3904_0": "\\E1* ..^1. 别让Susie伤到她。/", "scr_text_slash_scr_text_gml_3905_0": "\\E1* ..^1. 我说是的Susie./%", - "scr_text_slash_scr_text_gml_3910_0": "\\E0* .../", + "scr_text_slash_scr_text_gml_3910_0": "", "scr_text_slash_scr_text_gml_3911_0": "\\E0* 爸爸。&妈妈。&姐姐。/", "scr_text_slash_scr_text_gml_3912_0": "\\E0* 尤克里里。&足球赛。&肥皂剧。/", "scr_text_slash_scr_text_gml_3913_0": "\\E0* 嘶吼尖叫。&站在桌上。&怕吸尘器。/", @@ -11704,7 +11778,7 @@ "scr_text_slash_scr_text_gml_3927_0": "\\E1* 再往包里塞。/", "scr_text_slash_scr_text_gml_3928_0": "\\E1* 真是好孩子。/", "scr_text_slash_scr_text_gml_3929_0": "\\E0* ..^1. 让人不明白。/%", - "scr_text_slash_scr_text_gml_3932_0": "%%", + "scr_text_slash_scr_text_gml_3932_0": "", "scr_text_slash_scr_text_gml_3937_0": "#关于Gerson", "scr_text_slash_scr_text_gml_3938_0": "#关于战锤", "scr_text_slash_scr_text_gml_3939_0": "关于Asriel", @@ -11728,7 +11802,7 @@ "scr_text_slash_scr_text_gml_3976_0": "* 那篇小说^1,就是从这样简单的目的出发,&被创作出来^1,/", "scr_text_slash_scr_text_gml_3977_0": "* 如同繁花盛开^1,&化为了如此美妙的东西^1,&甚至足以改变世界.../", "scr_text_slash_scr_text_gml_3978_0": "* 这就是语言的伟大力量^1,Kris./", - "scr_text_slash_scr_text_gml_3979_0": "* .../", + "scr_text_slash_scr_text_gml_3979_0": "", "scr_text_slash_scr_text_gml_3980_0": "* 我的父亲有幸能够拥有&如此高超的写作才华。/%", "scr_text_slash_scr_text_gml_3984_0": "* 啊^1,Kris^1,你的哥哥^1。&他是一位非常和善的小伙子。/", "scr_text_slash_scr_text_gml_3985_0": "* 在他更小的时候^1,&甚至还有点..^1. 热心过头了。/", @@ -11742,8 +11816,8 @@ "scr_text_slash_scr_text_gml_3993_0": "* 我总是会“宽恕”他,&然后送他回家。/%", "scr_text_slash_scr_text_gml_3997_0": "* 再见^1,Kris,&愿天使守望着你.../%", "scr_text_slash_scr_text_gml_4002_0": "#现在的情况", - "scr_text_slash_scr_text_gml_4003_0": "#Susie", - "scr_text_slash_scr_text_gml_4004_0": "Noelle", + "scr_text_slash_scr_text_gml_4003_0": "", + "scr_text_slash_scr_text_gml_4004_0": "", "scr_text_slash_scr_text_gml_4005_0": "没事了", "scr_text_slash_scr_text_gml_4014_0": "\\E4* 抱歉^1,我..^1. 嘿嘿。/", "scr_text_slash_scr_text_gml_4015_0": "\\E5* 现在..^1. 没什么力气。/", @@ -11796,19 +11870,19 @@ "scr_text_slash_scr_text_gml_4111_0": "* 顺便^1,替我向你爸爸问好~!/", "scr_text_slash_scr_text_gml_4112_0": "* 等等!^1!等等!^1!别那样做!^1!&他不知道我----当我没说!!/%", "scr_text_slash_scr_text_gml_4129_0": "* ..^1. 好^1!好吧!^1!好吧!!^1!&想和其他人聊聊吗!?在这等着!/", - "scr_text_slash_scr_text_gml_4130_0": "* .../", + "scr_text_slash_scr_text_gml_4130_0": "", "scr_text_slash_scr_text_gml_4131_0": "* ..^1. 老天^1,有人来这儿看我了?/", "scr_text_slash_scr_text_gml_4137_0": "* ..^1. 又是你啊^1,亲爱的。/", "scr_text_slash_scr_text_gml_4138_0": "* 老天,你为什么一直来敲我的门?/", "scr_text_slash_scr_text_gml_4139_0": "* 你是..^1. 我的粉丝?/", "scr_text_slash_scr_text_gml_4140_0": "* 哈哈..^1. 像我这样的无名小卒&怎么会有粉丝呢。/", - "scr_text_slash_scr_text_gml_4141_0": "* .../", + "scr_text_slash_scr_text_gml_4141_0": "", "scr_text_slash_scr_text_gml_4142_0": "* 好吧^1,如果你是我的粉丝,&哈哈,能帮我个忙吗?/", "scr_text_slash_scr_text_gml_4146_0": "* ..^1. 敲一个陌生人的门,可太奇怪了。/", "scr_text_slash_scr_text_gml_4147_0": "* 你就没点教养吗^1,亲爱的?/", "scr_text_slash_scr_text_gml_4148_0": "* 好吧。/", "scr_text_slash_scr_text_gml_4149_0": "* 我想^1,像我这样的无名小卒&可不敢对公司怨声载道。/", - "scr_text_slash_scr_text_gml_4150_0": "* .../", + "scr_text_slash_scr_text_gml_4150_0": "", "scr_text_slash_scr_text_gml_4151_0": "* 那我借此机会和你抱怨一下。/", "scr_text_slash_scr_text_gml_4154_0": "* 自从断网以来^1,&我就没有什么.../", "scr_text_slash_scr_text_gml_4155_0": "* 可以玩的。/", @@ -11828,26 +11902,26 @@ "scr_text_slash_scr_text_gml_4180_0": "\\EI* 我们分头行动会更好。/", "scr_text_slash_scr_text_gml_4181_0": "\\E2* 你想跟谁一起走呢?/", "scr_text_slash_scr_text_gml_4182_0": "\\C2", - "scr_text_slash_scr_text_gml_4186_0": "%%", + "scr_text_slash_scr_text_gml_4186_0": "", "scr_text_slash_scr_text_gml_4191_0": "#是的", "scr_text_slash_scr_text_gml_4192_0": "#不着急", "scr_text_slash_scr_text_gml_4193_0": "", "scr_text_slash_scr_text_gml_4194_0": "", "scr_text_slash_scr_text_gml_4196_0": "\\E0* Kris^1,你要回家了吗?/", "scr_text_slash_scr_text_gml_4197_0": "\\C2", - "scr_text_slash_scr_text_gml_4203_0": "%%", + "scr_text_slash_scr_text_gml_4203_0": "", "scr_text_slash_scr_text_gml_4210_0": "\\E3* 啊...?/", "scr_text_slash_scr_text_gml_4211_0": "\\E2* 嗯^1,当然啦^1,真棒^1,好耶!/%", "scr_text_slash_scr_text_gml_4218_0": "#想知道", "scr_text_slash_scr_text_gml_4219_0": "#不在意", "scr_text_slash_scr_text_gml_4220_0": "", "scr_text_slash_scr_text_gml_4221_0": "", - "scr_text_slash_scr_text_gml_4223_0": "\\E0* ..^1. Kris.../", + "scr_text_slash_scr_text_gml_4223_0": "", "scr_text_slash_scr_text_gml_4224_0": "\\EI* ..^1. 你想知道Susie现在&正在做什么吗?/", "scr_text_slash_scr_text_gml_4225_0": "\\C2", "scr_text_slash_scr_text_gml_4232_0": "\\E0* 那就..^1. 闭上眼睛.../", "scr_text_slash_scr_text_gml_4233_0": "\\E2* ..^1. 想象一下她正在做什么?/%", - "scr_text_slash_scr_text_gml_4239_0": "%%", + "scr_text_slash_scr_text_gml_4239_0": "", "scr_text_slash_scr_text_gml_4246_0": "#想知道", "scr_text_slash_scr_text_gml_4247_0": "# 真的#不在意", "scr_text_slash_scr_text_gml_4248_0": "", @@ -11904,7 +11978,7 @@ "scr_text_slash_scr_text_gml_4400_0": "\\m1 *那太可惜了..^2.&\\m3 糟透了..^2.&\\m2 .../", "scr_text_slash_scr_text_gml_4401_0": "\\m2 *我们打起精神来吧!/%", "scr_text_slash_scr_text_gml_4408_0": "\\m3 *这音乐^1,多么的优美啊^2。&\\m2 是我最爱的风格^2。/%", - "scr_text_slash_scr_text_gml_4413_0": "%%", + "scr_text_slash_scr_text_gml_4413_0": "", "scr_text_slash_scr_text_gml_4418_0": " #拿走", "scr_text_slash_scr_text_gml_4419_0": " #算了", "scr_text_slash_scr_text_gml_4420_0": "", @@ -11929,7 +12003,7 @@ "scr_text_slash_scr_text_gml_4517_0": "* 谢谢惠顾!!/", "scr_text_slash_scr_text_gml_4522_0": "* 你的物品栏满了,或黑暗币不足!/%", "scr_text_slash_scr_text_gml_4529_0": "* 你的物品栏满了,或黑暗币不足!/%", - "scr_text_slash_scr_text_gml_4534_0": "%%", + "scr_text_slash_scr_text_gml_4534_0": "", "scr_text_slash_scr_text_gml_4534_0_b": "* (它被放进了你的防具中。)/%", "scr_text_slash_scr_text_gml_4539_0": " #买", "scr_text_slash_scr_text_gml_4540_0": " #不买", @@ -11938,17 +12012,17 @@ "scr_text_slash_scr_text_gml_4544_0": "* 全世界最燃的茶馆!&燃燃燃起来!^1!&全场半价!/", "scr_text_slash_scr_text_gml_4546_0": "* 仅售100黑暗币^1,&选择你的个人口味!!/", "scr_text_slash_scr_text_gml_4547_0": "\\C2", - "scr_text_slash_scr_text_gml_4568_0": "%%", + "scr_text_slash_scr_text_gml_4568_0": "", "scr_text_slash_scr_text_gml_4574_0": "* 你的物品栏满了,或黑暗币不足!!/%", "scr_text_slash_scr_text_gml_4580_0": "* 如果你不选择口味^1,&那该由谁来选!?!?/%", - "scr_text_slash_scr_text_gml_4585_0": " #Kris", - "scr_text_slash_scr_text_gml_4586_0": " #Noelle", - "scr_text_slash_scr_text_gml_4586_1": " #Susie", + "scr_text_slash_scr_text_gml_4585_0": "", + "scr_text_slash_scr_text_gml_4586_0": "", + "scr_text_slash_scr_text_gml_4586_1": "", "scr_text_slash_scr_text_gml_4587_0_b": "", - "scr_text_slash_scr_text_gml_4587_1": "Ralsei", + "scr_text_slash_scr_text_gml_4587_1": "", "scr_text_slash_scr_text_gml_4588_0": "", "scr_text_slash_scr_text_gml_4590_0": "* 好的!^1!&请选择你的个人口味!!/", - "scr_text_slash_scr_text_gml_4596_0": "%%", + "scr_text_slash_scr_text_gml_4596_0": "", "scr_text_slash_scr_text_gml_4617_0": "* 好嘞^1,给你!/", "scr_text_slash_scr_text_gml_4622_0": "#进去", "scr_text_slash_scr_text_gml_4623_0": "#不进去", @@ -11962,8 +12036,8 @@ "scr_text_slash_scr_text_gml_4640_0": "\\ED* 不-不^1,不用担心我^1!&没关系的.../%", "scr_text_slash_scr_text_gml_4646_0": "\\E6* 什么^1?&你想自己一个人进去...?/", "scr_text_slash_scr_text_gml_4647_0": "\\E0* ..^1. 随你便吧。/%", - "scr_text_slash_scr_text_gml_4652_0": "%%", - "scr_text_slash_scr_text_gml_4659_0": "%%", + "scr_text_slash_scr_text_gml_4652_0": "", + "scr_text_slash_scr_text_gml_4659_0": "", "scr_text_slash_scr_text_gml_4664_0": "#给Ralsei", "scr_text_slash_scr_text_gml_4665_0": "#给Susie", "scr_text_slash_scr_text_gml_4666_0": "给Noelle", @@ -11971,18 +12045,18 @@ "scr_text_slash_scr_text_gml_4669_0": "\\EJ* ..^1. 噢^1,Kris...?&你拿着的是什么?/", "scr_text_slash_scr_text_gml_4670_0": "\\E1* 那是..^1. 给谁的礼物?/", "scr_text_slash_scr_text_gml_4671_0": "\\C4", - "scr_text_slash_scr_text_gml_4677_0": "%%", - "scr_text_slash_scr_text_gml_4683_0": "%%", - "scr_text_slash_scr_text_gml_4689_0": "%%", - "scr_text_slash_scr_text_gml_4695_0": "%%", + "scr_text_slash_scr_text_gml_4677_0": "", + "scr_text_slash_scr_text_gml_4683_0": "", + "scr_text_slash_scr_text_gml_4689_0": "", + "scr_text_slash_scr_text_gml_4695_0": "", "scr_text_slash_scr_text_gml_4701_0": "# 我们#停战了", "scr_text_slash_scr_text_gml_4702_0": "#她是#敌人", "scr_text_slash_scr_text_gml_4703_0": "", "scr_text_slash_scr_text_gml_4704_0": "", "scr_text_slash_scr_text_gml_4706_0": "\\EI* (Kris^1,帮帮我...)/", "scr_text_slash_scr_text_gml_4707_0": "\\C2", - "scr_text_slash_scr_text_gml_4713_0": "%%", - "scr_text_slash_scr_text_gml_4719_0": "%%", + "scr_text_slash_scr_text_gml_4713_0": "", + "scr_text_slash_scr_text_gml_4719_0": "", "scr_text_slash_scr_text_gml_4726_0": "#打开", "scr_text_slash_scr_text_gml_4727_0": "#不打开", "scr_text_slash_scr_text_gml_4728_0": "", @@ -11990,12 +12064,12 @@ "scr_text_slash_scr_text_gml_4731_0": "* 厕所的洗手台。/", "scr_text_slash_scr_text_gml_4732_0": "* 你要打开水龙头吗?/", "scr_text_slash_scr_text_gml_4733_0": "\\C2", - "scr_text_slash_scr_text_gml_4742_0": "%%", + "scr_text_slash_scr_text_gml_4742_0": "", "scr_text_slash_scr_text_gml_4749_0": "* 水龙头一动不动,等着你去打开。/%", - "scr_text_slash_scr_text_gml_4754_0": "#Noelle", - "scr_text_slash_scr_text_gml_4755_0": "#Ralsei", + "scr_text_slash_scr_text_gml_4754_0": "", + "scr_text_slash_scr_text_gml_4755_0": "", "scr_text_slash_scr_text_gml_4756_0": "你", - "scr_text_slash_scr_text_gml_4757_0": "...", + "scr_text_slash_scr_text_gml_4757_0": "", "scr_text_slash_scr_text_gml_4759_0": "\\EA* 但假设你非得^1,呃^1,&跟某个人一起去的话。/", "scr_text_slash_scr_text_gml_4760_0": "\\E2* 你会选Noelle..^1. &还是Ralsei?/", "scr_text_slash_scr_text_gml_4761_0": "\\C4", @@ -12012,14 +12086,14 @@ "scr_text_slash_scr_text_gml_4793_0": "我不会#碰奶酪", "scr_text_slash_scr_text_gml_4794_0": "", "scr_text_slash_scr_text_gml_4795_0": "", - "scr_text_slash_scr_text_gml_4800_0": "\\E2* Kris.../", + "scr_text_slash_scr_text_gml_4800_0": "", "scr_text_slash_scr_text_gml_4801_0": "\\E3* 你不会去碰那块奶酪的...^1?&对吧?/", "scr_text_slash_scr_text_gml_4802_0": "\\C2", "scr_text_slash_scr_text_gml_4806_0": "* (地上有一块奶酪。)/", "scr_text_slash_scr_text_gml_4807_0": "\\C2", "scr_text_slash_scr_text_gml_4815_0": "* (你轻轻抚摸着奶酪,&就像在爱抚宠物一样。)/", "scr_text_slash_scr_text_gml_4816_0": "* (突然间...!)/%", - "scr_text_slash_scr_text_gml_4822_0": "%%", + "scr_text_slash_scr_text_gml_4822_0": "", "scr_text_slash_scr_text_gml_4828_0": "#尝一口", "scr_text_slash_scr_text_gml_4829_0": "#算了", "scr_text_slash_scr_text_gml_4830_0": "", @@ -12047,7 +12121,7 @@ "scr_text_slash_scr_text_gml_4958_0": "\\C3", "scr_text_slash_scr_text_gml_4965_0": "* 妈妈咪叭!^1!&我被咖啡馆开除了!^1!&这该如何是好.../", "scr_text_slash_scr_text_gml_4966_0": "\\C2", - "scr_text_slash_scr_text_gml_4975_0": "%%", + "scr_text_slash_scr_text_gml_4975_0": "", "scr_text_slash_scr_text_gml_4994_0": "* 妈妈咪叭^1!你帮我找回了蛋糕.../", "scr_text_slash_scr_text_gml_4995_0": "* Mua^1!你的恩情我永世难忘!!/", "scr_text_slash_scr_text_gml_4996_0": "* 每一天^1,我都会给你做出&头晕目眩的美味!/", @@ -12066,7 +12140,7 @@ "scr_text_slash_scr_text_gml_5034_0": "\\E0* 谁管你啊,Ralsei可以&给我做蛋糕。/", "scr_text_slash_scr_text_gml_5036_0": "* 但..^1. &但我可是职业糕点师...!!!/", "scr_text_slash_scr_text_gml_5037_0": "* (抽泣)大-大伙别在意, &今天的点心可能会有点偏咸!!/%", - "scr_text_slash_scr_text_gml_5043_0": "%%", + "scr_text_slash_scr_text_gml_5043_0": "", "scr_text_slash_scr_text_gml_5048_0": "#合成物品", "scr_text_slash_scr_text_gml_5049_0": "#修理我们", "scr_text_slash_scr_text_gml_5050_0": "交谈", @@ -12078,7 +12152,7 @@ "scr_text_slash_scr_text_gml_5066_0": "\\C4", "scr_text_slash_scr_text_gml_5070_0": "* 欢迎光临顶尖糕点房。/", "scr_text_slash_scr_text_gml_5071_0": "\\C4", - "scr_text_slash_scr_text_gml_5079_0": "%%", + "scr_text_slash_scr_text_gml_5079_0": "", "scr_text_slash_scr_text_gml_5085_0": "* 你的身体^1,也是武器^1。&你们必须要时刻注意维护好它。/", "scr_text_slash_scr_text_gml_5086_0": "* 嗬-哈^1!来感受我的技术吧。/%", "scr_text_slash_scr_text_gml_5093_0": "* 面包...?&你说的是哪种技术?/%", @@ -12129,7 +12203,7 @@ "scr_text_slash_scr_text_gml_5233_0": "* 填洞全靠粉丝捐/", "scr_text_slash_scr_text_gml_5234_0": "* 借贷无门工作艰/", "scr_text_slash_scr_text_gml_5235_0": "* 募捐收获一块钱/", - "scr_text_slash_scr_text_gml_5236_0": "* .../", + "scr_text_slash_scr_text_gml_5236_0": "", "scr_text_slash_scr_text_gml_5237_0": "* 感谢捐赠。/%", "scr_text_slash_scr_text_gml_5244_0": "* 好吧。/%", "scr_text_slash_scr_text_gml_5249_0": "#挑战", @@ -12149,7 +12223,7 @@ "scr_text_slash_scr_text_gml_5275_0": "\\C2", "scr_text_slash_scr_text_gml_5279_0": "* 嘿^1,老板^1!&有什么我能为您效劳的吗!?/", "scr_text_slash_scr_text_gml_5280_0": "\\C2", - "scr_text_slash_scr_text_gml_5290_0": "%%", + "scr_text_slash_scr_text_gml_5290_0": "", "scr_text_slash_scr_text_gml_5296_0": "* 我们会不断添加更多的新挑战^1,&记得随时回来看看^1,老板!/%", "scr_text_slash_scr_text_gml_5301_0": "#加入", "scr_text_slash_scr_text_gml_5302_0": "#不加入", @@ -12171,21 +12245,20 @@ "scr_text_slash_scr_text_gml_5341_0": "\\EI* ..^1. 这么说可能有点奇怪.../", "scr_text_slash_scr_text_gml_5342_0": "\\E1\\M0* 像这样与你独处的感觉..^1. &真的很不错...?/", "scr_text_slash_scr_text_gml_5343_0": "\\C2", - "scr_text_slash_scr_text_gml_5349_0": "%%", - "scr_text_slash_scr_text_gml_5355_0": "%%", - "scr_text_slash_scr_text_gml_5361_0": "", - "scr_text_slash_scr_text_gml_5362_0": "Susie", - "scr_text_slash_scr_text_gml_5363_0": "Noelle", - "scr_text_slash_scr_text_gml_5364_0": "Berdly", + "scr_text_slash_scr_text_gml_5349_0": "", + "scr_text_slash_scr_text_gml_5355_0": "", + "scr_text_slash_scr_text_gml_5362_0": "", + "scr_text_slash_scr_text_gml_5363_0": "", + "scr_text_slash_scr_text_gml_5364_0": "", "scr_text_slash_scr_text_gml_5366_0": "#在想#~1", "scr_text_slash_scr_text_gml_5367_0": "#在想#你", "scr_text_slash_scr_text_gml_5368_0": "$", "scr_text_slash_scr_text_gml_5369_0": "", "scr_text_slash_scr_text_gml_5372_0": "\\E2* ..^1. 你刚刚在想什么?/", "scr_text_slash_scr_text_gml_5373_0": "\\C3", - "scr_text_slash_scr_text_gml_5379_0": "%%", + "scr_text_slash_scr_text_gml_5379_0": "", "scr_text_slash_scr_text_gml_5385_0": "Ralsei是#Ralsei的#样子也很好", - "scr_text_slash_scr_text_gml_5386_0": "#...", + "scr_text_slash_scr_text_gml_5386_0": "", "scr_text_slash_scr_text_gml_5387_0": "", "scr_text_slash_scr_text_gml_5388_0": "", "scr_text_slash_scr_text_gml_5391_0": "\\E1* 当然啦^1,Kris^1。&你也是你自己的样子..^1. &这样真好。/", @@ -12201,7 +12274,7 @@ "scr_text_slash_scr_text_gml_5414_0": "\\EP* 哈哈..^1. 哈哈哈!!!/", "scr_text_slash_scr_text_gml_5415_0": "\\E1* 我说得没错^1,是不是?/", "scr_text_slash_scr_text_gml_5416_0": "\\E2* 这可真像..^1. 你的风格!!/", - "scr_text_slash_scr_text_gml_5417_0": "\\E1* .../", + "scr_text_slash_scr_text_gml_5417_0": "", "scr_text_slash_scr_text_gml_5418_0": "\\E2* ..^1. 我觉得,我挺喜欢你的&这种风格..^1. 哈哈。/%", "scr_text_slash_scr_text_gml_5425_0": "#不摆姿势", "scr_text_slash_scr_text_gml_5426_0": "#拥抱Ralsei", @@ -12210,18 +12283,18 @@ "scr_text_slash_scr_text_gml_5431_0": "\\E1* 看来这趟旅程就快要结束了^1,&Kris.../", "scr_text_slash_scr_text_gml_5432_0": "\\EJ* 哦^1,那边有一个照相机^1!&我们要不要^1,嗯..^1. &摆个姿势!?/", "scr_text_slash_scr_text_gml_5433_0": "\\C4", - "scr_text_slash_scr_text_gml_5439_0": "%%", - "scr_text_slash_scr_text_gml_5445_0": "%%", - "scr_text_slash_scr_text_gml_5451_0": "%%", - "scr_text_slash_scr_text_gml_5457_0": "%%", + "scr_text_slash_scr_text_gml_5439_0": "", + "scr_text_slash_scr_text_gml_5445_0": "", + "scr_text_slash_scr_text_gml_5451_0": "", + "scr_text_slash_scr_text_gml_5457_0": "", "scr_text_slash_scr_text_gml_5463_0": "#黑暗世界", "scr_text_slash_scr_text_gml_5464_0": "#邪恶女王# 的城堡", "scr_text_slash_scr_text_gml_5465_0": "", "scr_text_slash_scr_text_gml_5466_0": "", "scr_text_slash_scr_text_gml_5469_0": "* 呃^1,就是^1,呃.../", "scr_text_slash_scr_text_gml_5470_0": "\\C2", - "scr_text_slash_scr_text_gml_5476_0": "%%", - "scr_text_slash_scr_text_gml_5482_0": "%%", + "scr_text_slash_scr_text_gml_5476_0": "", + "scr_text_slash_scr_text_gml_5482_0": "", "scr_text_slash_scr_text_gml_5488_0": "#指向前方#飞出红心", "scr_text_slash_scr_text_gml_5489_0": "#吃苔藓", "scr_text_slash_scr_text_gml_5490_0": "", @@ -12234,36 +12307,36 @@ "scr_text_slash_scr_text_gml_5515_0": "#做点#狂的", "scr_text_slash_scr_text_gml_5516_0": "", "scr_text_slash_scr_text_gml_5517_0": "", - "scr_text_slash_scr_text_gml_5520_0": "\\EK* .../", + "scr_text_slash_scr_text_gml_5520_0": "", "scr_text_slash_scr_text_gml_5521_0": "\\C2", - "scr_text_slash_scr_text_gml_5527_0": "%%", - "scr_text_slash_scr_text_gml_5533_0": "%%", + "scr_text_slash_scr_text_gml_5527_0": "", + "scr_text_slash_scr_text_gml_5533_0": "", "scr_text_slash_scr_text_gml_5539_0": "# 说点#浪漫的", "scr_text_slash_scr_text_gml_5540_0": "#说点#酷的", "scr_text_slash_scr_text_gml_5541_0": "", "scr_text_slash_scr_text_gml_5542_0": "", "scr_text_slash_scr_text_gml_5545_0": "\\E6* 我..^1. 我^1?&呃.../", "scr_text_slash_scr_text_gml_5546_0": "\\C2", - "scr_text_slash_scr_text_gml_5552_0": "%%", - "scr_text_slash_scr_text_gml_5558_0": "%%", + "scr_text_slash_scr_text_gml_5552_0": "", + "scr_text_slash_scr_text_gml_5558_0": "", "scr_text_slash_scr_text_gml_5564_0": "#说谎", "scr_text_slash_scr_text_gml_5565_0": "#说谎", "scr_text_slash_scr_text_gml_5566_0": "", "scr_text_slash_scr_text_gml_5567_0": "", "scr_text_slash_scr_text_gml_5570_0": "\\EA* 啊这^1,呃^1,/", "scr_text_slash_scr_text_gml_5571_0": "\\C2", - "scr_text_slash_scr_text_gml_5577_0": "%%", - "scr_text_slash_scr_text_gml_5583_0": "%%", + "scr_text_slash_scr_text_gml_5577_0": "", + "scr_text_slash_scr_text_gml_5583_0": "", "scr_text_slash_scr_text_gml_5589_0": "#我很好", "scr_text_slash_scr_text_gml_5590_0": "#我不好", "scr_text_slash_scr_text_gml_5591_0": "", "scr_text_slash_scr_text_gml_5592_0": "", - "scr_text_slash_scr_text_gml_5595_0": "\\E0* .../", + "scr_text_slash_scr_text_gml_5595_0": "", "scr_text_slash_scr_text_gml_5596_0": "\\E1* (Kris..^1. 你起鸡皮疙瘩了。)/", "scr_text_slash_scr_text_gml_5597_0": "\\EC* (..^1. 你还好吗?)/", "scr_text_slash_scr_text_gml_5598_0": "\\C2", - "scr_text_slash_scr_text_gml_5604_0": "%%", - "scr_text_slash_scr_text_gml_5610_0": "%%", + "scr_text_slash_scr_text_gml_5604_0": "", + "scr_text_slash_scr_text_gml_5610_0": "", "scr_text_slash_scr_text_gml_5616_0": "#拿走", "scr_text_slash_scr_text_gml_5617_0": "#不拿", "scr_text_slash_scr_text_gml_5618_0": "", @@ -12271,7 +12344,7 @@ "scr_text_slash_scr_text_gml_5622_0": "* 在这台老旧机器里面&有什么东西在闪闪发光..^1. &要拿走吗?/", "scr_text_slash_scr_text_gml_5623_0": "\\C2", "scr_text_slash_scr_text_gml_5633_0": "* (空磁盘被添加进了你的重要物品中。)/%", - "scr_text_slash_scr_text_gml_5642_0": "%%", + "scr_text_slash_scr_text_gml_5642_0": "", "scr_text_slash_scr_text_gml_5647_0": "#插进去", "scr_text_slash_scr_text_gml_5648_0": "#算了", "scr_text_slash_scr_text_gml_5649_0": "", @@ -12282,7 +12355,7 @@ "scr_text_slash_scr_text_gml_5662_0": "* (你把磁盘插入了坏掉的机器中。)/", "scr_text_slash_scr_text_gml_5663_0": "* (...)/", "scr_text_slash_scr_text_gml_5664_0": "* (什么也没有发生。)/%", - "scr_text_slash_scr_text_gml_5676_0": "%%", + "scr_text_slash_scr_text_gml_5676_0": "", "scr_text_slash_scr_text_gml_5681_0": "#查看#伙伴", "scr_text_slash_scr_text_gml_5682_0": "#推荐", "scr_text_slash_scr_text_gml_5683_0": "离开", @@ -12304,7 +12377,7 @@ "scr_text_slash_scr_text_gml_5717_0": "\\C3", "scr_text_slash_scr_text_gml_5722_0": "* 晚上好^1,老板^1。&请放松休息一下吧.../", "scr_text_slash_scr_text_gml_5723_0": "\\C3", - "scr_text_slash_scr_text_gml_5732_0": "%%", + "scr_text_slash_scr_text_gml_5732_0": "", "scr_text_slash_scr_text_gml_5765_0": "* 为这位年轻的人类^1,&我们推荐巧克力蓝莓拿铁.../", "scr_text_slash_scr_text_gml_5766_0": "* 老板^1,请不要把所有的糖都加进来哦。/%", "scr_text_slash_scr_text_gml_5770_0": "* 为这位年轻的怪物^1,&我们推荐黑莓果馅饼.../", @@ -12313,7 +12386,7 @@ "scr_text_slash_scr_text_gml_5776_0": "* ..^1. 除了和你的颜色很搭配,&没有什么特别的说法。/%", "scr_text_slash_scr_text_gml_5780_0": "* 为这位年轻的小鹿^1,&我们推荐肉桂蛋奶酒。/", "scr_text_slash_scr_text_gml_5781_0": "* 为了使口味更加浓郁,&我们往上面削了些拐杖糖屑。/%", - "scr_text_slash_scr_text_gml_5787_0": "%%", + "scr_text_slash_scr_text_gml_5787_0": "", "scr_text_slash_scr_text_gml_5798_0": "#愿意", "scr_text_slash_scr_text_gml_5799_0": "#不愿意", "scr_text_slash_scr_text_gml_5800_0": "", @@ -12384,7 +12457,7 @@ "scr_text_slash_scr_text_gml_6009_0": "\\C3", "scr_text_slash_scr_text_gml_6013_0": "\\m2  *1个面包圈^1,$80。& 400个面包圈^1,$80。/", "scr_text_slash_scr_text_gml_6014_0": "\\C3", - "scr_text_slash_scr_text_gml_6026_0": "%%", + "scr_text_slash_scr_text_gml_6026_0": "", "scr_text_slash_scr_text_gml_6043_0": "* (你付$80买了1个面包圈。)/", "scr_text_slash_scr_text_gml_6044_0": "\\m2  *我能不能也买一个?&\\m3 你是卖它的!/%", "scr_text_slash_scr_text_gml_6049_0": "\\m2  *你的钱不够?& 没关系^1,这个送你了!/", @@ -12412,7 +12485,7 @@ "scr_text_slash_scr_text_gml_6112_0": "* 我们同情心的圣池。&我们意志力的源泉。/", "scr_text_slash_scr_text_gml_6113_0": "* 我们“生命之力”的容器。/", "scr_text_slash_scr_text_gml_6114_0": "* 但是直到今天^1,&它的真正作用仍然无人知晓。/%", - "scr_text_slash_scr_text_gml_6119_0": "%%", + "scr_text_slash_scr_text_gml_6119_0": "", "scr_text_slash_scr_text_gml_6124_0": "#职业", "scr_text_slash_scr_text_gml_6125_0": "#见弟弟", "scr_text_slash_scr_text_gml_6126_0": "买东西", @@ -12440,7 +12513,7 @@ "scr_text_slash_scr_text_gml_6175_0": "\\E5* 可能要等到你哥哥回家的时候?/%", "scr_text_slash_scr_text_gml_6187_0": "* 弟弟...?/", "scr_text_slash_scr_text_gml_6188_0": "\\E2* 你在说什么呢?/", - "scr_text_slash_scr_text_gml_6189_0": "\\E1* .../", + "scr_text_slash_scr_text_gml_6189_0": "", "scr_text_slash_scr_text_gml_6190_0": "\\E1* ..^1. 我根本就没有弟弟。/", "scr_text_slash_scr_text_gml_6191_0": "\\E5* 哈哈^1,我逗你玩呢,&我其实有的。/", "scr_text_slash_scr_text_gml_6192_0": "\\E2* ..^1. 不过^1,说真的.../", @@ -12495,7 +12568,7 @@ "scr_text_slash_scr_text_gml_6308_0": "* (哦不..^1. 有人一直借阅我的日记...)/", "scr_text_slash_scr_text_gml_6309_0": "* (哦不..^1. 他们在报纸上刊登了读后感...)/", "scr_text_slash_scr_text_gml_6310_0": "* (哦不..^1. 我被高度赞扬了...)/%", - "scr_text_slash_scr_text_gml_6315_0": " %%", + "scr_text_slash_scr_text_gml_6315_0": "", "scr_text_slash_scr_text_gml_6323_0": "#要", "scr_text_slash_scr_text_gml_6324_0": "#不---", "scr_text_slash_scr_text_gml_6325_0": "", @@ -12532,7 +12605,7 @@ "scr_text_slash_scr_text_gml_6413_0": "\\EK* 呃啊^1,万一Ralsei变成了&老师的乖宝宝^1,那可怎么办?/", "scr_text_slash_scr_text_gml_6414_0": "\\E2* 或者^1,根本没什么万一。&老实说^1,我感觉他变成那样&只是时间问题。/", "scr_text_slash_scr_text_gml_6415_0": "\\EA* 哎呀^1,无所谓了。&只要他送老师苹果的时候&也给我捎上一个就行。/", - "scr_text_slash_scr_text_gml_6416_0": "\\E6* .../", + "scr_text_slash_scr_text_gml_6416_0": "", "scr_text_slash_scr_text_gml_6417_0": "\\E7* 什么?苹果味洗发水?&没有^1,我一口都没喝。/%", "scr_text_slash_scr_text_gml_6424_0": "#当然", "scr_text_slash_scr_text_gml_6425_0": "#当然没有", @@ -12551,7 +12624,7 @@ "scr_text_slash_scr_text_gml_6457_0": "* 【天使】^1,【天使】/", "scr_text_slash_scr_text_gml_6458_0": "* 你是否在寻找【荆棘】的【指环】?/", "scr_text_slash_scr_text_gml_6459_0": "\\C2", - "scr_text_slash_scr_text_gml_6465_0": " %%", + "scr_text_slash_scr_text_gml_6465_0": "", "scr_text_slash_scr_text_gml_6475_0": "* 那么【【为啥】】&还要来垃圾箱找我!!!/%", "scr_text_slash_scr_text_gml_6480_0": "#购买", "scr_text_slash_scr_text_gml_6481_0": "#不要", @@ -12585,8 +12658,8 @@ "scr_text_slash_scr_text_gml_6564_0": "", "scr_text_slash_scr_text_gml_6567_0": "\\EN* 变得更强..^1. 怎么回事^1?&* Kris^1,你在做什么!?/", "scr_text_slash_scr_text_gml_6568_0": "\\C2", - "scr_text_slash_scr_text_gml_6574_0": "%%", - "scr_text_slash_scr_text_gml_6583_0": " %%", + "scr_text_slash_scr_text_gml_6574_0": "", + "scr_text_slash_scr_text_gml_6583_0": "", "scr_text_slash_scr_text_gml_6592_0": "#游戏就是#我的生命", "scr_text_slash_scr_text_gml_6593_0": "#游戏不是#我的生命", "scr_text_slash_scr_text_gml_6594_0": "", @@ -12670,7 +12743,7 @@ "scr_text_slash_scr_text_gml_6901_0": "\\EM* (..^1. 我们刚刚到底在&说什么来着?)/%", "scr_text_slash_scr_text_gml_6907_0": "\\E6* 真-真的吗?&你-你真的那么认为?/", "scr_text_slash_scr_text_gml_6908_0": "\\E6* 呼哈哈^1,Susie专家Kris&就是这么认为的^1!谢啦!/", - "scr_text_slash_scr_text_gml_6909_0": "\\E5* .../", + "scr_text_slash_scr_text_gml_6909_0": "", "scr_text_slash_scr_text_gml_6910_0": "\\E8* (嘿^1,Kris^1,你是怎么&变成Susie专家的!?)/%", "scr_text_slash_scr_text_gml_6915_0": "# Noelle会#和我一起乘", "scr_text_slash_scr_text_gml_6916_0": "#对不起", @@ -12709,8 +12782,6 @@ "scr_text_slash_scr_text_gml_7046_0": "# 对不起#我去解谜", "scr_text_slash_scr_text_gml_7047_0": "#继续前进", "scr_text_slash_scr_text_gml_7048_0": "* 结果A。/%", - "scr_text_slash_scr_text_gml_7048_0_b": "", - "scr_text_slash_scr_text_gml_7049_0": "", "scr_text_slash_scr_text_gml_7052_0": "* 结果B。/%", "scr_text_slash_scr_text_gml_7052_0_b": "\\E2* Kris?&你..^1. 你真的要丢下我吗...?/", "scr_text_slash_scr_text_gml_7053_0": "\\C2", @@ -12723,15 +12794,13 @@ "scr_text_slash_scr_text_gml_7076_0": "\\E9* Kris^1,拜托^1,&你知道我们买不起这个.../", "scr_text_slash_scr_text_gml_7082_0": "\\E3* 谢-谢了^1,Kris.../%", "scr_text_slash_scr_text_gml_7090_0": "\\EB* ..^1. 我..^1. 我.../", - "scr_text_slash_scr_text_gml_7091_0": "\\EB* .../%", + "scr_text_slash_scr_text_gml_7091_0": "", "scr_text_slash_scr_text_gml_7093_0": "\\E2* 什..^1. 什么?/", "scr_text_slash_scr_text_gml_7094_0": "\\E3* Kris^1,我说过了^1,&我们..^1. 身上钱不够。/", "scr_text_slash_scr_text_gml_7095_0": "\\E2* 你..^1. 你想让我做什么...?/", "scr_text_slash_scr_text_gml_7096_0": "\\EB* 你..^1. 难道是要我去...?/", "scr_text_slash_scr_text_gml_7099_0": "#我们一起#解谜吧!", "scr_text_slash_scr_text_gml_7100_0": "#继续前进", - "scr_text_slash_scr_text_gml_7101_0": "", - "scr_text_slash_scr_text_gml_7102_0": "", "scr_text_slash_scr_text_gml_7104_0": "\\E3* 你..^1. 你看^1,Kris^1!&又是一个谜题!/", "scr_text_slash_scr_text_gml_7105_0": "\\C2", "scr_text_slash_scr_text_gml_7114_0": "\\E4* 是..^1. 是啊^1,你是对的^1,&Kris!/", @@ -12739,14 +12808,10 @@ "scr_text_slash_scr_text_gml_7116_0": "\\E2* (也许只是又开了个&过分的玩笑...?)/%", "scr_text_slash_scr_text_gml_7153_0": "#拿下", "scr_text_slash_scr_text_gml_7154_0": "#不需要", - "scr_text_slash_scr_text_gml_7155_0": "\\C2", - "scr_text_slash_scr_text_gml_7156_0": "\\C2", "scr_text_slash_scr_text_gml_7158_0": "\\E8* (呼哈哈^1,&Kris给我买戒指...^1?&哈哈^1,怎么可能呢?)/", "scr_text_slash_scr_text_gml_7159_0": "\\C2", "scr_text_slash_scr_text_gml_7166_0": "#拿下", "scr_text_slash_scr_text_gml_7167_0": "#不需要", - "scr_text_slash_scr_text_gml_7168_0": "\\C2", - "scr_text_slash_scr_text_gml_7169_0": "\\C2", "scr_text_slash_scr_text_gml_7176_0": "\\EF* 嗯..^1. 啊?Kris^1,&你要..^1. 买那个戒指给我...?/", "scr_text_slash_scr_text_gml_7177_0": "\\E6* 我觉得^1,没问题..^1. &我们问问价吧。/", "scr_text_slash_scr_text_gml_7178_0": "\\E0* 这个要多少钱?/", @@ -12765,8 +12830,6 @@ "scr_text_slash_scr_text_gml_7247_0": "# 为了见#你的父亲", "scr_text_slash_scr_text_gml_7247_0_b": "\\M1* 停-停下^1!别再靠近了!", "scr_text_slash_scr_text_gml_7248_0": "#为了见你", - "scr_text_slash_scr_text_gml_7249_0": "", - "scr_text_slash_scr_text_gml_7250_0": "", "scr_text_slash_scr_text_gml_7254_0": "* (没事的^1,&这..^1. 这就是一场噩梦...)/", "scr_text_slash_scr_text_gml_7255_0": "* (可就算这样^1,&那个梦也太过真实了^1,&一直在我脑海中挥之不去...)/", "scr_text_slash_scr_text_gml_7256_0": "* (..^1. 那个声音^1,&一直在告诉我该做什么。)/", @@ -12786,13 +12849,9 @@ "scr_text_slash_scr_text_gml_7276_0": "* (冷静点^1,Noelle...)/", "scr_text_slash_scr_text_gml_7277_0": "* (没什么好害怕的...)/", "scr_text_slash_scr_text_gml_7278_0": "* (毕竟^1,那就是一场梦而已^1,&不是吗...?)/%", - "scr_text_slash_scr_text_gml_7283_0": "", - "scr_text_slash_scr_text_gml_7284_0": "", - "scr_text_slash_scr_text_gml_7285_0": "", - "scr_text_slash_scr_text_gml_7286_0": "", "scr_text_slash_scr_text_gml_7293_0": "#在你的# 梦里", - "scr_text_slash_scr_text_gml_7294_0": "#...", - "scr_text_slash_scr_text_gml_7295_0": "* .../", + "scr_text_slash_scr_text_gml_7294_0": "", + "scr_text_slash_scr_text_gml_7295_0": "", "scr_text_slash_scr_text_gml_7296_0": "* Kris...?/", "scr_text_slash_scr_text_gml_7296_0_b": "#进去", "scr_text_slash_scr_text_gml_7297_0": "\\M1* 你为什么戴着..^1. 我的手表?/", @@ -12800,7 +12859,7 @@ "scr_text_slash_scr_text_gml_7298_0": "* 你..^1. 你是什么时候.../", "scr_text_slash_scr_text_gml_7299_0": "\\C2", "scr_text_slash_scr_text_gml_7304_0": "因为那#不是梦", - "scr_text_slash_scr_text_gml_7305_0": "#...", + "scr_text_slash_scr_text_gml_7305_0": "", "scr_text_slash_scr_text_gml_7306_0": "* (..^1. 可-那...)/", "scr_text_slash_scr_text_gml_7307_0": "* (为什么刚才的声音..^1. 听起来...)/", "scr_text_slash_scr_text_gml_7308_0": "\\M1* (那么可怕?)/", @@ -12809,7 +12868,7 @@ "scr_text_slash_scr_text_gml_7318_0": "\\E0* 真是的^1,他一直在跟我讲&Noelle的事^1,像什么.../", "scr_text_slash_scr_text_gml_7319_0": "\\EC* 她最喜欢的东西啊^1,&她爱去的地方啊.../", "scr_text_slash_scr_text_gml_7320_0": "\\E1* 完全搞不懂&他说这些是要干啥。/", - "scr_text_slash_scr_text_gml_7322_0": "\\EB* .../", + "scr_text_slash_scr_text_gml_7322_0": "", "scr_text_slash_scr_text_gml_7324_0": "\\EK* 呃^1,你们俩又在干啥?/", "scr_text_slash_scr_text_gml_7325_0": "\\E3* 要..^1. 要怎么做?/", "scr_text_slash_scr_text_gml_7326_0": "\\EF* 哦-^1,呃-^1,&没-没什么^1,Susie!/", @@ -12817,21 +12876,19 @@ "scr_text_slash_scr_text_gml_7327_0": "\\ED* 我..^1. 我要准备回家了^1!&唔..^1. 回头见!/%", "scr_text_slash_scr_text_gml_7327_0_b": "\\E3* Kris^1,这条路..^1. 不通^1,&不是吗?/", "scr_text_slash_scr_text_gml_7328_0": "\\C2", - "scr_text_slash_scr_text_gml_7333_0": "\\E0* .../", + "scr_text_slash_scr_text_gml_7333_0": "", "scr_text_slash_scr_text_gml_7334_0": "\\ED* 她好像又开始怕我了^1,哎.../", "scr_text_slash_scr_text_gml_7335_0": "\\E0* 天啊..^1. 要是她知道.../", "scr_text_slash_scr_text_gml_7335_0_b": "", "scr_text_slash_scr_text_gml_7336_0": "\\E9* 要是之前发生的一切都是真的^1,&那该有多好^1,&对吧^1,Kris?/", "scr_text_slash_scr_text_gml_7336_0_b": "", - "scr_text_slash_scr_text_gml_7337_0": "\\E9* .../", + "scr_text_slash_scr_text_gml_7337_0": "", "scr_text_slash_scr_text_gml_7338_0": "\\EK* 来嘛^1,稍微热情一点行不行。&嘿。/%", "scr_text_slash_scr_text_gml_7339_0": "* (这是个下水道。里面有一架梯子。)/", "scr_text_slash_scr_text_gml_7340_0": "* (要爬进去吗?)/", "scr_text_slash_scr_text_gml_7341_0": "\\C2", "scr_text_slash_scr_text_gml_7344_0": "#拿走", "scr_text_slash_scr_text_gml_7345_0": "#不拿", - "scr_text_slash_scr_text_gml_7346_0": "", - "scr_text_slash_scr_text_gml_7347_0": "", "scr_text_slash_scr_text_gml_7348_0": "* (你爬进了下水道...)/%", "scr_text_slash_scr_text_gml_7350_0": "* (盒子里装满了面包圈。&拿一个吗?)/", "scr_text_slash_scr_text_gml_7351_0": "\\C2", @@ -12845,7 +12902,7 @@ "scr_text_slash_scr_text_gml_7394_0": "\\ED* K..^1. Kris^1,你没听清楚我&刚才的话^1,对吧?/", "scr_text_slash_scr_text_gml_7395_0": "\\ED* 你..^1. 你不会是...想让我.../", "scr_text_slash_scr_text_gml_7396_0": "\\C2", - "scr_text_slash_scr_text_gml_7427_0": "\\EC* K.../", + "scr_text_slash_scr_text_gml_7427_0": "", "scr_text_slash_scr_text_gml_7428_0": "\\ED* Kris...?/", "scr_text_slash_scr_text_gml_7429_0": "\\C2", "scr_text_slash_scr_text_gml_7454_0": "#买", @@ -12892,8 +12949,8 @@ "scr_text_slash_scr_text_gml_7680_0": "你肯定写过。", "scr_text_slash_scr_text_gml_7685_0": "* 从今往后^1,ralsay好菜,Susie最帅/", "scr_text_slash_scr_text_gml_7687_0": "* 我可不记得写过那种东西!\\f0/%", - "scr_textsound_slash_scr_textsound_gml_31_0": "\\", - "scr_torface_slash_scr_torface_gml_1_0": "\\TX \\F0 \\E~1 \\FT \\TT %", + "scr_textsound_slash_scr_textsound_gml_31_0": "", + "scr_torface_slash_scr_torface_gml_1_0": "", "scr_weaponinfo_slash_scr_weaponinfo_gml_2_0": "", "scr_weaponinfo_slash_scr_weaponinfo_gml_11_0": "", "scr_weaponinfo_slash_scr_weaponinfo_gml_12_0": "", @@ -12925,7 +12982,7 @@ "scr_weaponinfo_slash_scr_weaponinfo_gml_107_0": "呃...好吧。", "scr_weaponinfo_slash_scr_weaponinfo_gml_108_0": "很趁手!", "scr_weaponinfo_slash_scr_weaponinfo_gml_109_0": "这...这什么东西?", - "scr_weaponinfo_slash_scr_weaponinfo_gml_118_0": "スケアソード", + "scr_weaponinfo_slash_scr_weaponinfo_gml_118_0": "", "scr_weaponinfo_slash_scr_weaponinfo_gml_127_0": "骇人的剑", "scr_weaponinfo_slash_scr_weaponinfo_gml_128_0": "柄是蝙蝠形状的#橙黑相间的剑", "scr_weaponinfo_slash_scr_weaponinfo_gml_129_0": "啧,太小了!", @@ -12979,7 +13036,7 @@ "scr_weaponinfo_slash_scr_weaponinfo_gml_305_0": "荆棘指环", "scr_weaponinfo_slash_scr_weaponinfo_gml_306_0": "佩戴者会因疼痛而受到伤害#降低冰系法术所消耗的TP", "scr_weaponinfo_slash_scr_weaponinfo_gml_307_0": "这是刑具?", - "scr_weaponinfo_slash_scr_weaponinfo_gml_308_0": "...", + "scr_weaponinfo_slash_scr_weaponinfo_gml_308_0": "", "scr_weaponinfo_slash_scr_weaponinfo_gml_309_0": "", "scr_weaponinfo_slash_scr_weaponinfo_gml_323_0": "恍惚", "scr_weaponinfo_slash_scr_weaponinfo_gml_328_0": "弹弹剑", @@ -13032,5 +13089,5 @@ "scr_weaponinfo_slash_scr_weaponinfo_gml_514_0": "镶嵌着一颗雪球的指环。#...是不是有个人在里面?", "scr_weaponinfo_slash_scr_weaponinfo_gml_515_0": "你从哪偷的?嘿嘿。", "scr_weaponinfo_slash_scr_weaponinfo_gml_516_0": "好漂亮...", - "scr_weaponinfo_slash_scr_weaponinfo_gml_517_0": "..." + "scr_weaponinfo_slash_scr_weaponinfo_gml_517_0": "" } \ No newline at end of file