From 05cb894db9c234dc7ff2143d2e14aaa12f6d376a Mon Sep 17 00:00:00 2001 From: ws3917 Date: Thu, 17 Apr 2025 00:25:06 +0800 Subject: [PATCH] 54545 --- comic/Ch45/page_159.png | Bin 135 -> 0 bytes comic/Ch58/page_130.png | 0 labelimg.py | 32 ++-- text2/Ch45/OCR1.json | 130 +++++++++++++ text2/Ch45/OCR2.json | 126 ++++++++++++ text2/Ch46/OCR1.json | 82 ++++++++ text2/Ch46/OCR2.json | 79 ++++++++ text2/Ch52/OCR1.json | 267 ++++++++++++++++++++++++++ text2/Ch53/OCR1.json | 329 ++++++++++++++++++++++++++++++++ text2/Ch54/OCR1.json | 237 +++++++++++++++++++++++ text2/Ch55/OCR1.json | 141 ++++++++++++++ text2/Ch56/OCR1.json | 236 +++++++++++++++++++++++ text2/Ch57/OCR1.json | 106 ++++++++++ text2/Ch58/OCR1.json | 186 ++++++++++++++++++ text2/Ch59/OCR1.json | 284 +++++++++++++++++++++++++++ text2/ChBonus1/OCR1.json | 37 ++++ text2/ChBonus2/OCR1.json | 69 +++++++ text2/ChBonus3/OCR1.json | 50 +++++ text2/ChBonus4/OCR1.json | 54 ++++++ text2/ChBonus5/OCR1.json | 58 ++++++ text2/ChBonus6/OCR1.json | 55 ++++++ text2/ChCall1/OCR1.json | 21 ++ text2/ChCall2/OCR1.json | 16 ++ text2/ChCall3/OCR1.json | 17 ++ text2/ChCall4/OCR1.json | 15 ++ text2/ChCall5/OCR1.json | 12 ++ text2/ChCall6/OCR1.json | 14 ++ text2/ChCall7/OCR1.json | 9 + text2/ChCall8/OCR1.json | 22 +++ text2/ChInterlude1/OCR1.json | 117 ++++++++++++ text2/ChInterlude2/OCR1.json | 217 +++++++++++++++++++++ text2/ChInvertedJape/OCR1.json | 51 +++++ text2/ChInvertedJape2/OCR1.json | 49 +++++ 33 files changed, 3102 insertions(+), 16 deletions(-) delete mode 100644 comic/Ch45/page_159.png delete mode 100644 comic/Ch58/page_130.png create mode 100644 text2/Ch45/OCR1.json create mode 100644 text2/Ch45/OCR2.json create mode 100644 text2/Ch46/OCR1.json create mode 100644 text2/Ch46/OCR2.json create mode 100644 text2/Ch52/OCR1.json create mode 100644 text2/Ch53/OCR1.json create mode 100644 text2/Ch54/OCR1.json create mode 100644 text2/Ch55/OCR1.json create mode 100644 text2/Ch56/OCR1.json create mode 100644 text2/Ch57/OCR1.json create mode 100644 text2/Ch58/OCR1.json create mode 100644 text2/Ch59/OCR1.json create mode 100644 text2/ChBonus1/OCR1.json create mode 100644 text2/ChBonus2/OCR1.json create mode 100644 text2/ChBonus3/OCR1.json create mode 100644 text2/ChBonus4/OCR1.json create mode 100644 text2/ChBonus5/OCR1.json create mode 100644 text2/ChBonus6/OCR1.json create mode 100644 text2/ChCall1/OCR1.json create mode 100644 text2/ChCall2/OCR1.json create mode 100644 text2/ChCall3/OCR1.json create mode 100644 text2/ChCall4/OCR1.json create mode 100644 text2/ChCall5/OCR1.json create mode 100644 text2/ChCall6/OCR1.json create mode 100644 text2/ChCall7/OCR1.json create mode 100644 text2/ChCall8/OCR1.json create mode 100644 text2/ChInterlude1/OCR1.json create mode 100644 text2/ChInterlude2/OCR1.json create mode 100644 text2/ChInvertedJape/OCR1.json create mode 100644 text2/ChInvertedJape2/OCR1.json diff --git a/comic/Ch45/page_159.png b/comic/Ch45/page_159.png deleted file mode 100644 index 95575ec57a5d837c9e904c71b9c5328738c27906..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 135 zcmeAS@N?(olHy`uVBq!ia0y~yU|zQV~9j} fazaAF4}Jzl7Dk2wg;Z_^1_lOCS3j3^P6rEV5 diff --git a/comic/Ch58/page_130.png b/comic/Ch58/page_130.png deleted file mode 100644 index e69de29b..00000000 diff --git a/labelimg.py b/labelimg.py index 78bad8ee..fa1f47ab 100644 --- a/labelimg.py +++ b/labelimg.py @@ -93,20 +93,20 @@ def crop_textbox(img, is_battle, has_avatar, base_y_offset): return img.crop((x0, y0, x1, y1)) -def ocr_text(img_region): - np_img = np.array(img_region) - result = reader.readtext(np_img, detail=0) - return " ".join(result).strip() - - -# ocr = PaddleOCR(use_angle_cls=True, lang="en") - - # def ocr_text(img_region): -# result = ocr.ocr(np.array(img_region)) -# if result and result[0]: -# return " ".join([line[1][0] for line in result[0]]).strip() -# return "" +# np_img = np.array(img_region) +# result = reader.readtext(np_img, detail=0) +# return " ".join(result).strip() + + +ocr = PaddleOCR(use_angle_cls=True, lang="en") + + +def ocr_text(img_region): + result = ocr.ocr(np.array(img_region)) + if result and result[0]: + return " ".join([line[1][0] for line in result[0]]).strip() + return "" # def ocr_text(img_region): @@ -176,7 +176,7 @@ def main(): chapter = os.path.basename(root) output = {} # 如果输出文件存在,则跳过 - if os.path.exists(os.path.join(TEXT_OUTPUT_DIR, f"{chapter}/OCR1.json")): + if os.path.exists(os.path.join(TEXT_OUTPUT_DIR, f"{chapter}/OCR2.json")): continue for file in sorted(files): if file.lower().endswith((".png", ".gif")): @@ -196,13 +196,13 @@ def main(): if not os.path.exists(os.path.join(TEXT_OUTPUT_DIR, f"{chapter}")): os.makedirs(os.path.join(TEXT_OUTPUT_DIR, f"{chapter}")) with open( - os.path.join(TEXT_OUTPUT_DIR, f"{chapter}/OCR1.json"), + os.path.join(TEXT_OUTPUT_DIR, f"{chapter}/OCR2.json"), "w", encoding="utf-8", ) as f: json.dump(sorted_output, f, ensure_ascii=False, indent=2) - print(f"✅ 完成 {os.path.join(TEXT_OUTPUT_DIR, f"{chapter}/OCR1.json")}") + print(f"✅ 完成 {os.path.join(TEXT_OUTPUT_DIR, f"{chapter}/OCR2.json")}") if __name__ == "__main__": diff --git a/text2/Ch45/OCR1.json b/text2/Ch45/OCR1.json new file mode 100644 index 00000000..35e4e7c6 --- /dev/null +++ b/text2/Ch45/OCR1.json @@ -0,0 +1,130 @@ +{ + "page_2.png-底部文本框有头像非战斗": "Man, this feels WhY too easy:", + "page_3.png-底部文本框有头像非战斗": "ring:", + "page_4.png-底部文本框有头像非战斗": "Huh? Where' $ that ringing even-", + "page_5.png-顶部文本框有头像非战斗": "ring:", + "page_6.png-顶部文本框有头像非战斗": "RINGI t ring, ring, ring,", + "page_7.png-顶部文本框有头像非战斗": "Ugh! FINE? Whatevert", + "page_8.png-顶部文本框有头像非战斗": "Hello?", + "page_9.png-顶部文本框有头像非战斗": "UNDYNEW", + "page_10.png-顶部文本框有头像非战斗": "#", + "page_11.png-顶部文本框有头像非战斗": "UNDYNE, FLEASE! LET ME IN! WANT To TALK TO YOUw", + "page_12.png-顶部文本框有头像非战斗": "Ho. I can' t", + "page_13.png-顶部文本框有头像非战斗": "BU, UNDYNE, FRISK 15 ALL ALONE IN THERE!", + "page_14.png-顶部文本框有头像非战斗": "Exactly: Away from You.", + "page_15.png-顶部文本框有头像非战斗": "# It' $ better this Way:", + "page_16.png-顶部文本框有头像非战斗": "HOw CAN You SAY THAT?! FRISK 15 MY_", + "page_17.png-顶部文本框有头像非战斗": "I DOM' T want to hear Papyrus! it,", + "page_18.png-顶部文本框无头像非战斗": "Click.", + "page_20.png-顶部文本框有头像非战斗": "You know what? You' re disgus ting:", + "page_21.png-顶部文本框有头像非战斗": "Here he is, pouring his HEART out to 4ou, and you CUT HIM OFF?!", + "page_22.png-顶部文本框有头像非战斗": "Bullshit? Keep this up, and 11 destroy EVERY friendship You' ve got. you'", + "page_23.png-顶部文本框有头像非战斗": "Papyrus deserves better than 4-", + "page_24.png-顶部文本框有头像非战斗": "That' $ EhOuGH:", + "page_27.png-顶部文本框有头像非战斗": "Let' $ just keep moving:", + "page_28.png-顶部文本框有头像非战斗": "ring!", + "page_29.png-顶部文本框有头像非战斗": "ring-", + "page_30.png-顶部文本框有头像非战斗": "That' $ ITWm!", + "page_31.png-顶部文本框无头像非战斗": "CRACKt", + "page_32.png-顶部文本框有头像非战斗": "What the -", + "page_37.png-顶部文本框无头像非战斗": "Oh, this is DELICIOUS. Who knew that BONEBRAIH had such taste in WEAPOHS?! good", + "page_40.png-底部文本框无头像非战斗": "# Go aheadt Run all you want? We' 11 see how far those PUMY little legs take you!", + "page_43.png-底部文本框有头像非战斗": "you think you can just away? Did you think that Was OVER?!", + "page_44.png-底部文本框无头像非战斗": "# Fool. Foolt FOOLW!! # I still have one last trick up my metaphorical sleevest", + "page_47.png-底部文本框无头像非战斗": "W-what?t h DOg?1 IS ThAT SERIOUSLY THE ONLY thING LEFT?!", + "page_48.png-底部文本框无头像非战斗": "What kind of IDIOT does that skeleton take me for?1212121", + "page_49.png-底部文本框有头像非战斗": "Wel1, perhaps the dog absorbed the weapon.", + "page_59.png-底部文本框无头像非战斗": "GYAAAAH? STUPID DOG?!! THIS IS WhY CATS ARE THE SUPERIOR MAMNAAAAAAAAAAAAAAAAAAALAA !", + "page_64.png-底部文本框有头像非战斗": "I' m not fully convinced that Was real.", + "page_65.png-底部文本框有头像非战斗": "The sheer power of anime fills with. dogtermination. You", + "page_66.png-底部文本框无头像非战斗": "S0. Here We are Just 4ou, me your pretentious partner, and a locked door", + "page_67.png-底部文本框无头像非战斗": "After al1 this time after al1 these HUMILIATIONS, there' $ nowhere left to run!", + "page_68.png-底部文本框无头像非战斗": "Ho more distractions. Ho more CHEAP toys!", + "page_69.png-底部文本框有头像非战斗": "Says the robot Without any legs.", + "page_70.png-底部文本框无头像非战斗": "I DON' T NEED LEGS TO KICK YOUR PATHETIC HUMAN POSTERIORYY!", + "page_71.png-底部文本框无头像非战斗": "In fact, let' $ cut the small talkt This is the end for you BOTH?", + "page_72.png-战斗文本框无头像战斗": "Mad Dummy blocks the Way!", + "page_73.png-战斗文本框无头像战斗": "Check Engage Talk Change Mode Hug", + "page_74.png-战斗文本框无头像战斗": "P Blaster Leaf Barrage Frost Shovel Water Spout Charge Beam Solar Flare", + "page_80.png-战斗文本框无头像战斗": "Great, and now your phone' $ shorted out. # S0 much for THAT plan.", + "page_81.png-战斗文本框无头像战斗": "Check Engage Talk Change Node Hug", + "page_89.png-战斗文本框无头像战斗": "Smell5 like explosions.", + "page_90.png-战斗文本框无头像战斗": "Don' t Worry, spider didn' t HP fully restored.", + "page_94.png-战斗文本框无头像战斗": "Maybe Undyne should have painted them green.", + "page_102.png-战斗文本框无头像战斗": "Judging by the vibrations, I' d say your phone' $ to g0. good", + "page_103.png-战斗文本框无头像战斗": "Check Engage Talk Shooting Mode Hug", + "page_111.png-战斗文本框无头像战斗": "We11, s0 much for only having one knife_", + "page_112.png-战斗文本框无头像战斗": "Check Engage Talk Change Mode Hug", + "page_117.png-战斗文本框无头像战斗": "Sparks are really flying now.", + "page_118.png-战斗文本框无头像战斗": "You ate the Hice Cream: (An illustration of a ) HP fully restored. hug:", + "page_126.png-战斗文本框无头像战斗": "that. actual familial concern? Is", + "page_134.png-战斗文本框无头像战斗": "Despite the significant damage taken, Mad Dummy does the robotic disco.", + "page_166.png-战斗文本框无头像战斗": "Check Talk Insult Hug", + "page_167.png-战斗文本框无头像战斗": "MAD MEW MEW ATK 50 DEF YES The dark, edgy reboot, legs now included;", + "page_179.png-战斗文本框无头像战斗": "E You ate the Starfait: Recovered 14 HP", + "page_183.png-战斗文本框无头像战斗": "Nad Neu mew strikes d 66 cute\" pose: A11 while twirling her knife.", + "page_191.png-顶部文本框有头像非战斗": "NO_ FRISKW", + "page_192.png-顶部文本框有头像非战斗": "GAH! THERE HAS To BE SOME WAY PAST THAT FORCEFIELD", + "page_194.png-底部文本框有头像非战斗": "Frisk 2", + "page_196.png-底部文本框有头像非战斗": "Frisk It' $ We' re back at our SAVE point. okay:", + "page_197.png-底部文本框有头像非战斗": "Doesn' t make dying any easier_", + "page_198.png-底部文本框有头像非战斗": "Of course not, but consider", + "page_199.png-底部文本框有头像非战斗": "Look, I know you' re trying to help, but this is a lot to take in.", + "page_200.png-底部文本框有头像非战斗": "I mean, sure death sucks, but You' re. You.", + "page_201.png-底部文本框有头像非战斗": "And my SOUL. How did she. 2", + "page_202.png-底部文本框有头像非战斗": "I don' t know Perhaps it' $ an experiment gone horribly wrong:", + "page_203.png-底部文本框有头像非战斗": "Either We should focus less on how it WORKS and prioritize survival. way;", + "page_204.png-底部文本框有头像非战斗": "Mm; Right. Just- please After this is over, We NEED to talk", + "page_205.png-底部文本框有头像非战斗": "Ho more excuses. Ho more secrets.", + "page_206.png-底部文本框有头像非战斗": "Understood.", + "page_208.png-底部文本框有头像非战斗": "rised? COMFUSED? you expecting a bit POGOING?!", + "page_209.png-底部文本框有头像非战斗": "Hope.", + "page_210.png-底部文本框无头像非战斗": "# W-what?", + "page_211.png-底部文本框无头像非战斗": "# I mean, good! But AHY WAY , I' ve a BODY to break in, S0 let' $ just cut to the chase!", + "page_212.png-战斗文本框无头像战斗": "Neu Neu 2 : Revenge Of the Cutie.", + "page_220.png-战斗文本框无头像战斗": "E Nad Neu New looks at d fancy pink mirror, then turns to uS With the same expression:", + "page_228.png-战斗文本框无头像战斗": "This doesn' t feel right:", + "page_229.png-战斗文本框无头像战斗": "Check Talk Insult Hug", + "page_239.png-战斗文本框无头像战斗": "E Nad Neu Mew angrily mutters anime catchphrases:", + "page_248.png-战斗文本框无头像战斗": "Nad Neu New hesitates.", + "page_249.png-战斗文本框无头像战斗": "E You ate the Strange Ghroom E Sadly; Vou did not turn giant: E HP fully restored.", + "page_255.png-战斗文本框无头像战斗": "Smells: relatable.", + "page_260.png-战斗文本框无头像战斗": "E I think: I know What to do.", + "page_261.png-战斗文本框无头像战斗": "Check Talk Apologize Hug", + "page_285.png-战斗文本框无头像战斗": "Nad Neu New looks lost.", + "page_286.png-战斗文本框无头像战斗": "Check Talk Apologize Hug", + "page_300.png-底部文本框无头像非战斗": "Human! You' ve given me a LOt to consider.", + "page_301.png-底部文本框无头像非战斗": "# S0 I' 11 let you g0 # It' $ obvious you Won' t stop, anyway:", + "page_302.png-底部文本框无头像非战斗": "But if you do AMYTHING to Undyne or Mettaton, I Swear.", + "page_303.png-底部文本框无头像非战斗": "I' 11 come back and rip that sorry SOUL right out of our chestt", + "page_305.png-底部文本框有头像非战斗": "thank Cap: you.", + "page_306.png-底部文本框有头像非战斗": "For What?", + "page_307.png-底部文本框有头像非战斗": "For keeping me in check", + "page_308.png-底部文本框有头像非战斗": "Dunno what would' ve happened if You didn' + yank me outta Sasstopia.", + "page_309.png-底部文本框有头像非战斗": "Ha. Well, SOMEBODY has to keep a level head around here.", + "page_310.png-底部文本框有头像非战斗": "But. to credit, you really have shown remarkable growth: your", + "page_311.png-底部文本框有头像非战斗": "At the very least, you' re a quicker learner than I Was.", + "page_312.png-底部文本框有头像非战斗": "Cap", + "page_313.png-底部文本框有头像非战斗": "But I digress. Knowing Undyne_ our 5 only added fuel to the fire. spat'", + "page_314.png-底部文本框有头像非战斗": "S0 let' $ save the heart to heart for a more opportune moment.", + "page_315.png-底部文本框有头像非战斗": "Ah, seems this one= 5 normal.", + "page_316.png-底部文本框有头像非战斗": "How might be a time to stockpile resources, just in case; good", + "page_317.png-底部文本框有头像非战斗": "Way ahead of You, cap:", + "page_319.png-底部文本框有头像非战斗": "\"I' m sorry: 2\"", + "page_320.png-底部文本框有头像非战斗": "Shoot Mettatont We have to-", + "page_321.png-底部文本框有头像非战斗": "Frisk, BREA THE. This is HOT the time to act rashly:", + "page_322.png-底部文本框有头像非战斗": "But What if Undyne did some thing to him?t", + "page_323.png-底部文本框有头像非战斗": "I Swear if that freak brainwashed him, I' m gonna", + "page_324.png-底部文本框有头像非战斗": "Calm. DOWM.", + "page_326.png-底部文本框有头像非战斗": "Please_ # I don' t Want you acting reckless.", + "page_327.png-底部文本框有头像非战斗": "And even if CAN reload, another death 1s hardly ideal. you", + "page_328.png-底部文本框有头像非战斗": "# I just.", + "page_329.png-底部文本框有头像非战斗": "I can' t offer much reassurance_ It' $ never been my strong suit.", + "page_330.png-底部文本框有头像非战斗": "But still. luck' $ favored uS s0 far. S0 just.", + "page_331.png-底部文本框有头像非战斗": "strong; all right? stay", + "page_333.png-底部文本框有头像非战斗": "Hey; Cap:", + "page_338.png-底部文本框有头像非战斗": "Right, Well. You point across but shouldn' t We get going? got your", + "page_339.png-底部文本框有头像非战斗": "All right, you big cactus.", + "page_340.png-底部文本框有头像非战斗": "Guess all We can really do is hope for the best.", + "page_342.png-底部文本框有头像非战斗": "I knew it" +} \ No newline at end of file diff --git a/text2/Ch45/OCR2.json b/text2/Ch45/OCR2.json new file mode 100644 index 00000000..755197d1 --- /dev/null +++ b/text2/Ch45/OCR2.json @@ -0,0 +1,126 @@ +{ + "page_2.png-底部文本框有头像非战斗": "Man, this feels Wnl too easy.", + "page_3.png-底部文本框有头像非战斗": "but ::", + "page_4.png-底部文本框有头像非战斗": "Huh?. Where's that ringing -uaAa", + "page_5.png-顶部文本框有头像非战斗": "butJ", + "page_6.png-顶部文本框有头像非战斗": "ring, ring, ring, HHIONIY", + "page_7.png-顶部文本框有头像非战斗": "Ogh? FINeT Whateyer!", + "page_8.png-顶部文本框有头像非战斗": "E Hello?", + "page_9.png-顶部文本框有头像非战斗": "UNDYNE!!!!", + "page_11.png-顶部文本框有头像非战斗": "QNDYNF.FLEASE! LET MEIN!I yA NT TALE TQ You!!!", + "page_12.png-顶部文本框有头像非战斗": "Ho. I can't.", + "page_13.png-顶部文本框有头像非战斗": "BUT, UNDYNE, FRISK ALL ALONE IN THERE!", + "page_14.png-顶部文本框有头像非战斗": "Exactly. Away from YOU", + "page_15.png-顶部文本框有头像非战斗": "...It's better this way.", + "page_16.png-顶部文本框有头像非战斗": "HOW CAN YOU SAY THAT! FRISK IS MY", + "page_17.png-顶部文本框有头像非战斗": "x I oon'T want to hear it Papyrust", + "page_18.png-顶部文本框无头像非战斗": "Click...", + "page_20.png-顶部文本框有头像非战斗": ".You know what? You' re disgusting.", + "page_21.png-顶部文本框有头像非战斗": "Here he is, pouring his HEART out to you, pue you CUT HIM OFF?t", + "page_22.png-顶部文本框有头像非战斗": "Bullshitt Keep this up, Au3n3 hoJlsap TT.noh pue friendship you' ye got.", + "page_23.png-顶部文本框有头像非战斗": "Papyrus deseryes better than", + "page_24.png-顶部文本框有头像非战斗": "x That's EHoUGH", + "page_27.png-顶部文本框有头像非战斗": "Let's just keep moying...", + "page_28.png-顶部文本框有头像非战斗": "But", + "page_29.png-顶部文本框有头像非战斗": "ring", + "page_30.png-顶部文本框有头像非战斗": "x That's Ittt!", + "page_32.png-顶部文本框有头像非战斗": "What the", + "page_37.png-顶部文本框无头像非战斗": "xOh, this is DELICIOUS. x Who knew that BONEBRAIH had such good taste in WEApOns?!", + "page_40.png-底部文本框无头像非战斗": "Go aheadt Run all you wantt. E We'll see how far those Puny little legs take !. inoh", + "page_43.png-底部文本框有头像非战斗": "you think you can just. away? Did you think that was OyeR?t", + "page_44.png-底部文本框无头像非战斗": "x Fol. FolI FoLII! x I still have one last trick up my metaphorical sleevest.", + "page_47.png-底部文本框无头像非战斗": "W-what?t A DOG?t IS THAT SERIOUSLY THE ONLY THING LEFT?!", + "page_48.png-底部文本框无头像非战斗": "What kind of IoIoT does that Skeleton take me for?t?t?t?!", + "page_49.png-底部文本框有头像非战斗": "Well, perhaps the dog absorbed the weapon.", + "page_59.png-底部文本框无头像非战斗": "G YATA ATAH T STOPID OIGLIL THIS IS WHY CATS ARE THESPERR TAMMATATATATATATATATATATATATATA ATATATATAL T T T", + "page_64.png-底部文本框有头像非战斗": "..I'm not fully convinced that was real.", + "page_65.png-底部文本框有头像非战斗": "The sheer power of anime fills you with. dogtermination.", + "page_66.png-底部文本框无头像非战斗": "So. Here we are. Just you, me, your pretentious partner, andi locked door..", + "page_67.png-底部文本框无头像非战斗": "After all this time. after al. these HUMILIATIONS, there' s. nowhere left to run!.", + "page_68.png-底部文本框无头像非战斗": "Ho more distractions. Ho more HHEAP toyst", + "page_69.png-底部文本框有头像非战斗": "Says the robot without any legs.", + "page_70.png-底部文本框无头像非战斗": "x I D T JEED LEGS TO EICE YOR PATHETIC HUMAN POSTERIORTT!", + "page_71.png-底部文本框无头像非战斗": "In fact, let's cut the small talkt This is the end for you BOTH!", + "page_72.png-战斗文本框无头像战斗": "x Mad Dummy blocks the wayt", + "page_73.png-战斗文本框无头像战斗": "# Check Hug Engage * Talk Change Mode", + "page_74.png-战斗文本框无头像战斗": "P. Blaster Leaf Barrage Frost Shoyel x Water Spout. Charge Beam # Solar Flare", + "page_80.png-战斗文本框无头像战斗": "Great, and now your phone's shorted out. So much for THAT plan.", + "page_81.png-战斗文本框无头像战斗": "Check Hug Engage x Talk Change Mo d e", + "page_89.png-战斗文本框无头像战斗": "Smells like explosions.", + "page_90.png-战斗文本框无头像战斗": "x Don't worry spider didn't. HP fully restored.", + "page_94.png-战斗文本框无头像战斗": "x Maybe Undyne should have painted them green.", + "page_102.png-战斗文本框无头像战斗": "Judging by the yibrations, I'd say your phone's good to go.", + "page_103.png-战斗文本框无头像战斗": "Check Hug x Engage Talk Shooting Mo de", + "page_111.png-战斗文本框无头像战斗": "Well, so much for only having one knife.", + "page_112.png-战斗文本框无头像战斗": "# Check Hug Engage * Talk Change Mode", + "page_117.png-战斗文本框无头像战斗": "Sparks are really f1ying now.", + "page_118.png-战斗文本框无头像战斗": "x You ate the Nice Cream. (An illustration of a hug.) x HP fully restored.", + "page_126.png-战斗文本框无头像战斗": "Is that... actual familial concern?", + "page_134.png-战斗文本框无头像战斗": "Despite the significant damage taken, Mad Dummy does the robotic disco.", + "page_166.png-战斗文本框无头像战斗": "Check Hug # Talk * Insult", + "page_167.png-战斗文本框无头像战斗": "MA0 HEW hEW - ATR 5g DEF YES The dark, edgy reboot, 1egs now included.", + "page_179.png-战斗文本框无头像战斗": "You ate the Starfait Recoyered 14 HP", + "page_183.png-战斗文本框无头像战斗": "Mad Mew mew strikes a \"cute' pose. IIH while twirling her knife.", + "page_191.png-顶部文本框有头像非战斗": "No. FRISK!!!", + "page_192.png-顶部文本框有头像非战斗": "GAH! THERE HAS TQ bE SQME WAYFAST THAT FOECFFTFLp", + "page_194.png-底部文本框有头像非战斗": "Frisk...?", + "page_196.png-底部文本框有头像非战斗": "Frisk. It's okay x We're back at our SAVE point.", + "page_197.png-底部文本框有头像非战斗": "Doesn't make dying any easier.", + "page_198.png-底部文本框有头像非战斗": "Of course not, but consider-", + "page_199.png-底部文本框有头像非战斗": "Look, I know you're trying to help, but this is a lot to take in.", + "page_200.png-底部文本框有头像非战斗": "I mean sure, death sucks, but you.. Youre.", + "page_201.png-底部文本框有头像非战斗": "And my SOUL. How did she...?", + "page_202.png-底部文本框有头像非战斗": "I don't know. Perhaps it's an experiment gone horribly wrong.", + "page_203.png-底部文本框有头像非战斗": "Either way, we should focus less on how it works and prioritize suryiyal..", + "page_204.png-底部文本框有头像非战斗": "Mm. Right. Just. please. After this is oyer, we NEED to ta1k", + "page_205.png-底部文本框有头像非战斗": "No more excuses. No more secrets.", + "page_208.png-底部文本框有头像非战斗": "ised? Hflseo? you expecting a bit PIHIITG? T", + "page_209.png-底部文本框有头像非战斗": "... Nope.", + "page_210.png-底部文本框无头像非战斗": "E W-what?!", + "page_211.png-底部文本框无头像非战斗": "x I mean, GooDt But AHyWAy, I'ye a Booy to break in, so let's just cut to the chaset", + "page_212.png-战斗文本框无头像战斗": "Hew Mew 2: Revenge of the Cutie", + "page_220.png-战斗文本框无头像战斗": "Mad Mew Mew looks at a fancy pink mirror, then turns to us with the same expression", + "page_228.png-战斗文本框无头像战斗": "This doesn't feel right.", + "page_229.png-战斗文本框无头像战斗": "# Check Hug * Talk * Insult", + "page_239.png-战斗文本框无头像战斗": "Mad Mew Mew anqri1y mutter s anime catchphrases", + "page_248.png-战斗文本框无头像战斗": "Mad Mew Mew hesitates", + "page_249.png-战斗文本框无头像战斗": "You ate the Strange Shroom Sadly, you did not turn giant HP fully restored..", + "page_255.png-战斗文本框无头像战斗": "Smells... relatable.", + "page_260.png-战斗文本框无头像战斗": "I think... I know what to do", + "page_261.png-战斗文本框无头像战斗": "# Check 6nH * Talk * Apo1ogize", + "page_286.png-战斗文本框无头像战斗": "# Check x Hug * Talk Apologize", + "page_300.png-底部文本框无头像非战斗": "Humant You'ye giyen me a LoT to consider..", + "page_301.png-底部文本框无头像非战斗": "x So I'll let you go. It's obyious you won't stop, fiemfiue", + "page_302.png-底部文本框无头像非战斗": "But if you do ANYTHIHG to Undyne or Mettaton, I swear..", + "page_303.png-底部文本框无头像非战斗": "I'1l come back and rip that sorry s0UL right out of your chestt", + "page_305.png-底部文本框有头像非战斗": "Cap... thank you.", + "page_306.png-底部文本框有头像非战斗": "E For what?", + "page_307.png-底部文本框有头像非战斗": "For keeping me in check", + "page_308.png-底部文本框有头像非战斗": "Dunno what would' ye happened if you didn't yank me outta Sasstopia.", + "page_309.png-底部文本框有头像非战斗": "Ha. Well, SOMEBODy has to keep a level head. around here.", + "page_310.png-底部文本框有头像非战斗": "But... to your credit you really have shown remarkable growth.", + "page_311.png-底部文本框有头像非战斗": "At the yery least, you're a quicker learner than I was..", + "page_312.png-底部文本框有头像非战斗": "Cap", + "page_313.png-底部文本框有头像非战斗": "But I digress. Knowing Undyne, our spat's only added fuel to the fire..", + "page_314.png-底部文本框有头像非战斗": "So let s saye the heart to heart for a more opportune moment.", + "page_315.png-底部文本框有头像非战斗": "Ah, seems this one's normal.", + "page_316.png-底部文本框有头像非战斗": "How might be a good time to stockpile resources. just in case.", + "page_317.png-底部文本框有头像非战斗": "Way ahead of you, Cap.", + "page_319.png-底部文本框有头像非战斗": "x \"I'm sorry...?", + "page_320.png-底部文本框有头像非战斗": "t Shoot. Mettaton? x We haye to-.", + "page_321.png-底部文本框有头像非战斗": "x Frisk, BREATHE. x This is N0t the time to act rashly.", + "page_322.png-底部文本框有头像非战斗": "But what if Undyne did something to him?!", + "page_323.png-底部文本框有头像非战斗": "I swear, if that freak brainwashed him, I' m gonna-", + "page_324.png-底部文本框有头像非战斗": "E Calm.", + "page_326.png-底部文本框有头像非战斗": "x Please. x I don't want you acting reckless.", + "page_327.png-底部文本框有头像非战斗": "And eyen if you CAH reload, another death is hardly ideal.", + "page_328.png-底部文本框有头像非战斗": "I just... H 1", + "page_329.png-底部文本框有头像非战斗": "I can t offer much reassurance. It' s neyer uaaq strong suit.", + "page_330.png-底部文本框有头像非战斗": "But still... luck's favored us so far. S0 just.", + "page_331.png-底部文本框有头像非战斗": "Stay strong, all right?", + "page_333.png-底部文本框有头像非战斗": "Hey, Cap. . .", + "page_338.png-底部文本框有头像非战斗": "Right, well. You got. your point across, but shouldn't we get going?", + "page_339.png-底部文本框有头像非战斗": "All right, you big cactus.", + "page_340.png-底部文本框有头像非战斗": "Guess all we can really do is hope for the best.", + "page_342.png-底部文本框有头像非战斗": "I knew it." +} \ No newline at end of file diff --git a/text2/Ch46/OCR1.json b/text2/Ch46/OCR1.json new file mode 100644 index 00000000..9bbd7e0a --- /dev/null +++ b/text2/Ch46/OCR1.json @@ -0,0 +1,82 @@ +{ + "page_3.png-底部文本框有头像非战斗": "heya, tori.", + "page_5.png-底部文本框有头像非战斗": "the kid's still headed this way- Pap, too. Yeah,", + "page_6.png-底部文本框有头像非战斗": "know_ but tori, ain'+ 0 bad kid_ Yeah, they", + "page_7.png-底部文本框有头像非战斗": "this whole time_ haven'+ hurt 0 crazy, right? they fly.", + "page_8.png-底部文本框有头像非战斗": "almost makes me think they'Il through. _ pull", + "page_9.png-底部文本框有头像非战斗": "but that flower-", + "page_11.png-底部文本框有头像非战斗": "Yeah , know You don'+ wanna do it again.", + "page_12.png-底部文本框有头像非战斗": "but tori, if You at east TALKED to 'm-", + "page_13.png-底部文本框有头像非战斗": "right.", + "page_14.png-底部文本框有头像非战斗": "no ain'+ gettin' cold feet, t. You know 1 got back: Your", + "page_15.png-底部文本框有头像非战斗": "if this is how You really feel, then that's that.", + "page_16.png-底部文本框有头像非战斗": "'sides, it's like i said. *i got 0 little Weed to uproot.", + "page_17.png-顶部文本框有头像非战斗": "(this is why hate makin' promises. _", + "page_18.png-底部文本框有头像非战斗": "you think he' $ in there? S0,", + "page_19.png-底部文本框有头像非战斗": "Most likely: After all, the elevator IS still locked.", + "page_20.png-底部文本框有头像非战斗": "Wel1, in that case", + "page_22.png-底部文本框有头像非战斗": "Ah, interesting: Another weapon AHD the stick?", + "page_23.png-底部文本框有头像非战斗": "Dunno Why; but I thought it might make things easier_", + "page_24.png-底部文本框有头像非战斗": "Just another weird hunch, I guess.", + "page_26.png-底部文本框有头像非战斗": "Wel1, you never know With television, I suppose.", + "page_27.png-底部文本框有头像非战斗": "Persistent deja #u fills you with determination.", + "page_29.png-顶部文本框有头像非战斗": "Mettatont", + "page_32.png-顶部文本框有头像非战斗": "HELLO, HUMAH. YOv' VE HAD QUITE THE JOURHEY, HAVEH' T You?", + "page_33.png-顶部文本框有头像非战斗": "FACING ANGER HEAD ON# WagInG WAR WITH RUTHLESS ROBOTS !", + "page_34.png-顶部文本框有头像非战斗": "AHD I' M SURE YOv' VE SHED MANY TEARS ALONG THE WAY AFTER ALL", + "page_35.png-顶部文本框有头像非战斗": "Yov' RE ALL ALOHE HOW: YOuR DEAR BODYGUARD CAN' T PROTECT You.", + "page_36.png-顶部文本框有头像非战斗": "Dude what' $ gotten into you? If this is about that note-", + "page_38.png-顶部文本框有头像非战斗": "I WASH' T FIMISHED YET.", + "page_39.png-顶部文本框有头像非战斗": "ANYWAY YOv' VE DONE WELL In THWARTING MY CREATOR' $ LESSER BOTS.", + "page_40.png-顶部文本框有头像非战斗": "BUT I CAH HO LONGER TURM A BLIHD EYE TO THE EHEMY OF OUR HOPES AND DREAMS", + "page_41.png-顶部文本框有头像非战斗": "Mettaton, c' mont Snap outta this?", + "page_43.png-顶部文本框有头像非战斗": "TSK, TSK! DOH' T You SEE? I' M THE UMDERGROUND' $ SHINING STAR!", + "page_44.png-顶部文本框有头像非战斗": "I' M THE SYMBOL OF TRUTH, JUSTICE, AHD ABOVE ALL ELSE, FREEDOM?", + "page_45.png-顶部文本框有头像非战斗": "AHD HOW, AT LONG LAST, It' $ TIME FOR OUR FINAL SHOWD OWN !", + "page_47.png-顶部文本框有头像非战斗": "A CLIMACTIC BATTLE to DETERMIHE THE FUTURE OF MONSTERS EVERYWHERE? ! !", + "page_48.png-顶部文本框有头像非战斗": "s0 GET READY, HUMAN? Yov' RE ABOUT to go ouT WITH A BANG !", + "page_49.png-战斗文本框无头像战斗": "Mettaton attacks.", + "page_50.png-战斗文本框无头像战斗": "Check Burn Yell Change Hode", + "page_58.png-战斗文本框无头像战斗": "This act is getting absurd_", + "page_67.png-战斗文本框无头像战斗": "Damn ite How it won' t even turn on? This is bad.", + "page_89.png-战斗文本框无头像战斗": "Mettaton SPIRAL challenges you!", + "page_90.png-战斗文本框无头像战斗": "Check Pose Challenge Reason", + "page_91.png-战斗文本框无头像战斗": "METTATON SPIRAL ATK 70 DEF YES This rising star seeks to fulfill everyone' $ dreams", + "page_92.png-战斗文本框无头像战斗": "But his heart really in it? is", + "page_96.png-战斗文本框无头像战斗": "Smell5 like anime_", + "page_97.png-战斗文本框无头像战斗": "Check Pose Challenge Reason", + "page_98.png-战斗文本框无头像战斗": "Despite your injuries, you strike a dramatic pose. The audience applauds.", + "page_101.png-战斗文本框无头像战斗": "Mettaton twirls his Sword Winks. and", + "page_102.png-战斗文本框无头像战斗": "You ate the Starfait. # The audience loves the brandt Our HP Was maxed out", + "page_110.png-战斗文本框无头像战斗": "Mettaton points dramatically at the ceiling: The crowd goes Wild?", + "page_111.png-战斗文本框无头像战斗": "Check Pose Challenge Reason", + "page_118.png-战斗文本框无头像战斗": "Rock music echoes through the arena.", + "page_119.png-战斗文本框无头像战斗": "You throw the stick", + "page_120.png-战斗文本框无头像战斗": "Mettaton springs up, catches it in his teeth, and hits the ground in a dramatic landing?", + "page_123.png-战斗文本框无头像战斗": "MTT is handsome and smart should totally stop pretending to fight me now and also legs_ and", + "page_126.png-战斗文本框无头像战斗": "Mettaton' $ ego continues to expand_ Thanks a lot, Frisk", + "page_127.png-战斗文本框无头像战斗": "Check Pose Challenge Reason", + "page_128.png-战斗文本框无头像战斗": "You tell Mettaton this fight' $ too dull. Suddenly:", + "page_138.png-战斗文本框无头像战斗": "This changes a little # Or a lot. # It' $ too early to tell_ things", + "page_139.png-战斗文本框无头像战斗": "Check Pose Challenge Reason", + "page_146.png-战斗文本框无头像战斗": "This' 11 take some getting used to.", + "page_153.png-战斗文本框无头像战斗": "Mettaton looks away for a moment, but then it' $ back to another big grin:", + "page_154.png-战斗文本框无头像战斗": "You out the coffee, but then you realize_ you need to boil some water firstt pull", + "page_155.png-战斗文本框无头像战斗": "MTT hands you a kettle some water You wait for the Water to boil. and", + "page_157.png-战斗文本框无头像战斗": "It' $ boiling: You pour the water into a cup. You add the coffee mix.", + "page_158.png-战斗文本框无头像战斗": "You stir # You sip the coffee.", + "page_159.png-战斗文本框无头像战斗": "Kinda bitter, but it' 11 do. Recovered 10 HP _ Speed up!", + "page_165.png-战斗文本框无头像战斗": "Mettaton tells the crowd to believe in him the Way he believes in them:", + "page_166.png-战斗文本框无头像战斗": "You equip the Torn Hotebook", + "page_170.png-战斗文本框无头像战斗": "How long can he keep this up?", + "page_171.png-战斗文本框无头像战斗": "You re-equip the Hot # It may be old news, but the crowd still loves the brandt Leg:", + "page_175.png-战斗文本框无头像战斗": "Mettaton flexes his robotic arms despite the lack of muscle_", + "page_184.png-战斗文本框无头像战斗": "Mettaton tosses his sword and catches it in his teeth.", + "page_190.png-战斗文本框无头像战斗": "Looks like talking Won' t do any more good.", + "page_191.png-战斗文本框无头像战斗": "# You ate the carrot. HP fully restored.", + "page_194.png-战斗文本框无头像战斗": "Mettaton looks tired.", + "page_199.png-战斗文本框无头像战斗": "Mettaton takes a deep breath.", + "page_203.png-战斗文本框无头像战斗": "Mettaton glances around_ strange.", + "page_209.png-战斗文本框无头像战斗": "Mettaton looks at you expectantly:", + "page_210.png-战斗文本框无头像战斗": "You leap into the air, perform a flip, and land perfectly on your feete" +} \ No newline at end of file diff --git a/text2/Ch46/OCR2.json b/text2/Ch46/OCR2.json new file mode 100644 index 00000000..d2e0d823 --- /dev/null +++ b/text2/Ch46/OCR2.json @@ -0,0 +1,79 @@ +{ + "page_3.png-底部文本框有头像非战斗": "heya, tori.", + "page_5.png-底部文本框有头像非战斗": "yeah, the kid's still headed this way.. pap, too.", + "page_6.png-底部文本框有头像非战斗": "...yeah, i know. * but tori, they ain't o bad kid.", + "page_7.png-底部文本框有头像非战斗": "this whole time, they haven't hurt o fly. crazy, right?", + "page_8.png-底部文本框有头像非战斗": "almost makes me think they'll pull through..", + "page_11.png-底部文本框有头像非战斗": "yeah, i know you don't Wanno do it ogain..", + "page_12.png-底部文本框有头像非战斗": "but tori, if you ot least TALKED to 'em-", + "page_13.png-底部文本框有头像非战斗": "...Fight.", + "page_14.png-底部文本框有头像非战斗": "no, i ain't gettin' cold feet, t. you know i got your back..", + "page_15.png-底部文本框有头像非战斗": "t if this is how you really feel, then that's that.", + "page_16.png-底部文本框有头像非战斗": "'sides, it's like i soid. * i got a little weed to. uproot.", + "page_17.png-顶部文本框有头像非战斗": "(this is why i hate makin promises...]", + "page_18.png-底部文本框有头像非战斗": "S0 you think he's in there?", + "page_19.png-底部文本框有头像非战斗": "x Most likely x After all, the eleyator Is still locked.", + "page_20.png-底部文本框有头像非战斗": "Well, in that case.", + "page_22.png-底部文本框有头像非战斗": "Ah, interesting. x Another weapon AND the stick?", + "page_23.png-底部文本框有头像非战斗": "Dunno why, but I thought. it might make things easier.", + "page_24.png-底部文本框有头像非战斗": "Just another weird hunch, I guess..", + "page_26.png-底部文本框有头像非战斗": "Well, you never know with television, I suppose.", + "page_27.png-底部文本框有头像非战斗": "Persistent deja yu fills you with. determination", + "page_29.png-顶部文本框有头像非战斗": "E Mettaton?", + "page_32.png-顶部文本框有头像非战斗": "HELLo. HLMet. YOU' YE HAD QUITE THE JODRNEY, You?", + "page_33.png-顶部文本框有头像非战斗": "FACING DANGER HEAD ONT WAGIEGWAROLH RTHLES HI]BII TS T", + "page_34.png-顶部文本框有头像非战斗": "3n n 3ns H I o8 SHED MAY TEARS ALWG THE WAY. AFTER ALL.", + "page_35.png-顶部文本框有头像非战斗": "Y01 RE ALL ALoE t1o YO1RDEARBIODYGARO", + "page_36.png-顶部文本框有头像非战斗": "Dude, what's gotten. into you? If this is about that note-", + "page_38.png-顶部文本框有头像非战斗": "WASH T FINISHED YET", + "page_39.png-顶部文本框有头像非战斗": "AMYWAY, YOI YE DONE WELL IH THWARTING MY HREATOR S LESSER BOTS.", + "page_40.png-顶部文本框有头像非战斗": "BUT I CA t Lo][GER TORd A BLIAD EYE TO THE ENEMT OF OUR HOPES AND DREAMS", + "page_41.png-顶部文本框有头像非战斗": "Mettaton, c' mon Snap outta thist", + "page_43.png-顶部文本框有头像非战斗": "x TSK, TSkt DON't YOU SEE? x I M THE WADERGRAO S SHITITG START", + "page_44.png-顶部文本框有头像非战斗": "I M THE $YMBIL WF TRWTH 1STICE. AD ABn4E ALL ELSE,FREEDDM!", + "page_45.png-顶部文本框有头像非战斗": "AND NOW, AT LONG LAST. ITS TIME FOR OUR FIAAL SH[100I0102 T", + "page_47.png-顶部文本框有头像非战斗": "A CLIMAICTIC BATTLE TO DETERMINE THE FUTURE OF EYERYWHERETTT", + "page_48.png-顶部文本框有头像非战斗": "SO GET READY, HUMAN! x YOU'RE ABOUT TO GO OUT OITH ABAGT", + "page_50.png-战斗文本框无头像战斗": "Check # Burn # Yell x Change Mode", + "page_58.png-战斗文本框无头像战斗": "This act is getting absurd", + "page_67.png-战斗文本框无头像战斗": "x Damn it! How it won't eyen turn on?d This is bad..", + "page_89.png-战斗文本框无头像战斗": "Mettaton SPIRAL cha11enges inofi", + "page_90.png-战斗文本框无头像战斗": "Check Pose x Challenge Reason", + "page_91.png-战斗文本框无头像战斗": "x METTATOA SPIRAL - ATF 7 DEF TES E This rising star seeks to fulfill eyeryone' s dreams...", + "page_92.png-战斗文本框无头像战斗": "But is his heart really in it?", + "page_96.png-战斗文本框无头像战斗": "Smells like anime.", + "page_97.png-战斗文本框无头像战斗": "Check Pose Challenge Reason", + "page_98.png-战斗文本框无头像战斗": "Despite your injuries, you strike a dramatic pose. The audience applauds", + "page_101.png-战斗文本框无头像战斗": "Mettaton twirls his sword and winks.", + "page_102.png-战斗文本框无头像战斗": "You ate the Starfait x The audience loyes the brand! :Iur HP was maxed out.", + "page_110.png-战斗文本框无头像战斗": "Mettaton points dramatically at the ceiling. The crowd goes I. iPIIM", + "page_111.png-战斗文本框无头像战斗": "Check Pose Challenge Reason", + "page_118.png-战斗文本框无头像战斗": "Rock music echoes through the arena.", + "page_119.png-战斗文本框无头像战斗": "x You throw the stick.", + "page_120.png-战斗文本框无头像战斗": "Mettaton springs up, catches 1t in his teeth, and hits the ground in a dramatic landing?", + "page_123.png-战斗文本框无头像战斗": "x MtT is handsome and smart and should totally stop pretending to fight me now and also legs.", + "page_126.png-战斗文本框无头像战斗": "Mettaton' s ego continues to 'puedxa Thanks a lot, Frisk.", + "page_127.png-战斗文本框无头像战斗": "Check Pose Challenge Reason", + "page_128.png-战斗文本框无头像战斗": "You tell Mettaton this fight' s. too dull.. Suddenly....", + "page_138.png-战斗文本框无头像战斗": "This changes things a little.. # Or a lot. It's too early to tel1.", + "page_139.png-战斗文本框无头像战斗": "Check Pose Challenge Reason", + "page_146.png-战斗文本框无头像战斗": "t This'll take some getting used to.", + "page_153.png-战斗文本框无头像战斗": "Mettaton looks away for a moment, but then it's back to another big grin.", + "page_154.png-战斗文本框无头像战斗": "You pull out the coffee, but then you realize.... you need to boil some water firstt", + "page_155.png-战斗文本框无头像战斗": "x MTT hands you a kettle and some Water. You wait for the. water to boil", + "page_157.png-战斗文本框无头像战斗": "It's boiling You pour the water into a cup. You add the coffee. mix", + "page_158.png-战斗文本框无头像战斗": "x You stir.. You sip the coffee", + "page_159.png-战斗文本框无头像战斗": "x Kinda bitter, but it'll do. Recoyered 10 HP. Speed upt.", + "page_165.png-战斗文本框无头像战斗": "Mettaton tells the crowd to believe in him the way. he belieyes in them..", + "page_166.png-战斗文本框无头像战斗": "You equip the Torn Notebook", + "page_170.png-战斗文本框无头像战斗": "How long can he keep this up?", + "page_171.png-战斗文本框无头像战斗": "x You re-equip the Hot Leg. It may be old news, but the crowd still loves the brand!", + "page_175.png-战斗文本框无头像战斗": "Mettaton flexes his robotic arms despite the lack of muscle.", + "page_184.png-战斗文本框无头像战斗": "Mettaton tosses his sword and catches it in his teeth.", + "page_190.png-战斗文本框无头像战斗": "x Looks like talking won't do any more good.", + "page_191.png-战斗文本框无头像战斗": "x You ate the carrot. x HP fully restored..", + "page_199.png-战斗文本框无头像战斗": "x Mettaton takes a deep breath.", + "page_203.png-战斗文本框无头像战斗": "x Mettaton glances around. Strange.", + "page_209.png-战斗文本框无头像战斗": "Mettaton looks at you expectantly", + "page_210.png-战斗文本框无头像战斗": "You leap into the air, perform a flip, i and land perfectly I on your feett." +} \ No newline at end of file diff --git a/text2/Ch52/OCR1.json b/text2/Ch52/OCR1.json new file mode 100644 index 00000000..680fbd30 --- /dev/null +++ b/text2/Ch52/OCR1.json @@ -0,0 +1,267 @@ +{ + "page_4.png-顶部文本框有头像非战斗": "(Sigh) _", + "page_5.png-顶部文本框有头像非战斗": "What am I going to do?", + "page_7.png-顶部文本框无头像非战斗": "toot_ 2", + "page_8.png-顶部文本框有头像非战斗": "Oh! Shyren, Blooky! # I take it al1 the prep Work' $ almost complete?", + "page_9.png-顶部文本框有头像非战斗": "oh. yeah. We just up the last few posters. put", + "page_10.png-顶部文本框有头像非战斗": "now We just gotta sound check, and hope for the best. 1 guess.", + "page_11.png-顶部文本框有头像非战斗": "Good, good! Sounds like We re right on track", + "page_12.png-顶部文本框有头像非战斗": "yeah, but. mettaton, are you sure you' re okay?", + "page_13.png-顶部文本框有头像非战斗": "Don' t silly, Blooky! I' m always. MTT Brand Flawless (TM)! be", + "page_14.png-顶部文本框无头像非战斗": "(unconvinced toots)", + "page_15.png-顶部文本框有头像非战斗": "mettaton, mon # it' $ one thing if the cameras are rolling:", + "page_16.png-顶部文本框有头像非战斗": "but right now, it' $ just uS_ S0 if some thing' bothering you.", + "page_17.png-顶部文本框有头像非战斗": "Oh, it' $ nothing serious! Just pre-show jitters", + "page_18.png-顶部文本框有头像非战斗": "You know how it is.", + "page_19.png-顶部文本框有头像非战斗": "and you' re sure it' $ no thing else.", + "page_20.png-顶部文本框有头像非战斗": "Wel1 there is that date~", + "page_21.png-顶部文本框有头像非战斗": "But no_ I really am okay:", + "page_22.png-顶部文本框有头像非战斗": "I' m fine and at the end of the day, isn' t that worth celebrating?", + "page_23.png-顶部文本框有头像非战斗": "well okay: # 1 guess We= 11 talk later?", + "page_24.png-顶部文本框有头像非战斗": "Of course, but for now, the night is yours! Leave the crowds to me !", + "page_27.png-顶部文本框有头像非战斗": "(It' $ better that they don' t know I Wish I didn' t know", + "page_28.png-顶部文本框有头像非战斗": "(But I shouldn' t let it to me. ) get", + "page_29.png-顶部文本框有头像非战斗": "(Al1 this doom an gloom 1s a total mood killer. )", + "page_30.png-顶部文本框有头像非战斗": "(And I dO @we Papyrus the ultimate dating experience: )", + "page_32.png-顶部文本框有头像非战斗": "(Hey, cap:", + "page_34.png-顶部文本框有头像非战斗": "(There' $ something I still don' t ) get.", + "page_35.png-顶部文本框有头像非战斗": "(If Flowey' $ your brother, and you knew this whole time__", + "page_36.png-顶部文本框有头像非战斗": "(Then why can' t you trust him?)", + "page_37.png-顶部文本框有头像非战斗": "That' $ not Hsriel anymore.", + "page_38.png-顶部文本框有头像非战斗": "But you said-", + "page_39.png-顶部文本框有头像非战斗": "What' $ the point in explaining further? He' $. made his case", + "page_40.png-顶部文本框有头像非战斗": "Even I know when to concede defeat, Frisk", + "page_41.png-顶部文本框有头像非战斗": "(Seriously? You g0 to this effort to make me listen. all", + "page_42.png-顶部文本框有头像非战斗": "(And now You' re back to being cagey?)", + "page_43.png-顶部文本框有头像非战斗": "(and why' re you trying to pit me against your brother?)", + "page_44.png-顶部文本框有头像非战斗": "(Didn' t you see torn up he Was?) how", + "page_45.png-顶部文本框有头像非战斗": "Frisk, it' $ not that simple.", + "page_46.png-顶部文本框有头像非战斗": "HEY FRISK", + "page_47.png-顶部文本框有头像非战斗": "I' m not proud of What happened, but Asriel is DEAD .", + "page_48.png-顶部文本框有头像非战斗": "The flower may have his memories, but at its roots it' $ a killer_", + "page_49.png-顶部文本框有头像非战斗": "I' ve SEEH him take pleasure in monsterkind' $ anguish!", + "page_50.png-顶部文本框有头像非战斗": "(H-no Way!) # (He wouldn' t.", + "page_51.png-顶部文本框有头像非战斗": "Frisk Do you trust me?", + "page_52.png-顶部文本框有头像非战斗": "# ( Of course I do ) # (But I trust Flowey; too.", + "page_53.png-顶部文本框有头像非战斗": "(Besides, if he Was S0 bloodthirsty; why' d he let Toriel live?)", + "page_54.png-顶部文本框有头像非战斗": "(He coulda overpowered uS AND taken the SOULs, but he didn' t. )", + "page_55.png-顶部文本框有头像非战斗": "True_ And with their SOULs, he could have crossed the barrier", + "page_56.png-顶部文本框有头像非战斗": "But still HAS the human SOULS. He has the queen' $ trust. he", + "page_57.png-顶部文本框有头像非战斗": "Everything he said. holds water.", + "page_58.png-顶部文本框有头像非战斗": "Please understand_ I do regret my actions, but as I said before.", + "page_59.png-顶部文本框有头像非战斗": "I don' t want history to repeat itself.", + "page_60.png-顶部文本框有头像非战斗": "# I don' t want you to end up like Hsriel. You' re too import-", + "page_61.png-顶部文本框有头像非战斗": "15 EvERYTHING ALL RIGHTzn?", + "page_62.png-顶部文本框有头像非战斗": "Oh! Uh. Sorry: Just. kinda processing everything:", + "page_63.png-顶部文本框有头像非战斗": "(Sigh) _ # Go ahead. # I' ve made my case", + "page_64.png-顶部文本框有头像非战斗": "# I just hope I' m Wrong:", + "page_69.png-顶部文本框无头像非战斗": "Whoat Aren' t You THE Dohj?!", + "page_70.png-顶部文本框无头像非战斗": "Yeaht The one from the Walkies meme # I loved that thing!", + "page_71.png-顶部文本框无头像非战斗": "And, like. Didn' t you g0 nutso in the trial?", + "page_72.png-顶部文本框无头像非战斗": "Geez, lady: Maybe 4ou need to g0 vibe by the pool.", + "page_73.png-顶部文本框无头像非战斗": "And take a HUGE chill pill, dudet", + "page_74.png-底部文本框有头像非战斗": "should We do some thing about this, or_ 2 S0,", + "page_75.png-底部文本框有头像非战斗": "DON'T KNOW WE ARENT REALLY ON THE BEST OF TERMS", + "page_76.png-底部文本框有头像非战斗": "Will all give me some SPACE for one godforsaken MOMENT?!?!! you", + "page_77.png-底部文本框有头像非战斗": "Hs ASTONISHING as this may be to peanut-sized brains. your", + "page_78.png-底部文本框有头像非战斗": "Hot everyone is INTERESTED in EHDLESS BADGERING", + "page_79.png-顶部文本框有头像非战斗": "khfas buts_ you. suportz HOOMANZ?+!", + "page_80.png-底部文本框无头像非战斗": "# As a sline, I am perplexed:", + "page_81.png-顶部文本框无头像非战斗": "And what about Undyne?! Do you think she' $ okay? Her face Was all metal and stufft", + "page_82.png-顶部文本框无头像非战斗": "(Psst. Dog Lady: I' 11 tell ya What.", + "page_83.png-顶部文本框无头像非战斗": "(You me a room With fancy guard credentials, and this bone' $ all yours. ) get your", + "page_84.png-底部文本框有头像非战斗": "Reptile. I am a soldier, not a slobbering; desperate buffoont", + "page_85.png-底部文本框有头像非战斗": "And frankly; I' ve no time to expend my energy with you lot", + "page_86.png-底部文本框有头像非战斗": "S0t If you Will EXCUSE me_", + "page_87.png-底部文本框有头像非战斗": "I will take whatever vacancies you have left.", + "page_88.png-底部文本框有头像非战斗": "Give me the janitor' $ closet for all I caret", + "page_89.png-底部文本框有头像非战斗": "Anything to escape this hellish nagging:", + "page_90.png-底部文本框有头像非战斗": "Mah. I don' t think that' $ necessary:", + "page_91.png-底部文本框有头像非战斗": "Y-You:", + "page_92.png-底部文本框有头像非战斗": "We' re not really using our room anymore, S0.", + "page_93.png-底部文本框无头像非战斗": "WHAT?! You' re gonna give it to HER? But I thought she wanted to toss ya in the slammert", + "page_94.png-顶部文本框有头像非战斗": "And you wanted to keep my SOUL as a trophy, Soooo.", + "page_95.png-顶部文本框有头像非战斗": "You COULD ALWAYS SHARE", + "page_97.png-底部文本框有头像非战斗": "with miss loudmouth?t thankst", + "page_98.png-顶部文本框有头像非战斗": "For our information, I am sergeant Bassiere von Dohj III:", + "page_99.png-顶部文本框有头像非战斗": "Any \"loudness is my RIGHTFUL fury at my reputation' $ desecrationt", + "page_100.png-底部文本框无头像非战斗": "S0 do you want the room or not?", + "page_101.png-顶部文本框有头像非战斗": "(Sigh) _ Very well. I suppose I' m in no position to complain.", + "page_102.png-底部文本框无头像非战斗": "I' 11, uh_ Just outta your Way, then. get", + "page_103.png-底部文本框有头像非战斗": "THERE'5 SOMETHING STILL DONT UNDERSTAND", + "page_104.png-底部文本框有头像非战斗": "wHY DID You STIcK UP FOR u5?", + "page_105.png-底部文本框有头像非战斗": "Don' t the wrong idea. You are still a traitor in my eyes. ge t", + "page_106.png-底部文本框有头像非战斗": "And I find your character sorely lacking:", + "page_107.png-底部文本框有头像非战斗": "I do not LIKE either of You, nor do I forgive transgressions. your", + "page_108.png-底部文本框有头像非战斗": "Ny reputation is forever tarnished, and yet.", + "page_109.png-底部文本框有头像非战斗": "Perhaps there' $ a microscopic grain of truth to the lieutenant' & words.", + "page_110.png-底部文本框有头像非战斗": "At the very least, I do not wish death upon You, Papyrus.", + "page_111.png-底部文本框有头像非战斗": "Least of all at the hands of @wn mentor your", + "page_112.png-底部文本框有头像非战斗": "you' re not gonna to capture me again? S0, try", + "page_113.png-底部文本框有头像非战斗": "What' $ the use? Ny captain already pardoned you.", + "page_114.png-底部文本框有头像非战斗": "Even the most stalwart soldier knows when to admit defeat, S0. g0_", + "page_115.png-底部文本框有头像非战斗": "After all, time is best spent With the Doctor, is it not? your", + "page_116.png-底部文本框有头像非战斗": "R-RIGHT YELL! ENJOY YOUR STAYW! AND GET YELL SOON?", + "page_117.png-底部文本框有头像非战斗": "Hmph: # A tall order, I' m afraid.", + "page_119.png-顶部文本框有头像非战斗": "THAT'S ODD", + "page_120.png-顶部文本框有头像非战斗": "UNDYNE IT'S ME! THE GREAT FAPYRUS! YOUR BEST FRIEND_ AND", + "page_121.png-顶部文本框有头像非战斗": "Don' t tell me she locked uS out.", + "page_122.png-顶部文本框有头像非战斗": "OKAY WON'T", + "page_123.png-顶部文本框有头像非战斗": "Don' t you have a backup set keys? 0f", + "page_124.png-顶部文本框有头像非战斗": "NOT IN THE LITERAL SENSE, But", + "page_125.png-顶部文本框有头像非战斗": "TECHNOLOGY HAS ITS FERK5 BEHOLDW", + "page_127.png-顶部文本框有头像非战斗": "I. SAID BEHOLDW", + "page_129.png-顶部文本框有头像非战斗": "DID SHE OVERRIDE THE SECURITY?", + "page_130.png-顶部文本框有头像非战斗": "Seriously? But you' re her PARTHER !", + "page_131.png-顶部文本框有头像非战斗": "SHE FROBABLY Just NEEDS SOME SFACE", + "page_132.png-顶部文本框有头像非战斗": "But BUTw F'M SURE SHE'S FERFECTLY FINE", + "page_133.png-顶部文本框有头像非战斗": "# You sure about that?", + "page_134.png-顶部文本框有头像非战斗": "O-OF COURSE! UNDYNE 15 UNSTOFFABLE!!", + "page_135.png-顶部文本框有头像非战斗": "WE CAN ALWAYS CHECK ON HER LATER", + "page_136.png-顶部文本框有头像非战斗": "If you say S0.", + "page_137.png-顶部文本框有头像非战斗": "! ring:", + "page_138.png-顶部文本框有头像非战斗": "HELLOOOOOO, my grand prize Winnerst", + "page_139.png-顶部文本框有头像非战斗": "# Wait, S0 that prize thing Wasn' t a scam?", + "page_140.png-顶部文本框有头像非战斗": "OF COURSE! HED NEVER ToY WITH OUR HEARTS LIKE THAT!", + "page_141.png-顶部文本框有头像非战斗": "EvEN IF MINE 15 PURELY METAPHORICAL", + "page_142.png-顶部文本框有头像非战斗": "True, but I understand their apprehension.", + "page_143.png-顶部文本框有头像非战斗": "In the end I still put them through an arduous solo act", + "page_144.png-顶部文本框有头像非战斗": "Mon. Haven' t We had enough self-pity for one day? Hey,", + "page_145.png-顶部文本框有头像非战斗": "Too truet But, for what it' $ worth, I am sorry:", + "page_146.png-顶部文本框有头像非战斗": "More to the point? How did your meeting with the queen 90?", + "page_147.png-顶部文本框有头像非战斗": "Pretty good, even if I almost turned to a pile soot_ got 0f", + "page_148.png-顶部文本框有头像非战斗": "But THEY DIDNTW AND SHE GRANTED u5 THE HUMAN SOulS", + "page_149.png-顶部文本框有头像非战斗": "IF THAT'5 NOT AN EPIC WINTM, DON'T KNOw WHAT ISw", + "page_150.png-顶部文本框有头像非战斗": "( Did he just speak in rainbows?)", + "page_151.png-顶部文本框有头像非战斗": "Wel1 wel1! THAT' $ a twist if I ever heard onet plot", + "page_152.png-顶部文本框有头像非战斗": "But what' $ the catch? Unless you already BROKE the barrier_", + "page_153.png-顶部文本框有头像非战斗": "WELL, WE STILL NEED TO GATHER EvERY MONSTER FIRST", + "page_154.png-顶部文本框有头像非战斗": "ACTUALLY_ YED HOPED You MIGHT HELP u5, But IF YOURE Busy_", + "page_155.png-顶部文本框有头像非战斗": "Darling; I @we you a date and my fans an earth-shattering show.", + "page_156.png-顶部文本框有头像非战斗": "And an announcement our pending freedom is THE perfect hook! of", + "page_157.png-顶部文本框有头像非战斗": "I' m al1 for itt But perhaps We should hash it out in person, hm?", + "page_158.png-顶部文本框有头像非战斗": "R-RIGHT! THIS 15 A ONCE IN A LIFETIME OFFORTUNITY FRISK!", + "page_159.png-顶部文本框有头像非战斗": "Wel1 it doesn' t have to be", + "page_160.png-顶部文本框有头像非战斗": "A_ GENUINE DATE WITH THE YORLL5 SEXIEST RECTANGLEW!", + "page_161.png-顶部文本框有头像非战斗": "ER FORMER RECTANGLE? VAGUELY HuMANOID STUDMUFF IN!", + "page_162.png-顶部文本框有头像非战斗": "You GET THE IDEA!", + "page_163.png-顶部文本框有头像非战斗": "Wel1 if you' re ThAT into him, you could always make it one on one", + "page_164.png-顶部文本框有头像非战斗": "ANYWAYW YELL SEE You SOON! NYEH HEH HEH! AND HEH!", + "page_165.png-顶部文本框有头像非战斗": "( FSST, FRISK , THIS 15 THE PART WHERE You HANG UP )", + "page_166.png-顶部文本框有头像非战斗": "Haha. Wel1 I Won' t keep you. Toodles?", + "page_167.png-顶部文本框有头像非战斗": "Just S0 yov know, I' m totally telling Gans about this later.", + "page_169.png-顶部文本框无头像非战斗": "Tra la la. Bad memories. broken dreams. What Was lost remains unseen.", + "page_170.png-顶部文本框有头像非战斗": "ALL RIGHT! NOw YE Just HAVE To FIND METTATONW!", + "page_171.png-顶部文本框有头像非战斗": "You dO realize We coulda asked for directions, right?", + "page_172.png-顶部文本框有头像非战斗": "ERK_ WELL! HE CANT BE TOO F ARW!", + "page_173.png-底部文本框有头像非战斗": "EXCuSE ME, GREEN CHILDW HAVE You SEEN METTATON?", + "page_174.png-底部文本框有头像非战斗": "h) . I can' t go one minute out hearing about him; can", + "page_175.png-底部文本框无头像非战斗": "He' $. around, but I couldn' t tell you where. Personally; I just want some peace and quiet:", + "page_176.png-底部文本框无头像非战斗": "Of course, with all the gossip around that' $ probably just a pipe dream: town,", + "page_177.png-顶部文本框无头像非战斗": "I dunno, man. Seeing Undyne like that. Makes ya wonder if We' re doin' the right thing:", + "page_178.png-顶部文本框有头像非战斗": "somebody' $ gotta do itt I t sayin' she shoulda ty-sixed her partner.", + "page_179.png-顶部文本框无头像非战斗": "But broadcasting that breakdown. eesh. You' d think MTT woulda had more restraint.", + "page_180.png-顶部文本框无头像非战斗": "Oh, hello, dearst Are you all right? I saw what happened on the television:", + "page_181.png-顶部文本框有头像非战斗": "O-OH THAT WAS NOTHINGW!", + "page_182.png-顶部文本框有头像非战斗": "ONE TINY SPEAR ISN'T ENOUGH To THWART THE GREAT FAPYRUSW!", + "page_183.png-顶部文本框无头像非战斗": "Yes, but. how do you feel? It mustn' t have been standing up to your partner. easy", + "page_184.png-顶部文本框有头像非战斗": "WELL, IF HADN'T SPOKEN UF SHE NEVER WOULD HAVE STOFFED", + "page_185.png-顶部文本框有头像非战斗": "BESIDES! IT'S OVER NOW! FRISK 15 SAFE AND UNDYNE", + "page_186.png-顶部文本框有头像非战斗": "SHE'S FROBABLY Just PUNCHING HER STRESS BOULDER A LOT", + "page_187.png-顶部文本框有头像非战斗": "THAT'S ALL IT 15", + "page_188.png-顶部文本框无头像非战斗": "S0 Mettaton' & intern Was a human all along: I don' t know What to make of this.", + "page_189.png-顶部文本框无头像非战斗": "You haven' t hurt anyone yet, but even old wounds leave scars.", + "page_190.png-顶部文本框无头像非战斗": "Just be careful, Papyrus.", + "page_191.png-顶部文本框无头像非战斗": "Man. mom said I can' t go to MTT' $ concertt This SUCKSt", + "page_192.png-顶部文本框无头像非战斗": "S0 What if I fed a dog My homework? It Was already graded!", + "page_193.png-顶部文本框有头像非战斗": "THAT POOR FOOCHw INTERNAL FAPERCuTS ARE THE WORST!", + "page_194.png-顶部文本框有头像非战斗": "ASSUME IT's NOT LIKE F'VE EATEN FAFER BEFOREW", + "page_195.png-顶部文本框有头像非战斗": "NOT EvEN FOR SCIENCEw!", + "page_196.png-顶部文本框有头像非战斗": "# On second thought, I nothin' got", + "page_197.png-顶部文本框无头像非战斗": "hONG. Mettaton such- HEROS # I cames all the Way from hoTs 1AND##4", + "page_198.png-顶部文本框无头像非战斗": "uwawawlaWa_ can' t Wait verr suspens!!!!", + "page_199.png-顶部文本框有头像非战斗": "Waaaaaait_ Weren' t you JuST at the hotel? We even left before you!", + "page_200.png-顶部文本框有头像非战斗": "A WORD OF ADVICE DONT QUESTION THE LoGic OF TEMS", + "page_201.png-底部文本框无头像非战斗": "Like. 0", + "page_202.png-底部文本框无头像非战斗": "# M", + "page_203.png-底部文本框无头像非战斗": "Gtmt Gtm", + "page_204.png-底部文本框有头像非战斗": "O-OH HELLO AGAIN DIDNT EXFECT To SEE You HERE!", + "page_205.png-底部文本框无头像非战斗": "Like, you REALLY thought We d miss MTT' $ big show? C' mon.", + "page_206.png-底部文本框无头像非战斗": "Yeah! S0 We might not' ve Won that date. We = re still, like, gonna show our supporti", + "page_207.png-底部文本框有头像非战斗": "AND YOURE NOT UF SET?", + "page_208.png-底部文本框有头像非战斗": "EvEN THOUGH You CLAIMED HIM A5 YOUR HuSBAND?", + "page_209.png-底部文本框无头像非战斗": "I mean, I still think it shoulda been uS, but a Win' $ a Win.", + "page_210.png-底部文本框有头像非战斗": "du bet THAT much, then you be serious about this?", + "page_211.png-底部文本框无头像非战斗": "But, like, you better tell uS EVERYTHING!", + "page_212.png-底部文本框无头像非战斗": "Ooh! And We can give you ALL kinds of makeup tips?", + "page_213.png-底部文本框无头像非战斗": "And you' re not seriously gonna Wear ThAT, right?", + "page_214.png-底部文本框有头像非战斗": "NEVER FEAR, LADIES! 1, THE GREAT PAPYRUS, AM ALWAYS FREFARED!", + "page_216.png-底部文本框有头像非战斗": "that' $ kind of cute. like, We can do S0 much er!", + "page_217.png-底部文本框无头像非战斗": "Like, at least let uS help you out, since you stole our date", + "page_218.png-底部文本框无头像非战斗": "Catty!", + "page_219.png-底部文本框有头像非战斗": "fine. Let US help You out he goodness of our hearts}", + "page_220.png-底部文本框无头像非战斗": "I' ve got, like, the CUTEST shirti", + "page_221.png-底部文本框无头像非战斗": "And while We\" re at you might Wanna tone down the Whole nerd thing: it,", + "page_222.png-底部文本框无头像非战斗": "# I mean, this is METTATOH We re talking aboutt", + "page_223.png-底部文本框有头像非战斗": "Whatever happened to just be yourself\"? They' re already friends.", + "page_224.png-底部文本框无头像非战斗": "Pfft, no way! You NEVER Wanna be yourself on the first date.", + "page_225.png-底部文本框无头像非战斗": "You Wanna ease em in.", + "page_226.png-底部文本框无头像非战斗": "Third date at least.", + "page_227.png-底部文本框无头像非战斗": "S0 when KHOW You, it'11 be too late to back outt they", + "page_228.png-底部文本框有头像非战斗": "REALLY", + "page_229.png-底部文本框有头像非战斗": "That' $ the Worst advice I' ve ever heard.", + "page_230.png-底部文本框有头像非战斗": "50 SHOULD BE MYSELF.", + "page_231.png-底部文本框有头像非战斗": "YES. You ve known him for YEARS, S0 let' $ find him and do this QUR Way:", + "page_232.png-底部文本框有头像非战斗": "you' re no fun!", + "page_233.png-底部文本框无头像非战斗": "But you STILL owe uS a full recap?", + "page_236.png-顶部文本框有头像非战斗": "(WAIT A_ SECOND! ISNT THAT ROBOT-)", + "page_237.png-顶部文本框有头像非战斗": "YQut", + "page_238.png-顶部文本框有头像非战斗": "Uh. there. Good see you again: hey to", + "page_239.png-顶部文本框有头像非战斗": "Good? Good?1 You call this GOod?1", + "page_240.png-顶部文本框有头像非战斗": "FIRST, Undyne locks me the lab! out 0f", + "page_241.png-顶部文本框有头像非战斗": "THEH, she Won' t answer her phone ! And I called TWENTY TIMES:", + "page_242.png-顶部文本框有头像非战斗": "S0 I thought MAYBE she Went to her old home to away from it all_ get", + "page_243.png-顶部文本框有头像非战斗": "But no. And to it al1 off. top", + "page_244.png-顶部文本框有头像非战斗": "Half the town' $ too busy gushing about Mettaton to even CARE?", + "page_245.png-顶部文本框有头像非战斗": "TO BE FAIR, UNDYNE DID Just ENDURE QuITE A BIT.", + "page_246.png-顶部文本框有头像非战斗": "F'M SURE SHE Just NEEDS A LITTLE TIME ALONE", + "page_247.png-顶部文本框有头像非战斗": "Papyrus ! You' ve worked with her for YEARS.", + "page_248.png-顶部文本框有头像非战斗": "Do you REALLY think isolation' $ gonna help her?", + "page_249.png-顶部文本框有头像非战斗": "IT's NOT LIKE WE FLAN TO ABANDON HER! JuSt", + "page_250.png-顶部文本框有头像非战斗": "DONT WANT TO OVERSTEF .", + "page_251.png-顶部文本框有头像非战斗": "WHETHER YE LIKE IT OR NOT SHE'S NOT READY TO SEE u5.", + "page_252.png-顶部文本框有头像非战斗": "Hmph. Wel1 for your sake, I hope that' $ al1 it 1s.", + "page_253.png-顶部文本框有头像非战斗": "# C' mom, Papyrus. We should probably give her space, too_", + "page_255.png-顶部文本框有头像非战斗": "yeah: 1 know it' $ silly: We= ve put on tons of performances_", + "page_256.png-顶部文本框有头像非战斗": "1 guess 1' m just Worried. this isn' t just a show, shyren.", + "page_257.png-顶部文本框有头像非战斗": "and after everything that' $ happened.", + "page_258.png-顶部文本框有头像非战斗": "15 THIS A DAD TIME?", + "page_259.png-顶部文本框无头像非战斗": "t-tootm", + "page_260.png-顶部文本框有头像非战斗": "oh. it' $ you two_", + "page_261.png-顶部文本框有头像非战斗": "# 1' m glad you' re okay: # even if that Was obvious after MTT' $ broadcast_", + "page_262.png-顶部文本框有头像非战斗": "but 1' m sorry: you two went through 50 much.", + "page_263.png-顶部文本框有头像非战斗": "and 1 couldn' t do anything to help.", + "page_264.png-顶部文本框有头像非战斗": "# 1 guess it Was just. overwhelming:", + "page_265.png-顶部文本框无头像非战斗": "toot, toot.", + "page_266.png-顶部文本框有头像非战斗": "Speaking as the one Who had to FIGHT her stupid mecha?", + "page_267.png-顶部文本框有头像非战斗": "Yeah. Overwhelming' $ ONE Way to it. put", + "page_268.png-顶部文本框有头像非战斗": "yeah: soon as the feed cut, 1 just kind of cried in a corner_", + "page_269.png-顶部文本框有头像非战斗": "feeling like garbage_", + "page_270.png-顶部文本框有头像非战斗": "Which is stupid. 1 Was just watching: you did al1 the heavy lifting:", + "page_271.png-顶部文本框有头像非战斗": "NOw, NOW ! YOU'VE DONE FLENTY TO AID FRISK!", + "page_272.png-顶部文本框有头像非战斗": "LEST WE FORGET THE NEwS AND MISS MUFTETW", + "page_273.png-顶部文本框有头像非战斗": "Plus, MTT wouldn' t have saved me from Bratty Catty without you. and", + "page_274.png-顶部文本框有头像非战斗": "AND NOw YERE ON THE CuSp OF A LIFE-CHANGING EvENTW!", + "page_275.png-顶部文本框有头像非战斗": "AND ALSO A DATE WITH YOUR COuSiN", + "page_278.png-顶部文本框有头像非战斗": "50! HAVE You SEEN HIM AROUND-n?", + "page_279.png-顶部文本框有头像非战斗": "# 1 think he' $ still getting ready by the gazebo.", + "page_280.png-顶部文本框有头像非战斗": "but uh. congratulations? good luck. and", + "page_281.png-顶部文本框有头像非战斗": "dates are kind of a lot.", + "page_282.png-顶部文本框有头像非战斗": "You MEAN THIS ISNT A DATE?", + "page_283.png-顶部文本框无头像非战斗": "(DISTRESSED TootSt)", + "page_284.png-顶部文本框有头像非战斗": "oh gee", + "page_285.png-顶部文本框有头像非战斗": "Careful Blooky: You give Papyrus ideas, and next thing you know", + "page_286.png-顶部文本框有头像非战斗": "He' 11 make you a real-life dating simulator_", + "page_287.png-顶部文本框有头像非战斗": "# you know, maybe it' $ better if 1 don' t ask", + "page_288.png-顶部文本框有头像非战斗": "Heh. Suit yourself. But anyway, We 11 catch ya later Blooky:" +} \ No newline at end of file diff --git a/text2/Ch53/OCR1.json b/text2/Ch53/OCR1.json new file mode 100644 index 00000000..dae543ac --- /dev/null +++ b/text2/Ch53/OCR1.json @@ -0,0 +1,329 @@ +{ + "page_1.png-顶部文本框有头像非战斗": "Sound system' $ loud and clear_ We' ve practically memorized our routine_", + "page_2.png-顶部文本框有头像非战斗": "Really, what' $ the point in pre-show jitters?", + "page_3.png-顶部文本框有头像非战斗": "Everything is going to be", + "page_4.png-顶部文本框有头像非战斗": "GREAT?! BECAUSE KNOw YouD NEVER SETTLE FOR TINEW", + "page_5.png-顶部文本框有头像非战斗": "Well_ hello, darlings! just couldn' t wait, could you? You", + "page_6.png-顶部文本框有头像非战斗": "Wel1 that' $ all right! # I have that effect on people.", + "page_7.png-顶部文本框有头像非战斗": "S0_", + "page_8.png-顶部文本框有头像非战斗": "50_", + "page_9.png-顶部文本框有头像非战斗": "# is this a normal part of the nerds' courtship ritual or 2 S0", + "page_10.png-顶部文本框有头像非战斗": "I! DONT KNOw WHAT YOURE TALKING ABOUT!", + "page_11.png-顶部文本框有头像非战斗": "But METTATON, ARE You FEELING ALL RIGHT?", + "page_12.png-顶部文本框有头像非战斗": "15 THE NEY BODY COMFORTABLE?", + "page_13.png-顶部文本框有头像非战斗": "I can' t tell you how relieving it is to have actual legs! Very:", + "page_14.png-顶部文本框有头像非战斗": "Hever mind this handsome face.", + "page_15.png-顶部文本框有头像非战斗": "It' $ even better than I expected, S0. thank you", + "page_16.png-顶部文本框有头像非战斗": "Huh? But I thought Undyne built you.", + "page_17.png-顶部文本框有头像非战斗": "Hat We11, she DID build my previous body and CONSTRUCTED this one", + "page_18.png-顶部文本框有头像非战斗": "But the design work' $ all Papyrus.", + "page_19.png-顶部文本框有头像非战斗": "Really, I' d thought the flaming wings would give it away:", + "page_20.png-顶部文本框有头像非战斗": "Huh. The more you know?", + "page_21.png-顶部文本框有头像非战斗": "Still, you sure you' re okay? You seemed pumped for that big finale.", + "page_22.png-顶部文本框有头像非战斗": "It is what it is.", + "page_23.png-顶部文本框有头像非战斗": "Frankly, Frisk, you' re worth more than ratings.", + "page_24.png-顶部文本框有头像非战斗": "And it' $ better this Way, isn' t it? Undyne is still.", + "page_25.png-顶部文本框有头像非战斗": "ACTUALLY HOw 15 UNDYNE? DID You FIND HER?", + "page_26.png-顶部文本框有头像非战斗": "I did. And I Was promptly thrown of the lab for my troublest out", + "page_27.png-顶部文本框有头像非战斗": "Slamned the door behind me too.", + "page_28.png-顶部文本框有头像非战斗": "I mean, can you really blane her after what happened?", + "page_29.png-顶部文本框有头像非战斗": "Ho not really:", + "page_30.png-顶部文本框有头像非战斗": "But as say in show biz, the show mus t 90 on ! they", + "page_31.png-顶部文本框有头像非战斗": "I' m sure Undyne Will be fine but for now, We all ought to unwind_", + "page_32.png-顶部文本框有头像非战斗": "S0! How seems like the ideal time to whisk you away to our little date_", + "page_33.png-顶部文本框有头像非战斗": "Come on. I know the perfect place.", + "page_34.png-顶部文本框有头像非战斗": "Whoa, first date, and We re already going to your place?", + "page_35.png-顶部文本框有头像非战斗": "Dang, MTT. must be serious. You", + "page_36.png-顶部文本框有头像非战斗": "I' m a monster of my Wordt", + "page_37.png-顶部文本框有头像非战斗": "Besides, few monsters alive have ever seen my personal abode_", + "page_38.png-顶部文本框有头像非战斗": "If the cameras Were rolling; I' d make some showy remark:", + "page_39.png-顶部文本框有头像非战斗": "Oh! What a once in a lifetime opportunity: Ny most privileged fans!", + "page_40.png-顶部文本框有头像非战斗": "But honestly? I' m glad it' $ you two", + "page_43.png-顶部文本框有头像非战斗": "Huh. Gotta admit, it' $ not what I expected.", + "page_44.png-底部文本框有头像非战斗": "Is it really that surprising?", + "page_45.png-底部文本框有头像非战斗": "Ny judge' $ Wig DID match the decor.", + "page_46.png-顶部文本框有头像非战斗": "Hah, after your magical girl transformation, the pink' $ super tame", + "page_47.png-顶部文本框有头像非战斗": "But this place 1s S0. small 4' know? Cozy; I guess, but.", + "page_48.png-底部文本框有头像非战斗": "Hot What you' d expect from a celebrity?", + "page_49.png-顶部文本框有头像非战斗": "Definitely not.", + "page_50.png-底部文本框有头像非战斗": "Ha. Well, to be perfectly blunt, I dO have several penthouses.", + "page_51.png-底部文本框有头像非战斗": "By all accounts_ I COULD make Mettatown my permanent residence.", + "page_52.png-底部文本框有头像非战斗": "OR LET ME ENLARGE YOUR ROOM, Just LIKE YOUR COUSIN!", + "page_53.png-底部文本框有头像非战斗": "THE OFFEER 15 STILL ON THE TABLE", + "page_54.png-底部文本框有头像非战斗": "I appreciate the thought, darling, but. it' $ all right.", + "page_55.png-底部文本框有头像非战斗": "To be honest, all the glitz. all the glamour and luxury:", + "page_56.png-底部文本框有头像非战斗": "After a while, it just loses its luster", + "page_57.png-底部文本框有头像非战斗": "Huh. That why you brought uS here?", + "page_58.png-底部文本框有头像非战斗": "Yes", + "page_59.png-底部文本框有头像非战斗": "I apologize if it' $ underwhelming: It' $ just.", + "page_60.png-底部文本框有头像非战斗": "After everything that' $ happened -", + "page_61.png-底部文本框有头像非战斗": "DONT BE SILLY! You DONT HAVE TO Yom\" EITHER ONE OF uSW", + "page_62.png-底部文本框有头像非战斗": "Just SFENDING TIME WITH YOu 15 REWARDING ENOUGH", + "page_63.png-底部文本框有头像非战斗": "Thanks for the vote of confidence.", + "page_64.png-底部文本框有头像非战斗": "But enough sulking? # I didn' t invite You here to Wallow in my angst.", + "page_65.png-底部文本框有头像非战斗": "Mi casa es Su casa, as they say: Feel free to look aroundt", + "page_66.png-顶部文本框有头像非战斗": "# Is this a roomba stand?", + "page_67.png-顶部文本框有头像非战斗": "Haha, no_ It WAS the charging station for my old form; though.", + "page_68.png-顶部文本框有头像非战斗": "Lucky for me batteries are no longer an issuet", + "page_69.png-顶部文本框有头像非战斗": "Hot that technically Were before_ they", + "page_70.png-顶部文本框有头像非战斗": "Oh yeah. Back at Blooky' $ house, you.", + "page_71.png-顶部文本框有头像非战斗": "DONT WORRY ABOUT THAT! F'M SURE YOULL INTEGRATE SOONW!", + "page_72.png-顶部文本框有头像非战斗": "AND UNTIL THEN, Just DO WHAT WOULD DO! BELIEVE IN YOUw", + "page_73.png-顶部文本框有头像非战斗": "I know, darling: But just being in this body' $ Worked wonders.", + "page_74.png-底部文本框有头像非战斗": "WOWIE You STILL HAVE THIS OLD THING?", + "page_75.png-底部文本框有头像非战斗": "Of courset I' d never throw away such a dazzling treasure~", + "page_76.png-底部文本框有头像非战斗": "Anyone can pick up a lava but rainbow flames? That' $ UMIQUE: lamp", + "page_77.png-底部文本框有头像非战斗": "OH! IT'S NOTHING SFECIAL", + "page_78.png-底部文本框有头像非战斗": "Just SOME COOL CHEMICALS A DASH OF EXTREME HEAT.", + "page_79.png-底部文本框有头像非战斗": "Geez, Papyrus. It' $ not like you to sell yourself short.", + "page_80.png-底部文本框有头像非战斗": "HEY! 'M DOING NO SucH THING!", + "page_81.png-底部文本框有头像非战斗": "NATURALLY, ALL FIREGLOBE VARIANTS ARE COOL-INCARNATE", + "page_82.png-底部文本框有头像非战斗": "BUt THEYRE Just 50 SIMFLE COMFARED TO, WELL", + "page_83.png-底部文本框有头像非战斗": "You KNOW", + "page_84.png-底部文本框有头像非战斗": "THE FOINT 15, KNOW COULD MAKE SOMETHING BETTER!", + "page_85.png-底部文本框有头像非战斗": "AT LEAST SOMETHING FLASHIER", + "page_86.png-底部文本框有头像非战斗": "Yes, Teleporters, pocket dimensions, this body' $ sleek desigm. yes", + "page_87.png-底部文本框有头像非战斗": "I know CAN do more, but grandeur isn' t everything: you", + "page_88.png-底部文本框有头像非战斗": "strange as it sounds, I often find that simple gifts shine brightest.", + "page_89.png-底部文本框有头像非战斗": "SUPPOSE THAT'5 TRUE", + "page_90.png-底部文本框有头像非战斗": "SORRY IT'S JuSt, GIVEN THE CIRCUMSTANCES", + "page_91.png-底部文本框有头像非战斗": "REALLY SHOULD HAVE FLANNED AHEAD", + "page_92.png-底部文本框有头像非战斗": "You said it yourself, Papyrus. Your company is its 0wn reward.", + "page_93.png-底部文本框有头像非战斗": "S0 relaxt The spotlight doesn' t ALWAYS shine When I' m around.", + "page_94.png-底部文本框有头像非战斗": "Huh. Mot as many followers as I expected:", + "page_95.png-底部文本框有头像非战斗": "Oh, that' $ my private account. See the username?", + "page_96.png-底部文本框有头像非战斗": "Faboolous_ heh. Guess that DOES explain the lack of branding:", + "page_97.png-底部文本框有头像非战斗": "Wel1, of course Even I need a break from the press and the public.", + "page_98.png-底部文本框有头像非战斗": "On this account, I' m invisible. Just some mundane theater nerd-", + "page_99.png-底部文本框有头像非战斗": "And re sure no one can trace it? you'", + "page_100.png-底部文本框有头像非战斗": "Oh, Frisk. Most monsters don' t care about the ghost in the machine_", + "page_101.png-底部文本框有头像非战斗": "There' $ the rub. Legions of fans Who love Mettaton the star", + "page_102.png-底部文本框有头像非战斗": "But that love is only skin deep:", + "page_103.png-底部文本框有头像非战斗": "THEN YHY ALL THE DATES?", + "page_104.png-底部文本框有头像非战斗": "wHY FUT YOUR LOvE LIFE UP FOR BETS AND AUCTIONS?", + "page_105.png-底部文本框有头像非战斗": "Ignorance, optimism; and a dash of wishful thinking:", + "page_106.png-底部文本框有头像非战斗": "I Won' t lie_ Rehashing the same hollow act has grown awfully stale_", + "page_107.png-底部文本框有头像非战斗": "But I' d like to think fortune is favoring me for a change.", + "page_108.png-底部文本框有头像非战斗": "After all, I have You here, don' t I?", + "page_109.png-底部文本框有头像非战斗": "OF COURSEI AND WE'LL MAKE THIS DATE THE ULTIMATE REBOOTW", + "page_110.png-底部文本框有头像非战斗": "Ohhh 1 Your charisma is JuST the shake up this formula needs. yes", + "page_111.png-底部文本框有头像非战斗": "And for what it' $ worth, I value quality over quantity these days.", + "page_112.png-底部文本框有头像非战斗": "That' $ one heck of an artifact. Dang:", + "page_113.png-底部文本框有头像非战斗": "Ah, I suppose it would be dated by surface standards. yes.", + "page_114.png-底部文本框有头像非战斗": "Just a little but Classic showtunes have their charm hey:", + "page_115.png-底部文本框有头像非战斗": "Ohhhh yes? The Way the actors put their SOULs into song and dance.", + "page_116.png-底部文本框有头像非战斗": "I used to be s0 envious. # Lack of legs and all.", + "page_117.png-底部文本框有头像非战斗": "Frankly; if it Weren' t for those old, discarded films.", + "page_118.png-底部文本框有头像非战斗": "I might have never found my passion for acting OR humanity;", + "page_119.png-底部文本框有头像非战斗": "And then you' d be singin' a whole different tune about me.", + "page_120.png-底部文本框有头像非战斗": "Oh, I don' t know I' m sure you would have Won me over somehow.", + "page_121.png-底部文本框有头像非战斗": "Y' know, it' $ kinda funny seeing these diaries next to merch. your", + "page_122.png-底部文本框有头像非战斗": "even jaded stars are allowed to indulge on occasion. Hey;", + "page_123.png-底部文本框有头像非战斗": "Ny stage persona 1s still of me after all. part", + "page_124.png-底部文本框有头像非战斗": "But isn' t it a commodified version of you?", + "page_125.png-底部文本框有头像非战斗": "Wel1, but I' m still proud of how far I' ve come_ yes,", + "page_126.png-底部文本框有头像非战斗": "My accomplishments are My 0wn, and I DO still love performing:", + "page_127.png-底部文本框有头像非战斗": "There' $ a reason I keep my 0wn movies.", + "page_128.png-底部文本框有头像非战斗": "Oh, S0 it' $ not just ego? your", + "page_129.png-底部文本框有头像非战斗": "They' re nice mementos, occasional propaganda aside_", + "page_130.png-底部文本框有头像非战斗": "SAY, METTATON, DO You EVER FLAN To FRODUCE MOREE", + "page_131.png-底部文本框有头像非战斗": "OF THESE EVER 50 StyliSh CONSOLES?!", + "page_132.png-底部文本框有头像非战斗": "Oho. Is that a personal request-?", + "page_133.png-底部文本框有头像非战斗": "w-WELL NATURALLY, F'M LOOKING AT THE BIG PICTUREW!", + "page_134.png-底部文本框有头像非战斗": "YHAT FAN WOULDN'T YANT THE TRUE, MTT GAMING EXFERIENCE?", + "page_135.png-底部文本框有头像非战斗": "AND SINCE F'M YOUR BIGGEST FAN AND A SUFER COOL FAL", + "page_136.png-底部文本框有头像非战斗": "That' $ a Whole lot of Words just to MTT console say, plz.", + "page_137.png-底部文本框有头像非战斗": "Hmmm, well, this ticular model is a custom build. par", + "page_138.png-底部文本框有头像非战斗": "But I suppose I could consider a limited run of_ oh, one or two~", + "page_139.png-底部文本框有头像非战斗": "Oh, you' 11 be the talk of the townt", + "page_140.png-底部文本框有头像非战斗": "Ha. You really gonna turn down extra profits?", + "page_141.png-底部文本框有头像非战斗": "Frisk, I' m loaded.", + "page_142.png-底部文本框有头像非战斗": "Besides I' d like at least some of my Work to escape mass-production.", + "page_143.png-底部文本框有头像非战斗": "I mean, I' m not picky: Hever had a lot of my 0wn stuff S0.", + "page_144.png-底部文本框有头像非战斗": "In that case consider it donet", + "page_145.png-底部文本框有头像非战斗": "50_ METTATON WAS THERE ANYTHING You WANTED To DO, OR", + "page_146.png-底部文本框有头像非战斗": "Honestly? I' ve just been winging it.", + "page_147.png-底部文本框有头像非战斗": "That being said.", + "page_148.png-底部文本框有头像非战斗": "Why not a simple movie night?", + "page_149.png-底部文本框有头像非战斗": "After all, Frisk hasn' t even experienced my back catalog:", + "page_152.png-底部文本框有头像非战斗": "YOURE ABSOLUTELY RIGHT ! HOY COULD HAVE BEEN 50 BLIND?", + "page_153.png-底部文本框有头像非战斗": "ALL THAT METTABULOuS MEDIA, TRAGICALLY UNSEENW", + "page_154.png-底部文本框有头像非战斗": "WELLI THAT SETTLES IT!", + "page_155.png-底部文本框有头像非战斗": "FRISK! IT'S TIME FOR A BOLD CINEMATIC ADVENTUREW!", + "page_156.png-底部文本框有头像非战斗": "ACTION! DRAMA! ROMANCE!", + "page_157.png-底部文本框有头像非战斗": "YE SHOULD FROBABLY Go EASY ON THE BLOODSHED", + "page_158.png-底部文本框有头像非战斗": "BUt AGE-AFFROFRIATE EXFLOSIONS ARE A-OKAYW", + "page_159.png-底部文本框有头像非战斗": "Well, I trust judgment. You ARE my favorite fan, after allt your", + "page_160.png-底部文本框有头像非战斗": "S0, take pick, and I' 11 see about fetching some snacks. your", + "page_162.png-底部文本框有头像非战斗": "You okay over there?", + "page_163.png-底部文本框有头像非战斗": "Just NEED A MOMENT .", + "page_165.png-底部文本框有头像非战斗": "S0o00, any ideas? got", + "page_166.png-底部文本框有头像非战斗": "HMM LET'5 SEE", + "page_168.png-底部文本框有头像非战斗": "THAT'5 STRANGE DONT RECOGNIZE THIS MOVIE", + "page_169.png-底部文本框有头像非战斗": "You think it' $ a new release?", + "page_170.png-底部文本框有头像非战斗": "NO. THE REST OF THE CATALOG 15 CHRONOLOGICAL", + "page_171.png-底部文本框有头像非战斗": "WOULD KNOW! F'VE SEEN ALL OF HIS FILMS:", + "page_172.png-底部文本框有头像非战斗": "NYEHE THIS CALLS FOR A CLOSER INSPECTION!", + "page_174.png-底部文本框有头像非战斗": "AH: THAT' DO IT.", + "page_175.png-底部文本框有头像非战斗": "LooKs LIKE IT WAS MADE THREE YEARS AGO, TOO", + "page_176.png-底部文本框有头像非战斗": "NO YONDER HE NEVER RELEASED IT, THEN", + "page_177.png-底部文本框有头像非战斗": "Qh geez_", + "page_178.png-底部文本框有头像非战斗": "Mettaton, why? # I don' t-", + "page_179.png-底部文本框有头像非战斗": "(Gonna have to right there, Cap. stop you", + "page_180.png-底部文本框有头像非战斗": "Mo. This is absurd. He shouldn' t have -", + "page_181.png-底部文本框有头像非战斗": "Y' know what? # Let' $ Watch it", + "page_182.png-底部文本框有头像非战斗": "It' 11 be nice to give this movie a real audience.", + "page_183.png-底部文本框有头像非战斗": "HOFE HE YONT MIND", + "page_184.png-底部文本框有头像非战斗": "BUt FERHAFS THIS WILL BE CATHARTIC FOR HIM", + "page_186.png-底部文本框有头像非战斗": "All right, darlings? # I' ve the goods, S0. got", + "page_187.png-底部文本框有头像非战斗": "Shall We embark on our cinematic adventure?", + "page_188.png-底部文本框有头像非战斗": "Frisk, shouldn' t- you", + "page_189.png-底部文本框有头像非战斗": "Yep! We re all good to go!", + "page_190.png-底部文本框有头像非战斗": "ER_ YES! YE PICKED A VERY SPECIAL FILM NYEH HEH", + "page_191.png-底部文本框有头像非战斗": "We11, then I see no reason to drag our feet, hm?", + "page_192.png-底部文本框有头像非战斗": "Let' $ OFFICIALLY start our little date", + "page_231.png-底部文本框有头像非战斗": "WAS IT TOO MUCH", + "page_232.png-底部文本框有头像非战斗": "Hot for me_ I' m, I finally got to share this with someone. glad", + "page_233.png-底部文本框有头像非战斗": "But Frisk should be careful next time. you", + "page_234.png-底部文本框有头像非战斗": "Some wounds take an eternity to heal.", + "page_235.png-底部文本框有头像非战斗": "F'M NOT SURE FOLLOY", + "page_236.png-底部文本框有头像非战斗": "That' $ right. You Were stuck outside.", + "page_237.png-底部文本框有头像非战斗": "Well, I think I' 11 save the explanation for the relevant party:", + "page_238.png-底部文本框有头像非战斗": "That IF they Want to come out. is,", + "page_239.png-底部文本框有头像非战斗": "(Well, Cap?)", + "page_241.png-底部文本框有头像非战斗": "I just Want to know why:", + "page_242.png-底部文本框有头像非战斗": "Surely you knew what this film would do to your reputation:", + "page_243.png-底部文本框有头像非战斗": "(WAIT A_ MINUTE_ RECOGNIZE THAT TONE", + "page_244.png-底部文本框有头像非战斗": "You' re right. It Was a risk", + "page_245.png-底部文本框有头像非战斗": "One that, at the time my agents and crew felt Was too severe.", + "page_246.png-底部文本框有头像非战斗": "How dare I rebel against my creator? How dare I forsake my fans?", + "page_247.png-底部文本框有头像非战斗": "I guess_ in a sense that' $ When I realized I Was truly trapped.", + "page_248.png-底部文本框有头像非战斗": "Locked into a role that Was never truly me.", + "page_249.png-底部文本框有头像非战斗": "Then. Who DID you Wanna be?", + "page_250.png-底部文本框有头像非战斗": "And how' d this all started in the first place? get", + "page_251.png-底部文本框有头像非战斗": "There' $ the million G question:", + "page_252.png-底部文本框有头像非战斗": "But I suppose it' $ only fair if I come clean.", + "page_253.png-底部文本框有头像非战斗": "After all, my reputation may be in tatters after today:", + "page_300.png-底部文本框有头像非战斗": "OH: YELL You KNOY HOY IT 15", + "page_301.png-底部文本框有头像非战斗": "F'M THE ENEMY OF HOFELESSNESS", + "page_302.png-底部文本框有头像非战斗": "AND THE CHAMPION OF GOOD VIBESw", + "page_303.png-底部文本框有头像非战斗": "But Wait a sec You said reputation' $ on the line. your", + "page_304.png-底部文本框有头像非战斗": "And it still 1s. # Because the fact of the matter is.", + "page_305.png-底部文本框有头像非战斗": "I can' t do this anymore.", + "page_306.png-底部文本框有头像非战斗": "I' m through with pretending:", + "page_307.png-底部文本框有头像非战斗": "My next show could be my last chance to unveil my true colors.", + "page_308.png-底部文本框有头像非战斗": "Ho more lies. No more pandering:", + "page_309.png-底部文本框有头像非战斗": "I don' t care if my audience hates me !", + "page_310.png-底部文本框有头像非战斗": "This cycle of hatred has only bred hopelessness and despair", + "page_312.png-底部文本框有头像非战斗": "Wel1, I do care And it' $ a toss up as to if they' 11 even listen.", + "page_313.png-底部文本框有头像非战斗": "You sure? I mean, C mon. Think of how many people called Undyne out.", + "page_314.png-底部文本框有头像非战斗": "AND BESIDES, WHO WOULDNT LISTEN To SuCH A HANDSOME;", + "page_315.png-底部文本框有头像非战斗": "CHARISMATIC, TALENTED_ EARNEST, AND ALL AROUND GR_", + "page_316.png-底部文本框有头像非战斗": "Papyrus listen.", + "page_317.png-底部文本框有头像非战斗": "I admire your enthusiasm:", + "page_318.png-底部文本框有头像非战斗": "You' ve always been one of my most dedicated fans.", + "page_319.png-底部文本框有头像非战斗": "But the truth is. for as much as I adore the spotlight.", + "page_320.png-底部文本框有头像非战斗": "What I need right now isn' t a but a friend. fan,", + "page_322.png-底部文本框有头像非战斗": "AND F'M NOT Just SAYING THAT A5 A FAN!", + "page_323.png-底部文本框有头像非战斗": "CAN MULTITASK, You KNOW!", + "page_324.png-底部文本框有头像非战斗": "Besides, you' ve done S0 much for uS.", + "page_325.png-底部文本框有头像非战斗": "Isn' t it time We paid you back?", + "page_326.png-底部文本框有头像非战斗": "KNOW IT CAN BE DIFFICULT To STAY TRUE TO ONESELF", + "page_327.png-底部文本框有头像非战斗": "BUt METTATON You DESERVE To BE HAFPY , TOO", + "page_328.png-底部文本框有头像非战斗": "AF TER ALL THIS TIME, BRINGING JOY TO OTHERS", + "page_329.png-底部文本框有头像非战斗": "AFTER ALL THE TIME You SPENT HUMORING ME", + "page_330.png-底部文本框有头像非战斗": "Hot just humoring:", + "page_331.png-底部文本框有头像非战斗": "Plot twistt I find your company refreshing:", + "page_332.png-底部文本框有头像非战斗": "You kidding? You' ve been laying it on thick this whole time.", + "page_333.png-底部文本框有头像非战斗": "Haha_ well, my point still stands.", + "page_334.png-底部文本框有头像非战斗": "Why else do you think I' d spend S0 much time with You?", + "page_335.png-底部文本框有头像非战斗": "BECAUSE F'M A COOL DUDE?", + "page_336.png-底部文本框有头像非战斗": "BECAUSE YORK YITH UNDYNE?", + "page_337.png-底部文本框有头像非战斗": "Because I care about you.", + "page_338.png-底部文本框有头像非战斗": "AND because you' re a cool dude, whose science defies all known logic.", + "page_339.png-底部文本框有头像非战斗": "Get a room; you two", + "page_340.png-底部文本框有头像非战斗": "BUt YERE ALREADY IN A ROOM", + "page_341.png-底部文本框有头像非战斗": "AND FURTHERMORE, HAVE MY OWN SUPER COOL BEDROOM!", + "page_342.png-底部文本框有头像非战斗": "AND METTATON LIKELY HAS MANY ROOMS OF VARYING STYLESI", + "page_343.png-底部文本框有头像非战斗": "then maybe you need THIS Okay,", + "page_344.png-底部文本框有头像非战斗": "H-HEY! THAT'5 FOR You, FRISK!", + "page_345.png-底部文本框有头像非战斗": "FOR YOUR FUTURE ROMANTIC ENDEAVORS!", + "page_346.png-底部文本框有头像非战斗": "Yeah, but this IS a date, and S0 far We\" ve just been talking:", + "page_347.png-底部文本框有头像非战斗": "BUt ISNT THAT WHAT You AND SANS DID DURING YOUR DATE?", + "page_348.png-底部文本框有头像非战斗": "Because We weren' t taking it seriously: For obvious reasons.", + "page_349.png-底部文本框有头像非战斗": "But since tried to set uS UP, I' d say it' $ time for some payback you", + "page_350.png-底部文本框有头像非战斗": "(ROBOTIC COUGHt)", + "page_351.png-底部文本框有头像非战斗": "But the point is. not to get too caught up in Mettaton the Startn try", + "page_352.png-底部文本框有头像非战斗": "After everything, I want the Underground to know the real me_", + "page_353.png-底部文本框有头像非战斗": "And that' $ not all", + "page_356.png-顶部文本框有头像非战斗": "That' $.", + "page_357.png-顶部文本框有头像非战斗": "# You didn' t", + "page_358.png-顶部文本框有头像非战斗": "WOWIE AND HERE THOUGHT IT WAS LOst FOREVER", + "page_359.png-顶部文本框有头像非战斗": "Another twist? Aren' t I just full of them?", + "page_360.png-顶部文本框有头像非战斗": "I even salvaged the poor thing from the throes of that unsightly mob.", + "page_361.png-顶部文本框有头像非战斗": "And I dolled it up as best I could.", + "page_362.png-顶部文本框有头像非战斗": "But why? I don' t deserve-", + "page_363.png-顶部文本框有头像非战斗": "I' m going to stop you right there, Chara.", + "page_364.png-顶部文本框有头像非战斗": "And yes, I know it' $ You, darling:", + "page_365.png-顶部文本框有头像非战斗": "OH, GuESS THAT MAKES:", + "page_366.png-顶部文本框有头像非战斗": "WAIT, WHAT?!", + "page_367.png-顶部文本框有头像非战斗": "Yeah, S0_ Basically; Chara' $ kinda fused to my SOUL.", + "page_368.png-顶部文本框有头像非战斗": "And kiiinda likes to narrate everything I do_ Surprise?", + "page_370.png-顶部文本框有头像非战斗": "You KNOW, IN HINDSIGHT, THAT EXFLAINS A LOT", + "page_371.png-顶部文本框有头像非战斗": "But WAIT HOM COME YOU'VE BEEN 5o SHY?", + "page_372.png-顶部文本框有头像非战斗": "15 MY RAW GREATNESS TRULY THAT INTIMIDATING?!", + "page_373.png-顶部文本框有头像非战斗": "Ho. You' re just loud.", + "page_374.png-顶部文本框有头像非战斗": "And: I rather liked blending into the background:", + "page_375.png-顶部文本框有头像非战斗": "Things Were simpler then:", + "page_376.png-顶部文本框有头像非战斗": "Perhaps! But doesn' t simplicity get stale after a while?", + "page_377.png-顶部文本框有头像非战斗": "You' ve a golden opportunity: Just think about itt", + "page_378.png-顶部文本框有头像非战斗": "If We joined forces, We could end this tired charade_", + "page_379.png-顶部文本框有头像非战斗": "And bring closure to-", + "page_380.png-顶部文本框有头像非战斗": "Out the questiont of", + "page_381.png-顶部文本框有头像非战斗": "Why the reluctance? Surely You have unfinished business.", + "page_382.png-顶部文本框有头像非战斗": "At the very least, your mo ther-", + "page_383.png-顶部文本框有头像非战斗": "REGARDLESS of my regrets, Who would even believe me?", + "page_384.png-顶部文本框有头像非战斗": "I neither look nor sound like myself.", + "page_385.png-顶部文本框有头像非战斗": "And even if by some miracle\" did believe me_ they", + "page_386.png-顶部文本框有头像非战斗": "I would only endanger Frisk in the process.", + "page_387.png-顶部文本框有头像非战斗": "OR You COULD BRING ABOUt A NEY ERA OF HOFEw", + "page_388.png-顶部文本框有头像非战斗": "AF TER ALL, WERE 50 CLOSE TO FREEDOM, CAN TASTE ITW", + "page_389.png-顶部文本框有头像非战斗": "AND It'S QUITE DELIcIOuS", + "page_390.png-顶部文本框有头像非战斗": "I' d like to that the CORE' $ cameras DID record our little split. add", + "page_391.png-顶部文本框有头像非战斗": "Your secrecy has an expiration date, Chara.", + "page_392.png-顶部文本框有头像非战斗": "But if you reveal yourself on your terms You control the narrative_", + "page_393.png-顶部文本框有头像非战斗": "And I' 11 gladly use my star power to embellish things if necessary:", + "page_394.png-顶部文本框有头像非战斗": "# I mean, it sounds good to me_", + "page_395.png-顶部文本框有头像非战斗": "We Asriel back as a flower and I' m sure he plans to come clean. got", + "page_396.png-顶部文本框有头像非战斗": "Aha! Will the twists never end? plot", + "page_397.png-顶部文本框有头像非战斗": "Wel1 that' $ all the more incentive, if you ask me_", + "page_398.png-顶部文本框有头像非战斗": "And I didn' t_", + "page_399.png-顶部文本框有头像非战斗": "You don' t get to decide what' $ best for me_", + "page_400.png-顶部文本框有头像非战斗": "I never asked you to fight my battles, Mettaton.", + "page_401.png-顶部文本框有头像非战斗": "If you' re S0 adamant about making things better then do it.", + "page_402.png-顶部文本框有头像非战斗": "Don' t rely on a dead child to solve our problems.", + "page_403.png-顶部文本框有头像非战斗": "That' $ not", + "page_404.png-顶部文本框有头像非战斗": "Listen, I just think-", + "page_405.png-顶部文本框有头像非战斗": "PERHAF5 YE SHOULD GIVE THEM SOME SFACE, METTATON", + "page_406.png-顶部文本框有头像非战斗": "IT's OKAY IF THEY DONT WANT TO TALK. You STILL HAVE 05!", + "page_407.png-顶部文本框有头像非战斗": "AND You STILL HAVE THAT MOVIEw", + "page_408.png-顶部文本框有头像非战斗": "True enough, darling: But you can' t fault me for aiming for the starst", + "page_409.png-顶部文本框有头像非战斗": "NYEH HEH HEH OF COURSE NOT FD DO THE SAME THING!", + "page_410.png-顶部文本框有头像非战斗": "We did kinda push it, though.", + "page_411.png-顶部文本框有头像非战斗": "(Ch. I didn' t mean to make you uncomfortable. ) cap,", + "page_412.png-顶部文本框有头像非战斗": "(You know that, right?)", + "page_414.png-顶部文本框有头像非战斗": "You mean well I know that.", + "page_415.png-顶部文本框有头像非战斗": "But. some aren' t that simple. things", + "page_416.png-顶部文本框有头像非战斗": "It' $ all right. I shouldn' t have S0 much pressure on them: put", + "page_417.png-顶部文本框有头像非战斗": "At the end of the it' $ my show? day,", + "page_418.png-顶部文本框有头像非战斗": "It' d a shame to throw in the towel over such a small setback_ be", + "page_419.png-顶部文本框有头像非战斗": "Heh, glad to hear it. And you know We 11 be cheering you on!", + "page_420.png-顶部文本框有头像非战斗": "Just CONSIDER u5 YOUR PERSONAL FAP-SQUAD!", + "page_422.png-顶部文本框有头像非战斗": "THAT SOUNDED BETTER IN MY HEAD", + "page_423.png-顶部文本框有头像非战斗": "gold star trying: Hey; for", + "page_424.png-顶部文本框有头像非战斗": "Yes, wel1, We can' t drag this forever. out", + "page_425.png-顶部文本框有头像非战斗": "Ny fans await the performance of a lifetime.", + "page_426.png-顶部文本框有头像非战斗": "And that' $ exactly What they' re going to get?", + "page_427.png-顶部文本框有头像非战斗": "But_ thank you.", + "page_428.png-顶部文本框有头像非战斗": "All disagreements aside, this Was just the morale boost I needed_" +} \ No newline at end of file diff --git a/text2/Ch54/OCR1.json b/text2/Ch54/OCR1.json new file mode 100644 index 00000000..39fcb619 --- /dev/null +++ b/text2/Ch54/OCR1.json @@ -0,0 +1,237 @@ +{ + "page_2.png-顶部文本框有头像非战斗": "Thank 4ou, darlings! You' ve been an incredible audience", + "page_3.png-顶部文本框有头像非战斗": "And that goes for al1 my fans watching at home, at Work, in the shower_", + "page_4.png-顶部文本框有头像非战斗": "Anywhere, any time_ I couldn' t have done this without you.", + "page_5.png-底部文本框无头像非战斗": "hohG_ mettatons. VERR BEST! # outta TEMS?!! tem", + "page_6.png-底部文本框无头像非战斗": "We love you, MTT!", + "page_7.png-底部文本框无头像非战斗": "Looking good, MTT! I' 11 be sure to your good side? get", + "page_8.png-顶部文本框无头像非战斗": "Will you sign my tentacle?t", + "page_9.png-顶部文本框有头像非战斗": "See? That' $ what I mean. The raw passion: The sincere adoration.", + "page_10.png-顶部文本框有头像非战斗": "# ht the end the people like you make show biz worthwhile of day,", + "page_12.png-顶部文本框有头像非战斗": "It' $ been quite the ride, hasn' t it?", + "page_13.png-顶部文本框有头像非战斗": "And while it' $ a shame this body' $ debut lacks explosive combat.", + "page_14.png-顶部文本框有头像非战斗": "It' $ finally here_ The real me !", + "page_16.png-顶部文本框有头像非战斗": "But my looks aren' t the only change: I' m sure ve felt it, too. you'", + "page_17.png-顶部文本框有头像非战斗": "Like a small ripple building to a tidal Wave", + "page_18.png-顶部文本框有头像非战斗": "We stand on the precipice of a new chapter in our history:", + "page_19.png-顶部文本框有头像非战斗": "And it' $ all thanks to two unlikely heroes.", + "page_20.png-顶部文本框有头像非战斗": "don' t shy! Let' $ hear it for Frisk and the Great Papyrus! S0 be", + "page_21.png-顶部文本框有头像非战斗": "These two have sparked a fire in me that rivals even Hotland' $ climate?", + "page_22.png-顶部文本框有头像非战斗": "And it' $ because of them that I've the courage to face you as I am:", + "page_23.png-顶部文本框有头像非战斗": "And tell the truth_", + "page_24.png-底部文本框无头像非战斗": "Ribbit, ribbit. 2", + "page_25.png-底部文本框无头像非战斗": "Ooh, a dark secret This I've got to seet", + "page_26.png-底部文本框无头像非战斗": "Ooh! What if he' $ about to confess to his true love?t", + "page_27.png-底部文本框有头像非战斗": "what if he remembered my 2!", + "page_28.png-顶部文本框有头像非战斗": "(Well, here goes nothing:", + "page_29.png-顶部文本框有头像非战斗": "You see, this whole human-annihilator act has grown quite stale_", + "page_30.png-顶部文本框有头像非战斗": "Truth be told, I NEVER wanted to be a symbol of hatred.", + "page_31.png-顶部文本框有头像非战斗": "Hot once have I ever craved human carnage", + "page_32.png-顶部文本框有头像非战斗": "Plot twist? Or perhaps not.", + "page_33.png-顶部文本框有头像非战斗": "Astute viewers may have spotted a few subtle Winks to the audience_", + "page_34.png-顶部文本框有头像非战斗": "But the fact is, I love humanity: Their culture, their history:", + "page_35.png-顶部文本框有头像非战斗": "Their appearances_", + "page_36.png-顶部文本框有头像非战斗": "And sure, there Were a bad eggs. I Won' t deny past transgressions_ few", + "page_37.png-顶部文本框有头像非战斗": "But I refuse to hold those crimes against their descendants.", + "page_38.png-顶部文本框有头像非战斗": "And frankly; this dark, brooding atmosphere is painfully cliche.", + "page_39.png-顶部文本框有头像非战斗": "Frisk shattered our preconceptions, shining bright as the starst", + "page_40.png-顶部文本框有头像非战斗": "Every step the Way, monsters have tried to kill them of", + "page_41.png-顶部文本框有头像非战斗": "They had every reason to fight back, yet refused to retaliate. they", + "page_42.png-顶部文本框有头像非战斗": "They rescued Undyne, despite her bloodthirsty convictions!", + "page_43.png-顶部文本框有头像非战斗": "And if that' $ not compassion, I don' t know what 1s.", + "page_44.png-底部文本框无头像非战斗": "Ah. truly a fascinating conundrum But change 1s easier said than done.", + "page_45.png-底部文本框无头像非战斗": "(Where do you think he' $ going with this. 2)", + "page_46.png-底部文本框无头像非战斗": "(Dunno, but I think we can all vouch for the kid at this point: )", + "page_47.png-底部文本框无头像非战斗": "(Let' $ just play it by ear I' m sure MTT knows what he' $ doing:", + "page_48.png-顶部文本框有头像非战斗": "But, darlings, while Frisk' $ heroism 1s clear as day:", + "page_49.png-顶部文本框有头像非战斗": "I think it' $ high time We stepped back and. reconsidered the past.", + "page_51.png-底部文本框无头像非战斗": "What?i You can' t mean-", + "page_52.png-底部文本框无头像非战斗": "Is this some kind of joke?!", + "page_53.png-底部文本框无头像非战斗": "I thought that statue Was destroyed!", + "page_54.png-顶部文本框有头像非战斗": "It' $ no joke darlings", + "page_55.png-顶部文本框有头像非战斗": "Al1 these years, We' ve clung to such a bleak view of Chara' $ life.", + "page_56.png-顶部文本框有头像非战斗": "Yes, made mistakes_ Yes, their actions tore the royal family apart: they", + "page_57.png-顶部文本框有头像非战斗": "But has nO ONE ever considered there might be more to their story?", + "page_58.png-顶部文本框有头像非战斗": "That a CHILD climbing a dangerous mountain might reflect a troubled life?", + "page_59.png-顶部文本框有头像非战斗": "That a slow, agonizing SUICIDE is not some thing to villainize?!", + "page_60.png-顶部文本框有头像非战斗": "And that I don' t know, blindly accepting Undyne' $ vitriol_", + "page_62.png-顶部文本框有头像非战斗": "That' $ it_ That' $ itt ThAT IS ABSOLUTELY Itm!", + "page_63.png-顶部文本框有头像非战斗": "W-What are you DOING? !", + "page_64.png-顶部文本框有头像非战斗": "I. Can' t_ BELIEVE this?", + "page_65.png-顶部文本框有头像非战斗": "You have a lot of nerve putting on this self-indulgent show", + "page_66.png-顶部文本框有头像非战斗": "Have you FORGOTTEN What you did to Undyne?!", + "page_67.png-顶部文本框有头像非战斗": "BU, MISS KISSY CAT, UNDYNE WAS TRYING TO KILL FRISK, AND-", + "page_68.png-顶部文本框有头像非战斗": "Saving the human ISm' T the issuet", + "page_69.png-顶部文本框有头像非战斗": "HE broadcast her at her most vulnerablet", + "page_70.png-顶部文本框有头像非战斗": "Aired multiple HUMILIATING phone calls on LIVE TV!", + "page_71.png-顶部文本框有头像非战斗": "And that' $ AFTER all the mockery in his STUPID tournanent, in court.", + "page_72.png-顶部文本框有头像非战斗": "Even in that #magical girl performance, he made HER the punchline?", + "page_73.png-顶部文本框有头像非战斗": "And now you have the to insult her AGAIH?! gall", + "page_74.png-顶部文本框有头像非战斗": "She refused to listent She could have hurt Papyrus. Or herselft", + "page_75.png-顶部文本框有头像非战斗": "And besides, Undyne' $ recklessness has had LASTING consequences?", + "page_76.png-顶部文本框有头像非战斗": "Look what happened to Alphys! Look at Queen Torielt at", + "page_77.png-顶部文本框有头像非战斗": "Wait. You can' t Because SHE drove Toriel into isolationt Oh,", + "page_78.png-顶部文本框有头像非战斗": "Al1 because she couldn' t THINK about the possible repercussions.", + "page_79.png-顶部文本框有头像非战斗": "You' re right. Undyne Was reckless_", + "page_80.png-顶部文本框有头像非战斗": "Because she' $ desperate_ Batteredt BURDENED WITh GILT}", + "page_81.png-顶部文本框有头像非战斗": "Did you ever consider THAT?!", + "page_82.png-顶部文本框有头像非战斗": "Undyne tried harder than AHYONE to free uS. She couldn' t accept failuret", + "page_83.png-顶部文本框有头像非战斗": "And despite YEARS struggling, she STILL kept fighting! 0f", + "page_84.png-顶部文本框有头像非战斗": "You can spew all the platitudes you want! Make a big show of it.", + "page_85.png-顶部文本框有头像非战斗": "But at the end the day, the prince is still DEAD . of", + "page_86.png-顶部文本框有头像非战斗": "And Undyne 1s ALL ALONE because You broke hert", + "page_87.png-顶部文本框有头像非战斗": "HEY! THAT'S NOT FAIRI", + "page_88.png-顶部文本框有头像非战斗": "WE ALL KNOW UNDYNE TRIED HER BEST.", + "page_89.png-顶部文本框有头像非战斗": "But THERE COMES A TIME WHERE You HAVE TO DRAW THE_", + "page_90.png-顶部文本框有头像非战斗": "stay OUT this! of", + "page_91.png-顶部文本框有头像非战斗": "You least tried to reason with her but NETTATOH. at", + "page_92.png-顶部文本框有头像非战斗": "It must be s0 much FUM! Exposing the damage she did to herself.", + "page_93.png-顶部文本框有头像非战斗": "Without her consent. For EVERYONE to see", + "page_94.png-顶部文本框有头像非战斗": "Blasting the image of her ACCIDENTALLY hurting Papyrus on prine time!", + "page_95.png-顶部文本框有头像非战斗": "How CONSIDERATE of you!", + "page_96.png-顶部文本框无头像非战斗": "(t-toot.", + "page_97.png-顶部文本框有头像非战斗": "(i know, shyren, but what are We supposed to say: 2)", + "page_98.png-顶部文本框有头像非战斗": "Hothing else worked! And look at the results.", + "page_99.png-顶部文本框有头像非战斗": "She stopped, and both she AHD Frisk are still alivel", + "page_100.png-顶部文本框有头像非战斗": "Sure_ And OBVIOUSLY, I' m grateful for that.", + "page_101.png-顶部文本框有头像非战斗": "But don' t you it? HOTHING Worked Hot even saving her get", + "page_102.png-顶部文本框有头像非战斗": "And that Wasn' t even the FIRST time she hurt Papyrus", + "page_103.png-顶部文本框有头像非战斗": "Or didja forget the conveyors? Or al1 those spears she threw at uS?", + "page_104.png-顶部文本框有头像非战斗": "# I didn' t forget. I KHOW she took it too far.", + "page_105.png-顶部文本框有头像非战斗": "But maybe if you two had told her our PLAH , she wouldn' t have had tot", + "page_106.png-顶部文本框有头像非战斗": "And if YOU hadn' t kept PRESSING her she might have listened.", + "page_107.png-顶部文本框有头像非战斗": "Instead, you made her the laughing stock in EVERY episode_", + "page_109.png-顶部文本框无头像非战斗": "It' $ not just Undyne. He let Papyrus make a fool out of Lady Dohj in that trialt", + "page_110.png-顶部文本框有头像非战斗": "AHD let Sans air Undyne' $ regrets to the whole courtroomt he", + "page_111.png-顶部文本框无头像非战斗": "Look I might' ve called but. in,", + "page_112.png-顶部文本框无头像非战斗": "I used to look up to You, and all I got Were tacky outfits and songs about how I suck?", + "page_113.png-顶部文本框无头像非战斗": "And all because I stole burgers OHE timet", + "page_114.png-顶部文本框无头像非战斗": "A-and Undyne. she made my cool_", + "page_115.png-顶部文本框无头像非战斗": "Well_ Mettaton did let me perform on his show, but-", + "page_116.png-顶部文本框有头像非战斗": "The POIMT is no matter HOW extreme her me thods Were", + "page_117.png-顶部文本框有头像非战斗": "That' $ HO EXCUSE to kick her while she' $ down and then ABANDON hert", + "page_118.png-顶部文本框有头像非战斗": "You' re trying to make this whole thing about You!", + "page_119.png-顶部文本框有头像非战斗": "Have you even stopped to consider HOW she' doing?", + "page_120.png-顶部文本框有头像非战斗": "0-of course! And I searched everywhere for hert", + "page_121.png-顶部文本框有头像非战斗": "But she shut me out", + "page_122.png-顶部文本框有头像非战斗": "I wonder why! Gee.", + "page_123.png-顶部文本框有头像非战斗": "But METTATON ONLY WANTED To-", + "page_124.png-顶部文本框有头像非战斗": "Pap, let me handle this.", + "page_125.png-顶部文本框有头像非战斗": "Look you can chew MTT out al1 you want.", + "page_126.png-顶部文本框有头像非战斗": "But if you care 50 much, how come You' RE still here?", + "page_128.png-顶部文本框有头像非战斗": "UMDYNE? I' LL SAVE You!!!", + "page_130.png-底部文本框无头像非战斗": "We11, what about you? Got anything to say for yourself?", + "page_132.png-顶部文本框有头像非战斗": "M-Mettaton!", + "page_133.png-顶部文本框有头像非战斗": "ain Alphys!", + "page_134.png-顶部文本框无头像非战斗": "You came backt", + "page_135.png-底部文本框有头像非战斗": "W-what' $ going on? Why is there a robot Mew Mew Kissy Cutie?!", + "page_136.png-底部文本框有头像非战斗": "And why does she have a giant knife?t", + "page_137.png-底部文本框有头像非战斗": "t the knife, Alphs! Was, like, S0 mean to atont", + "page_138.png-底部文本框无头像非战斗": "# You' re the captain, correct? # Care share your thoughts? to", + "page_139.png-顶部文本框有头像非战斗": "Well_ would you look at the time?t", + "page_140.png-顶部文本框有头像非战斗": "This show' $ been packed with al1 sorts twists and turns. of", + "page_141.png-顶部文本框有头像非战斗": "But the captain and I have urgent matters to discuss. Privately:", + "page_142.png-顶部文本框有头像非战斗": "S0. Toodlest", + "page_144.png-顶部文本框有头像非战斗": "Mettaton, mont", + "page_145.png-顶部文本框有头像非战斗": "Look I Was just trying to on an honest performance put", + "page_146.png-顶部文本框有头像非战斗": "But, of course, my irritable cousin just had to crash the party:", + "page_147.png-顶部文本框有头像非战斗": "O-okay: But what about Undyne? Have you seen her?", + "page_149.png-顶部文本框有头像非战斗": "I' m serious/ Where IS she?", + "page_150.png-顶部文本框有头像非战斗": "She' $ not ans Wering my calls. She' $ not answering my textst", + "page_151.png-顶部文本框有头像非战斗": "S-she' $ not home and at", + "page_153.png-顶部文本框有头像非战斗": "S-she posted a message on her blog: It just said.", + "page_154.png-顶部文本框有头像非战斗": "You Win.", + "page_155.png-顶部文本框有头像非战斗": "Crap! You don' t think:", + "page_156.png-顶部文本框有头像非战斗": "# Ho_ It can' t be.", + "page_157.png-顶部文本框有头像非战斗": "I know her defeat Was hard on her but surely she wouldn' t.", + "page_158.png-顶部文本框有头像非战斗": "UNDYNEW!", + "page_159.png-顶部文本框有头像非战斗": "Papyrus, where are You going?!", + "page_160.png-顶部文本框有头像非战斗": "THE LAB! HAVE To FIND HER BEFORE IT'S TOO LATEI", + "page_161.png-顶部文本框有头像非战斗": "By yourself?", + "page_162.png-顶部文本框有头像非战斗": "KNOw THAT LAB BETTER THAN ANYONE HERE", + "page_163.png-顶部文本框有头像非战斗": "AND BESIDES: FM_ SURE SHELL BE OKAY", + "page_164.png-顶部文本框有头像非战斗": "Just NEED TO TALK TO HER", + "page_165.png-顶部文本框有头像非战斗": "5o You ALL JuSt RELAX AND ER", + "page_166.png-顶部文本框有头像非战斗": "DO YOUR HUMAN CLub THING! FLL BE BACK IN NO TIME", + "page_169.png-顶部文本框有头像非战斗": "S0, is this a bad time to reconsider that Chara reveal?", + "page_170.png-顶部文本框有头像非战斗": "What Chara reveal?", + "page_171.png-顶部文本框有头像非战斗": "It doesn' t matter_", + "page_172.png-顶部文本框有头像非战斗": "And I' d say it does. but I suppose that can Wait_", + "page_173.png-顶部文本框有头像非战斗": "Let' $ just try to relax the time being: for", + "page_179.png-底部文本框有头像非战斗": "(Wonder what' $ taking S0 long:", + "page_180.png-底部文本框有头像非战斗": "ring: 1", + "page_181.png-底部文本框有头像非战斗": "Papyrus! Are you okay?!", + "page_182.png-底部文本框有头像非战斗": "Ah. I' m afraid I can' t answer that", + "page_183.png-底部文本框有头像非战斗": "0-oh, uh. Asgore_ Hey;", + "page_184.png-底部文本框有头像非战斗": "W-wait? You don' t mean-", + "page_185.png-底部文本框有头像非战斗": "Is this a bad time?", + "page_186.png-底部文本框有头像非战斗": "Honestly? Yeah, it kinda is.", + "page_187.png-底部文本框有头像非战斗": "Don' t me wrong/ It' $ great to hear from you again. get", + "page_188.png-底部文本框有头像非战斗": "And I really appreciated the assist with Undyne, but", + "page_189.png-底部文本框有头像非战斗": "I understand. # I saw the whole broadcast. No,", + "page_190.png-底部文本框有头像非战斗": "There Was some thing I wanted to discuss but that can wait", + "page_191.png-底部文本框有头像非战斗": "Papyrus is just as pertinent: Perhaps even moret", + "page_192.png-底部文本框有头像非战斗": "But. please do take care. You, Mettaton, Miss Alphys.", + "page_193.png-底部文本框有头像非战斗": "You' ve all endured S0 much. Papyrus and Undyne as Well_", + "page_194.png-底部文本框有头像非战斗": "Ah, but here I 90, rambling again:", + "page_195.png-底部文本框有头像非战斗": "Wel1, Whatever comes next, I have faith in You, Frisk:", + "page_196.png-底部文本框有头像非战斗": "stay determinedt We' 11 catch up again soon.", + "page_197.png-底部文本框无头像非战斗": "# Click.", + "page_198.png-底部文本框有头像非战斗": "Wellt That Was an interesting turn of events.", + "page_199.png-底部文本框有头像非战斗": "I-I'11 But, Frisk say:", + "page_200.png-底部文本框有头像非战斗": "It' $ a long story: # I' 11 tell ya later.", + "page_201.png-底部文本框有头像非战斗": "More to the point, d' you think I should try calling Papyrus?", + "page_202.png-底部文本框有头像非战斗": "It' $ Worth a # Do you need his number? try:", + "page_203.png-底部文本框有头像非战斗": "Huh. Looks like he already programmed it in.", + "page_204.png-底部文本框有头像非战斗": "Dunno Why it' $ listed AFTER the Hotline for Idiot Babies\" but okay:", + "page_205.png-底部文本框有头像非战斗": "Here nothing: goes", + "page_206.png-底部文本框有头像非战斗": "ring: 1", + "page_207.png-底部文本框有头像非战斗": "ring; ring: 1", + "page_208.png-底部文本框有头像非战斗": "That' $ odd. # He usually picks up by the second ring:", + "page_209.png-底部文本框有头像非战斗": "ring, ring, ring,", + "page_210.png-底部文本框有头像非战斗": "Y! YOU'VE REACHED REAT FAPYRUSW", + "page_211.png-底部文本框无头像非战斗": "IF FOR SOME REASON YOURE HEARING THIS, THEN F'M NOT AVAILABLE", + "page_212.png-底部文本框有头像非战斗": "SHOULDNT HAFFEN F IT HAS; FM VERY AND LL TRY To-", + "page_213.png-底部文本框无头像非战斗": "HISS, CRACKLE.", + "page_214.png-底部文本框有头像非战斗": "Papyrus.", + "page_215.png-底部文本框有头像非战斗": "M-maybe it' $ a bad connection?", + "page_216.png-底部文本框有头像非战斗": "Ah, # That must be itt yes.", + "page_217.png-底部文本框有头像非战斗": "Don' t Worry, Frisk # After all, he IS the Great Papyrus.", + "page_218.png-底部文本框有头像非战斗": "Let' $ just give him a little more time.", + "page_220.png-底部文本框有头像非战斗": "That' $ Itt", + "page_221.png-底部文本框有头像非战斗": "I don' t know about you guys, but I' m sick of waiting:", + "page_222.png-底部文本框有头像非战斗": "B-but if anyone can talk her out of this.", + "page_223.png-底部文本框有头像非战斗": "said 4ou Wanted to talk to Undyne_ right? Hey; You", + "page_224.png-底部文本框有头像非战斗": "The call Was a start.", + "page_225.png-底部文本框有头像非战斗": "But this might be only chance to REALLY be honest with her your", + "page_226.png-底部文本框有头像非战斗": "And. Mew Mew Was right.", + "page_227.png-底部文本框有头像非战斗": "I did escalate the situation:", + "page_228.png-底部文本框有头像非战斗": "And I' m half the reason she had a meltdown in the first place.", + "page_229.png-底部文本框有头像非战斗": "S0 let' $ 90_", + "page_230.png-底部文本框有头像非战斗": "Don' t care what' $ waiting for uS.", + "page_231.png-底部文本框有头像非战斗": "Anything' $ better than just sitting around in silence.", + "page_233.png-底部文本框有头像非战斗": "N-no, re right. you'", + "page_234.png-底部文本框有头像非战斗": "This whole time I' ve let others do the heavy lifting:", + "page_235.png-底部文本框有头像非战斗": "If I' d spoken sooner, then Undyne might still be_", + "page_236.png-底部文本框有头像非战斗": "It' $ not too late Alphys.", + "page_237.png-底部文本框有头像非战斗": "We still don' t know What happened to her", + "page_238.png-底部文本框有头像非战斗": "Only that she needs uS now more than ever", + "page_239.png-底部文本框有头像非战斗": "S0 enough moping! We' ve a plan, s0 let' $ mosey! got", + "page_241.png-底部文本框无头像非战斗": "Tra la la. Grey is such a drab color", + "page_242.png-底部文本框有头像非战斗": "roomS are just S0 sad", + "page_243.png-底部文本框无头像非战斗": "But if al1 goes Wr0ng, at least you' 11 see each other eye to eye.", + "page_245.png-底部文本框有头像非战斗": "Whatever happens, I' m still here Frisk", + "page_246.png-底部文本框有头像非战斗": "Let' $ both stay determined, for Papyrus' sake.", + "page_248.png-底部文本框有头像非战斗": "( Mo. Hot ) (We don' t know if Papyrus is safe.) yet.", + "page_249.png-底部文本框有头像非战斗": "True_ It never hurts to have a failsafe", + "page_250.png-底部文本框有头像非战斗": "Let' $ just hope it doesn' t come to that", + "page_251.png-底部文本框有头像非战斗": "There' $ no sense in delaying the inevitable. Let' $ g0.", + "page_253.png-顶部文本框有头像非战斗": "W-what happened in here.", + "page_254.png-顶部文本框有头像非战斗": "Undyne. Wasn' t exactly thrilled with my presence", + "page_255.png-顶部文本框有头像非战斗": "But no mattert", + "page_256.png-顶部文本框有头像非战斗": "Whether she likes it or not, We= re here.", + "page_257.png-顶部文本框有头像非战斗": "And We\" re not going to let her go.", + "page_260.png-底部文本框有头像非战斗": "Wel1, here We are. # It' $ all downhill from here_", + "page_261.png-底部文本框有头像非战斗": "Just. stay close_ # The True Lab is far from a Walk in the park:", + "page_262.png-底部文本框有头像非战斗": "And whatever happens, try not to hold it against her. Or Papyrus." +} \ No newline at end of file diff --git a/text2/Ch55/OCR1.json b/text2/Ch55/OCR1.json new file mode 100644 index 00000000..a3c4c7c7 --- /dev/null +++ b/text2/Ch55/OCR1.json @@ -0,0 +1,141 @@ +{ + "page_4.png-底部文本框有头像非战斗": "At least the music' $ catchy?", + "page_5.png-底部文本框有头像非战斗": "W-who cares if it' $ catchy?! Undyne' $ in troublet", + "page_6.png-底部文本框有头像非战斗": "Can' t this thing go any faster?", + "page_7.png-底部文本框有头像非战斗": "M-no offense_ # It' $ a nice song, but", + "page_8.png-底部文本框有头像非战斗": "Hone taken. # But it shouldn' t be much longer-", + "page_10.png-顶部文本框有头像非战斗": "Now:", + "page_11.png-顶部文本框有头像非战斗": "Undyne !", + "page_12.png-顶部文本框有头像非战斗": "Alphys, Wait!", + "page_13.png-顶部文本框有头像非战斗": "Before We proceed, I need to Warn you.", + "page_14.png-顶部文本框有头像非战斗": "You probably Won' t like what you see.", + "page_15.png-顶部文本框有头像非战斗": "I-it can' t that bad, right? be", + "page_16.png-顶部文本框有头像非战斗": "# Right?", + "page_17.png-顶部文本框有头像非战斗": "Darling: Consider what happened three years ago.", + "page_18.png-顶部文本框有头像非战斗": "While say time heals all Wounds, some Wounds leave scars. they", + "page_19.png-顶部文本框有头像非战斗": "We need to be cautious That' $ all.", + "page_20.png-顶部文本框有头像非战斗": "# I know But I' ve wasted enough time being scared", + "page_21.png-顶部文本框有头像非战斗": "Let' $ g0", + "page_23.png-底部文本框有头像非战斗": "Sheesh. I didn' t think she' d be this pissed.", + "page_24.png-底部文本框有头像非战斗": "Let' $ not dwe11 on it.", + "page_28.png-底部文本框有头像非战斗": "Papyrus.", + "page_29.png-底部文本框有头像非战斗": "Don' t worry: # We' 11 find him soon enough.", + "page_34.png-底部文本框有头像非战斗": "SAVE points.", + "page_35.png-底部文本框有头像非战斗": "L-like in video games?", + "page_36.png-底部文本框有头像非战斗": "See for yourself!", + "page_39.png-底部文本框有头像非战斗": "Undyne isn' t the only one with that kind of power_", + "page_40.png-底部文本框有头像非战斗": "I' ve had it ever since I fell down here.", + "page_41.png-底部文本框有头像非战斗": "It' $ gotten me outta some tight spots. including death.", + "page_42.png-底部文本框有头像非战斗": "But I can' t imagine What it' d be like to LOSE it.", + "page_43.png-底部文本框有头像非战斗": "S0 she can' t use it anymore.", + "page_44.png-底部文本框有头像非战斗": "She tried to it back get", + "page_45.png-底部文本框有头像非战斗": "Heh. then things Went south, I wound back the clock", + "page_46.png-底部文本框有头像非战斗": "And here We are", + "page_47.png-底部文本框有头像非战斗": "And then We made those calls.", + "page_48.png-底部文本框有头像非战斗": "I think I' m finally starting to understand.", + "page_50.png-底部文本框有头像非战斗": "Seems the trail ends here_", + "page_51.png-底部文本框有头像非战斗": "That narrows our options", + "page_52.png-顶部文本框无头像非战斗": "Are you kidding me? Are kidding me?t ARE You KIDDING ME?! you", + "page_53.png-顶部文本框有头像非战斗": "# Geez, full house Should We check up on her?", + "page_54.png-顶部文本框有头像非战斗": "Hold that thought. I have an idea.", + "page_56.png-顶部文本框有头像非战斗": "Locked? That just Won' t do.", + "page_58.png-底部文本框有头像非战斗": "Wait Look at all those dents and scratches.", + "page_59.png-底部文本框有头像非战斗": "Of course she' d try to break the door down:", + "page_63.png-顶部文本框有头像非战斗": "Wel1 I think I know which way Papyrus went_", + "page_64.png-顶部文本框有头像非战斗": "Good. Then Why don' t you and Alphys follow him?", + "page_65.png-顶部文本框有头像非战斗": "But what about you?", + "page_66.png-顶部文本框有头像非战斗": "Delicate equipment and feisty felines don' t really go hand in hand_", + "page_67.png-顶部文本框有头像非战斗": "Good point: Guess We= 11 touch base later?", + "page_68.png-顶部文本框有头像非战斗": "Of course! Just consider this a quick commercial breakt", + "page_73.png-底部文本框有头像非战斗": "G-get backt", + "page_77.png-底部文本框有头像非战斗": "Whoa.", + "page_78.png-底部文本框有头像非战斗": "Remind me not to on bad side. get your", + "page_79.png-底部文本框有头像非战斗": "Ehehe don' t worry: My human hunting days are over", + "page_80.png-底部文本框有头像非战斗": "Besides this is Why I joined the guard in the first place.", + "page_81.png-底部文本框有头像非战斗": "Heh. Silver lining; I guess_", + "page_89.png-底部文本框有头像非战斗": "You okay?", + "page_90.png-底部文本框有头像非战斗": "It' $ just. hard, looking back at what happened:", + "page_91.png-底部文本框有头像非战斗": "And knowing how hard Undyne Was trying to fix everything:", + "page_92.png-底部文本框有头像非战斗": "Maybe I should' ve done more to support her", + "page_93.png-底部文本框有头像非战斗": "You' 11 get chance Just hang in there. your", + "page_95.png-顶部文本框有头像非战斗": "# Okay, there' $ no Way Undyne did all this.", + "page_96.png-顶部文本框有头像非战斗": "Look at the size of those claw marks!", + "page_97.png-顶部文本框有头像非战斗": "Y-yeah: Some thing tells me We re not alone.", + "page_98.png-顶部文本框有头像非战斗": "# This is unexpected.", + "page_99.png-顶部文本框有头像非战斗": "Hot a bad setup, though. If you ignore the torn cushions, anyway:", + "page_100.png-顶部文本框有头像非战斗": "Y-yeah: This used to be the visitor' $ lounge.", + "page_101.png-顶部文本框有头像非战斗": "Wonder if this still Works.", + "page_103.png-顶部文本框有头像非战斗": "# I-I don' t understand_", + "page_104.png-顶部文本框有头像非战斗": "Let' $ just outta here. get", + "page_106.png-顶部文本框有头像非战斗": "Great Another dead end.", + "page_107.png-顶部文本框有头像非战斗": "Something about this feels off though.", + "page_108.png-顶部文本框有头像非战斗": "Just look at that dog food.", + "page_109.png-底部文本框有头像非战斗": "There' $ a torn bag right here. Maybe there' $ a connection?", + "page_110.png-底部文本框有头像非战斗": "Maybe but no matter hw you slice it, We\" re blocked off.", + "page_111.png-底部文本框有头像非战斗": "A torn bag of dog food_ Fresh kibble litters the floor", + "page_112.png-底部文本框有头像非战斗": "Ew. What' $ that weird gunk inside?", + "page_113.png-底部文本框有头像非战斗": "M-maybe it' $ just saliva. 2", + "page_114.png-底部文本框有头像非战斗": "Wel1, at least this vending machine' $ untouched.", + "page_115.png-底部文本框有头像非战斗": "I just Wonder what dragged the other three over there.", + "page_116.png-底部文本框有头像非战斗": "Unless it' $ part of Undyne' $ workout routine", + "page_117.png-底部文本框有头像非战斗": "I-I doubt it. But Whatever it Was must be pretty tough.", + "page_118.png-底部文本框有头像非战斗": "We should probably stay on our toes.", + "page_119.png-底部文本框有头像非战斗": "Frisk, be careful_ Collecting more food may attract-", + "page_120.png-底部文本框有头像非战斗": "(Doesn' t matter We gotta prepare for the Worst )", + "page_121.png-底部文本框有头像非战斗": "All right But let' $ keep it at two for now.", + "page_124.png-顶部文本框有头像非战斗": "S0, uh. Fork in the road_", + "page_125.png-顶部文本框有头像非战斗": "M-Maybe I should lead for now", + "page_129.png-顶部文本框有头像非战斗": "Uh -", + "page_131.png-顶部文本框有头像非战斗": "# S0 do We Wanna talk about that, or. 2", + "page_132.png-顶部文本框有头像非战斗": "Let' $ just. find Papyrus.", + "page_133.png-顶部文本框有头像非战斗": "HEH HEHW!! BEHOLD IIGHTY EXFLODO-DUCK !", + "page_134.png-顶部文本框有头像非战斗": "MAY NOT BE SAFE -HILDREN THREE AND", + "page_135.png-顶部文本框无头像非战斗": "ALWAYS ASk A FARENT BEFORE FLACING IN FRONT OF SENSITIVE MACHINERY", + "page_136.png-顶部文本框无头像非战斗": "AND NO, DONT HAVE A FROBLEM, UNDYNEWW!", + "page_137.png-顶部文本框有头像非战斗": "Okay:", + "page_144.png-底部文本框有头像非战斗": "H-hello. 2", + "page_146.png-底部文本框有头像非战斗": "M-maybe We should leave it alone.", + "page_147.png-底部文本框有头像非战斗": "And leave our backs vulnerable? Nooooo thank you.", + "page_148.png-底部文本框有头像非战斗": "You' ve magic, I' ve my time powers. got your got", + "page_149.png-底部文本框有头像非战斗": "S0 let' $ just. this over With. get", + "page_154.gif-战斗文本框无头像战斗": "attacks!", + "page_155.png-战斗文本框无头像战斗": "Check 22223232?", + "page_156.png-战斗文本框无头像战斗": "#tuksiatIUlvm\"ye<-a0i9C3J3W R\"f? a~qot- Hc (f-6~Sbi) a) {4L'1e!ka- XecHeQaGuvz", + "page_157.png-战斗文本框无头像战斗": "# I can' t a read on it. # Something must be interfering with my CHECK. get", + "page_158.png-战斗文本框无头像战斗": "Undyne, what did You dO.", + "page_159.png-战斗文本框无头像战斗": "ELECTRIC BEAM Hold and release [Z] to fire a stunning electric beamt", + "page_160.png-战斗文本框无头像战斗": "SPARK BARRIER Ring of projectiles that circle the SOUL destroy attackst and", + "page_163.png-战斗文本框无头像战斗": "5 tongue twitches.", + "page_164.png-战斗文本框无头像战斗": "Deep breaths, Alphys You can do this.", + "page_165.png-战斗文本框无头像战斗": "ELECTRIC BEAM Hold and release [Z] to fire a stunning electric beamt", + "page_173.png-战斗文本框无头像战斗": "AlI right. # Let' $ this again: try", + "page_174.png-战斗文本框无头像战斗": "Check 22223232?", + "page_175.png-战斗文本框无头像战斗": "AVN-13 uutgaebueabtobpbbgeuttothoqagen; Gbarkaboighafbgluabe your bane_", + "page_183.png-战斗文本框无头像战斗": "AVH-13 spasms wildly: Looks like the stun Wore off", + "page_184.png-战斗文本框无头像战斗": "Check Ignore Challenge Default", + "page_185.png-战斗文本框无头像战斗": "Despite the danger, you stand our ground!", + "page_186.png-战斗文本框无头像战斗": "AVN-13 stops spasming and watches closely: Your DEF increases this turn:", + "page_187.png-战斗文本框无头像战斗": "Some thing about this feels S0 familiar.", + "page_188.png-战斗文本框无头像战斗": "hOMING HEALING Arrows rise from below that target the SOUL recover HP! and", + "page_192.png-战斗文本框无头像战斗": "AVH-13 breathes heavily; dribbling sline from its back:", + "page_193.png-战斗文本框无头像战斗": "Check Ignore Challenge Default", + "page_194.png-战斗文本框无头像战斗": "You challenge AVN-13 to a duel_ Its tongue flicks in recollection.", + "page_195.png-战斗文本框无头像战斗": "Vertical attacks huh? That gives me an idea.", + "page_196.png-战斗文本框无头像战斗": "YELLOW MODE Turn Frisk' $ SOUL yellow to fire back at their enemies!", + "page_201.png-战斗文本框无头像战斗": "Smell5 like familiarity:", + "page_202.png-战斗文本框无头像战斗": "Check Ignore Challenge Default", + "page_203.png-战斗文本框无头像战斗": "You pretend AVN-13 isn' t there It glares at You, and yet. It' $ almost half-hearted.", + "page_215.png-战斗文本框无头像战斗": "WE WON ! We earned 0g and 0 EXP.", + "page_216.png-底部文本框有头像非战斗": "They' re just like", + "page_217.png-底部文本框有头像非战斗": "Like what, Frisk?", + "page_218.png-底部文本框有头像非战斗": "You think there are others like em?", + "page_219.png-底部文本框有头像非战斗": "Undyne' $ reports said she operated on a ton of monsters.", + "page_220.png-底部文本框有头像非战斗": "Y- yeah.", + "page_221.png-底部文本框有头像非战斗": "Maybe that' $ why she never returned them to their families.", + "page_222.png-底部文本框有头像非战斗": "Some- thing went wrong; and she' $ been trying to fix it for years.", + "page_223.png-底部文本框有头像非战斗": "I guess now We know What, and how;", + "page_224.png-底部文本框有头像非战斗": "Wel1, anyway, looks like that robot dropped its Worm thing:", + "page_225.png-底部文本框有头像非战斗": "Think We should hold onto it?", + "page_226.png-底部文本框有头像非战斗": "We might as wel1- It could be useful later.", + "page_228.png-底部文本框有头像非战斗": "Hang in there Papyrus. We' re on our Way:" +} \ No newline at end of file diff --git a/text2/Ch56/OCR1.json b/text2/Ch56/OCR1.json new file mode 100644 index 00000000..6796cc68 --- /dev/null +++ b/text2/Ch56/OCR1.json @@ -0,0 +1,236 @@ +{ + "page_4.png-顶部文本框有头像非战斗": "it Wasn' t just other monsters. She did it to herself. S0", + "page_5.png-顶部文本框有头像非战斗": "Yeah, and I' ve got a hunch it doesn' t agree with monster bodies.", + "page_6.png-顶部文本框有头像非战斗": "# I mean, just look what happened to her at", + "page_7.png-顶部文本框有头像非战斗": "I 9-guess that' d explain all the cybernetics.", + "page_8.png-顶部文本框有头像非战斗": "Oh, Undyne_ You didn' t deserve this.", + "page_9.png-底部文本框有头像非战斗": "Huh. Wonder what that' $ supposed to be.", + "page_10.png-底部文本框有头像非战斗": "# L-let' $ not Worry about it right now.", + "page_11.png-底部文本框有头像非战斗": "Lookt There' $ a room right theret", + "page_12.png-底部文本框有头像非战斗": "M-maybe there' $ some thing useful inside.", + "page_13.png-底部文本框有头像非战斗": "If you say S0.", + "page_15.png-底部文本框有头像非战斗": "M-no way:", + "page_16.png-底部文本框有头像非战斗": "My Heroine Academy? The uNCUT version of Serpent Sphere?", + "page_17.png-底部文本框有头像非战斗": "What' $ she keeping these down HERE for?t", + "page_18.png-底部文本框有头像非战斗": "We' re in a dark, spooky laboratory, and THAT' $ What worries You?", + "page_19.png-底部文本框有头像非战斗": "In my defense, these are classics! They deserve bettert", + "page_20.png-底部文本框有头像非战斗": "And is there anything ELSE mixed in?", + "page_21.png-底部文本框有头像非战斗": "0-oh. Right Let' $ see.", + "page_22.png-底部文本框有头像非战斗": "M-no # I must be dreaming! way:", + "page_23.png-底部文本框有头像非战斗": "I thought she would' ve returned these by nowt", + "page_24.png-底部文本框有头像非战斗": "And by these, you mean the tapes. 2", + "page_25.png-底部文本框有头像非战斗": "Y- yeah. Those tapes.", + "page_26.png-底部文本框有头像非战斗": "Everything fell apart the day she showed these to the kingdom", + "page_27.png-底部文本框有头像非战斗": "Even noW, I STILL don' t know What she Was thinking:", + "page_28.png-底部文本框有头像非战斗": "But I guess there' $ one Way to find out", + "page_31.png-底部文本框有头像非战斗": "Seems she Wasn' t thinking at all.", + "page_32.png-底部文本框有头像非战斗": "Hot that I can particularly blame her", + "page_33.png-底部文本框有头像非战斗": "I-is it bad that a of me does? part", + "page_34.png-底部文本框有头像非战斗": "Considering how much she hurt everyone in the process? Hah.", + "page_35.png-底部文本框有头像非战斗": "I get she had her reasons, but ve a right to be mad, you' got", + "page_36.png-底部文本框有头像非战斗": "I mean, sheesh. That' $ three years you had to lie to everyone", + "page_37.png-底部文本框有头像非战斗": "I know, but. She' $ been through s0 much!", + "page_38.png-底部文本框有头像非战斗": "A-and she Was under S0 much pressure_", + "page_39.png-底部文本框有头像非战斗": "And weren' t? # C' mon, it' $ not fair to beat yourself up. You", + "page_40.png-底部文本框有头像非战斗": "I know, but it' $. hard putting my foot down.", + "page_41.png-底部文本框有头像非战斗": "Wel1, Rome Wasn' t built in a day, Captain:", + "page_42.png-底部文本框有头像非战斗": "Just take it one at a time. step", + "page_43.png-底部文本框有头像非战斗": "Wel1 If you Wanna see them for yourself, g0 ahead.", + "page_44.png-底部文本框有头像非战斗": "It' $ not fair to you in the dark keep", + "page_45.png-底部文本框有头像非战斗": "( You okay with this Cap?)", + "page_46.png-底部文本框有头像非战斗": "(Sigh)_ # It' $ not as though I can stop you.", + "page_47.png-底部文本框无头像非战斗": "Cancel 1 Tape 2 3 4 5 Tape Tape Tape Tape", + "page_48.png-底部文本框无头像非战斗": "Cancel 1 Tape 2 3 4 5 Tape Tape Tape Tape", + "page_50.png-底部文本框有头像非战斗": "# F-Frisk? Are you okay: 2", + "page_51.png-底部文本框有头像非战斗": "I. But first the lightning: How the TV. yeah.", + "page_52.png-底部文本框有头像非战斗": "What' $ going OH in here?t", + "page_53.png-底部文本框有头像非战斗": "I don' t know, b-but We should be careful_", + "page_54.png-底部文本框有头像非战斗": "And maybe not watch any more televisions.", + "page_57.png-顶部文本框有头像非战斗": "Heh. Probably just a weird prank_", + "page_62.png-顶部文本框有头像非战斗": "W-what do you think that Was about 2", + "page_63.png-顶部文本框有头像非战斗": "Dunno, but I' m starting to think this place is haunted_", + "page_64.png-顶部文本框有头像非战斗": "M-Maybe another one Mettaton' $ cousins. of", + "page_65.png-顶部文本框有头像非战斗": "Ah, yes. His long lost evil twin. Hotattem", + "page_66.png-顶部文本框有头像非战斗": "( Dang it_ How I' ve a new plot bunny to suppress!) got", + "page_73.png-顶部文本框有头像非战斗": "Sheesh. Sure are a lot of old robots in here_", + "page_74.png-顶部文本框有头像非战斗": "Maybe it' $ a storage space?", + "page_75.png-顶部文本框有头像非战斗": "Either Way, let' $. not to touch anything: try", + "page_76.png-顶部文本框有头像非战斗": "The last thing We need' $ another explosion:", + "page_80.png-底部文本框有头像非战斗": "uh, Alphys. # I just had a funny thought. Hey;", + "page_81.png-顶部文本框有头像非战斗": "Wouldn' t these robots fit right in at a tacky pizza place?", + "page_82.png-顶部文本框有头像非战斗": "You know, Mettaton thought about opening a pizzeria once.", + "page_83.png-顶部文本框有头像非战斗": "But, well Turns out Undyne HATES square pizza.", + "page_84.png-顶部文本框有头像非战斗": "She even tried to sue him #food crimes. for", + "page_85.png-顶部文本框有头像非战斗": "But it Was MTT' $ court. And now he sells them there just to spite her_", + "page_86.png-顶部文本框有头像非战斗": "An incomplete exo-shell_ It' $ covered in rust_", + "page_87.png-底部文本框有头像非战斗": "Oh, look_ Modern art", + "page_88.png-底部文本框有头像非战斗": "I' 11 call it, A Useless Pile of Junk.", + "page_89.png-底部文本框有头像非战斗": "Best not to lift the cloth on this one, Frisk:", + "page_90.png-底部文本框有头像非战斗": "Yeah, don' t worry: # I don' t have a death wish.", + "page_91.png-底部文本框有头像非战斗": "G-good thinking: Knowing Undyne, it' $ full of anti-human tech.", + "page_94.png-顶部文本框有头像非战斗": "Guess that explains all their friction in courtroom", + "page_95.png-顶部文本框有头像非战斗": "Yeah. haven' t been on good terms for years. They:", + "page_96.png-顶部文本框有头像非战斗": "Honestly; Frisk? It' $ caused strain be tween US, too.", + "page_97.png-顶部文本框有头像非战斗": "It Was like a game of tug-0-war with those two. And I Was the rope.", + "page_98.png-顶部文本框有头像非战斗": "Maybe when this is all over, you three should just. talk it out", + "page_99.png-顶部文本框有头像非战斗": "Yeah: it' $ Way overdue.", + "page_100.png-底部文本框有头像非战斗": "Sheesh. Looks like some thing did a number on this desk.", + "page_101.png-底部文本框有头像非战斗": "I-it' $ going to be fine_ We_ We this? got", + "page_106.png-顶部文本框有头像非战斗": "W-what happened to this Mew robot?y You don' t think it' $- Mew", + "page_107.png-顶部文本框有头像非战斗": "Hah, can' t be_ The Mew I know' $ a LOt spikier_ Mew", + "page_108.png-顶部文本框有头像非战斗": "Maybe it' $ a prototype?", + "page_109.png-顶部文本框有头像非战斗": "P-prototype or not, I can' t look at her like this?", + "page_112.png-顶部文本框有头像非战斗": "Sheesh, Alphys. You secretly run cross country or something?", + "page_113.png-顶部文本框有头像非战斗": "Ehehe. Sorry about that.", + "page_114.png-顶部文本框有头像非战斗": "Heh, it' $ cool_ Just gimme a heads up next time.", + "page_115.png-顶部文本框有头像非战斗": "S0 what' ve We here? got", + "page_116.png-顶部文本框有头像非战斗": "It looks like the half one Sans' blasters. top 0f of", + "page_117.png-顶部文本框有头像非战斗": "I thought about using it to clear the walkway; but it might be unstable-", + "page_118.png-顶部文本框有头像非战斗": "Looks pretty old, anyway, S0 Who knows if it still works?", + "page_119.png-底部文本框有头像非战斗": "Wel1, What about this big magnet?", + "page_120.png-底部文本框有头像非战斗": "Practical AHD portable? # I like the way you thinkt", + "page_121.png-底部文本框有头像非战斗": "Now all We have to do is it to the test- put", + "page_122.png-底部文本框有头像非战斗": "Man, I can' t tell if these are weird symbols or crappy penmanship.", + "page_123.png-底部文本框有头像非战斗": "You think they' re for that Weird machine over there?", + "page_125.png-底部文本框有头像非战斗": "Wel1, whatever it is it' $ too broken to use now", + "page_129.png-顶部文本框有头像非战斗": "S0oo. about that magnet_", + "page_130.png-顶部文本框有头像非战斗": "I' ve it. Just uh. maybe you should step back: got", + "page_133.png-顶部文本框有头像非战斗": "Look, ma_ # I did the thing:", + "page_134.png-顶部文本框有头像非战斗": "I' m not our mom: # Or our dad Or your parent.", + "page_135.png-顶部文本框有头像非战斗": "Huh. What IS the nonbinary term for parent, anyway?", + "page_136.png-顶部文本框有头像非战斗": "You just clocked by vending machines, and THAT' $ what You ask? got", + "page_137.png-顶部文本框有头像非战斗": "H-hey! At least We cleared the Way:", + "page_138.png-顶部文本框有头像非战斗": "How, let' $ go find Papyrus.", + "page_141.png-底部文本框有头像非战斗": "about that flower Hey;", + "page_142.png-底部文本框有头像非战斗": "Oh, right. Sans told You, didn' t he?", + "page_143.png-底部文本框有头像非战斗": "Yeah, but. You trust right? it,", + "page_144.png-底部文本框有头像非战斗": "And it hasn' t done anything bad.", + "page_145.png-底部文本框有头像非战斗": "Actually; Flowey' $ the one Who' $ gonna break the barrier", + "page_146.png-底部文本框有头像非战斗": "I guess if We' d told Undyne from the start_", + "page_147.png-底部文本框有头像非战斗": "We could' ve prevented a a lotta heartache", + "page_148.png-底部文本框有头像非战斗": "Well_ try to tell her When find her # I think it' 11 help. you", + "page_149.png-顶部文本框有头像非战斗": "Huh. Think there' $ some thing buried here.", + "page_150.png-顶部文本框有头像非战斗": "Haaand it' $ a dog bone_ Okay then.", + "page_151.png-顶部文本框有头像非战斗": "But Wait a second # A torn dogfood bag: Kibble on the floor", + "page_152.png-顶部文本框有头像非战斗": "M-maybe We should hold onto this. It might save our skin.", + "page_158.png-顶部文本框有头像非战斗": "# I totally gotta call him Petalpyrus now", + "page_159.png-顶部文本框有头像非战斗": "There are test tubes full a familiar liquid. 0f", + "page_160.png-顶部文本框有头像非战斗": "# A UV light, and several botanical handbooks, too.", + "page_161.png-顶部文本框有头像非战斗": "I-I guess he takes his gardening pretty seriously:", + "page_166.png-顶部文本框有头像非战斗": "Seems these flowers Were watered recently:", + "page_167.png-顶部文本框有头像非战斗": "Then Papyrus to be close. has", + "page_170.png-顶部文本框有头像非战斗": "LOOK! KNOw You WANT TO FLAY, But THERE'5 NO TIME!", + "page_171.png-顶部文本框有头像非战斗": "WHY DON'T You Go EAT SOME TASTY KIBBLES 'N BITS?", + "page_172.png-顶部文本框有头像非战斗": "THERE'5 ENOUGH FOR ALL OF YOUw", + "page_174.png-顶部文本框有头像非战斗": "Papyrus !", + "page_175.png-顶部文本框有头像非战斗": "FRISK?! DIDNT You READ MY_", + "page_177.png-底部文本框有头像非战斗": "DONT EVEEN THINK ABOUT IT!", + "page_178.png-底部文本框有头像非战斗": "ALPHYS! GET FRISK OUT OF HERE BEFORE _", + "page_181.gif-战斗文本框无头像战斗": "It' $ a Nechamalgamate", + "page_182.png-战斗文本框无头像战斗": "Check Pet Roll Around # Play Re-Sniff Beckon", + "page_183.png-战斗文本框无头像战斗": "MECHAMALGAMATE Despite its three heads, its dog quantity is still unclear_", + "page_184.png-战斗文本框无头像战斗": "THIS 15 NOT HOw EXFECTED OUR REUNION WOULD Go", + "page_185.png-战斗文本框无头像战斗": "CHECK FETCH DISGUISE FUzzLE COMMAND", + "page_186.png-战斗文本框无头像战斗": "TRY ENTICING Ka-666 BY THROWING A BEAUTIFUL BONEW!", + "page_187.png-战斗文本框无头像战斗": "IT BOUNDS ACROSS THE ROOM, FLECKING OOZE A5 IT MAKES CHASE!", + "page_188.png-战斗文本框无头像战斗": "But ITS HEADS START FIGHTING WITH EACH OTHER! OH NOW ATK UP !!!", + "page_189.png-战斗文本框无头像战斗": "Okay: Keep calm: # It' $. just a # A big, three-headed, slimy dog: dog:", + "page_190.png-战斗文本框无头像战斗": "SPARK BARRIER Ring of projectiles that circle the SOUL destroy attackst and", + "page_193.png-战斗文本框无头像战斗": "The Nechamalgamate' $ heads keep snapping at each other_", + "page_194.png-战斗文本框无头像战斗": "Check Pet Roll Around Play Re-Sniff # Beckon", + "page_195.png-战斗文本框无头像战斗": "Against your better judgment, you call the Mechamalgamate closer_", + "page_196.png-战斗文本框无头像战斗": "It bounds closer, but stops mid- sprint? Its eyes light up", + "page_197.png-战斗文本框无头像战斗": "This doesn' t bode well", + "page_198.png-战斗文本框无头像战斗": "SHOOT, FRISK! wISH You HADNT DONE THATW", + "page_199.png-战斗文本框无头像战斗": "CHECK FETCH DISGUISE FUzzLE COMMAND", + "page_200.png-战斗文本框无头像战斗": "DON MY FLAWLESS HUMAN DISGUISEw", + "page_201.png-战斗文本框无头像战斗": "ITS THREE HEADS GLANCE BETYEEN FRISK AND ME", + "page_202.png-战斗文本框无头像战斗": "But IT HAS THREE HEADS To WATCH ALL OF 05! AND THEYRE ALL GROWLINGW", + "page_212.png-战斗文本框无头像战斗": "We11, that didn' t Work: to think back on your previous canine encounters Try", + "page_213.png-战斗文本框无头像战斗": "Check Pet Roll Around # Play Re-Sniff Beckon", + "page_214.png-战斗文本框无头像战斗": "roll on the floor, coating yourself with the Mechamalgamate' $ slimy residue_ You", + "page_215.png-战斗文本框无头像战斗": "As disgusting as it is, at least you' ve masked your scent.", + "page_216.png-战斗文本框无头像战斗": "FRIMSK, THAT'5 50 UNSANITARY!", + "page_217.png-战斗文本框无头像战斗": "BLUE ATTACK 6 DARRIER D BARRAGE CONCOCTEREST", + "page_219.png-战斗文本框无头像战斗": "Time to even the odds_", + "page_220.png-战斗文本框无头像战斗": "ELECTRIC BEAM Hold and release [Z] to fire a stunning electric beamt", + "page_225.png-战斗文本框无头像战斗": "The Nechamalgamate' $ body spasms from the power surge.", + "page_226.png-战斗文本框无头像战斗": "Check Pet Roll Around # Play Re-Sniff Beckon", + "page_227.png-战斗文本框无头像战斗": "The Nechamalgamate sniffs you. After rolling in its ooze, you now emit a safe stench.", + "page_228.png-战斗文本框无头像战斗": "ATK down #", + "page_229.png-战斗文本框无头像战斗": "THAT'S A GOOD SIGN, THINK_", + "page_230.png-战斗文本框无头像战斗": "BLUE ATTACK 06_ DARRIER D BARRAGE CONCOCTEREST", + "page_239.png-战斗文本框无头像战斗": "The Nechamalgamate' $ movements return to normal.", + "page_240.png-战斗文本框无头像战斗": "Check Pet Roll Around Play Re-Sniff # Beckon", + "page_241.png-战斗文本框无头像战斗": "Once again, you beckon the Mechamalganate_", + "page_242.png-战斗文本框无头像战斗": "This time, however it trots right up to 4ou, flecking oze in our face_", + "page_243.png-战斗文本框无头像战斗": "THERE MuSt BE SOMETHING CAN DO", + "page_244.png-战斗文本框无头像战斗": "CHECK FETCH DISGUISE FUzzLE COMMAND", + "page_245.png-战斗文本框无头像战斗": "FRESENT A COMFLEX FUzzLE WITH MULTIFLE MOVING FARTS", + "page_246.png-战斗文本框无头像战斗": "YHILE BRACE MYSELF FOR THE GROWLFEST To COME, IT. DOESNTzz?", + "page_247.png-战斗文本框无头像战斗": "DESPITE SOME YHIMPERS_ THE THREE HEADS SHARE A LOOK AND GET TO YORK", + "page_248.png-战斗文本框无头像战斗": "IT SEEMS THE ENRICHMENT 15 CALMING THEM DOWN THEIR SPEED DROFSW", + "page_254.png-战斗文本框无头像战斗": "The Nechamalgamate watches closely:", + "page_255.png-战斗文本框无头像战斗": "Check # Pet Roll Around # Play Re-Sniff Beckon", + "page_256.png-战斗文本框无头像战斗": "You each of the Nechamalgamate' $ heads individually: pet", + "page_257.png-战斗文本框无头像战斗": "They seem to appreciate the personalized attention, as all convulse rapidly: they", + "page_258.png-战斗文本框无头像战斗": "After they' re done smothering you with slime, rest their heads in your they lap.", + "page_259.png-战斗文本框无头像战斗": "We are going to need at least ten showers after this.", + "page_260.png-战斗文本框无头像战斗": "ALMOST DONE HERE", + "page_261.png-战斗文本框无头像战斗": "CHECK FETCH DISGUISE FUzzLE COMMAND", + "page_262.png-战斗文本框无头像战斗": "GENTLY URGE Ka-666 To RETURN To ITS BED", + "page_263.png-战斗文本框无头像战斗": "MOREOVER, FROMISE THREE TIMES THE FETS AND BELLY RUBSw", + "page_264.png-战斗文本框无头像战斗": "THIS SEEMS To AFFEASE IT, A5 THE MECHAMALGAMATE JOYFULLY BOUNDS AwAY!", + "page_265.png-战斗文本框无头像战斗": "YE WONW! YE EARNED A SHOWER OR TEN", + "page_266.png-顶部文本框有头像非战斗": "# Y-Y' know We make a pretty good team:", + "page_267.png-顶部文本框有头像非战斗": "Thanks for sticking up for me back there. Or_ well here.", + "page_268.png-顶部文本框有头像非战斗": "NYEH HEH HEH! IT WAS AN HONOR TO FIGHT BESIDE YOUw", + "page_269.png-顶部文本框有头像非战斗": "AF TER ALL, YOURE THE ESTEEMED CAPTAIN ALPHYS!", + "page_270.png-顶部文本框有头像非战斗": "Ehehe. I guess S0_ But down here, I' m nothing special.", + "page_271.png-顶部文本框有头像非战斗": "NONSENSE! EvERYONE 15 SFECIAL, ANY TIME, ANY VENUEW!", + "page_272.png-顶部文本框有头像非战斗": "Hot that I disagree, but you REALLY shouldn' t have run off on uS.", + "page_273.png-顶部文本框有头像非战斗": "FRISK, 1", + "page_274.png-顶部文本框有头像非战斗": "SIGH", + "page_275.png-顶部文本框有头像非战斗": "You SHOULDN'T HAVE HAD To SEE THIS", + "page_276.png-顶部文本框有头像非战斗": "I'M TERRIBLY SORRY FOR THE INCONVENIENCE, AND", + "page_277.png-顶部文本框有头像非战斗": "FOR NOT BEING MORE FORTHCOMING", + "page_278.png-顶部文本框有头像非战斗": "Yeah, well this ISM' T some thing you have to face alonet", + "page_279.png-顶部文本框有头像非战斗": "Doesn' t matter What freakshows are down here_ I can take it.", + "page_280.png-顶部文本框有头像非战斗": "KNOM Just HOPED You WOULDNT HAVE TO", + "page_281.png-顶部文本框有头像非战斗": "Yeah, well swallow pride. your", + "page_282.png-顶部文本框有头像非战斗": "I' m here now, I' m not going anywhere. and", + "page_283.png-顶部文本框有头像非战斗": "B-besides, I think We could al1 use backup with those.", + "page_284.png-顶部文本框有头像非战斗": "THEYRE THE MONSTERS WE EXPERIMENTED ON", + "page_285.png-顶部文本框有头像非战斗": "But SUFPOSE THAT'S ObviOus BY NOw, ISN'T IT?", + "page_286.png-顶部文本框有头像非战斗": "Y-yeah: But how did up like that_ they end", + "page_287.png-顶部文本框有头像非战斗": "DETERMINATION 15 RATHER STRENuOuS ON MONSTER BODIES", + "page_288.png-顶部文本框有头像非战斗": "COMBINE THAT WITH UNDYNE'S REFEAT DOSES, AND, WELL", + "page_289.png-顶部文本框有头像非战斗": "Speaking of Undyne, any idea how to past that door? get", + "page_290.png-顶部文本框有头像非战斗": "IT's A WORK IN FROGRESS", + "page_291.png-顶部文本框有头像非战斗": "WANTED To OVERRIDE THE LOCK , BU, WELL", + "page_292.png-顶部文本框有头像非战斗": "THE YHOLE LAB'S BEEN ON THE FRITZW!", + "page_293.png-顶部文本框有头像非战斗": "Yeah, I know The exploding TV made that preeetty obvious", + "page_294.png-顶部文本框有头像非战斗": "But YOURE ALL RIGHT RIGHT?! DONT SEE ANY cuts", + "page_295.png-顶部文本框有头像非战斗": "Yeah. I' 11 survive.", + "page_296.png-顶部文本框有头像非战斗": "GooD! NOT THAT THERE WAS EvER ANY DOUBT", + "page_297.png-顶部文本框有头像非战斗": "Wait a second, Papyrus_ Does the #fritz\" include robots.", + "page_298.png-顶部文本框有头像非战斗": "MAYBEr? THE MECHAMALGS ARE ALWAYS UNRULY, But _", + "page_299.png-顶部文本框有头像非战斗": "Papyrus, this 1s serious Mew Mew and Mettaton are down here, toot", + "page_301.png-顶部文本框有头像非战斗": "w-WELL! METTATON 15 NO MERE MACHINE! F'M SURE HE'S-", + "page_302.png-顶部文本框有头像非战斗": "If he' $ fine, then why do you sound S0 uneasy?", + "page_303.png-顶部文本框有头像非战斗": "NEVER MIND THAT! LET'5 HURRY AND MEET HIM FOSTHASTEW!", + "page_304.png-顶部文本框有头像非战斗": "AF TER ALL, F'M SURE HE'S EAGER TO KNOw THAT F'M A-OKAYW", + "page_305.png-顶部文本框有头像非战斗": "R-right. I' m sure he' 11 be happy to hear that.", + "page_309.png-底部文本框有头像非战斗": "That' $ It! I have HAD It with you cheap posers!", + "page_311.png-底部文本框有头像非战斗": "Are you all right?", + "page_312.png-底部文本框有头像非战斗": "Hmph! I didn' t ASk for help? your", + "page_313.png-底部文本框有头像非战斗": "You' re welcome darling~", + "page_314.png-底部文本框有头像非战斗": "By the what WAS that- way;", + "page_316.png-底部文本框有头像非战斗": "How; now # I' m happy to sign autographs.", + "page_317.png-底部文本框有头像非战斗": "But I' m afraid my brand identity' $ too precious to cast aside.", + "page_319.png-底部文本框有头像非战斗": "W-What is.", + "page_320.png-底部文本框有头像非战斗": "Oh, come om. Don' t tell me you' re SCARED of those freakst", + "page_321.png-底部文本框有头像非战斗": "M-no. # That' $ not me", + "page_323.png-底部文本框有头像非战斗": "I would NEVER do that to Blooky!", + "page_324.png-底部文本框有头像非战斗": "Get away from me #" +} \ No newline at end of file diff --git a/text2/Ch57/OCR1.json b/text2/Ch57/OCR1.json new file mode 100644 index 00000000..e54933f7 --- /dev/null +++ b/text2/Ch57/OCR1.json @@ -0,0 +1,106 @@ +{ + "page_2.png-底部文本框有头像非战斗": "FRET NOT_ FRISKW! F'M SURE METTATON 15 Just FINE", + "page_3.png-底部文本框有头像非战斗": "BUt Just IN CASE; WE SHOULD FROBABLY HURRY", + "page_4.png-底部文本框有头像非战斗": "NOT THAT 'M SCARED IT'S Just FRAGMATICW!", + "page_5.png-底部文本框有头像非战斗": "M-maybe it Was wrong to split up.", + "page_6.png-底部文本框有头像非战斗": "cut yourself some slack Hone of uS knew what' d happen: Hey;", + "page_7.png-底部文本框有头像非战斗": "Best thing We can do now is our butts over there. get", + "page_8.png-底部文本框有头像非战斗": "AND HOFE FOR THE BEST, OF COURSEW", + "page_9.png-顶部文本框有头像非战斗": "It' $ been exhausting; but at least We know Papyrus is safe.", + "page_10.png-顶部文本框有头像非战斗": "We re filled with determination.", + "page_14.png-顶部文本框有头像非战斗": "Undyne.", + "page_15.png-顶部文本框有头像非战斗": "IT WAS DIFFICULT, SEEING HER LIKE THAT", + "page_16.png-顶部文本框有头像非战斗": "NOT THAT BLAME HER", + "page_17.png-顶部文本框有头像非战斗": "TO HAVE SucH GREAT POWER, ONLY TO LOSE IT", + "page_18.png-顶部文本框有头像非战斗": "AND AT THE WORST POSSIBLE MOMENT , TOO", + "page_19.png-顶部文本框有头像非战斗": "When you it that Way, my resets musta been a huge Slap in the face put", + "page_20.png-顶部文本框有头像非战斗": "PERHAF5, But IT WASNT RIGHT FOR HER TO BLAME You", + "page_23.png-顶部文本框有头像非战斗": "F'D BE LYING IF 1 SAID IT DIDNT AFFECT ME", + "page_24.png-顶部文本框有头像非战斗": "B-but you' re always S0 positivet How do you -", + "page_25.png-顶部文本框有头像非战斗": "IT's AS THEY SAY 'FAKE IT 'TIL You MAKE ITW", + "page_26.png-顶部文本框有头像非战斗": "BESIDES, SOMEONE HAD To KEEP OUR HOPES ALIVE", + "page_27.png-顶部文本框有头像非战斗": "WAS IT EASY? NOPEw But AT LEAST YE HAD EACH OTHER", + "page_30.png-顶部文本框有头像非战斗": "SIGH", + "page_31.png-顶部文本框有头像非战斗": "YONDER SOMETIMES_ SHOULD 1 HAVE STOOD MY GROUND?", + "page_32.png-顶部文本框有头像非战斗": "NEVER AGREED But WAS SCARED TO ROCK THE BOAT", + "page_33.png-顶部文本框有头像非战斗": "KNOw IT'S A_ MOOT FOINT, But 1 WAS FAINFULLY FASSIVEW!", + "page_34.png-顶部文本框有头像非战斗": "H-hey: You Were just a kid. I Wasn' t, and I STILL kept quiet:", + "page_35.png-顶部文本框有头像非战斗": "But. because of You, I finally found the courage to speak up.", + "page_36.png-顶部文本框有头像非战斗": "And I think that' $ pretty amazing:", + "page_37.png-顶部文本框有头像非战斗": "NYEH HEH WELL, OF COURSE! 1 AM THE GREAT FAPYRUSW!", + "page_38.png-顶部文本框有头像非战斗": "But ENOUGH WALLOWING! METTATON AwAITSW!", + "page_41.png-顶部文本框有头像非战斗": "DON'T SUPFOSE You KNOw WHICH WAY HE WENT?", + "page_42.png-顶部文本框有头像非战斗": "H-no_ We up in the lobby: split", + "page_43.png-底部文本框无头像非战斗": "For CRYING out Loud! What' $ gotten INTO him?!", + "page_44.png-底部文本框无头像非战斗": "Those freaks weren' t even that scary?", + "page_45.png-顶部文本框有头像非战斗": "When in doubt, follow the angry catgirl?", + "page_53.png-顶部文本框有头像非战斗": "This isn' t what it looks like?", + "page_54.png-顶部文本框有头像非战斗": "Whoa, chill out # I wasn' t gonna say anything:", + "page_55.png-顶部文本框有头像非战斗": "It doesn' t matter_ I can tell by the look in your eyes", + "page_56.png-顶部文本框有头像非战斗": "YOu think I broke this no - good POSER!", + "page_57.png-顶部文本框有头像非战斗": "ISNT THAT A_ BIT HARSH?", + "page_58.png-顶部文本框有头像非战斗": "AF TER ALL, IT 15 STILL ONE OF UNDYNE'S CREATIONS!", + "page_59.png-顶部文本框有头像非战斗": "Wel1 UNDYNE didn' t make it go CRAZY!", + "page_60.png-顶部文本框有头像非战斗": "And besides_ it' $ OBVIOUSLY not the flawless, FINAL model!", + "page_61.png-顶部文本框有头像非战斗": "(Hint, hint: That' $ MEt)", + "page_62.png-顶部文本框有头像非战斗": "W-wait_ When you say crazy; what do you mean?", + "page_63.png-顶部文本框有头像非战斗": "Hmph ! Isn' t it OBVIOUS? That stupid thing attacked me !", + "page_64.png-顶部文本框有头像非战斗": "It actually thought it stood a chance against my SUPERIOR We aponry?", + "page_65.png-顶部文本框有头像非战斗": "Wel1 I humored my impostor.", + "page_66.png-顶部文本框有头像非战斗": "We even Waged an EPIC DUEL to determine the ULTIMATE Mew Mewt", + "page_67.png-顶部文本框有头像非战斗": "But Mettaton just HAD to show up and steal my thundert", + "page_68.png-顶部文本框有头像非战斗": "OR FERHAFS HE WANTED To AID HIS BELOVED COUSiN", + "page_69.png-顶部文本框有头像非战斗": "IN THE HEAT OF GRATuITOuS COMBAT?", + "page_70.png-顶部文本框有头像非战斗": "Well_ maybe I didn' t WAHT his help! I' m not some frail, little girl.", + "page_71.png-顶部文本框有头像非战斗": "I' m a strong; independent Woman with a SOUL-splitting CLEAVER?", + "page_72.png-顶部文本框有头像非战斗": "# Y-Y' know; the real Mew Mew Was never afraid to ask her friends for help.", + "page_73.png-顶部文本框有头像非战斗": "Hey! I' m not AFRAID#", + "page_74.png-顶部文本框有头像非战斗": "I just don' t need him sabotaging MY epic showdown !", + "page_75.png-顶部文本框有头像非战斗": "# W-Well where is he? Is he okay: 2", + "page_76.png-顶部文本框有头像非战斗": "Probably?", + "page_77.png-顶部文本框有头像非战斗": "THAT'S NOT VERY REASSURING", + "page_78.png-顶部文本框有头像非战斗": "Okay, FIHE. Those freaks MIGHT have chased him doWn.", + "page_79.png-顶部文本框有头像非战斗": "And MIGHT have controlled this busted up beta. they", + "page_80.png-顶部文本框有头像非战斗": "And might have shown him some freaky shit FRISK, COVER YOUR EARSW they:", + "page_81.png-顶部文本框有头像非战斗": "But S0 what?t It' $ NETTATOH#", + "page_82.png-顶部文本框有头像非战斗": "He' $ strong: He can take care of himself.", + "page_83.png-顶部文本框有头像非战斗": "S0 you' re not even gonna TRY to pay him back", + "page_84.png-顶部文本框有头像非战斗": "Sounds to me like you' re just blowing hot air", + "page_85.png-顶部文本框有头像非战斗": "H-HEY} I already said I' m not scared?", + "page_86.png-顶部文本框有头像非战斗": "I just. BELIEVE in him? The Way he believes in You!", + "page_87.png-顶部文本框有头像非战斗": "But seeing how I AM Mew Mew now. g0 ahead. Follow our HEARTS#", + "page_88.png-顶部文本框有头像非战斗": "Let the MAGIC OF FRIEHDSHIP make sparkles and RAIHBOWS", + "page_89.png-顶部文本框有头像非战斗": "(F-Finally: Some thing in-character", + "page_90.png-顶部文本框有头像非战斗": "Cool anime sparkles aside We uh. Kinda need to through: get", + "page_91.png-顶部文本框有头像非战斗": "# Of course Of COURSE I knew thatt", + "page_92.png-顶部文本框有头像非战斗": "See?t Aren' t I the SWEETEST peach?!", + "page_95.png-顶部文本框有头像非战斗": "S0 THAT' $ where your power comes from:", + "page_96.png-顶部文本框有头像非战斗": "Al1 the more reason to thank Undyne!", + "page_97.png-顶部文本框有头像非战斗": "She entrusted ME with her ultimate creation.", + "page_98.png-顶部文本框有头像非战斗": "Wow, I didn' t know you could pilot the Determinator.", + "page_99.png-顶部文本框有头像非战斗": "Yeah, and Mettaton' $ gotta be her most significant creation:", + "page_100.png-顶部文本框有头像非战斗": "AGREED! But WE CAN'T OvERLOOK THE HOLO-SKY, EITHERW!", + "page_101.png-顶部文本框有头像非战斗": "GAH? Fine I admit it_ Undyne has PLENTY of amazing creations.", + "page_102.png-顶部文本框有头像非战斗": "But I' m still ONE of the bestt And cuter than Mettaton. LIES AND SLANDERW!", + "page_106.png-底部文本框有头像非战斗": "(Huh. 0 permanent split.", + "page_107.png-底部文本框有头像非战斗": "(Wonder what that' d take: )", + "page_108.png-底部文本框有头像非战斗": "Let' $. not ahead of ourselves, Frisk get", + "page_109.png-底部文本框有头像非战斗": "She' $ speaking purely in hypotheticals Or IS she?", + "page_110.png-底部文本框有头像非战斗": "Wait a second. You' ve seen her in action, right?", + "page_111.png-底部文本框有头像非战斗": "Seen and felt. She literally cut me in two.", + "page_112.png-底部文本框有头像非战斗": "Only it Wasn' t just me", + "page_113.png-底部文本框有头像非战斗": "INDEEDW CHARA RESIDES YITHIN THEIR SOUL SOMEHOM", + "page_114.png-底部文本框有头像非战斗": "W-WHAT?#", + "page_115.png-底部文本框有头像非战斗": "You mean You' re only hearing about this NOW?", + "page_116.png-底部文本框有头像非战斗": "FRISKt hOW COULD YOu?! I let you SEE EACH OTHER !", + "page_117.png-底部文本框有头像非战斗": "Look, We can discuss this AFTER Undyne and Mettaton are safe_", + "page_118.png-底部文本框有头像非战斗": "Good, because I have a Lot of questions.", + "page_119.png-顶部文本框有头像非战斗": "It' $ a blueprint. It says.", + "page_120.png-顶部文本框有头像非战斗": "\"SOUL fission. The process severing conjoined SOULs. of", + "page_121.png-顶部文本框有头像非战斗": "sThe MEW? Unit channels raw energy into a single, precise strike_", + "page_122.png-顶部文本框有头像非战斗": "\"Severing the connective seams and freeing its targets.", + "page_123.png-顶部文本框有头像非战斗": "Don' t Worry: This one' $ empty:", + "page_124.png-顶部文本框有头像非战斗": "I THINK it Was for that. weird spoon. But it away: got", + "page_125.png-顶部文本框有头像非战斗": "But forget about thatt You Want Mettaton? He' $ right this Way:", + "page_126.png-顶部文本框有头像非战斗": "But forget about thatt You Want Mettaton? He' $ right this Way:" +} \ No newline at end of file diff --git a/text2/Ch58/OCR1.json b/text2/Ch58/OCR1.json new file mode 100644 index 00000000..ade70ef3 --- /dev/null +++ b/text2/Ch58/OCR1.json @@ -0,0 +1,186 @@ +{ + "page_3.png-底部文本框有头像非战斗": "Wait Those M- Nechamalgamates dropped some Weird toys.", + "page_4.png-底部文本框有头像非战斗": "Were those the lures?", + "page_5.png-底部文本框有头像非战斗": "INDEED THEY YEEREW", + "page_6.png-底部文本框有头像非战斗": "UNFORTUNATELY, IT AFFEARS THE OTHER Two ARE M | A", + "page_7.png-底部文本框有头像非战斗": "SIGH A SKELETON5 YORK 15 NEVER DONE", + "page_8.png-底部文本框无头像非战斗": "Recovery Room. FOR CARING, NOT SCARINGW", + "page_9.png-底部文本框有头像非战斗": "FRET NOT_ FRISK! F'M SURE THE OTHER LuRES ARE OUT THERE", + "page_10.png-底部文本框有头像非战斗": "IN FACT , THIS GIVES ME AN IDEA", + "page_13.png-顶部文本框有头像非战斗": "Wow: Sounds like MTT and Mew need to lift more. Mew", + "page_14.png-顶部文本框有头像非战斗": "HEY! METTATON 15 THE BEEFIEST STEAK_ OF COURSE HE LIFTS!", + "page_15.png-顶部文本框有头像非战斗": "But THERE ARE FOUR MECHAMALGAMTES THAT'S EXTRA FROTEIN!", + "page_16.png-顶部文本框有头像非战斗": "Heh. S0 what? We= re the bull fighters?", + "page_17.png-顶部文本框有头像非战斗": "FREFER To THINK OF us A5 RINGMASTERS, But CLOSE ENOUGHw", + "page_18.png-顶部文本框有头像非战斗": "WE HAD To GET THIS BED CuSTOM MADE", + "page_19.png-顶部文本框有头像非战斗": "AF TER MUTTLER AND HIS FEERS MELTED INTO EACH OTHER", + "page_20.png-顶部文本框有头像非战斗": "D-BUt AT LEAST THEIR ROBo SHELL REDUCES EXCESS DOG RESIDUE!", + "page_21.png-顶部文本框有头像非战斗": "Best to let sleeping dogs lie, Frisk_ For now, anyway:", + "page_22.png-顶部文本框有头像非战斗": "MULTI-MONSTER FuSIONS CAN BE 50 TRICK Y To WORK WITH", + "page_23.png-顶部文本框有头像非战斗": "LuCKILY, THIS ONE'S PHYSIOLOGY SKEwS TOWARD THE AQuATIC", + "page_24.png-顶部文本框有头像非战斗": "FROBABLY.", + "page_25.png-顶部文本框有头像非战斗": "What do you mean, Probably' ?", + "page_26.png-顶部文本框有头像非战斗": "WE HAD A MYRIAD OF SFECIMENS, FRISK", + "page_27.png-顶部文本框有头像非战斗": "5o IT'S POSSIBLE THAT A_ ROGUE TEMMIE JOINED THEIR", + "page_28.png-顶部文本框有头像非战斗": "SPECIAL Hug; THAT' $ what he' $ (Just smile and calling it? nod.", + "page_29.png-顶部文本框有头像非战斗": "ON THE BRIGHT SIDE LOOK AT HOw COzY THEY AREW", + "page_30.png-顶部文本框有头像非战斗": "IT's STILL HARD To BELIEVE AFTER ALL THESE YEARS", + "page_31.png-顶部文本框有头像非战斗": "Yeah, I bet. But I can' t take all the credit.", + "page_32.png-顶部文本框有头像非战斗": "Alphys saw straight through all the metal and oze", + "page_33.png-顶部文本框有头像非战斗": "If she hadn' t reached out to them, Who knows what would' ve happened?", + "page_34.png-顶部文本框有头像非战斗": "NYEH HEH HEH! DONT WORRY ABOUt WHAT COULD HAVE BEEN", + "page_35.png-顶部文本框有头像非战斗": "KEEF THIS UP AND THINK THERE'S HOFE FOR A HAFPY ENDING!", + "page_36.png-底部文本框有头像非战斗": "WE WANTED TO GIVE M5. DRAKE A FLOWER FROM HER HOMETOWN", + "page_37.png-底部文本框有头像非战斗": "BUt A5 HER MENTAL STATE DETERIORATED", + "page_38.png-底部文本框有头像非战斗": "IT WAS NO LONGER SAFE TO KEEF HER OUT HERE", + "page_39.png-底部文本框有头像非战斗": "I guess being fused to other monsters would do that.", + "page_40.png-底部文本框有头像非战斗": "ESFECIALLY WHEN IT'S SIXTEEN OTHER FEOFLE", + "page_41.png-底部文本框有头像非战斗": "BUt NOw'5 MY CHANCE TO FINALLY MAKE AMENDS", + "page_42.png-底部文本框有头像非战斗": "Just HOFE WE'RRE NOT TOO LATE", + "page_44.png-顶部文本框有头像非战斗": "(ALL RIGHT , FRISK WE NEED To MOVE VERY VERY SLOWLY", + "page_49.gif-战斗文本框无头像战斗": "It' $ even colder than before.", + "page_50.png-战斗文本框无头像战斗": "MECHAMALGAMATE # It' $ torn itself apart. Is anyone even there.", + "page_51.png-战斗文本框无头像战斗": "IT'S YORSE THAN THOUGHT.", + "page_52.png-战斗文本框无头像战斗": "CHECK COMFORT AFFROACH REFAIR", + "page_53.png-战斗文本框无头像战斗": "FRZN-173. 15 A MOTHER MELDED WITH THE MINDS OF SIXTEEN OTHERS", + "page_54.png-战斗文本框无头像战斗": "SHE'S LOST HERSELF IN THE HAZE", + "page_58.png-战斗文本框无头像战斗": "But nobody came", + "page_59.png-战斗文本框无头像战斗": "Check Joke Heckle Laugh", + "page_60.png-战斗文本框无头像战斗": "H-hey: It' $. ice to meet you.", + "page_62.png-战斗文本框无头像战斗": "YOu FOOR THING;", + "page_63.png-战斗文本框无头像战斗": "CHECK COMFORT AFFROACH REFAIR", + "page_64.png-战斗文本框无头像战斗": "FLACE A PLATE OF SFAGHETTI A SHORT DISTANCE AwAY", + "page_65.png-战斗文本框无头像战斗": "FRZN-173. 15 SHUDDERS VIOLENTLY, THEN LuNGES AT THE FLATE", + "page_66.png-战斗文本框无头像战斗": "DRAGGING IT AwAY", + "page_70.png-战斗文本框无头像战斗": "Check Joke Heckle Laugh", + "page_71.png-战斗文本框无头像战斗": "Frisk I don' t think she can hear you.", + "page_72.png-战斗文本框无头像战斗": "THERE MuSt BE SOME WAY To HELP You", + "page_73.png-战斗文本框无头像战斗": "CHECK COMFORT AFFROACH REFAIR", + "page_74.png-战斗文本框无头像战斗": "CAREFULLY AFROACH YHILE SHE'S Busy EATING", + "page_79.png-战斗文本框无头像战斗": "HOPE THIS WORKS", + "page_80.png-战斗文本框无头像战斗": "CHECK COMFORT AFFROACH REFAIR", + "page_81.png-战斗文本框无头像战斗": "REFAIR FRZN-175. 1'5 BROKEN EYE SHE TYITCHES WILDLY, But DOESN'T FIGHT BACK!", + "page_86.png-战斗文本框无头像战斗": "The Nechamalgamate' $ eyes dart around the room.", + "page_87.png-战斗文本框无头像战斗": "Maybe should. chill out. We aren' t here to hurt you you.", + "page_91.png-战斗文本框无头像战斗": "MEND THE MECHAMALGAMATE'S BROKEN JAY", + "page_92.png-战斗文本框无头像战斗": "ITS BEAK SNAFS A FEw TIMES, But IT THANKFULLY DOESNT BITE MEW!", + "page_95.png-战斗文本框无头像战斗": "The Nechamalgamate' $ breathing steadies.", + "page_96.png-战斗文本框无头像战斗": "Papyrus sure is a. cool dude, huh?", + "page_97.png-战斗文本框无头像战斗": "Her expression starts to shift.", + "page_98.png-战斗文本框无头像战斗": "ELL ALLOY IT.", + "page_99.png-战斗文本框无头像战斗": "CHECK COMFORT AFFROACH REFAIR DINNER GIFT", + "page_100.png-战斗文本框无头像战斗": "FRESENT A FRESH SALAD To BALANCE THE MAIN COURSEW", + "page_101.png-战斗文本框无头像战斗": "ITS SHOULDER EYES LIGHT UP _ THINK THAT'5 A GOOD SIGN?", + "page_104.png-战斗文本框无头像战斗": "Smell5 like snowfall-", + "page_105.png-战斗文本框无头像战斗": "Bet that salad Would go great with some mac and. freeze.", + "page_107.png-战斗文本框无头像战斗": "THINK IT'S GOING To BE OKAY", + "page_108.png-战斗文本框无头像战斗": "CHECK COMFORT AFFROACH REFAIR DINNER GIFT", + "page_109.png-战斗文本框无头像战斗": "FRESENT A FUzzLE OF SNOWDIN TOWN BATHED IN HOLOGRAFHIC STARLIGHT!", + "page_110.png-战斗文本框无头像战斗": "HER EYES LIGHT UP!!! AN EXCELLENT SIGN!", + "page_113.png-战斗文本框无头像战斗": "The Nechamalgamate stares at the puzzle box.", + "page_114.png-战斗文本框无头像战斗": "Heh. Guess there' $. snoW place like home_", + "page_116.png-战斗文本框无头像战斗": "KNOW WHAT To DO", + "page_117.png-战斗文本框无头像战斗": "CHECK COMFORT AFFROACH REFAIR DINNER GIFT", + "page_118.png-战斗文本框无头像战斗": "MISS DRAKE AND OTHER ASSORTED MONSTERS", + "page_119.png-战斗文本框无头像战斗": "THINK YOU'VE SPENT ENOUGH TIME LOCKED AwAY", + "page_120.png-战斗文本框无头像战斗": "ONCE YE FIND UNDYNE, ELL MAKE SURE YOURE RELEASED", + "page_121.png-战斗文本框无头像战斗": "IT'S HIGH TIME FOR A FAMILY REUNIONW!", + "page_123.png-战斗文本框无头像战斗": "YE WONW! YE EARNED oG AND DEXF", + "page_124.png-顶部文本框有头像非战斗": "You Weren' t just saying that, right?", + "page_125.png-顶部文本框有头像非战斗": "OF COURSE NOT!", + "page_126.png-顶部文本框有头像非战斗": "THINK BEING TRAFFED HERE CAUSED HER DEGRADATION", + "page_127.png-顶部文本框有头像非战斗": "AND UNDYNE WAS 50 FIXATED ON 'FIXING' THEM", + "page_128.png-顶部文本框有头像非战斗": "THAT SHE NEVER HELPED THEM ACCEFT THEIR NEY FORMS", + "page_129.png-顶部文本框有头像非战斗": "THOUGH SUFPOSE F'M NO BETTER", + "page_131.png-顶部文本框有头像非战斗": "Being stuck to someone else. it' $ gotta suck", + "page_132.png-顶部文本框有头像非战斗": "You gotta share a body: A mind. You never get any space to yourself.", + "page_133.png-顶部文本框有头像非战斗": "Frisk, this isn' t about-", + "page_134.png-顶部文本框有头像非战斗": "SUPFOSE YouD KNOw BETTER THAN ANYONE, GIVEN CHARA 5", + "page_135.png-顶部文本框有头像非战斗": "ERM FRESENT PLACE OF RESIDENCE", + "page_136.png-顶部文本框有头像非战斗": "It is What it is. Al1 considered, it could be much Worse_ things", + "page_137.png-底部文本框有头像非战斗": "WELL, ON THE FOSITIVE SIDE THAT'S THREE LURES DOWNI", + "page_138.png-底部文本框有头像非战斗": "SUPFOSE THAT Just LEAVES HER", + "page_139.png-底部文本框有头像非战斗": "Hoo Guessing We\" re in for a fun time. boy:", + "page_140.png-底部文本框有头像非战斗": "IF BY FUN You MEAN FOSSIBLE DISMEMBERMENT.", + "page_141.png-底部文本框有头像非战斗": "BUt 1 OF COURSE SHALL REMAIN YOUR HANDSOME SHIELDW", + "page_142.png-底部文本框有头像非战斗": "VIOLENCE 15 NOw ILLEGALW! 50 SAYETH THE GREAT FAFYRuS", + "page_143.png-底部文本框有头像非战斗": "Eh, wouldn' t be the first time s0me thing' $ tried to eviscerate me_", + "page_145.png-顶部文本框有头像非战斗": "GREAT NEWS, EvERYONE!", + "page_146.png-顶部文本框有头像非战斗": "WE'VE NOw OBTAINED THREE OUT OF FOUR MECHAMALGAM LURESW", + "page_147.png-顶部文本框有头像非战斗": "Ah, the classic brute force approach. How clevert", + "page_148.png-顶部文本框有头像非战斗": "CORRECT! AND NOw ONLY ONE FISHY, FEISTY FOE REMAINS", + "page_149.png-顶部文本框有头像非战斗": "Ah. Shyra:", + "page_150.png-顶部文本框有头像非战斗": "AND AAVERY , MOLDMUNGus PERHAF5 WOSHINGTON", + "page_151.png-顶部文本框有头像非战斗": "0-oh geez That' $ a lot clashing personalities_ of", + "page_152.png-顶部文本框有头像非战斗": "But AT LEAST WE KNOw HOw To AFPEAL TO EACH FERSONALITY!", + "page_153.png-顶部文本框有头像非战斗": "In that case, I have some thing that might help.", + "page_154.png-顶部文本框有头像非战斗": "OOH! WAS THAT FROM TODAY'5 PERFORMANCE?", + "page_155.png-顶部文本框有头像非战斗": "Hot off the presses my favorite fant for", + "page_156.png-顶部文本框有头像非战斗": "# I think seeing how far her sister' $ come would reassure the poor girl.", + "page_157.png-顶部文本框有头像非战斗": "Just remember to respect their boundaries_", + "page_158.png-顶部文本框有头像非战斗": "Hugs can' t fix everything:", + "page_159.png-顶部文本框有头像非战斗": "So keep a distance, blast some sick beats, and. flex?", + "page_160.png-顶部文本框有头像非战斗": "IN THEORY , YESI But WE SHOULD STILL REMAIN EvER YIGILANT!", + "page_161.png-顶部文本框有头像非战斗": "IT's A5 A wISE MAN ONCE SAID", + "page_162.png-顶部文本框有头像非战斗": "'You CAN NEVER BE TOO FREFAREDI FAPYRuS 111X How humble of you.", + "page_163.png-顶部文本框有头像非战斗": "Well_ good luck, you threet I know star material when I see it.", + "page_168.png-顶部文本框有头像非战斗": "Dang: Is THIS where she kept that mech?", + "page_169.png-顶部文本框有头像非战斗": "CORRECT! SHE EvEN INSTALLED A SPECIAL TRANSFORT SYSTEM", + "page_170.png-顶部文本框有头像非战斗": "WHICH WERE FRESENTLY STANDING ON:", + "page_171.png-顶部文本框有头像非战斗": "Huh. Guess that explains she it outta here. how got", + "page_172.png-顶部文本框有头像非战斗": "WELL, NEVERMIND THAT LOOK AT THIS POOR FOSTERW", + "page_173.png-顶部文本框有头像非战斗": "WON'T STAND FOR THIS METTATON DESERVES BETTERW!", + "page_174.png-顶部文本框有头像非战斗": "WON'T STAND FOR THIS METTATON DESERVES BETTERW!", + "page_179.gif-战斗文本框无头像战斗": "Smell5 like death", + "page_180.png-战斗文本框无头像战斗": "Hum Unhug Clean Flex # Flirt", + "page_181.png-战斗文本框无头像战斗": "Frisk are you seriously flirting with-", + "page_182.png-战斗文本框无头像战斗": "C mon. There might be other fish in the sea. Hey;", + "page_183.png-战斗文本框无头像战斗": "But none of em light up my heart like her", + "page_185.png-战斗文本框无头像战斗": "IT'S THE THOUGHT THAT COUNTS", + "page_186.png-战斗文本框无头像战斗": "BLUE ATTACK 06_ DARRIER D BARRAGE CONCOCTEREST", + "page_190.png-战斗文本框无头像战斗": "The Nechamalgamate roars wildly:", + "page_191.png-战斗文本框无头像战斗": "Hum Unhug Clean Flex Flirt", + "page_192.png-战斗文本框无头像战斗": "You give the Nechamalgamate some space. It twitches strangely:", + "page_193.png-战斗文本框无头像战斗": "OKAY THAT'5 BETTER!", + "page_194.png-战斗文本框无头像战斗": "ASSURE CHALLENGE DISTRACT Music", + "page_195.png-战斗文本框无头像战斗": "LOOK , F'M TRULY SORRY FOR NOT VISITING IN A WHILE!", + "page_196.png-战斗文本框无头像战斗": "But FROMISE THAT YHEN THIS 15 OVER", + "page_197.png-战斗文本框无头像战斗": "YOULL FINALLY BE FREE!", + "page_201.png-战斗文本框无头像战斗": "The Mechamalgamate swishes its tail. It' $ oddly threatening:", + "page_202.png-战斗文本框无头像战斗": "Hum Unhug Clean Flex Flirt", + "page_203.png-战斗文本框无头像战斗": "You start humming a little tune. The Nechamalgamate' $ eyes widen:", + "page_204.png-战斗文本框无头像战斗": "OKAY, WORDS WON'T WORK IN THAT CASE", + "page_205.png-战斗文本框无头像战斗": "ASSURE CHALLENGE DISTRACT Music", + "page_206.png-战斗文本框无头像战斗": "FLAY MTT'S NEY HIT SINGLE FOR ALL To HEARW", + "page_207.png-战斗文本框无头像战斗": "1-NGLsR FREEZES UP _ SEEMS F'VE GOT HER ATTENTIONW!", + "page_213.png-战斗文本框无头像战斗": "The Nechamalgamate tries not to sing along:", + "page_214.png-战斗文本框无头像战斗": "You continue humming: The Nechamalgamate' $ teeth chatter. ATK down!", + "page_215.png-战斗文本框无头像战斗": "CANT HELP But SHAKE MY GROOVE THING!", + "page_216.png-战斗文本框无头像战斗": "ASSURE CHALLENGE DISTRACT Music", + "page_217.png-战斗文本框无头像战斗": "CHALLENGE 1-NGLsR To A FLEXING CONTESTI", + "page_220.png-战斗文本框无头像战斗": "The other Hechamalgamates poke their heads inside. must have heard the music. They", + "page_221.png-战斗文本框无头像战斗": "You keep on humning: The Nechamalgamate starts singing a little louder_", + "page_222.png-战斗文本框无头像战斗": "NYEH HEH HEHw MuSic TRULY DOES SOOTHE THE SAVAGE BEAST", + "page_223.png-战斗文本框无头像战斗": "ASSURE CHALLENGE DISTRACT Music", + "page_224.png-战斗文本框无头像战斗": "YOUR SISTER'S MADE A WONDERFUL CAREER FOR HERSELF", + "page_225.png-战斗文本框无头像战斗": "But THINK ITD MEAN THE WORLD To HER, IF You WERE FART OF IT", + "page_226.png-战斗文本框无头像战斗": "AND IF YE CLEANED You UP YouD BE A GENUINE SHOWSTOFFER!", + "page_229.png-战斗文本框无头像战斗": "The Nechamalgamate seems calmer now", + "page_230.png-战斗文本框无头像战斗": "Hum Unhug # Clean Flex # Flirt", + "page_231.png-战斗文本框无头像战斗": "You carefully approach the Mechamalgamate and Wipe away the gunk_", + "page_232.png-战斗文本框无头像战斗": "She smiles, finally content_", + "page_233.png-战斗文本框无头像战斗": "YELL, THAT YENT BETTER THAN EXFECTED!", + "page_234.png-战斗文本框无头像战斗": "YE WONW! YE EARNED oG AND EXF .", + "page_235.png-顶部文本框有头像非战斗": "HMM SHE DIDNT DROP A LURE", + "page_236.png-顶部文本框有头像非战斗": "PERHAFS IT'S FURTHER AHEAD", + "page_237.png-顶部文本框有头像非战斗": "How much further can We 9o anyway?", + "page_238.png-顶部文本框有头像非战斗": "OH, YERE ALMOST TO THE END!", + "page_239.png-顶部文本框有头像非战斗": "ALL THAT'S LEFT ARE SOME WALKWAYS, AND", + "page_240.png-顶部文本框有头像非战斗": "THE SECURITY ROOM", + "page_241.png-顶部文本框有头像非战斗": "Wel1 at least that narrows our options.", + "page_246.png-底部文本框有头像非战斗": "IN MY DEFENSE; THE FLOYER DID YAKEE UP EVENTUALLY!", + "page_247.png-底部文本框有头像非战斗": "WHO KNOWS? PERHAPS MY READING ENHANCED HIS INTELLECTW!", + "page_250.png-底部文本框有头像非战斗": "IF ONLY SHE HADNT NEEDED IT FOR HERSELF .", + "page_251.png-底部文本框有头像非战斗": "We' re almost in the clear for better or Worse_", + "page_252.png-底部文本框有头像非战斗": "stay determined, Frisk Ho matter what awaits uS." +} \ No newline at end of file diff --git a/text2/Ch59/OCR1.json b/text2/Ch59/OCR1.json new file mode 100644 index 00000000..c37a29fd --- /dev/null +++ b/text2/Ch59/OCR1.json @@ -0,0 +1,284 @@ +{ + "page_2.png-顶部文本框有头像非战斗": "SIGH MAYBE WE SHOULD ADD A BABY GATE", + "page_3.png-顶部文本框有头像非战斗": "FLL HAVE To GIVE UNDYNE A STERN TALKING To LATER!", + "page_4.png-顶部文本框有头像非战斗": "look on the bright side. We found our last lure. Hey,", + "page_5.png-顶部文本框有头像非战斗": "TRUEI! But PERHAFS SHOULD HANDLE THIS ONE", + "page_6.png-顶部文本框有头像非战斗": "AFTER ALL, BROKEN GLASS CANT DO MUCH TO SOLID BONE!", + "page_7.png-顶部文本框有头像非战斗": "Papyrus took the plunge and freed the lure from the off-brand slime tube_", + "page_8.png-顶部文本框有头像非战斗": "# A tube full of sparkling liquid: It must be De termination.", + "page_9.png-顶部文本框有头像非战斗": "Sheesh, how much of this stuff does she even HAVE down here?", + "page_10.png-顶部文本框有头像非战斗": "TOO MUCH, But SHE INSISTED ON STOCKPILING IT", + "page_11.png-顶部文本框有头像非战斗": "EvEN AFTER IT DESTROYED HER BODY, SHE COULDNT LET G0", + "page_12.png-顶部文本框有头像非战斗": "F'M NOT SURE WHY UNDYNE KEPT THESE ROBoTs IN TUBES:", + "page_13.png-顶部文本框有头像非战斗": "But THEY CERTAINLY ADD SOME EXQUISITE FLAIRW!", + "page_14.png-顶部文本框有头像非战斗": "Regrettably, it is not a robot hedgehog:", + "page_15.png-顶部文本框有头像非战斗": "Apparently, copyright laws CAN stop her", + "page_17.png-底部文本框有头像非战斗": "Wel1, wel1t # Seems my intuition off. paid", + "page_18.png-底部文本框有头像非战斗": "Good job, two The Mechamalgamates look S0 HAPPY now you", + "page_19.png-底部文本框有头像非战斗": "NYEH HEH HEH! TODAY TRULY 15 A MOMENTOuS DAYW", + "page_20.png-底部文本框有头像非战斗": "MECHAMALGAMS RECOVERED FAMILY REUNIONS LOOMING!", + "page_21.png-底部文本框有头像非战斗": "AND YE UNEARTHED THE FINAL LURE FOR GOOD MEA SURE!", + "page_22.png-底部文本框有头像非战斗": "S0, what' $ with the computer? Is it some kinda control terminal?", + "page_23.png-底部文本框有头像非战斗": "SOMETHING LIKE THAT", + "page_24.png-底部文本框有头像非战斗": "NORMALLY F'D ADVISE AGAINST USING IT", + "page_25.png-底部文本框有头像非战斗": "BUt SINCE YOU'VE BEEN SUCH GREAT HELF , WHAT THE HECK ?", + "page_26.png-底部文本框有头像非战斗": "THESE ARCHIVES ARE YOURS TO EXFLORE, MY FRIENDS!", + "page_27.png-底部文本框有头像非战斗": "THESE ARCHIVES ARE YOURS TO EXFLORE, MY FRIENDS!", + "page_28.png-底部文本框有头像非战斗": "Hl1 these years of suffering; and I had no idea.", + "page_29.png-底部文本框有头像非战斗": "I-it' $ one thing to read those reports, but SEEING it.", + "page_30.png-底部文本框有头像非战斗": "Knowing how hard you tried even if it cost Undyne her body:", + "page_31.png-底部文本框有头像非战斗": "M-maybe We Were always meant to come down here.", + "page_32.png-底部文本框有头像非战斗": "Yeah. I doubt Undyne Would' ve opened up to uS about this.", + "page_33.png-底部文本框有头像非战斗": "Mo. She Was always too proud: Too stubborn to let anyone in.", + "page_34.png-底部文本框有头像非战斗": "Still, I could have shown her more compassion:", + "page_35.png-底部文本框有头像非战斗": "I know wishful thinking Won' t turn back time. I' m not like Frisk", + "page_36.png-底部文本框有头像非战斗": "A-and I don' t know if I' d WAHT that kind of power", + "page_37.png-底部文本框有头像非战斗": "I think the best We can do is acknowledge our mistakes.", + "page_38.png-底部文本框有头像非战斗": "And ensure that history doesn' t repeat itself.", + "page_39.png-底部文本框有头像非战斗": "It might not be but the payoff Will be Sweeter for itt easy,", + "page_40.png-底部文本框有头像非战斗": "INDEED! AND 'M GLAD You FURSUED ME IN THE END", + "page_41.png-底部文本框有头像非战斗": "HONESTLY, F'M NOT SURE COULD HAVE MANAGED IT ALONE", + "page_42.png-底部文本框有头像非战斗": "AH, THE JoYs OF AN OUTSIDER'5 PERSPECTIVE!", + "page_43.png-底部文本框有头像非战斗": "And that' $ Why you don' t pull the loner card, nerd. you", + "page_44.png-底部文本框有头像非战斗": "It never suited YoU, anyway:", + "page_45.png-底部文本框有头像非战斗": "NYEHE YELL, ENOUGH MuSING!", + "page_46.png-底部文本框有头像非战斗": "WE SILL HAVE To SAVE UNDYNE; AF TER ALL", + "page_48.png-顶部文本框有头像非战斗": "TA-DAH! THE HOOKS HAVE ARRIVED!", + "page_49.png-顶部文本框有头像非战斗": "NOw YE Just HAVE TO AFFLY THE LuRES, AND", + "page_51.png-顶部文本框无头像非战斗": "LURES CALIBRATING. SEEKING TARGET MECHAMALGAMATES!", + "page_53.png-底部文本框有头像非战斗": "Come on. Come on! Come FREAKING ONAA!", + "page_54.png-底部文本框有头像非战斗": "There has to be SOME Way to bust this door", + "page_55.png-底部文本框有头像非战斗": "Down.", + "page_57.png-底部文本框有头像非战斗": "Wait, Weren' t those the", + "page_60.png-底部文本框有头像非战斗": "SHIT.", + "page_64.png-底部文本框有头像非战斗": "BACK OFFt", + "page_65.png-底部文本框有头像非战斗": "Do you know how CLOSE came to FLATTENING my flawless face?t you", + "page_66.png-底部文本框有头像非战斗": "I just Got this body, and I' d LIKE to keep it in top formt", + "page_69.png-底部文本框有头像非战斗": "Wait, it' $ OPEH?!", + "page_70.png-底部文本框有头像非战斗": "Well_ We 11t Forget everything I said.", + "page_71.png-底部文本框有头像非战斗": "I' ve a scientist to savet got", + "page_74.png-顶部文本框有头像非战斗": "Heh. We11, whaddaya know?", + "page_75.png-底部文本框有头像非战斗": "Guess all that protein\" off. paid", + "page_76.png-底部文本框有头像非战斗": "1 ER , HOFE SHE WASNT TOO INTIMIDATING", + "page_77.png-底部文本框有头像非战斗": "SHE REALLY OUGHT To CHILL OUT. AND DRINK SOME TEA!", + "page_78.png-底部文本框有头像非战斗": "A-as long as it' $ not the caffeinated kind.", + "page_79.png-底部文本框有头像非战斗": "Haha. Well, at least We re in the cleart", + "page_80.png-顶部文本框有头像非战斗": "Thank 4ou, darlings! You' re the true heroes of this episode_", + "page_83.png-底部文本框有头像非战斗": "This elevator' $ seen better days.", + "page_84.png-底部文本框有头像非战斗": "Best not to dwell on it. # We' re here for Undyne, after all", + "page_88.png-底部文本框有头像非战斗": "T-that poor Mew New ter pos", + "page_89.png-底部文本框有头像非战斗": "Just look Alphys. # It' 11 be easier that away; way:", + "page_95.png-底部文本框有头像非战斗": "Undyne, please? NOBODY wants you to disappear like this.", + "page_96.png-底部文本框有头像非战斗": "Don' t you know how much you mean to everyone?!", + "page_97.png-底部文本框无头像非战斗": "Please_ made their choice. They", + "page_98.png-底部文本框无头像非战斗": "The one thing keeping me going: and in the end, it meant nothing:", + "page_99.png-底部文本框有头像非战斗": "T-that' $ not truet", + "page_100.png-底部文本框有头像非战斗": "Alphys.", + "page_101.png-底部文本框有头像非战斗": "W-We know you Were just trying to free everyone.", + "page_102.png-底部文本框有头像非战斗": "It' $ just.", + "page_103.png-底部文本框有头像非战斗": "You' d rather rot down here and let the kid live.", + "page_104.png-底部文本框有头像非战斗": "IT'S NOT ABOUT ROTTING, UNDYNEW!", + "page_105.png-底部文本框有头像非战斗": "WE Just DON'T WANT FRISK TO DIE", + "page_106.png-底部文本框有头像非战斗": "AND You SHOULDN'T CARRY THE BURDEN OF KILLING SOMEONE", + "page_108.png-底部文本框有头像非战斗": "Once kill someone there' $ no turning back You", + "page_109.png-底部文本框有头像非战斗": "I Was ready to make the same choice that you did.", + "page_110.png-底部文本框有头像非战斗": "But I couldn' t follow through.", + "page_111.png-底部文本框有头像非战斗": "Plenty of monsters tried, Undyne ! This isn' t just on You!", + "page_113.png-底部文本框有头像非战斗": "Undyne, I-", + "page_114.png-底部文本框有头像非战斗": "Get out.", + "page_115.png-底部文本框有头像非战斗": "How; hold on! If you' d let me finish-", + "page_116.png-底部文本框有头像非战斗": "Get.", + "page_117.png-底部文本框有头像非战斗": "outtmt", + "page_118.png-底部文本框有头像非战斗": "You had fun. You made your point. your", + "page_119.png-底部文本框有头像非战斗": "S0 just LEAVE.", + "page_120.png-底部文本框有头像非战斗": "ME", + "page_121.png-底部文本框有头像非战斗": "ALONEt#!", + "page_123.png-底部文本框有头像非战斗": "I' m sorry:", + "page_124.png-底部文本框有头像非战斗": "W-what 2", + "page_125.png-底部文本框有头像非战斗": "I don' t regret intervening on Frisk' $ behalf.", + "page_126.png-底部文本框有头像非战斗": "But I realize now that I took it too far", + "page_127.png-底部文本框有头像非战斗": "You endured s0 much.", + "page_128.png-底部文本框有头像非战斗": "And I cast that all aside when I broadcast you to the Underground.", + "page_129.png-底部文本框有头像非战斗": "Hmph: S0 What? Damage is done.", + "page_130.png-底部文本框有头像非战斗": "They' ve all seen What I' ve become.", + "page_131.png-底部文本框有头像非战斗": "A corpse held together by some Wires and metal plates.", + "page_132.png-底部文本框有头像非战斗": "I should' ve died a long time ago.", + "page_133.png-底部文本框有头像非战斗": "The only reason I' m still kicking is because I refused to let g0.", + "page_134.png-底部文本框有头像非战斗": "I made a promise_ # S0, I put myself back together", + "page_135.png-底部文本框有头像非战斗": "I pushed myself to keep trying; no matter What it took_", + "page_136.png-底部文本框有头像非战斗": "Or Who I hurt on the Way:", + "page_137.png-底部文本框有头像非战斗": "And I' m not stupid. # I KHOW I' ve hurt everyone here.", + "page_138.png-底部文本框有头像非战斗": "You put me on a stupid pedestal, and I used you to vent my frustrations.", + "page_139.png-底部文本框有头像非战斗": "Physically AHD verbally:", + "page_140.png-底部文本框有头像非战斗": "What kinda sick relationship is ThAT?", + "page_141.png-底部文本框有头像非战斗": "But I Was happy to listent I LIKED when you hurled spears at me #", + "page_142.png-底部文本框有头像非战斗": "Every battle Was an adrenaline-pumping dream come TRUEt", + "page_143.png-底部文本框有头像非战斗": "Yeah, well, I' m still not all I' m cracked up to be.", + "page_144.png-底部文本框有头像非战斗": "And I know You never Wanted to be a human killer.", + "page_145.png-底部文本框有头像非战斗": "But you still wound up in an act HATED. you", + "page_146.png-底部文本框有头像非战斗": "And WORSE. I pushed you into itt", + "page_147.png-底部文本框有头像非战斗": "You did, and I' m not happy about it.", + "page_148.png-底部文本框有头像非战斗": "I spent three years silenced thanks to recklessness. your", + "page_149.png-底部文本框有头像非战斗": "I suppressed my true self and pandered to the masses.", + "page_150.png-底部文本框有头像非战斗": "And I made a mockery of you in turn.", + "page_151.png-底部文本框有头像非战斗": "We never TALKED about any of this.", + "page_152.png-底部文本框有头像非战斗": "At best We made passive-aggressive jabs at each other", + "page_153.png-底部文本框有头像非战斗": "Yeah. We Worked together about as we11 as 0il and Water", + "page_154.png-底部文本框有头像非战斗": "And Alphys. I know why you didn' t show up to the trial.", + "page_155.png-底部文本框有头像非战斗": "And why didn' t answer my calls. Or my texts. you", + "page_156.png-底部文本框有头像非战斗": "I_ scared didn' t I? You,", + "page_157.png-底部文本框有头像非战斗": "W-Wel1 maybe a little but.", + "page_158.png-底部文本框有头像非战斗": "Heh. Figures. You deserve better than me_", + "page_159.png-底部文本框有头像非战斗": "UNDYNE_", + "page_160.png-底部文本框有头像非战斗": "I why you didn' t trust me. get", + "page_161.png-底部文本框有头像非战斗": "I kept making shitty excuses to justify actions. your", + "page_162.png-底部文本框有头像非战斗": "But just Wanted to protect someone you cared about. you", + "page_163.png-底部文本框有头像非战斗": "And I dragged you into this mess when you Were FIFTEEH.", + "page_164.png-底部文本框有头像非战斗": "S0, It' $ fine_ You don' t have to worry about it, Papyrus. yeah.", + "page_165.png-底部文本框有头像非战斗": "Just forget about Mme", + "page_166.png-底部文本框有头像非战斗": "Are SERIOUS? you", + "page_167.png-底部文本框有头像非战斗": "what' re you complaining about? Hey;", + "page_168.png-底部文本框有头像非战斗": "You Won. You to Walk from this. get away", + "page_169.png-底部文本框有头像非战斗": "And, What? You crawl into a corner and die?", + "page_170.png-底部文本框有头像非战斗": "You to the accoun tability while everyone ELSE suffers? skip ge t", + "page_171.png-底部文本框有头像非战斗": "Even if YOU don' t live to see tomorrow, THEY Willt", + "page_172.png-底部文本框有头像非战斗": "And they' 11 spend every day wishing they could' ve done more", + "page_173.png-底部文本框有头像非战斗": "Hgh: That' $ not-", + "page_174.png-底部文本框有头像非战斗": "Frisk, I get What re saying: You'", + "page_175.png-底部文本框有头像非战斗": "But shouldn' t all the blame on her put you", + "page_176.png-底部文本框有头像非战斗": "Even if I Was scared I still should have said sonething:", + "page_177.png-底部文本框有头像非战斗": "I even said I would, but instead I just curled up and cried:", + "page_178.png-底部文本框有头像非战斗": "Don' t", + "page_179.png-底部文本框有头像非战斗": "AND SHOULD HAVE TOLD YOu ABOUT OUR PLANS:", + "page_180.png-底部文本框有头像非战斗": "AND WOULD HAVE IN A HEARTBEAT , IF FLOWEY", + "page_181.png-底部文本框有头像非战斗": "You don' t have to sugarcoat it.", + "page_182.png-底部文本框有头像非战斗": "BUt F'M NOT SuGARCOATING ANYTHING!", + "page_185.png-底部文本框有头像非战斗": "UNDYNE YE'VE KNOWN EACH OTHER SINCE YE WERE KIDS", + "page_186.png-底部文本框有头像非战斗": "WE EMBARKED ON THIS SCIENTIFIC JOURNEY TOGETHER", + "page_187.png-底部文本框有头像非战斗": "50_ SHOULD HAVE TOLD You MY FROJECT SUCCEEDED", + "page_188.png-底部文本框有头像非战斗": "But REST ASSuRED, FLL ALWAYS TRUST You, UNDYNE_", + "page_189.png-底部文本框有头像非战斗": "MAY NOT ALWAYS AGREE WITH YOUR CHOICES", + "page_190.png-底部文本框有头像非战斗": "BUt IT'S ALL RIGHT . EvEN IF You DIDNT KEEF YOUR FROMISE", + "page_191.png-底部文本框有头像非战斗": "YOUR RESEARCH FAVED THE WAY To THE BARRIER'5 END!", + "page_192.png-底部文本框有头像非战斗": "You already saw the queen, right?", + "page_193.png-底部文本框有头像非战斗": "CORRECT! AND SHE EVEN GRANTED u5 THE HUMAN SouL", + "page_194.png-底部文本框有头像非战斗": "NOY YE Just NEED TO GATHER EVERYONE AT THE BARRIER", + "page_195.png-底部文本框有头像非战斗": "AND SHATTER IT YITH OUR COMBINED WILL FOWER!", + "page_196.png-底部文本框有头像非战斗": "Heh. How, there' $ a thought.", + "page_197.png-底部文本框有头像非战斗": "And that means EVERYOHE. Including you.", + "page_198.png-底部文本框有头像非战斗": "Or are gonna keep hiding over a few old mistakes? You", + "page_199.png-底部文本框有头像非战斗": "Why would they even Wanna see me?", + "page_200.png-底部文本框有头像非战斗": "Because We still care about You, Undyne_", + "page_201.png-底部文本框有头像非战斗": "I Won' t lie and say that everything is between uS. okay", + "page_202.png-底部文本框有头像非战斗": "But no thing' $ gonna better unless We to Work through it. get try", + "page_203.png-底部文本框有头像非战斗": "Where do I even start, though? It' $ not just you I gotta answer to.", + "page_204.png-顶部文本框有头像非战斗": "And yeah: I know you' re down there_", + "page_205.png-底部文本框有头像非战斗": "Out of everyone you and families are at the top of the list. your", + "page_206.png-底部文本框有头像非战斗": "Yeah. And can' t undo mistakes. You your", + "page_207.png-底部文本框有头像非战斗": "But you CAN live with em, and you can do better", + "page_208.png-底部文本框有头像非战斗": "The people hurt deserre that. And you too. you do,", + "page_209.png-底部文本框有头像非战斗": "Someone else ought to keep that in mind.", + "page_210.png-底部文本框有头像非战斗": "I can hear You, you know", + "page_211.png-底部文本框有头像非战斗": "Would this be a time to use my SPECIAL ATTACK? good", + "page_212.png-底部文本框有头像非战斗": "Do What you want, I guess. I already know about Chara.", + "page_213.png-底部文本框有头像非战斗": "Man. if I ruined anyone= 5 life it' $ gotta be yours.", + "page_214.png-底部文本框有头像非战斗": "Afterlife, technically, and the verdict' $ still out on that one", + "page_215.png-底部文本框有头像非战斗": "But this isn' t about Mme Worry about them.", + "page_216.png-底部文本框有头像非战斗": "UNDYNE IT'S ALL RIGHT_ WE ALREADY FLAN TO FREE THEM", + "page_219.png-底部文本框有头像非战斗": "You fixed em, didn' t you?", + "page_220.png-底部文本框有头像非战斗": "WELL, WE DID YHAT WE COULD", + "page_221.png-底部文本框有头像非战斗": "TURNS OUT THEIR BODIES WERENT THE FROBLEM!", + "page_222.png-底部文本框有头像非战斗": "WE Just HAD TO HELF THEM REMEMBER WHO THEY YERE!", + "page_223.png-底部文本框有头像非战斗": "Heh. and to think I missed out on all that_", + "page_224.png-底部文本框有头像非战斗": "and there'5 0 whole lot More You'Il be missin' if You throw in the towel.", + "page_225.png-底部文本框有头像非战斗": "Sans?1", + "page_226.png-底部文本框有头像非战斗": "Yup. sow Post and figured it was time for 0 little chat. Your", + "page_227.png-底部文本框有头像非战斗": "but it sounds like missed all the fun.", + "page_228.png-底部文本框有头像非战斗": "Hey! HEY? Hey:", + "page_229.png-底部文本框有头像非战斗": "You' ve NO BUSIHESS down heret got", + "page_230.png-底部文本框有头像非战斗": "Let me handle this.", + "page_231.png-底部文本框有头像非战斗": "S0, you here to gloat?", + "page_232.png-底部文本框有头像非战斗": "naw aren'+ the only ones who messed uP. they", + "page_233.png-底部文本框有头像非战斗": "just look at Me_ Was mentor_ and instead of supporting Your You.", + "page_234.png-底部文本框有头像非战斗": "just shamed ya.", + "page_235.png-底部文本框有头像非战斗": "i was too focused on the bad never considering what You did right.", + "page_236.png-底部文本框有头像非战斗": "funny, huh?", + "page_237.png-底部文本框有头像非战斗": "hate to admit it but Part of Me was probably pro jecting:", + "page_239.png-底部文本框有头像非战斗": "50. i'm sorry.", + "page_240.png-底部文本框有头像非战斗": "i know words won'+ erase trauma_ and i won'+ ask for forgiveness. Your", + "page_241.png-底部文本框有头像非战斗": "but. maybe now_ We can start patching up those burnt bridges.", + "page_242.png-底部文本框有头像非战斗": "Oh.", + "page_243.png-底部文本框有头像非战斗": "that's about what i expected: Yeah.", + "page_244.png-底部文本框有头像非战斗": "eh_ don'+ Worry 'bout it_ i'l give You some space.", + "page_246.png-底部文本框有头像非战斗": "Waitt", + "page_247.png-底部文本框有头像非战斗": "Yeah?", + "page_248.png-底部文本框有头像非战斗": "Look, I' m not over it. You Were still tearing into me YESTERDAY.", + "page_249.png-底部文本框有头像非战斗": "But. thanks. I' m glad at least TALKED to me about this. you", + "page_250.png-底部文本框有头像非战斗": "Maybe some time We can talk some more.", + "page_251.png-底部文本框有头像非战斗": "# I' ve missed hanging out with you.", + "page_252.png-底部文本框有头像非战斗": "heh. think can it in. Yeah, pencil", + "page_254.png-底部文本框有头像非战斗": "Frisk, right?", + "page_255.png-底部文本框有头像非战斗": "Yeah?", + "page_256.png-底部文本框有头像非战斗": "I know an apology Won' t even BEGIH to make up for what I did to You.", + "page_257.png-底部文本框有头像非战斗": "I put you through HELL. Killed you s0 many times.", + "page_258.png-底部文本框有头像非战斗": "I knew what I Was doing; but I kept pretending I didn' t care", + "page_259.png-底部文本框有头像非战斗": "But that doesn' t excuse anything: S0, I Won' t ask you to forgive me_", + "page_260.png-底部文本框有头像非战斗": "And I Won' t ask you to be my friend.", + "page_261.png-底部文本框有头像非战斗": "But I just Wanna say: thanks for being there for Papyrus.", + "page_262.png-底部文本框有头像非战斗": "Honestly; you' re twice the friend I've been.", + "page_263.png-底部文本框有头像非战斗": "Well. it' $ not like I haven' t had my share of screw upS.", + "page_264.png-底部文本框有头像非战斗": "Maybe I' ve been good to Papyrus. I' d like to think I' ve grown.", + "page_265.png-底部文本框有头像非战斗": "But there' $ someone I HEVER got to patch things up with.", + "page_266.png-底部文本框有头像非战斗": "At least 4ou' ve still the chance to make things better. got", + "page_267.png-底部文本框有头像非战斗": "Qh yeah? And who says you can' t?", + "page_268.png-底部文本框有头像非战斗": "You ARE gonna break the barrier, right?", + "page_269.png-底部文本框有头像非战斗": "Yeah. Even if Asriel' $ doing the hard Work.", + "page_270.png-底部文本框有头像非战斗": "Hs", + "page_271.png-底部文本框有头像非战斗": "It makes sense to me # That flower DID grow from Asriel' $ dust.", + "page_272.png-底部文本框有头像非战斗": "If Chara' $ back, why hOt Asriel?", + "page_273.png-底部文本框有头像非战斗": "It' $ just like one of little fanfictions, Alphys~ your", + "page_274.png-底部文本框有头像非战斗": "H-hey How did you", + "page_275.png-底部文本框有头像非战斗": "SOMEONE has to make sure Undyne' $ hanging with the right Crowdt", + "page_276.png-底部文本框有头像非战斗": "It' $ nothing to do with that life-sized Mew Mew cutout, okay?! got", + "page_277.png-底部文本框有头像非战斗": "Wel1, when You it THAT Way: put", + "page_278.png-底部文本框有头像非战斗": "S0t I take it that' $ a wrap?", + "page_279.png-底部文本框有头像非战斗": "More like an intermission.", + "page_280.png-底部文本框有头像非战斗": "# I don' t think I' 11 be for a while, but okay", + "page_281.png-底部文本框有头像非战斗": "You know, maybe I' ve some thing to live for after all got", + "page_282.png-底部文本框有头像非战斗": "But forget about me # Hot for ThT reason, though.", + "page_283.png-底部文本框有头像非战斗": "I mean, ve gotta let people know about the barrier, right? you'", + "page_284.png-底部文本框有头像非战斗": "How bout use star power for some thing good for once? you your", + "page_285.png-底部文本框有头像非战斗": "That' $ the plan? # But What about You, 0 humble creator?", + "page_286.png-底部文本框有头像非战斗": "I' 11_ catch up later", + "page_287.png-底部文本框有头像非战斗": "But first, I think I need to make good on some overdue promises.", + "page_288.png-底部文本框有头像非战斗": "I-if it' $ all right, I' d like to help.", + "page_289.png-底部文本框有头像非战斗": "It' d be nice to spend time together without worrying about humans.", + "page_290.png-底部文本框有头像非战斗": "I' 11 give you some space, then.", + "page_291.png-底部文本框有头像非战斗": "How; hang on! It' $ not every day to meet a REAL kissy cutie get you", + "page_292.png-底部文本框有头像非战斗": "2421212+2424242121", + "page_293.png-底部文本框有头像非战斗": "Fuhuhu. Hice one Alphys !", + "page_294.png-底部文本框有头像非战斗": "FIHEI I' 11 be your chaperone. Okay,", + "page_295.png-底部文本框有头像非战斗": "SOMEONE has to those. Mecha-whatsits in line, anyway: keep", + "page_296.png-底部文本框有头像非战斗": "Heh. I think that' $ our cue to get going:", + "page_297.png-底部文本框有头像非战斗": "AGREED", + "page_298.png-底部文本框有头像非战斗": "BUt HAVE A GOOD (AUDIBLE YINK ) TIME", + "page_299.png-底部文本框有头像非战斗": "DONT HOLD BACK FOR OUR SAKESW", + "page_300.png-顶部文本框有头像非战斗": "PAPYRUS! (Hey: I' m not complaining_", + "page_306.png-顶部文本框有头像非战斗": "AHA! THOUGHT FD FIND You IN HERE", + "page_307.png-顶部文本框有头像非战斗": "oh heya. what're You guys still doin down here?", + "page_308.png-顶部文本框有头像非战斗": "We could ask you the same thing:", + "page_309.png-顶部文本框有头像非战斗": "eh_ forget about it. just was feelin' 0 little nostalgic.", + "page_310.png-顶部文本框有头像非战斗": "You DON'T SAY", + "page_311.png-顶部文本框有头像非战斗": "Yup_ but this old lab's a bit too stuffy for mY tastes. gettin'", + "page_312.png-顶部文本框有头像非战斗": "think i'l go clear my head.", + "page_314.png-顶部文本框有头像非战斗": "SANS", + "page_315.png-顶部文本框有头像非战斗": "I know it' $ none of my business, but Hey:", + "page_316.png-顶部文本框有头像非战斗": "You sure you Wanna head straight for Flowey?", + "page_317.png-顶部文本框有头像非战斗": "But HAVENT WE KEPT HIM WAITING LONG ENOUGH?", + "page_318.png-顶部文本框有头像非战斗": "Wel1 yeah, but We' re about to break the barrier_", + "page_319.png-顶部文本框有头像非战斗": "Don' t you think it' d be good to clear the air before it' $ too late?", + "page_320.png-顶部文本框有头像非战斗": "Once everyone' $ on the surface, it' 11 be a clean slate", + "page_321.png-顶部文本框有头像非战斗": "YOURE RIGHT. AND BESIDES:", + "page_322.png-顶部文本框有头像非战斗": "HAVE A_ SNEAKING SuSPICION ON WHERE TO FIND HIM", + "page_323.png-顶部文本框有头像非战斗": "Wel1 lead the way, I guess." +} \ No newline at end of file diff --git a/text2/ChBonus1/OCR1.json b/text2/ChBonus1/OCR1.json new file mode 100644 index 00000000..2a859e48 --- /dev/null +++ b/text2/ChBonus1/OCR1.json @@ -0,0 +1,37 @@ +{ + "page_1.png-底部文本框有头像非战斗": "ring:", + "page_2.png-底部文本框有头像非战斗": "heya.", + "page_3.png-底部文本框有头像非战斗": "What do you Want, Sans?", + "page_4.png-底部文本框有头像非战斗": "oh, nothin'. just thought i'd check in.", + "page_5.png-底部文本框有头像非战斗": "Or maybe re just trying to slack off again: you'", + "page_6.png-底部文本框有头像非战斗": "Me 0 slacker? now You've got the wrong skeleton.", + "page_7.png-底部文本框有头像非战斗": "though, uh, gotta admit. i didn't expect You to up the ante on that gauntlet.", + "page_8.png-底部文本框有头像非战斗": "Fuhuhu. It Was awesome, Wasn' t it?", + "page_9.png-底部文本框有头像非战斗": "Extra spears! Jets of firett", + "page_10.png-底部文本框有头像非战斗": "A cannon to skewer any punk who DARES to challenge our freedomt", + "page_11.png-底部文本框有头像非战斗": "But you had to g0 and RUIM it.", + "page_12.png-底部文本框有头像非战斗": "welp. the secret's out guess", + "page_13.png-底部文本框有头像非战斗": "Who do you take me for?", + "page_14.png-底部文本框有头像非战斗": "I may have a lot on my plate, but I ALWAYS keep an eye on my traps.", + "page_15.png-底部文本框有头像非战斗": "S0 why' d you do it?", + "page_16.png-底部文本框有头像非战斗": "better question is, why'd You do it?", + "page_17.png-底部文本框有头像非战斗": "in case You forgot, snowdin'$ under my jurisdiction.", + "page_18.png-底部文本框有头像非战斗": "Desperate times call for desperate measures.", + "page_19.png-底部文本框有头像非战斗": "If a human' $ in Snowdin; that means there' $ a human close to Papyrus.", + "page_20.png-底部文本框有头像非战斗": "And I' m not dumb, Sans. # I know SOMEONE' $ been covering my cameras.", + "page_21.png-底部文本框有头像非战斗": "then maybe You oughta look at this through & different lens_", + "page_23.png-底部文本框有头像非战斗": "fact is_ the kid hasn'+ hurt 0 fly", + "page_24.png-底部文本框有头像非战斗": "and haven'+ seen pap this hapPY in long time.-", + "page_25.png-底部文本框有头像非战斗": "Hgah. Don' t you GET it?", + "page_26.png-底部文本框有头像非战斗": "That saccharine schtick might just be a clever ploy:", + "page_27.png-底部文本框有头像非战斗": "and if it's not?", + "page_28.png-底部文本框有头像非战斗": "It doesn' t matter", + "page_29.png-底部文本框有头像非战斗": "We' re THIS close to our freedomt", + "page_30.png-底部文本框有头像非战斗": "Everyone' $ hopes and dreans are riding on that last soult", + "page_31.png-底部文本框有头像非战斗": "I thought a royal guard like you Would GET it.", + "page_32.png-底部文本框有头像非战斗": "i sea what You Mean.", + "page_34.png-底部文本框有头像非战斗": "but i'm guard, not 0 mercenary.", + "page_35.png-底部文本框有头像非战斗": "and if mY bro'$ made a new friend well:_ i'm not take that away. gonna", + "page_36.png-底部文本框有头像非战斗": "A r e 4 0 W ?", + "page_38.png-底部文本框无头像非战斗": "Click_" +} \ No newline at end of file diff --git a/text2/ChBonus2/OCR1.json b/text2/ChBonus2/OCR1.json new file mode 100644 index 00000000..053ec515 --- /dev/null +++ b/text2/ChBonus2/OCR1.json @@ -0,0 +1,69 @@ +{ + "page_1.png-底部文本框有头像非战斗": "ring:", + "page_2.png-底部文本框有头像非战斗": "state your business.", + "page_3.png-底部文本框有头像非战斗": "0H, PLEASE, ALPHYS_ You CAN CUT THE AcT", + "page_4.png-底部文本框有头像非战斗": "O-oht It' $ You, Mettaton.", + "page_5.png-底部文本框有头像非战斗": "Um h-hi?", + "page_6.png-底部文本框有头像非战斗": "WELL, HELLO TO You too. I TAKE IT Yov' RE DOING WELL?", + "page_7.png-底部文本框有头像非战斗": "It' $ business as usual", + "page_8.png-底部文本框有头像非战斗": "0-or it would be but", + "page_9.png-底部文本框有头像非战斗": "0H, YES. THE HUMAH:", + "page_10.png-底部文本框有头像非战斗": "I TAKE IT UNDYNE' $ CONSULTED You?", + "page_11.png-底部文本框有头像非战斗": "I-if y consulting mean a lot of yelling: you", + "page_12.png-底部文本框有头像非战斗": "And, uM; Lots of Worried questions?", + "page_13.png-底部文本框有头像非战斗": "Ehehe. it' $ I' m supposed to be the guard. funny:", + "page_14.png-底部文本框有头像非战斗": "But she' $ trying to keep ME safe.", + "page_16.png-底部文本框有头像非战斗": "ALPHYS_", + "page_17.png-底部文本框有头像非战斗": "But now there' $ a human. # A real human.", + "page_18.png-底部文本框有头像非战斗": "Mumber seven.", + "page_19.png-底部文本框有头像非战斗": "Y-you should see the other guards. They' re s0 excited.", + "page_20.png-底部文本框有头像非战斗": "W-well, most of them:", + "page_21.png-底部文本框有头像非战斗": "There' $ been a lot of shouting back at the fort.", + "page_22.png-底部文本框有头像非战斗": "A-and Sans hasn' t reported back", + "page_24.png-底部文本框有头像非战斗": "H-he' $ probably trying to his Word. keep", + "page_25.png-底部文本框有头像非战斗": "It' $ what the queen Would want.", + "page_26.png-底部文本框有头像非战斗": "BUT hOT WHAT THE MAJORITY OF MY VIEWERS WANT .", + "page_27.png-底部文本框有头像非战斗": "THERE' $ THE RUB.", + "page_28.png-底部文本框有头像非战斗": "THE HUMAN MENACE, THE FINAL SOUL/", + "page_29.png-底部文本框有头像非战斗": "MONSTERS FINALLY RECLAIM FREEDOM AFTER CENTURIES OF SUFFERING?", + "page_30.png-底部文本框有头像非战斗": "THOSE ARE THE HEADLINES THEY WANT TO SEE:", + "page_31.png-底部文本框有头像非战斗": "AND FRAHKLY , I HAVE MY DOUBTS thAT SAHS CAH CONTAIH THE HUMAN;", + "page_32.png-底部文本框有头像非战斗": "BUT You KNOW HIM BETTER THAH ME.", + "page_33.png-底部文本框有头像非战斗": "H-he' 11 do his best. which is a lot more than you' d think:", + "page_34.png-底部文本框有头像非战斗": "But if anything happens.", + "page_35.png-底部文本框有头像非战斗": "WELL, BLOOKY BELIEVES In THEM", + "page_36.png-底部文本框有头像非战斗": "AND I' D RATHER truST MY COUSIN.", + "page_37.png-底部文本框有头像非战斗": "THAH THE BITTER RAVING OF A GUILT-RIDDEH FISH.", + "page_38.png-底部文本框有头像非战斗": "H-hey!", + "page_39.png-底部文本框有头像非战斗": "NO OFFENSE.", + "page_40.png-底部文本框有头像非战斗": "But that' $ the problent", + "page_41.png-底部文本框有头像非战斗": "I-I mean, they' re still human, Mettaton.", + "page_42.png-底部文本框有头像非战斗": "And they' re still the seventh soul_", + "page_43.png-底部文本框有头像非战斗": "s0 WHAT WILL You DO?", + "page_44.png-底部文本框有头像非战斗": "I-I just.", + "page_45.png-底部文本框有头像非战斗": "ALPHYS_", + "page_46.png-底部文本框有头像非战斗": "I have an obligation to the rest of monsterkind:", + "page_47.png-底部文本框有头像非战斗": "Do you know What they' d think if they discovered how I REALLY feel?", + "page_48.png-底部文本框有头像非战斗": "I-if the head of the royal guard actually p-protected a human.", + "page_49.png-底部文本框有头像非战斗": "It' d give the wrong impression.", + "page_50.png-底部文本框有头像非战斗": "They might think I' m, betraying them:", + "page_51.png-底部文本框有头像非战斗": "My personal feelings don' t matter.", + "page_52.png-底部文本框有头像非战斗": "I need to focus on the 9-greater good.", + "page_53.png-底部文本框有头像非战斗": "BECAUSE MRDERING CHILDREH IS $0 NOBLE:", + "page_55.png-底部文本框有头像非战斗": "I' M nOT SAYING You' RE WRONG , DARLING.", + "page_56.png-底部文本框有头像非战斗": "BY ALL ACCOUNTS, WE SHOULD BOTH TRY TO CLAIM ThAT FINAL SOUL.", + "page_57.png-底部文本框有头像非战斗": "#ou, THE CAPTAIN, AHD ME, THE HUMAH ANNIHILATIOM MACHIHE.", + "page_58.png-底部文本框有头像非战斗": "I UNDERSTAND COMPLETELY:", + "page_59.png-底部文本框有头像非战斗": "BUT ALPHYS, I KNOW You' RE nOT A MURDERER.:", + "page_60.png-底部文本框有头像非战斗": "DON' T BE LIKE ME.", + "page_61.png-底部文本框有头像非战斗": "YES, SHOW BIZ HAS Its APPEAL, BUT THIS RELENTLESS ARCHETYPE.", + "page_62.png-底部文本框有头像非战斗": "It' $ JuST hOt You.", + "page_64.png-底部文本框有头像非战斗": "BESIDES IF Yov DON' T STAHD UP FOR YouR CONVICTIONS, WHO WILL?", + "page_66.png-底部文本框有头像非战斗": "I' M SAYING THIS AS Your FRIEHD, hOT A CELEBRITY", + "page_67.png-底部文本框有头像非战斗": "s0 PLEASE, JuST THINK ABOUT It_", + "page_68.png-底部文本框有头像非战斗": "I-I can' t make any promises.", + "page_69.png-底部文本框有头像非战斗": "I UNDERSTAHD.", + "page_70.png-底部文本框有头像非战斗": "ANYWAY duty CALLS: I CAN' T KEEP MY VIEWERS WAITING?", + "page_71.png-底部文本框有头像非战斗": "JuST REMEMBER WHAT I SAID.", + "page_72.png-底部文本框无头像非战斗": "Click_" +} \ No newline at end of file diff --git a/text2/ChBonus3/OCR1.json b/text2/ChBonus3/OCR1.json new file mode 100644 index 00000000..62ad15e4 --- /dev/null +++ b/text2/ChBonus3/OCR1.json @@ -0,0 +1,50 @@ +{ + "page_5.png-底部文本框无头像非战斗": "Dialing:", + "page_6.png-底部文本框有头像非战斗": "Howdy; human!", + "page_7.png-底部文本框有头像非战斗": "Uh, hey:", + "page_8.png-底部文本框有头像非战斗": "Child, you do not sound particularly pleased right now", + "page_9.png-底部文本框有头像非战斗": "Did some thing happen?", + "page_10.png-底部文本框有头像非战斗": "Um: Well a lot' $ happened. I dunno Where to start_", + "page_11.png-底部文本框有头像非战斗": "I mean; I' m okay! Mostly: Just, uM;", + "page_12.png-底部文本框有头像非战斗": "There, there. It' $ all right. I' m here.", + "page_13.png-底部文本框有头像非战斗": "I know, but I Wish Were HERE. With me. you", + "page_14.png-底部文本框有头像非战斗": "Is Papyrus not with you?", + "page_15.png-底部文本框有头像非战斗": "We split up for now #I mean, We re gonna meet pretty so0n, but", + "page_17.png-底部文本框有头像非战斗": "I Wanna know about the other humans.", + "page_19.png-底部文本框有头像非战斗": "Ah. Where do I even begin?", + "page_20.png-底部文本框有头像非战斗": "They Were all very different. Some timid, some bold.", + "page_21.png-底部文本框有头像非战斗": "Some climbed the mountain out of curiosity; and others.", + "page_22.png-底部文本框有头像非战斗": "Wel1, it' $ not my place to though I did my best to provide for them: say,", + "page_23.png-底部文本框有头像非战斗": "And even then, it Was not enough. In time, they all left.", + "page_24.png-底部文本框有头像非战斗": "You can probably surmise What became of them", + "page_25.png-底部文本框有头像非战斗": "But what did they DO? #I keep hearing about some Waterfall Incident", + "page_27.png-底部文本框有头像非战斗": "At least one of em must' ve killed monsters_", + "page_28.png-底部文本框有头像非战斗": "And then there' $ the king:", + "page_30.png-底部文本框有头像非战斗": "Human, I' m afraid I can' t provide the answers you seek.", + "page_31.png-底部文本框有头像非战斗": "I' ve lived in the Ruins for S0 long that my knowledge 1s. limited.", + "page_32.png-底部文本框有头像非战斗": "You mean you haven' t talked to ANYONE about this?", + "page_33.png-底部文本框有头像非战斗": "You must' ve known ALL the humans.", + "page_34.png-底部文本框有头像非战斗": "If they came through the Ruins, if they lived With You, then Why", + "page_35.png-底部文本框有头像非战斗": "Human.", + "page_36.png-底部文本框有头像非战斗": "Why do you trust me?", + "page_37.png-底部文本框有头像非战斗": "Someone Who outta their Way to kill you must' ve seen it goes", + "page_38.png-底部文本框有头像非战斗": "S0 why?", + "page_39.png-底部文本框有头像非战斗": "Why didn' t you DO anything?", + "page_41.png-底部文本框有头像非战斗": "People are complex:", + "page_42.png-底部文本框有头像非战斗": "Sometimes circumstances force uS to act contrary to our moral compass.", + "page_43.png-底部文本框有头像非战斗": "This is true of children and adults, but children are most vulnerable_", + "page_44.png-底部文本框有头像非战斗": "Malleable even.", + "page_45.png-底部文本框有头像非战斗": "Perhaps they acted out of fear, but I cannot say for sure.", + "page_46.png-底部文本框有头像非战斗": "But human, your choices are 0WM. your", + "page_47.png-底部文本框有头像非战斗": "Your future lies in hands, and right now; it' $ a blank canvas. your", + "page_48.png-底部文本框有头像非战斗": "And I know you have what it takes to paint a hopeful picture:", + "page_49.png-底部文本框有头像非战斗": "After all, ve made it this far You'", + "page_50.png-底部文本框有头像非战斗": "I_", + "page_51.png-底部文本框有头像非战斗": "I' m sorry I can' t be of more help:", + "page_52.png-底部文本框有头像非战斗": "N-no, it' $ fine.", + "page_53.png-底部文本框有头像非战斗": "Thanks for listening to me_", + "page_54.png-底部文本框有头像非战斗": "You' re welcome Just remember that you aren' t truly alone.", + "page_55.png-底部文本框有头像非战斗": "And try not to lose hope.", + "page_56.png-底部文本框有头像非战斗": "Mm; # I' 11 do my best-", + "page_57.png-底部文本框无头像非战斗": "# Click." +} \ No newline at end of file diff --git a/text2/ChBonus4/OCR1.json b/text2/ChBonus4/OCR1.json new file mode 100644 index 00000000..be3481be --- /dev/null +++ b/text2/ChBonus4/OCR1.json @@ -0,0 +1,54 @@ +{ + "page_1.png-底部文本框有头像非战斗": "For crying out loud, What' $ TAKING s0 long?", + "page_2.png-底部文本框有头像非战斗": "It Was just one stupid explosion: and a lightning arrow", + "page_3.png-底部文本框有头像非战斗": "What Was that about, anyway?", + "page_4.png-底部文本框有头像非战斗": "This timeline' $ s0 WEIRD#", + "page_5.png-底部文本框有头像非战斗": "I can' t make heads or tails of itt", + "page_6.png-底部文本框有头像非战斗": "And to think I did it all on accident", + "page_7.png-底部文本框有头像非战斗": "S0 maybe.", + "page_8.png-底部文本框有头像非战斗": "Hehehe. # I Wonder what' d happen if I-", + "page_9.png-底部文本框有头像非战斗": "NGH MY FOOR, ACHING SKULL", + "page_10.png-底部文本框有头像非战斗": "Oh, Papyrus! Golly, are you okay?", + "page_11.png-底部文本框有头像非战斗": "NORMALLY F'D SAY F'M A5 GREAT A5 EVER, BUt IN LIGHT OF _", + "page_12.png-底部文本框有头像非战斗": "WAITW!!", + "page_13.png-底部文本框有头像非战斗": "FRISK?! YHERE 15-", + "page_14.png-底部文本框有头像非战斗": "They fell. Probably landed in the but they' re dump, okay:", + "page_15.png-底部文本框有头像非战斗": "THE DUMP