From cd747eee45af01d96cdfeecfa09b1ec84f221682 Mon Sep 17 00:00:00 2001 From: MasaGratoR Date: Mon, 14 Mar 2022 18:36:56 +0100 Subject: [PATCH] Add files via upload --- README.md | 28 + scena_assembler.py | 855 ++ talk_assembler.py | 856 ++ text/jsons/t_active.json | 8172 ++++++++++++ text/jsons/t_book.json | 425 + text/jsons/t_btlsys.json | 131 + text/jsons/t_card.json | 326 + text/jsons/t_dlc.json | 602 + text/jsons/t_fish.json | 390 + text/jsons/t_hikitugi.json | 112 + text/jsons/t_item.json | 10683 +++++++++++++++ text/jsons/t_jump.json | 842 ++ text/jsons/t_linkab.json | 672 + text/jsons/t_magic.json | 1946 +++ text/jsons/t_main.json | 3165 +++++ text/jsons/t_mg02.json | 1234 ++ text/jsons/t_mons.json | 3642 ++++++ text/jsons/t_mstqrt.json | 1790 +++ text/jsons/t_name.json | 4070 ++++++ text/jsons/t_navi.json | 836 ++ text/jsons/t_notechar.json | 1052 ++ text/jsons/t_notecook.json | 527 + text/jsons/t_notefish.json | 296 + text/jsons/t_notehelp.json | 268 + text/jsons/t_notemons.json | 1011 ++ text/jsons/t_place.json | 2626 ++++ text/jsons/t_quest.json | 3626 ++++++ text/jsons/t_rendou.json | 62 + text/jsons/t_shop.json | 24259 +++++++++++++++++++++++++++++++++++ text/jsons/t_status.json | 618 + text/jsons/t_text.json | 2797 ++++ text/jsons/t_text_nx.json | 2257 ++++ text_assembler.py | 224 + ui_assembler.py | 848 ++ 34 files changed, 81248 insertions(+) create mode 100644 README.md create mode 100644 scena_assembler.py create mode 100644 talk_assembler.py create mode 100644 text/jsons/t_active.json create mode 100644 text/jsons/t_book.json create mode 100644 text/jsons/t_btlsys.json create mode 100644 text/jsons/t_card.json create mode 100644 text/jsons/t_dlc.json create mode 100644 text/jsons/t_fish.json create mode 100644 text/jsons/t_hikitugi.json create mode 100644 text/jsons/t_item.json create mode 100644 text/jsons/t_jump.json create mode 100644 text/jsons/t_linkab.json create mode 100644 text/jsons/t_magic.json create mode 100644 text/jsons/t_main.json create mode 100644 text/jsons/t_mg02.json create mode 100644 text/jsons/t_mons.json create mode 100644 text/jsons/t_mstqrt.json create mode 100644 text/jsons/t_name.json create mode 100644 text/jsons/t_navi.json create mode 100644 text/jsons/t_notechar.json create mode 100644 text/jsons/t_notecook.json create mode 100644 text/jsons/t_notefish.json create mode 100644 text/jsons/t_notehelp.json create mode 100644 text/jsons/t_notemons.json create mode 100644 text/jsons/t_place.json create mode 100644 text/jsons/t_quest.json create mode 100644 text/jsons/t_rendou.json create mode 100644 text/jsons/t_shop.json create mode 100644 text/jsons/t_status.json create mode 100644 text/jsons/t_text.json create mode 100644 text/jsons/t_text_nx.json create mode 100644 text_assembler.py create mode 100644 ui_assembler.py diff --git a/README.md b/README.md new file mode 100644 index 0000000..b02b5a2 --- /dev/null +++ b/README.md @@ -0,0 +1,28 @@ +# The Legend of Heroes: Trails of Cold Steel Kai ~ THORS MILITARY ACADEMY 1204 ~ +# English Translation Mod for Nintendo Switch version + +Translation mod is based on files from official Steam PC and PS4 releases. +It works fully only with modded Nintendo Switch. Only Atmosphere is supported. +Only game version 1.0.3 is supported. + +Main changes: +- Complete translation of game, textures and movies +- Removed completely fixed kernings for better text rendering +- Many custom text tweaks for better readability and blocking text from overflowing +- Added base support to plugin that will allow switching between Japanese and English audio (currently English dubbing is not added) +- Added custom menu that allows enabling 60 FPS, changing rendering resolution and switching audio language (press R in title menu to get access). Settings are saved to sd:/config/ToCS1/subsdk9.save +- Removed from save description character names and their levels (game was stuck in infinite loop if name was too long like "Instructor Sara") +- Force enabled Anisotropic Filtering and set it to 16 + +You can find mod in Releases. Put "atmosphere" folder to root of sdcard. Play game.
+It is recommended to OC GPU to at least 460 MHz for best experience. + + +Special thanks to: +- Graber for providing files and main technical support based on experience from older games +- TwnKey for providing source code containing informations how scripts are build
+ https://github.com/TwnKey/SenScriptsDecompiler/blob/main/headers/CS1InstructionsSet.h +- Ouroboros for info about dialogue opcodes +- thesupersonic16 for PKG unpacker
+ https://github.com/thesupersonic16/PKGTool +- Inochi-PM for providing new logos diff --git a/scena_assembler.py b/scena_assembler.py new file mode 100644 index 0000000..d3c958f --- /dev/null +++ b/scena_assembler.py @@ -0,0 +1,855 @@ +import glob +import os +import json +import sys +import numpy + +def WriteDialog(dialog): + entry = [] + for i in range(0, len(dialog["STRINGS"])): + size = len(dialog["STRINGS"][i]) + if (size < 5): + entry.append(dialog["STRINGS"][i].encode("UTF-8").replace(b"\n", b"\x01")) + continue + match(dialog["STRINGS"][i][0:5]): + case "NEW_L": + entry.append(numpy.uint8(1)) + case "CMD: ": + entry.append(numpy.uint8(int(dialog["STRINGS"][i].replace("CMD: ", "")))) + case "KEY_W": + entry.append(numpy.uint8(2)) + case "CLEAR": + entry.append(numpy.uint8(3)) + case "SHOW_": + entry.append(numpy.uint8(6)) + case "SET_C": + entry.append(numpy.uint8(7)) + case "ITEM_": + entry.append(numpy.uint8(0x10)) + entry.append(numpy.uint16(int(dialog["STRINGS"][i].replace("ITEM_ID: ", "")))) + case "VOICE": + entry.append(numpy.uint8(0x11)) + entry.append(numpy.uint32(int(dialog["STRINGS"][i].replace("VOICE_FILE_ID: ", "")))) + case "CMD12": + entry.append(numpy.uint32(int(dialog["STRINGS"][i].replace("CMD12_ARG: ", "")))) + case _: + entry.append(dialog["STRINGS"][i].encode("UTF-8").replace(b"\n", b"\x01")) + entry.append(b"\x00") + return b"".join(entry) + + +def CalcGoto(table): + entry = [] + for i in range(0, len(table)): + entry.append(numpy.uint8(table[i]["CONTROL"])) + if (table[i]["CONTROL"] in [2, 3, 4, 5, 6, 7, 8, 9, 0xA, 0xB, 0xC, 0xD, 0xE, 0x10, 0x11, 0x12, 0x13, 0x17, 0x22]): + continue + match(table[i]["CONTROL"]): + case 0: + entry.append(numpy.int32(table[i]["UNK"][0])) + case 0x1E: + entry.append(numpy.int16(table[i]["UNK"][0])) + case 0x1F: + entry.append(numpy.int8(table[i]["UNK"][0])) + case 0x20: + entry.append(numpy.int8(table[i]["UNK"][0])) + case 0x21: + entry.append(bytes.fromhex(table[i]["UNK"])) + case 0x23: + entry.append(numpy.int8(table[i]["UNK"][0])) + case 0x24: + entry.append(numpy.int32(table[i]["UNK"][0])) + case 0x25: + entry.append(numpy.int16(table[i]["UNK"][0])) + case 0x1C: + entry.append(GenerateCommand(table[i]["INSTRUCTION"])) + entry.append(numpy.uint8(1)) + return b"".join(entry) + +def GenerateCommand(entry, Offset_dict = None): + ret_entry = [] + match(entry["TYPE"]): + case "RETURN": + ret_entry.append(numpy.uint8(1)) + case "JUMP_TO_FUNCTION": + ret_entry.append(numpy.uint8(2)) + ret_entry.append(numpy.int8(entry["UNK"][0])) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + case "GOTO3": + ret_entry.append(numpy.uint8(3)) + if (Offset_dict == None): + ret_entry.append(numpy.uint32(0)) + else: + ret_entry.append(numpy.uint32(Offset_dict[entry["TO_LABEL"]])) + case "0x4": + ret_entry.append(numpy.uint8(4)) + ret_entry.append(numpy.int8(entry["UNK"][0])) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + case "GOTO5": + ret_entry.append(numpy.uint8(5)) + ret_entry.append(CalcGoto(entry["TABLE"])) + if (Offset_dict == None): + ret_entry.append(numpy.uint32(0)) + else: + ret_entry.append(numpy.uint32(Offset_dict[entry["TO_LABEL"]])) + + case "GOTO6": + ret_entry.append(numpy.uint8(6)) + ret_entry.append(CalcGoto(entry["TABLE"])) + ret_entry.append(numpy.uint8(len(entry["TO_LABELS"]))) + for i in range(0, len(entry["TO_LABELS"])): + ret_entry.append(numpy.uint16(entry["TO_LABELS"][i]["UNK"][0])) + if (Offset_dict == None): + ret_entry.append(numpy.uint32(0)) + else: + ret_entry.append(numpy.uint32(Offset_dict[entry["TO_LABELS"][i]["TO_LABEL"]])) + if (Offset_dict == None): + ret_entry.append(numpy.uint32(0)) + else: + ret_entry.append(numpy.uint32(Offset_dict[entry["TO_LABEL"]])) + case "0x7": + ret_entry.append(numpy.uint8(7)) + ret_entry.append(numpy.int32(entry["UNK"][0])) + case "0x8": + ret_entry.append(numpy.uint8(8)) + ret_entry.append(CalcGoto(entry["TABLE"])) + case "0xA": + ret_entry.append(numpy.uint8(0xA)) + ret_entry.append(numpy.int8(entry["UNK"][0])) + ret_entry.append(CalcGoto(entry["TABLE"])) + case "0xC": + ret_entry.append(numpy.uint8(0xC)) + ret_entry.append(numpy.int16(entry["UNK"][0])) + case "0xD": + ret_entry.append(numpy.uint8(0xD)) + ret_entry.append(numpy.int16(entry["UNK"][0])) + case "0xE": + ret_entry.append(numpy.uint8(0xE)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0xF": + ret_entry.append(numpy.uint8(0xF)) + ret_entry.append(numpy.int32(entry["UNK"][0])) + case "0x10": + ret_entry.append(numpy.uint8(0x10)) + ret_entry.append(numpy.int16(entry["UNK"][0])) + case "0x11": + ret_entry.append(numpy.uint8(0x11)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x12": + ret_entry.append(numpy.uint8(0x12)) + ret_entry.append(numpy.int8(entry["UNK"][0])) + ret_entry.append(CalcGoto(entry["TABLE"])) + case "0x13": + ret_entry.append(numpy.uint8(0x13)) + ret_entry.append(numpy.int16(entry["UNK0"][0])) + for i in range(0, 3): + ret_entry.append(entry["STRINGS1"][i].encode("UTF-8") + b"\x00") + ret_entry.append(bytes.fromhex(entry["UNK1"])) + for i in range(0, 2): + ret_entry.append(entry["STRINGS2"][i].encode("UTF-8") + b"\x00") + ret_entry.append(bytes.fromhex(entry["UNK2"])) + case "0x14": + ret_entry.append(numpy.uint8(0x14)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + case "0x15": + ret_entry.append(numpy.uint8(0x15)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x16": + ret_entry.append(numpy.uint8(0x16)) + ret_entry.append(numpy.int8(entry["UNK"][0])) + case "0x17": + ret_entry.append(numpy.uint8(0x17)) + ret_entry.append(numpy.int8(entry["UNK"][0])) + case "TEXT18": + ret_entry.append(numpy.uint8(0x18)) + ret_entry.append(numpy.int16(entry["UNK"][0])) + ret_entry.append(WriteDialog(entry["DIALOG"])) + case "0x19": + ret_entry.append(numpy.uint8(0x19)) + ret_entry.append(numpy.int8(entry["CONTROL"])) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "MESSAGE": + ret_entry.append(numpy.uint8(0x1A)) + ret_entry.append(numpy.int16(entry["NAME_ID"])) + ret_entry.append(WriteDialog(entry["DIALOG"])) + case "0x1B": + ret_entry.append(numpy.uint8(0x1B)) + case "REMOVE_TEXT_BOX": + ret_entry.append(numpy.uint8(0x1C)) + case "OVERRIDE_DIALOG_SPEAKER": + ret_entry.append(numpy.uint8(0x1D)) + ret_entry.append(entry["NAME"][0].encode("UTF-8") + b"\x00") + ret_entry.append(numpy.int16(entry["UNK"][0])) + case "JUMP_TO_ID": + ret_entry.append(numpy.uint8(0x1E)) + for i in range(0, 2): + ret_entry.append(entry["STRINGS"][i].encode("UTF-8") + b"\x00") + case "0x1F": + ret_entry.append(numpy.uint8(0x1F)) + ret_entry.append(numpy.int8(entry["CONTROL"])) + ret_entry.append(numpy.int8(entry["CONTROL2"])) + if (entry["CONTROL"] != 3): + if (entry["CONTROL"] == 1): + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x20": + ret_entry.append(numpy.uint8(0x20)) + ret_entry.append(numpy.uint8(entry["SIZE_CHECK"])) + ret_entry.append(bytes.fromhex(entry["UNK0"])) + for i in range(0, 2): + ret_entry.append(entry["STRINGS"][i].encode("UTF-8") + b"\x00") + ret_entry.append(numpy.int8(entry["UNK1"][0])) + case "0x21": + ret_entry.append(numpy.uint8(0x21)) + ret_entry.append(numpy.uint8(entry["CONTROL"])) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x22": + ret_entry.append(numpy.uint8(0x22)) + ret_entry.append(numpy.int16(entry["UNK0"][0])) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + ret_entry.append(bytes.fromhex(entry["UNK1"])) + case "0x23": + ret_entry.append(numpy.uint8(0x23)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x24": + ret_entry.append(numpy.uint8(0x24)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + for i in range(0, 2): + ret_entry.append(entry["STRINGS"][i].encode("UTF-8") + b"\x00") + case "0x25": + ret_entry.append(numpy.uint8(0x25)) + ret_entry.append(bytes.fromhex(entry["UNK0"])) + for i in range(0, 2): + ret_entry.append(entry["STRINGS"][i].encode("UTF-8") + b"\x00") + ret_entry.append(bytes.fromhex(entry["UNK1"])) + case "0x26": + ret_entry.append(numpy.uint8(0x26)) + ret_entry.append(numpy.int8(entry["UNK"][0])) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + case "0x27": + ret_entry.append(numpy.uint8(0x27)) + ret_entry.append(numpy.uint8(entry["CONTROL"])) + if (entry["CONTROL"] in [0x11, 0x10, 0xF, 0xB, 0xD, 0xE, 0x12, 0x13, 0x14, 0xA, 0x15]): + ret_entry.append(bytes.fromhex(entry["UNK"])) + elif (entry["CONTROL"] == 0xC): + ret_entry.append(bytes.fromhex(entry["UNK0"])) + if (entry["CONTROL"] in [0xA, 0xC, 0x15]): + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + if (entry["CONTROL"] == 0xC): + ret_entry.append(bytes.fromhex(entry["UNK1"])) + case "0x28": + ret_entry.append(numpy.uint8(0x28)) + ret_entry.append(numpy.uint8(entry["CONTROL"])) + match(entry["CONTROL"]): + case 80: + ret_entry.append(numpy.int16(entry["UNK0"][0])) + ret_entry.append(entry["STRINGS1"][0].encode("UTF-8") + b"\x00") + ret_entry.append(bytes.fromhex(entry["UNK1"])) + ret_entry.append(entry["STRINGS2"][0].encode("UTF-8") + b"\x00") + case 100: + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + case _: + ret_entry.append(bytes.fromhex(entry["UNK"])) + if (entry["CONTROL"] == ord("i")): + for i in range(0, 2): + ret_entry.append(entry["STRINGS"][i].encode("UTF-8") + b"\x00") + elif (entry["CONTROL"] in [ord("\a"), 5]): + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + case "0x29": + ret_entry.append(numpy.uint8(0x29)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x2A": + ret_entry.append(numpy.uint8(0x2A)) + ret_entry.append(numpy.int16(entry["UNK"][0])) + case "0x2B": + ret_entry.append(numpy.uint8(0x2B)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x2C": + ret_entry.append(numpy.uint8(0x2C)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x2D": + ret_entry.append(numpy.uint8(0x2D)) + ret_entry.append(numpy.uint8(entry["CONTROL"])) + if (entry["CONTROL"] in [3, 0x14]): + ret_entry.append(bytes.fromhex(entry["UNK0"])) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + ret_entry.append(bytes.fromhex(entry["UNK1"])) + elif (entry["CONTROL"] in [0, 0x10]): + pass + else: + ret_entry.append(bytes.fromhex(entry["UNK0"])) + case "0x2E": + ret_entry.append(numpy.uint8(0x2E)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x2F": + ret_entry.append(numpy.uint8(0x2F)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + case "0x30": + ret_entry.append(numpy.uint8(0x30)) + ret_entry.append(numpy.uint8(entry["CONTROL"])) + if (entry["CONTROL"] != 7): + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x31": + ret_entry.append(numpy.uint8(0x31)) + ret_entry.append(numpy.uint8(entry["CONTROL"])) + if (entry["CONTROL"] == 0x32): + ret_entry.append(numpy.uint16(entry["VOICE_FILE_ID"])) + elif (entry["CONTROL"] == 0x34): + ret_entry.append(numpy.uint16(entry["VOICE_FILE_ID"])) + if (entry["CONTROL"] != 0x34): + ret_entry.append(bytes.fromhex(entry["UNK"])) + if (entry["CONTROL"] in [0, 0x32]): + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + case "SET_NAME_ID": + ret_entry.append(numpy.uint8(0x32)) + ret_entry.append(numpy.uint8(entry["CONTROL"])) + ret_entry.append(numpy.uint16(entry["NAME_ID"])) + if (entry["CONTROL"] == 2): + ret_entry.append(bytes.fromhex(entry["UNK"])) + elif (entry["CONTROL"] in [1, 3, 4]): + for i in range(0, len(entry["STRINGS"])): + ret_entry.append(entry["STRINGS"][i].encode("UTF-8") + b"\x00") + case "0x33": + ret_entry.append(numpy.uint8(0x33)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x34": + ret_entry.append(numpy.uint8(0x34)) + ret_entry.append(numpy.uint16(entry["NAME_ID"])) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x35": + ret_entry.append(numpy.uint8(0x35)) + ret_entry.append(numpy.int16(entry["UNK"][0])) + case "0x36": + ret_entry.append(numpy.uint8(0x36)) + ret_entry.append(numpy.int16(entry["UNK0"][0])) + ret_entry.append(numpy.int16(entry["CONTROL"])) + ret_entry.append(bytes.fromhex(entry["UNK1"])) + case "0x37": + ret_entry.append(numpy.uint8(0x37)) + ret_entry.append(numpy.int16(entry["NAME_ID"])) + ret_entry.append(numpy.uint8(entry["UNK"][0])) + case "0x38": + ret_entry.append(numpy.uint8(0x38)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x39": + ret_entry.append(numpy.uint8(0x39)) + ret_entry.append(numpy.uint8(entry["CONTROL"])) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x3A": + ret_entry.append(numpy.uint8(0x3A)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x3B": + ret_entry.append(numpy.uint8(0x3B)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x3C": + ret_entry.append(numpy.uint8(0x3C)) + ret_entry.append(numpy.int16(entry["NAME_ID"])) + for i in range(0, 2): + ret_entry.append(numpy.uint16(entry["CONTROLS"][i])) + try: + ret_entry.append(bytes.fromhex(entry["UNK"])) + except: + pass + case "0x3D": + ret_entry.append(numpy.uint8(0x3D)) + ret_entry.append(numpy.int8(entry["UNK0"][0])) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + ret_entry.append(numpy.int16(entry["UNK1"][0])) + case "0x3E": + ret_entry.append(numpy.uint8(0x3E)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x3F": + ret_entry.append(numpy.uint8(0x3F)) + ret_entry.append(numpy.int8(entry["CONTROL"])) + try: + ret_entry.append(bytes.fromhex(entry["UNK"])) + except: + pass + case "0x40": + ret_entry.append(numpy.uint8(0x40)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x41": + ret_entry.append(numpy.uint8(0x41)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x42": + ret_entry.append(numpy.uint8(0x42)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x43": + ret_entry.append(numpy.uint8(0x43)) + ret_entry.append(numpy.int32(entry["UNK"][0])) + case "0x44": + ret_entry.append(numpy.uint8(0x44)) + ret_entry.append(numpy.int8(entry["CONTROL"])) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x45": + ret_entry.append(numpy.uint8(0x45)) + for i in range(0, 2): + ret_entry.append(entry["STRINGS"][i].encode("UTF-8") + b"\x00") + case "0x46": + ret_entry.append(numpy.uint8(0x46)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x47": + ret_entry.append(numpy.uint8(0x47)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x48": + ret_entry.append(numpy.uint8(0x48)) + ret_entry.append(numpy.int8(entry["UNK"][0])) + case "0x49": + ret_entry.append(numpy.uint8(0x49)) + ret_entry.append(numpy.uint8(entry["CONTROL"])) + if (entry["CONTROL"] in [0xB, 0xE, 0xF, 0x10, 0x11, 0x12, 0x16, 0x1D, 0x1E, 0x20, 0x25]): + pass + elif (entry["CONTROL"] in [10, 4, 3, 2, 1, 0]): + ret_entry.append(bytes.fromhex(entry["UNK"])) + else: + if (entry["CONTROL"] in [0xD, 0x14, 0x15, 0x19, 0x1C]): + for i in range(0, len(entry["STRINGS"])): + ret_entry.append(entry["STRINGS"][i].encode("UTF-8") + b"\x00") + if (entry["CONTROL"] in [0xD, 0x14, 0x17, 0x18, 0x1C, 0x21, 0x23, 0x24, 0x26, 0x28, 0x29]): + ret_entry.append(bytes.fromhex(entry["UNK"])) + if (entry["CONTROL"] == 0x26): + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + case "0x4A": + ret_entry.append(numpy.uint8(0x4A)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + case "0x4B": + ret_entry.append(numpy.uint8(0x4B)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x4C": + ret_entry.append(numpy.uint8(0x4C)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x4D": + ret_entry.append(numpy.uint8(0x4D)) + ret_entry.append(numpy.int8(entry["UNK"][0])) + case "0x4F": + ret_entry.append(numpy.uint8(0x4F)) + ret_entry.append(bytes.fromhex(entry["UNK0"])) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + ret_entry.append(bytes.fromhex(entry["UNK1"])) + case "0x51": + ret_entry.append(numpy.uint8(0x51)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + case "0x52": + ret_entry.append(numpy.uint8(0x52)) + ret_entry.append(numpy.int16(entry["UNK0"][0])) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + ret_entry.append(bytes.fromhex(entry["UNK1"])) + case "0x53": + ret_entry.append(numpy.uint8(0x53)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x55": + ret_entry.append(numpy.uint8(0x55)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + case "0x56": + ret_entry.append(numpy.uint8(0x56)) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + ret_entry.append(numpy.int16(entry["UNK"][0])) + case "0x57": + ret_entry.append(numpy.uint8(0x57)) + case "0x58": + ret_entry.append(numpy.uint8(0x58)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x59": + ret_entry.append(numpy.uint8(0x59)) + ret_entry.append(numpy.int16(entry["UNK"][0])) + case "0x5A": + ret_entry.append(numpy.uint8(0x5A)) + ret_entry.append(numpy.int8(entry["UNK0"][0])) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + ret_entry.append(numpy.int16(entry["UNK1"][0])) + case "0x5B": + ret_entry.append(numpy.uint8(0x5B)) + ret_entry.append(numpy.int8(entry["CONTROL"])) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x5C": + ret_entry.append(numpy.uint8(0x5C)) + ret_entry.append(numpy.int8(entry["CONTROL"])) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x5D": + ret_entry.append(numpy.uint8(0x5D)) + ret_entry.append(numpy.int8(entry["CONTROL"])) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + try: + ret_entry.append(bytes.fromhex(entry["UNK"])) + except: + pass + case "0x5E": + ret_entry.append(numpy.uint8(0x5E)) + ret_entry.append(numpy.int8(entry["CONTROL"])) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x5F": + ret_entry.append(numpy.uint8(0x5F)) + ret_entry.append(numpy.int16(entry["UNK0"])) + ret_entry.append(numpy.int8(entry["CONTROL"])) + if (entry["CONTROL"] != 1): + ret_entry.append(bytes.fromhex(entry["UNK1"])) + case "0x60": + ret_entry.append(numpy.uint8(0x60)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x61": + ret_entry.append(numpy.uint8(0x61)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x62": + ret_entry.append(numpy.uint8(0x62)) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x63": + ret_entry.append(numpy.uint8(0x63)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x64": + ret_entry.append(numpy.uint8(0x64)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x65": + ret_entry.append(numpy.uint8(0x65)) + ret_entry.append(numpy.int8(entry["CONTROL"])) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x66": + ret_entry.append(numpy.uint8(0x66)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x67": + ret_entry.append(numpy.uint8(0x67)) + ret_entry.append(numpy.uint16(entry["CONTROLS"][0])) + ret_entry.append(numpy.uint8(entry["CONTROLS"][1])) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x68": + ret_entry.append(numpy.uint8(0x68)) + ret_entry.append(numpy.int16(entry["UNK0"][0])) + ret_entry.append(numpy.int8(entry["CONTROL"])) + ret_entry.append(bytes.fromhex(entry["UNK1"])) + case "0x69": + ret_entry.append(numpy.uint8(0x69)) + ret_entry.append(numpy.int16(entry["UNK0"][0])) + ret_entry.append(numpy.int8(entry["CONTROL"])) + match(entry["CONTROL"]): + case 0: + ret_entry.append(bytes.fromhex(entry["UNK1"])) + case 2: + ret_entry.append(bytes.fromhex(entry["UNK1"])) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + case 3: + ret_entry.append(entry["STRINGS1"][0].encode("UTF-8") + b"\x00") + ret_entry.append(bytes.fromhex(entry["UNK1"])) + ret_entry.append(entry["STRINGS2"][0].encode("UTF-8") + b"\x00") + case 5: + ret_entry.append(bytes.fromhex(entry["UNK1"])) + case "0x6A": + ret_entry.append(numpy.uint8(0x6A)) + ret_entry.append(numpy.int8(entry["CONTROLS"][0])) + ret_entry.append(numpy.int8(entry["CONTROLS"][1])) + if(entry["CONTROLS"][0] == 1): + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + if(entry["CONTROLS"][0] != 3): + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x6B": + ret_entry.append(numpy.uint8(0x6B)) + ret_entry.append(numpy.int16(entry["UNK0"][0])) + for i in range(0, 2): + ret_entry.append(entry["STRINGS"][i].encode("UTF-8") + b"\x00") + ret_entry.append(numpy.int8(entry["UNK1"][0])) + case "0x6C": + ret_entry.append(numpy.uint8(0x6C)) + ret_entry.append(numpy.int16(entry["UNK"][0])) + case "0x6D": + ret_entry.append(numpy.uint8(0x6D)) + ret_entry.append(numpy.int8(entry["UNK"][0])) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + case "0x6E": + ret_entry.append(numpy.uint8(0x6E)) + ret_entry.append(numpy.uint8(entry["CONTROL"])) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x6F": + ret_entry.append(numpy.uint8(0x6F)) + ret_entry.append(numpy.int8(entry["CONTROL"])) + if (entry["CONTROL"] in [1, 2]): + ret_entry.append(numpy.int16(entry["UNK"][0])) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + case "0x70": + ret_entry.append(numpy.uint8(0x70)) + ret_entry.append(numpy.uint8(entry["CONTROL"])) + if (entry["CONTROL"] == 1): + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x71": + ret_entry.append(numpy.uint8(0x71)) + ret_entry.append(numpy.uint8(entry["CONTROL"])) + if (entry["CONTROL"] == 0): + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x72": + ret_entry.append(numpy.uint8(0x72)) + ret_entry.append(numpy.int16(entry["UNK"][0])) + case "0x73": + ret_entry.append(numpy.uint8(0x73)) + ret_entry.append(numpy.uint8(entry["CONTROL"])) + if (entry["CONTROL"] > 1): + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x74": + ret_entry.append(numpy.uint8(0x74)) + ret_entry.append(numpy.int8(entry["UNK"][0])) + case "0x77": + ret_entry.append(numpy.uint8(0x77)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x78": + ret_entry.append(numpy.uint8(0x78)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x79": + ret_entry.append(numpy.uint8(0x79)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x7A": + ret_entry.append(numpy.uint8(0x7A)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x7B": + ret_entry.append(numpy.uint8(0x7B)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + case "0x7D": + ret_entry.append(numpy.uint8(0x7D)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x7E": + ret_entry.append(numpy.uint8(0x7E)) + ret_entry.append(numpy.int16(entry["UNK"][0])) + case "0x7F": + ret_entry.append(numpy.uint8(0x7F)) + ret_entry.append(numpy.int8(entry["CONTROL"])) + ret_entry.append(bytes.fromhex(entry["UNK0"])) + for i in range(0, len(entry["STRINGS"])): + ret_entry.append(entry["STRINGS"][i].encode("UTF-8") + b"\x00") + if (entry["CONTROL"] not in [0, 1]): + ret_entry.append(bytes.fromhex(entry["UNK1"])) + case "0x81": + ret_entry.append(numpy.uint8(0x81)) + ret_entry.append(numpy.int8(entry["CONTROL"])) + if (entry["CONTROL"] in [0, 3, 4]): + ret_entry.append(numpy.int16(entry["UNK"][0])) + case "0x82": + ret_entry.append(numpy.uint8(0x82)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x83": + ret_entry.append(numpy.uint8(0x83)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x84": + ret_entry.append(numpy.uint8(0x84)) + case "0x85": + ret_entry.append(numpy.uint8(0x85)) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + ret_entry.append(numpy.int32(entry["UNK"][0])) + case "0x86": + ret_entry.append(numpy.uint8(0x86)) + ret_entry.append(numpy.int8(entry["CONTROL"])) + try: + ret_entry.append(bytes.fromhex(entry["UNK"])) + except: + pass + case "0x87": + ret_entry.append(numpy.uint8(0x87)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x88": + ret_entry.append(numpy.uint8(0x88)) + ret_entry.append(numpy.int8(entry["CONTROL"])) + if (entry["CONTROL"] == 0): + ret_entry.append(numpy.int16(entry["UNK"][0])) + case "0x89": + ret_entry.append(numpy.uint8(0x89)) + ret_entry.append(numpy.int8(entry["CONTROL"])) + if (entry["CONTROL"] == 0): + ret_entry.append(numpy.int32(entry["UNK"][0])) + case "0x8A": + ret_entry.append(numpy.uint8(0x8A)) + ret_entry.append(numpy.int8(entry["CONTROL"])) + if (entry["CONTROL"] == 0): + for i in range(0, 2): + ret_entry.append(entry["STRINGS"][i].encode("UTF-8") + b"\x00") + case "0x8B": + ret_entry.append(numpy.uint8(0x8B)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x8C": + ret_entry.append(numpy.uint8(0x8C)) + ret_entry.append(numpy.int16(entry["UNK"][0])) + case "0x8D": + ret_entry.append(numpy.uint8(0x8D)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x8E": + ret_entry.append(numpy.uint8(0x8E)) + ret_entry.append(numpy.int16(entry["UNK"][0])) + case "0x90": + ret_entry.append(numpy.uint8(0x90)) + ret_entry.append(numpy.int8(entry["CONTROL"])) + if (entry["CONTROL"] == 0): + ret_entry.append(numpy.int16(entry["UNK"][0])) + case "0x91": + ret_entry.append(numpy.uint8(0x91)) + ret_entry.append(numpy.int8(entry["CONTROL"])) + if (entry["CONTROL"] == 0): + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x92": + ret_entry.append(numpy.uint8(0x92)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x93": + ret_entry.append(numpy.uint8(0x93)) + ret_entry.append(numpy.int8(entry["UNK"][0])) + case "0x94": + ret_entry.append(numpy.uint8(0x94)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x95": + ret_entry.append(numpy.uint8(0x95)) + case "0x96": + ret_entry.append(numpy.uint8(0x96)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x97": + ret_entry.append(numpy.uint8(0x97)) + ret_entry.append(numpy.int16(entry["UNK"][0])) + case "0x98": + ret_entry.append(numpy.uint8(0x98)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x99": + ret_entry.append(numpy.uint8(0x99)) + case "0x9A": + ret_entry.append(numpy.uint8(0x9A)) + ret_entry.append(numpy.uint8(entry["CONTROL"])) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x9B": + ret_entry.append(numpy.uint8(0x9B)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x9E": + ret_entry.append(numpy.uint8(0x9E)) + ret_entry.append(numpy.int8(entry["UNK"][0])) + case "0x9F": + ret_entry.append(numpy.uint8(0x9F)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + for i in range(0, 2): + ret_entry.append(entry["STRINGS"][i].encode("UTF-8") + b"\x00") + case "0xA1": + ret_entry.append(numpy.uint8(0xA1)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0xA2": + ret_entry.append(numpy.uint8(0xA2)) + ret_entry.append(numpy.int16(entry["UNK"][0])) + case "0xA3": + ret_entry.append(numpy.uint8(0xA3)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0xA4": + ret_entry.append(numpy.uint8(0xA4)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0xA5": + ret_entry.append(numpy.uint8(0xA5)) + ret_entry.append(numpy.int16(entry["UNK"][0])) + case "0xA6": + ret_entry.append(numpy.uint8(0xA6)) + ret_entry.append(numpy.int8(entry["CONTROL"])) + ret_entry.append(bytes.fromhex(entry["UNK"])) + if (entry["CONTROL"] == 0x32): + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + case "0xFF": + ret_entry.append(numpy.int32(-1)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "CREATE_MONSTERS": + try: + ret_entry.append(entry["MAP"].encode("UTF-8") + b"\x00") + except: + ret_entry.append(bytes.fromhex(entry["UNK0"])) + else: + ret_entry.append(b"\x00" * (0x10 - len(entry["MAP"].encode("UTF-8") + b"\x00"))) + ret_entry.append(bytes.fromhex(entry["UNK0"])) + table = entry["TABLE"] + for i in range(0, len(table)): + ret_entry.append(numpy.int32(table[i]["UNK0"][0])) + for x in range(0, 8): + ret_entry.append(table[i]['STRINGS1'][x].encode("UTF-8") + b"\x00") + ret_entry.append(b"\x00" * (0x10 - len(table[i]['STRINGS1'][x].encode("UTF-8") + b"\x00"))) + ret_entry.append(bytes.fromhex(table[i]["UNK1"])) + try: + ret_entry.append(table[i]['STRINGS2'][0].encode("UTF-8") + b"\x00") + except: + pass + else: + ret_entry.append(b"\x00" * (12 - len(table[i]['STRINGS1'][x].encode("UTF-8") + b"\x00"))) + try: + ret_entry.append(bytes.fromhex(entry["UNK1"])) + except: + ret_entry.append(numpy.uint32(1)) + case _: + print("UNKNOWN COMMAND: %s" % entry["TYPE"]) + sys.exit() + + return b"".join(ret_entry) + +files = glob.glob("scripts/scena/jsons/*.json") + +os.makedirs("scripts/scena/nx", exist_ok=True) +for i in range(0, len(files)): + print(files[i]) + file = open(files[i], "r", encoding="UTF-8") + DUMP = json.load(file) + file.close() + + # Write Header + file_new = open("scripts/scena/nx/%s.dat" % files[i][20:-5], "wb") + file_new.write(numpy.uint32(0x20)) #0x0 always starting with 0x20 + file_new.write(numpy.uint32(0x20)) #0x4 we want to always start with 0x20 for easier management + functions_pointer = 0x20 + len(DUMP["HEADER"]["ID"]) + 1 + file_new.write(numpy.uint32(functions_pointer)) #0x08 + size_of_functions_pointer_table = len(DUMP["FUNCTIONS"]) * 4 + file_new.write(numpy.uint32(size_of_functions_pointer_table)) #0x0C + file_new.write(numpy.uint32(functions_pointer + size_of_functions_pointer_table)) #0x10 + file_new.write(numpy.uint32(len(DUMP["FUNCTIONS"]))) #0x14 + keys = list(DUMP["FUNCTIONS"].keys()) + rekeys = [] + for x in range(0, len(keys)): + try: + int(keys[x]) + except: + rekeys.append(keys[x].encode("ASCII")) + else: + if (int(keys[x]) == x): + rekeys.append(b"") + else: + rekeys.append(keys[x].encode("ASCII")) + file_new.seek(4, 1) + file_new.write(numpy.uint32(int(DUMP["HEADER"]["TYPE"], base=16))) #0x1C + file_new.write(DUMP["HEADER"]["ID"].encode("ASCII") + b"\x00") + functions_pointer_table_ptr = file_new.tell() + file_new.seek(size_of_functions_pointer_table, 1) + functions_strings_table_ptr = file_new.tell() + functions_string_pointers = [] + entry = [] + for x in range(0, len(rekeys)): + file_new.write(numpy.uint16(functions_pointer + size_of_functions_pointer_table + (len(DUMP["FUNCTIONS"]) * 2) + len(b"".join(entry)))) + entry.append(rekeys[x] + b"\x00") + file_new.write(b"".join(entry)) + pos = file_new.tell() + file_new.seek(0x18) + file_new.write(numpy.uint32(pos)) + file_new.seek(pos) + while (file_new.tell() % 4 != 0): + file_new.write(b"\x00") + + #Write Commands + offset = file_new.tell() + Label_offsets = {} + for x in range(0, len(keys)): + COMMAND_BLOCK = [] + pos = file_new.tell() + file_new.seek(functions_pointer + (4 * x)) + file_new.write(numpy.uint32(pos)) + file_new.seek(pos) + temp = [] + for y in range(0, len(DUMP["FUNCTIONS"][keys[x]])): + entry = DUMP["FUNCTIONS"][keys[x]][y] + if (entry["TYPE"] != "CREATE_MONSTERS"): + Label_offsets[entry["LABEL"]] = offset + offset += len(GenerateCommand(entry)) + if (x != (len(keys) - 1)): + if (offset % 4 != 0): + offset += (4 - (offset % 4)) + for y in range(0, len(DUMP["FUNCTIONS"][keys[x]])): + entry = DUMP["FUNCTIONS"][keys[x]][y] + COMMAND_BLOCK.append(GenerateCommand(entry, Label_offsets)) + file_new.write(b"".join(COMMAND_BLOCK)) + if (x != (len(keys) - 1)): + while (file_new.tell() % 4 != 0): + file_new.write(b"\x00") + file_new.close() diff --git a/talk_assembler.py b/talk_assembler.py new file mode 100644 index 0000000..79ad3c2 --- /dev/null +++ b/talk_assembler.py @@ -0,0 +1,856 @@ +import glob +import os +import json +import sys +import numpy + +def WriteDialog(dialog): + entry = [] + for i in range(0, len(dialog["STRINGS"])): + size = len(dialog["STRINGS"][i]) + if (size < 5): + entry.append(dialog["STRINGS"][i].encode("UTF-8").replace(b"\n", b"\x01")) + continue + match(dialog["STRINGS"][i][0:5]): + case "NEW_L": + entry.append(numpy.uint8(1)) + case "CMD: ": + entry.append(numpy.uint8(int(dialog["STRINGS"][i].replace("CMD: ", "")))) + case "KEY_W": + entry.append(numpy.uint8(2)) + case "CLEAR": + entry.append(numpy.uint8(3)) + case "SHOW_": + entry.append(numpy.uint8(6)) + case "SET_C": + entry.append(numpy.uint8(7)) + case "ITEM_": + entry.append(numpy.uint8(0x10)) + entry.append(numpy.uint16(int(dialog["STRINGS"][i].replace("ITEM_ID: ", "")))) + case "VOICE": + entry.append(numpy.uint8(0x11)) + entry.append(numpy.uint32(int(dialog["STRINGS"][i].replace("VOICE_FILE_ID: ", "")))) + case "CMD12": + entry.append(numpy.uint32(int(dialog["STRINGS"][i].replace("CMD12_ARG: ", "")))) + case _: + entry.append(dialog["STRINGS"][i].encode("UTF-8").replace(b"\n", b"\x01")) + entry.append(b"\x00") + return b"".join(entry) + + +def CalcGoto(table): + entry = [] + for i in range(0, len(table)): + entry.append(numpy.uint8(table[i]["CONTROL"])) + if (table[i]["CONTROL"] in [2, 3, 4, 5, 6, 7, 8, 9, 0xA, 0xB, 0xC, 0xD, 0xE, 0x10, 0x11, 0x12, 0x13, 0x17, 0x22]): + continue + match(table[i]["CONTROL"]): + case 0: + entry.append(numpy.int32(table[i]["UNK"][0])) + case 0x1E: + entry.append(numpy.int16(table[i]["UNK"][0])) + case 0x1F: + entry.append(numpy.int8(table[i]["UNK"][0])) + case 0x20: + entry.append(numpy.int8(table[i]["UNK"][0])) + case 0x21: + entry.append(bytes.fromhex(table[i]["UNK"])) + case 0x23: + entry.append(numpy.int8(table[i]["UNK"][0])) + case 0x24: + entry.append(numpy.int32(table[i]["UNK"][0])) + case 0x25: + entry.append(numpy.int16(table[i]["UNK"][0])) + case 0x1C: + entry.append(GenerateCommand(table[i]["INSTRUCTION"])) + entry.append(numpy.uint8(1)) + return b"".join(entry) + +def GenerateCommand(entry, Offset_dict = None): + ret_entry = [] + match(entry["TYPE"]): + case "RETURN": + ret_entry.append(numpy.uint8(1)) + case "JUMP_TO_FUNCTION": + ret_entry.append(numpy.uint8(2)) + ret_entry.append(numpy.int8(entry["UNK"][0])) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + case "GOTO3": + ret_entry.append(numpy.uint8(3)) + if (Offset_dict == None): + ret_entry.append(numpy.uint32(0)) + else: + ret_entry.append(numpy.uint32(Offset_dict[entry["TO_LABEL"]])) + case "0x4": + ret_entry.append(numpy.uint8(4)) + ret_entry.append(numpy.int8(entry["UNK"][0])) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + case "GOTO5": + ret_entry.append(numpy.uint8(5)) + ret_entry.append(CalcGoto(entry["TABLE"])) + if (Offset_dict == None): + ret_entry.append(numpy.uint32(0)) + else: + ret_entry.append(numpy.uint32(Offset_dict[entry["TO_LABEL"]])) + + case "GOTO6": + ret_entry.append(numpy.uint8(6)) + ret_entry.append(CalcGoto(entry["TABLE"])) + ret_entry.append(numpy.uint8(len(entry["TO_LABELS"]))) + for i in range(0, len(entry["TO_LABELS"])): + ret_entry.append(numpy.uint16(entry["TO_LABELS"][i]["UNK"][0])) + if (Offset_dict == None): + ret_entry.append(numpy.uint32(0)) + else: + ret_entry.append(numpy.uint32(Offset_dict[entry["TO_LABELS"][i]["TO_LABEL"]])) + if (Offset_dict == None): + ret_entry.append(numpy.uint32(0)) + else: + ret_entry.append(numpy.uint32(Offset_dict[entry["TO_LABEL"]])) + case "0x7": + ret_entry.append(numpy.uint8(7)) + ret_entry.append(numpy.int32(entry["UNK"][0])) + case "0x8": + ret_entry.append(numpy.uint8(8)) + ret_entry.append(CalcGoto(entry["TABLE"])) + case "0xA": + ret_entry.append(numpy.uint8(0xA)) + ret_entry.append(numpy.int8(entry["UNK"][0])) + ret_entry.append(CalcGoto(entry["TABLE"])) + case "0xC": + ret_entry.append(numpy.uint8(0xC)) + ret_entry.append(numpy.int16(entry["UNK"][0])) + case "0xD": + ret_entry.append(numpy.uint8(0xD)) + ret_entry.append(numpy.int16(entry["UNK"][0])) + case "0xE": + ret_entry.append(numpy.uint8(0xE)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0xF": + ret_entry.append(numpy.uint8(0xF)) + ret_entry.append(numpy.int32(entry["UNK"][0])) + case "0x10": + ret_entry.append(numpy.uint8(0x10)) + ret_entry.append(numpy.int16(entry["UNK"][0])) + case "0x11": + ret_entry.append(numpy.uint8(0x11)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x12": + ret_entry.append(numpy.uint8(0x12)) + ret_entry.append(numpy.int8(entry["UNK"][0])) + ret_entry.append(CalcGoto(entry["TABLE"])) + case "0x13": + ret_entry.append(numpy.uint8(0x13)) + ret_entry.append(numpy.int16(entry["UNK0"][0])) + for i in range(0, 3): + ret_entry.append(entry["STRINGS1"][i].encode("UTF-8") + b"\x00") + ret_entry.append(bytes.fromhex(entry["UNK1"])) + for i in range(0, 2): + ret_entry.append(entry["STRINGS2"][i].encode("UTF-8") + b"\x00") + ret_entry.append(bytes.fromhex(entry["UNK2"])) + case "0x14": + ret_entry.append(numpy.uint8(0x14)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + case "0x15": + ret_entry.append(numpy.uint8(0x15)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x16": + ret_entry.append(numpy.uint8(0x16)) + ret_entry.append(numpy.int8(entry["UNK"][0])) + case "0x17": + ret_entry.append(numpy.uint8(0x17)) + ret_entry.append(numpy.int8(entry["UNK"][0])) + case "TEXT18": + ret_entry.append(numpy.uint8(0x18)) + ret_entry.append(numpy.int16(entry["UNK"][0])) + ret_entry.append(WriteDialog(entry["DIALOG"])) + case "0x19": + ret_entry.append(numpy.uint8(0x19)) + ret_entry.append(numpy.int8(entry["CONTROL"])) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "MESSAGE": + ret_entry.append(numpy.uint8(0x1A)) + ret_entry.append(numpy.int16(entry["NAME_ID"])) + ret_entry.append(WriteDialog(entry["DIALOG"])) + case "0x1B": + ret_entry.append(numpy.uint8(0x1B)) + case "REMOVE_TEXT_BOX": + ret_entry.append(numpy.uint8(0x1C)) + case "OVERRIDE_DIALOG_SPEAKER": + ret_entry.append(numpy.uint8(0x1D)) + ret_entry.append(entry["NAME"][0].encode("UTF-8") + b"\x00") + ret_entry.append(numpy.int16(entry["UNK"][0])) + case "JUMP_TO_ID": + ret_entry.append(numpy.uint8(0x1E)) + for i in range(0, 2): + ret_entry.append(entry["STRINGS"][i].encode("UTF-8") + b"\x00") + case "0x1F": + ret_entry.append(numpy.uint8(0x1F)) + ret_entry.append(numpy.int8(entry["CONTROL"])) + ret_entry.append(numpy.int8(entry["CONTROL2"])) + if (entry["CONTROL"] != 3): + if (entry["CONTROL"] == 1): + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x20": + ret_entry.append(numpy.uint8(0x20)) + ret_entry.append(numpy.uint8(entry["SIZE_CHECK"])) + ret_entry.append(bytes.fromhex(entry["UNK0"])) + for i in range(0, 2): + ret_entry.append(entry["STRINGS"][i].encode("UTF-8") + b"\x00") + ret_entry.append(numpy.int8(entry["UNK1"][0])) + case "0x21": + ret_entry.append(numpy.uint8(0x21)) + ret_entry.append(numpy.uint8(entry["CONTROL"])) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x22": + ret_entry.append(numpy.uint8(0x22)) + ret_entry.append(numpy.int16(entry["UNK0"][0])) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + ret_entry.append(bytes.fromhex(entry["UNK1"])) + case "0x23": + ret_entry.append(numpy.uint8(0x23)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x24": + ret_entry.append(numpy.uint8(0x24)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + for i in range(0, 2): + ret_entry.append(entry["STRINGS"][i].encode("UTF-8") + b"\x00") + case "0x25": + ret_entry.append(numpy.uint8(0x25)) + ret_entry.append(bytes.fromhex(entry["UNK0"])) + for i in range(0, 2): + ret_entry.append(entry["STRINGS"][i].encode("UTF-8") + b"\x00") + ret_entry.append(bytes.fromhex(entry["UNK1"])) + case "0x26": + ret_entry.append(numpy.uint8(0x26)) + ret_entry.append(numpy.int8(entry["UNK"][0])) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + case "0x27": + ret_entry.append(numpy.uint8(0x27)) + ret_entry.append(numpy.uint8(entry["CONTROL"])) + if (entry["CONTROL"] in [0x11, 0x10, 0xF, 0xB, 0xD, 0xE, 0x12, 0x13, 0x14, 0xA, 0x15]): + ret_entry.append(bytes.fromhex(entry["UNK"])) + elif (entry["CONTROL"] == 0xC): + ret_entry.append(bytes.fromhex(entry["UNK0"])) + if (entry["CONTROL"] in [0xA, 0xC, 0x15]): + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + if (entry["CONTROL"] == 0xC): + ret_entry.append(bytes.fromhex(entry["UNK1"])) + case "0x28": + ret_entry.append(numpy.uint8(0x28)) + ret_entry.append(numpy.uint8(entry["CONTROL"])) + match(entry["CONTROL"]): + case 80: + ret_entry.append(numpy.int16(entry["UNK0"][0])) + ret_entry.append(entry["STRINGS1"][0].encode("UTF-8") + b"\x00") + ret_entry.append(bytes.fromhex(entry["UNK1"])) + ret_entry.append(entry["STRINGS2"][0].encode("UTF-8") + b"\x00") + case 100: + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + case _: + ret_entry.append(bytes.fromhex(entry["UNK"])) + if (entry["CONTROL"] == ord("i")): + for i in range(0, 2): + ret_entry.append(entry["STRINGS"][i].encode("UTF-8") + b"\x00") + elif (entry["CONTROL"] in [ord("\a"), 5]): + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + case "0x29": + ret_entry.append(numpy.uint8(0x29)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x2A": + ret_entry.append(numpy.uint8(0x2A)) + ret_entry.append(numpy.int16(entry["UNK"][0])) + case "0x2B": + ret_entry.append(numpy.uint8(0x2B)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x2C": + ret_entry.append(numpy.uint8(0x2C)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x2D": + ret_entry.append(numpy.uint8(0x2D)) + ret_entry.append(numpy.uint8(entry["CONTROL"])) + if (entry["CONTROL"] in [3, 0x14]): + ret_entry.append(bytes.fromhex(entry["UNK0"])) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + ret_entry.append(bytes.fromhex(entry["UNK1"])) + elif (entry["CONTROL"] in [0, 0x10]): + pass + else: + ret_entry.append(bytes.fromhex(entry["UNK0"])) + case "0x2E": + ret_entry.append(numpy.uint8(0x2E)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x2F": + ret_entry.append(numpy.uint8(0x2F)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + case "0x30": + ret_entry.append(numpy.uint8(0x30)) + ret_entry.append(numpy.uint8(entry["CONTROL"])) + if (entry["CONTROL"] != 7): + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x31": + ret_entry.append(numpy.uint8(0x31)) + ret_entry.append(numpy.uint8(entry["CONTROL"])) + if (entry["CONTROL"] == 0x32): + ret_entry.append(numpy.uint16(entry["VOICE_FILE_ID"])) + elif (entry["CONTROL"] == 0x34): + ret_entry.append(numpy.uint16(entry["VOICE_FILE_ID"])) + if (entry["CONTROL"] != 0x34): + ret_entry.append(bytes.fromhex(entry["UNK"])) + if (entry["CONTROL"] in [0, 0x32]): + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + case "SET_NAME_ID": + ret_entry.append(numpy.uint8(0x32)) + ret_entry.append(numpy.uint8(entry["CONTROL"])) + ret_entry.append(numpy.uint16(entry["NAME_ID"])) + if (entry["CONTROL"] == 2): + ret_entry.append(bytes.fromhex(entry["UNK"])) + elif (entry["CONTROL"] in [1, 3, 4]): + for i in range(0, len(entry["STRINGS"])): + ret_entry.append(entry["STRINGS"][i].encode("UTF-8") + b"\x00") + case "0x33": + ret_entry.append(numpy.uint8(0x33)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x34": + ret_entry.append(numpy.uint8(0x34)) + ret_entry.append(numpy.uint16(entry["NAME_ID"])) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x35": + ret_entry.append(numpy.uint8(0x35)) + ret_entry.append(numpy.int16(entry["UNK"][0])) + case "0x36": + ret_entry.append(numpy.uint8(0x36)) + ret_entry.append(numpy.int16(entry["UNK0"][0])) + ret_entry.append(numpy.int16(entry["CONTROL"])) + ret_entry.append(bytes.fromhex(entry["UNK1"])) + case "0x37": + ret_entry.append(numpy.uint8(0x37)) + ret_entry.append(numpy.int16(entry["NAME_ID"])) + ret_entry.append(numpy.uint8(entry["UNK"][0])) + case "0x38": + ret_entry.append(numpy.uint8(0x38)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x39": + ret_entry.append(numpy.uint8(0x39)) + ret_entry.append(numpy.uint8(entry["CONTROL"])) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x3A": + ret_entry.append(numpy.uint8(0x3A)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x3B": + ret_entry.append(numpy.uint8(0x3B)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x3C": + ret_entry.append(numpy.uint8(0x3C)) + ret_entry.append(numpy.int16(entry["NAME_ID"])) + for i in range(0, 2): + ret_entry.append(numpy.uint16(entry["CONTROLS"][i])) + try: + ret_entry.append(bytes.fromhex(entry["UNK"])) + except: + pass + case "0x3D": + ret_entry.append(numpy.uint8(0x3D)) + ret_entry.append(numpy.int8(entry["UNK0"][0])) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + ret_entry.append(numpy.int16(entry["UNK1"][0])) + case "0x3E": + ret_entry.append(numpy.uint8(0x3E)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x3F": + ret_entry.append(numpy.uint8(0x3F)) + ret_entry.append(numpy.int8(entry["CONTROL"])) + try: + ret_entry.append(bytes.fromhex(entry["UNK"])) + except: + pass + case "0x40": + ret_entry.append(numpy.uint8(0x40)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x41": + ret_entry.append(numpy.uint8(0x41)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x42": + ret_entry.append(numpy.uint8(0x42)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x43": + ret_entry.append(numpy.uint8(0x43)) + ret_entry.append(numpy.int32(entry["UNK"][0])) + case "0x44": + ret_entry.append(numpy.uint8(0x44)) + ret_entry.append(numpy.int8(entry["CONTROL"])) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x45": + ret_entry.append(numpy.uint8(0x45)) + for i in range(0, 2): + ret_entry.append(entry["STRINGS"][i].encode("UTF-8") + b"\x00") + case "0x46": + ret_entry.append(numpy.uint8(0x46)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x47": + ret_entry.append(numpy.uint8(0x47)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x48": + ret_entry.append(numpy.uint8(0x48)) + ret_entry.append(numpy.int8(entry["UNK"][0])) + case "0x49": + ret_entry.append(numpy.uint8(0x49)) + ret_entry.append(numpy.uint8(entry["CONTROL"])) + if (entry["CONTROL"] in [0xB, 0xE, 0xF, 0x10, 0x11, 0x12, 0x16, 0x1D, 0x1E, 0x20, 0x25]): + pass + elif (entry["CONTROL"] in [10, 4, 3, 2, 1, 0]): + ret_entry.append(bytes.fromhex(entry["UNK"])) + else: + if (entry["CONTROL"] in [0xD, 0x14, 0x15, 0x19, 0x1C]): + for i in range(0, len(entry["STRINGS"])): + ret_entry.append(entry["STRINGS"][i].encode("UTF-8") + b"\x00") + if (entry["CONTROL"] in [0xD, 0x14, 0x17, 0x18, 0x1C, 0x21, 0x23, 0x24, 0x26, 0x28, 0x29]): + ret_entry.append(bytes.fromhex(entry["UNK"])) + if (entry["CONTROL"] == 0x26): + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + case "0x4A": + ret_entry.append(numpy.uint8(0x4A)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + case "0x4B": + ret_entry.append(numpy.uint8(0x4B)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x4C": + ret_entry.append(numpy.uint8(0x4C)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x4D": + ret_entry.append(numpy.uint8(0x4D)) + ret_entry.append(numpy.int8(entry["UNK"][0])) + case "0x4F": + ret_entry.append(numpy.uint8(0x4F)) + ret_entry.append(bytes.fromhex(entry["UNK0"])) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + ret_entry.append(bytes.fromhex(entry["UNK1"])) + case "0x51": + ret_entry.append(numpy.uint8(0x51)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + case "0x52": + ret_entry.append(numpy.uint8(0x52)) + ret_entry.append(numpy.int16(entry["UNK0"][0])) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + ret_entry.append(bytes.fromhex(entry["UNK1"])) + case "0x53": + ret_entry.append(numpy.uint8(0x53)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x55": + ret_entry.append(numpy.uint8(0x55)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + case "0x56": + ret_entry.append(numpy.uint8(0x56)) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + ret_entry.append(numpy.int16(entry["UNK"][0])) + case "0x57": + ret_entry.append(numpy.uint8(0x57)) + case "0x58": + ret_entry.append(numpy.uint8(0x58)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x59": + ret_entry.append(numpy.uint8(0x59)) + ret_entry.append(numpy.int16(entry["UNK"][0])) + case "0x5A": + ret_entry.append(numpy.uint8(0x5A)) + ret_entry.append(numpy.int8(entry["UNK0"][0])) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + ret_entry.append(numpy.int16(entry["UNK1"][0])) + case "0x5B": + ret_entry.append(numpy.uint8(0x5B)) + ret_entry.append(numpy.int8(entry["CONTROL"])) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x5C": + ret_entry.append(numpy.uint8(0x5C)) + ret_entry.append(numpy.int8(entry["CONTROL"])) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x5D": + ret_entry.append(numpy.uint8(0x5D)) + ret_entry.append(numpy.int8(entry["CONTROL"])) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + try: + ret_entry.append(bytes.fromhex(entry["UNK"])) + except: + pass + case "0x5E": + ret_entry.append(numpy.uint8(0x5E)) + ret_entry.append(numpy.int8(entry["CONTROL"])) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x5F": + ret_entry.append(numpy.uint8(0x5F)) + ret_entry.append(numpy.int16(entry["UNK0"])) + ret_entry.append(numpy.int8(entry["CONTROL"])) + if (entry["CONTROL"] != 1): + ret_entry.append(bytes.fromhex(entry["UNK1"])) + case "0x60": + ret_entry.append(numpy.uint8(0x60)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x61": + ret_entry.append(numpy.uint8(0x61)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x62": + ret_entry.append(numpy.uint8(0x62)) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x63": + ret_entry.append(numpy.uint8(0x63)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x64": + ret_entry.append(numpy.uint8(0x64)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x65": + ret_entry.append(numpy.uint8(0x65)) + ret_entry.append(numpy.int8(entry["CONTROL"])) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x66": + ret_entry.append(numpy.uint8(0x66)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x67": + ret_entry.append(numpy.uint8(0x67)) + ret_entry.append(numpy.uint16(entry["CONTROLS"][0])) + ret_entry.append(numpy.uint8(entry["CONTROLS"][1])) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x68": + ret_entry.append(numpy.uint8(0x68)) + ret_entry.append(numpy.int16(entry["UNK0"][0])) + ret_entry.append(numpy.int8(entry["CONTROL"])) + ret_entry.append(bytes.fromhex(entry["UNK1"])) + case "0x69": + ret_entry.append(numpy.uint8(0x69)) + ret_entry.append(numpy.int16(entry["UNK0"][0])) + ret_entry.append(numpy.int8(entry["CONTROL"])) + match(entry["CONTROL"]): + case 0: + ret_entry.append(bytes.fromhex(entry["UNK1"])) + case 2: + ret_entry.append(bytes.fromhex(entry["UNK1"])) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + case 3: + ret_entry.append(entry["STRINGS1"][0].encode("UTF-8") + b"\x00") + ret_entry.append(bytes.fromhex(entry["UNK1"])) + ret_entry.append(entry["STRINGS2"][0].encode("UTF-8") + b"\x00") + case 5: + ret_entry.append(bytes.fromhex(entry["UNK1"])) + case "0x6A": + ret_entry.append(numpy.uint8(0x6A)) + ret_entry.append(numpy.int8(entry["CONTROLS"][0])) + ret_entry.append(numpy.int8(entry["CONTROLS"][1])) + if(entry["CONTROLS"][0] == 1): + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + if(entry["CONTROLS"][0] != 3): + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x6B": + ret_entry.append(numpy.uint8(0x6B)) + ret_entry.append(numpy.int16(entry["UNK0"][0])) + for i in range(0, 2): + ret_entry.append(entry["STRINGS"][i].encode("UTF-8") + b"\x00") + ret_entry.append(numpy.int8(entry["UNK1"][0])) + case "0x6C": + ret_entry.append(numpy.uint8(0x6C)) + ret_entry.append(numpy.int16(entry["UNK"][0])) + case "0x6D": + ret_entry.append(numpy.uint8(0x6D)) + ret_entry.append(numpy.int8(entry["UNK"][0])) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + case "0x6E": + ret_entry.append(numpy.uint8(0x6E)) + ret_entry.append(numpy.uint8(entry["CONTROL"])) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x6F": + ret_entry.append(numpy.uint8(0x6F)) + ret_entry.append(numpy.int8(entry["CONTROL"])) + if (entry["CONTROL"] in [1, 2]): + ret_entry.append(numpy.int16(entry["UNK"][0])) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + case "0x70": + ret_entry.append(numpy.uint8(0x70)) + ret_entry.append(numpy.uint8(entry["CONTROL"])) + if (entry["CONTROL"] == 1): + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x71": + ret_entry.append(numpy.uint8(0x71)) + ret_entry.append(numpy.uint8(entry["CONTROL"])) + if (entry["CONTROL"] == 0): + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x72": + ret_entry.append(numpy.uint8(0x72)) + ret_entry.append(numpy.int16(entry["UNK"][0])) + case "0x73": + ret_entry.append(numpy.uint8(0x73)) + ret_entry.append(numpy.uint8(entry["CONTROL"])) + if (entry["CONTROL"] > 1): + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x74": + ret_entry.append(numpy.uint8(0x74)) + ret_entry.append(numpy.int8(entry["UNK"][0])) + case "0x77": + ret_entry.append(numpy.uint8(0x77)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x78": + ret_entry.append(numpy.uint8(0x78)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x79": + ret_entry.append(numpy.uint8(0x79)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x7A": + ret_entry.append(numpy.uint8(0x7A)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x7B": + ret_entry.append(numpy.uint8(0x7B)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + case "0x7D": + ret_entry.append(numpy.uint8(0x7D)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x7E": + ret_entry.append(numpy.uint8(0x7E)) + ret_entry.append(numpy.int16(entry["UNK"][0])) + case "0x7F": + ret_entry.append(numpy.uint8(0x7F)) + ret_entry.append(numpy.int8(entry["CONTROL"])) + ret_entry.append(bytes.fromhex(entry["UNK0"])) + for i in range(0, len(entry["STRINGS"])): + ret_entry.append(entry["STRINGS"][i].encode("UTF-8") + b"\x00") + if (entry["CONTROL"] not in [0, 1]): + ret_entry.append(bytes.fromhex(entry["UNK1"])) + case "0x81": + ret_entry.append(numpy.uint8(0x81)) + ret_entry.append(numpy.int8(entry["CONTROL"])) + if (entry["CONTROL"] in [0, 3, 4]): + ret_entry.append(numpy.int16(entry["UNK"][0])) + case "0x82": + ret_entry.append(numpy.uint8(0x82)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x83": + ret_entry.append(numpy.uint8(0x83)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x84": + ret_entry.append(numpy.uint8(0x84)) + case "0x85": + ret_entry.append(numpy.uint8(0x85)) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + ret_entry.append(numpy.int32(entry["UNK"][0])) + case "0x86": + ret_entry.append(numpy.uint8(0x86)) + ret_entry.append(numpy.int8(entry["CONTROL"])) + try: + ret_entry.append(bytes.fromhex(entry["UNK"])) + except: + pass + case "0x87": + ret_entry.append(numpy.uint8(0x87)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x88": + ret_entry.append(numpy.uint8(0x88)) + ret_entry.append(numpy.int8(entry["CONTROL"])) + if (entry["CONTROL"] == 0): + ret_entry.append(numpy.int16(entry["UNK"][0])) + case "0x89": + ret_entry.append(numpy.uint8(0x89)) + ret_entry.append(numpy.int8(entry["CONTROL"])) + if (entry["CONTROL"] == 0): + ret_entry.append(numpy.int32(entry["UNK"][0])) + case "0x8A": + ret_entry.append(numpy.uint8(0x8A)) + ret_entry.append(numpy.int8(entry["CONTROL"])) + if (entry["CONTROL"] == 0): + for i in range(0, 2): + ret_entry.append(entry["STRINGS"][i].encode("UTF-8") + b"\x00") + case "0x8B": + ret_entry.append(numpy.uint8(0x8B)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x8C": + ret_entry.append(numpy.uint8(0x8C)) + ret_entry.append(numpy.int16(entry["UNK"][0])) + case "0x8D": + ret_entry.append(numpy.uint8(0x8D)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x8E": + ret_entry.append(numpy.uint8(0x8E)) + ret_entry.append(numpy.int16(entry["UNK"][0])) + case "0x90": + ret_entry.append(numpy.uint8(0x90)) + ret_entry.append(numpy.int8(entry["CONTROL"])) + if (entry["CONTROL"] == 0): + ret_entry.append(numpy.int16(entry["UNK"][0])) + case "0x91": + ret_entry.append(numpy.uint8(0x91)) + ret_entry.append(numpy.int8(entry["CONTROL"])) + if (entry["CONTROL"] == 0): + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x92": + ret_entry.append(numpy.uint8(0x92)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x93": + ret_entry.append(numpy.uint8(0x93)) + ret_entry.append(numpy.int8(entry["UNK"][0])) + case "0x94": + ret_entry.append(numpy.uint8(0x94)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x95": + ret_entry.append(numpy.uint8(0x95)) + case "0x96": + ret_entry.append(numpy.uint8(0x96)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x97": + ret_entry.append(numpy.uint8(0x97)) + ret_entry.append(numpy.int16(entry["UNK"][0])) + case "0x98": + ret_entry.append(numpy.uint8(0x98)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x99": + ret_entry.append(numpy.uint8(0x99)) + case "0x9A": + ret_entry.append(numpy.uint8(0x9A)) + ret_entry.append(numpy.uint8(entry["CONTROL"])) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x9B": + ret_entry.append(numpy.uint8(0x9B)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x9E": + ret_entry.append(numpy.uint8(0x9E)) + ret_entry.append(numpy.int8(entry["UNK"][0])) + case "0x9F": + ret_entry.append(numpy.uint8(0x9F)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + for i in range(0, 2): + ret_entry.append(entry["STRINGS"][i].encode("UTF-8") + b"\x00") + case "0xA1": + ret_entry.append(numpy.uint8(0xA1)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0xA2": + ret_entry.append(numpy.uint8(0xA2)) + ret_entry.append(numpy.int16(entry["UNK"][0])) + case "0xA3": + ret_entry.append(numpy.uint8(0xA3)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0xA4": + ret_entry.append(numpy.uint8(0xA4)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0xA5": + ret_entry.append(numpy.uint8(0xA5)) + ret_entry.append(numpy.int16(entry["UNK"][0])) + case "0xA6": + ret_entry.append(numpy.uint8(0xA6)) + ret_entry.append(numpy.int8(entry["CONTROL"])) + ret_entry.append(bytes.fromhex(entry["UNK"])) + if (entry["CONTROL"] == 0x32): + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + case "0xFF": + ret_entry.append(numpy.int32(-1)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "CREATE_MONSTERS": + try: + ret_entry.append(entry["MAP"].encode("UTF-8") + b"\x00") + except: + ret_entry.append(bytes.fromhex(entry["UNK0"])) + else: + ret_entry.append(b"\x00" * (0x10 - len(entry["MAP"].encode("UTF-8") + b"\x00"))) + ret_entry.append(bytes.fromhex(entry["UNK0"])) + table = entry["TABLE"] + for i in range(0, len(table)): + ret_entry.append(numpy.int32(table[i]["UNK0"][0])) + for x in range(0, 8): + ret_entry.append(table[i]['STRINGS1'][x].encode("UTF-8") + b"\x00") + ret_entry.append(b"\x00" * (0x10 - len(table[i]['STRINGS1'][x].encode("UTF-8") + b"\x00"))) + ret_entry.append(bytes.fromhex(table[i]["UNK1"])) + try: + ret_entry.append(table[i]['STRINGS2'][0].encode("UTF-8") + b"\x00") + except: + pass + else: + ret_entry.append(b"\x00" * (12 - len(table[i]['STRINGS1'][x].encode("UTF-8") + b"\x00"))) + try: + ret_entry.append(bytes.fromhex(entry["UNK1"])) + except: + ret_entry.append(numpy.uint32(1)) + case _: + print("UNKNOWN COMMAND: %s" % entry["TYPE"]) + sys.exit() + + return b"".join(ret_entry) + +files = glob.glob("scripts/talk/jsons/*.json") + +os.makedirs("scripts/talk/nx", exist_ok=True) +for i in range(0, len(files)): + print(files[i]) + file = open(files[i], "r", encoding="UTF-8") + DUMP = json.load(file) + file.close() + + # Write Header + file_new = open("scripts/talk/nx/%s.dat" % files[i][19:-5], "wb") + file_new.write(numpy.uint32(0x20)) #0x0 always starting with 0x20 + file_new.write(numpy.uint32(0x20)) #0x4 we want to always start with 0x20 for easier management + functions_pointer = 0x20 + len(DUMP["HEADER"]["ID"]) + 1 + file_new.write(numpy.uint32(functions_pointer)) #0x08 + size_of_functions_pointer_table = len(DUMP["FUNCTIONS"]) * 4 + file_new.write(numpy.uint32(size_of_functions_pointer_table)) #0x0C + file_new.write(numpy.uint32(functions_pointer + size_of_functions_pointer_table)) #0x10 + file_new.write(numpy.uint32(len(DUMP["FUNCTIONS"]))) #0x14 + keys = list(DUMP["FUNCTIONS"].keys()) + rekeys = [] + for x in range(0, len(keys)): + try: + int(keys[x]) + except: + rekeys.append(keys[x].encode("ASCII")) + else: + if (int(keys[x]) == x): + rekeys.append(b"") + else: + rekeys.append(keys[x].encode("ASCII")) + file_new.seek(4, 1) + file_new.write(numpy.uint32(int(DUMP["HEADER"]["TYPE"], base=16))) #0x1C + file_new.write(DUMP["HEADER"]["ID"].encode("ASCII") + b"\x00") + functions_pointer_table_ptr = file_new.tell() + file_new.seek(size_of_functions_pointer_table, 1) + functions_strings_table_ptr = file_new.tell() + functions_string_pointers = [] + entry = [] + for x in range(0, len(rekeys)): + file_new.write(numpy.uint16(functions_pointer + size_of_functions_pointer_table + (len(DUMP["FUNCTIONS"]) * 2) + len(b"".join(entry)))) + entry.append(rekeys[x] + b"\x00") + file_new.write(b"".join(entry)) + pos = file_new.tell() + file_new.seek(0x18) + file_new.write(numpy.uint32(pos)) + file_new.seek(pos) + while (file_new.tell() % 4 != 0): + file_new.write(b"\x00") + + #Write Commands + offset = file_new.tell() + Label_offsets = {} + for x in range(0, len(keys)): + COMMAND_BLOCK = [] + pos = file_new.tell() + file_new.seek(functions_pointer + (4 * x)) + file_new.write(numpy.uint32(pos)) + file_new.seek(pos) + temp = [] + for y in range(0, len(DUMP["FUNCTIONS"][keys[x]])): + entry = DUMP["FUNCTIONS"][keys[x]][y] + if (entry["TYPE"] != "CREATE_MONSTERS"): + Label_offsets[entry["LABEL"]] = offset + offset += len(GenerateCommand(entry)) + if (x != (len(keys) - 1)): + if (offset % 4 != 0): + offset += (4 - (offset % 4)) + for y in range(0, len(DUMP["FUNCTIONS"][keys[x]])): + entry = DUMP["FUNCTIONS"][keys[x]][y] + COMMAND_BLOCK.append(GenerateCommand(entry, Label_offsets)) + file_new.write(b"".join(COMMAND_BLOCK)) + if (x != (len(keys) - 1)): + while (file_new.tell() % 4 != 0): + file_new.write(b"\x00") + #print(Label_offsets) + file_new.close() \ No newline at end of file diff --git a/text/jsons/t_active.json b/text/jsons/t_active.json new file mode 100644 index 0000000..275f2ad --- /dev/null +++ b/text/jsons/t_active.json @@ -0,0 +1,8172 @@ +[ + { + "TYPE": "ActiveVoiceTableData", + "ID": 1, + "ASSET_SYMBOL": "I_AVF0020", + "UNK0": 138272, + "STRING": "Yikes! A monster?!", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4608, + 4976, + 0, + 5359, + 1024 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 2, + "ASSET_SYMBOL": "I_AVF0080", + "UNK0": 534488, + "STRING": "Huh... Never seen this kind before.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 4, + 4609, + 4977, + 4976, + 5359, + 1024 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 3, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 200, + "STRING": "It looks like a Flying Feline.\nCareful, everyone.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4610, + 4978, + 4977, + 5359, + 1024 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 4, + "ASSET_SYMBOL": "I_AVF0020", + "UNK0": 138273, + "STRING": "Please tell me there aren't more of\nthose things lurking around here...", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4611, + 4979, + 0, + 5359, + 1024 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 5, + "ASSET_SYMBOL": "I_AVF0080", + "UNK0": 534489, + "STRING": "I hate to tell you, but I can sense\nmore further in.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 4, + 4612, + 4980, + 4979, + 5359, + 1024 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 6, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 201, + "STRING": "Anyway, let's just stay alert.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4613, + 4981, + 4980, + 5359, + 1024 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 7, + "ASSET_SYMBOL": "I_AVF0020", + "UNK0": 138274, + "STRING": "I'm starting to lose my sense\nof direction down here...", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4614, + 4982, + 0, + 5359, + 1024 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 8, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 202, + "STRING": "Yeah. Gotta make sure we're\nnot going in circles.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4615, + 4983, + 4982, + 5359, + 1024 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 9, + "ASSET_SYMBOL": "I_AVF0040", + "UNK0": 270344, + "STRING": "What's a place like this even\ndoing on the school grounds?", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4616, + 4984, + 0, + 5359, + 1024 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 10, + "ASSET_SYMBOL": "I_AVF0020", + "UNK0": 138275, + "STRING": "Yeah... Who puts a giant trap\ndoor in a campus building?", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4617, + 4985, + 4984, + 5359, + 1024 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 11, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 203, + "STRING": "Looks like the path splits. Which\nway do you think we should go?", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4618, + 4986, + 0, + 5359, + 1024 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 12, + "ASSET_SYMBOL": "I_AVF0080", + "UNK0": 534490, + "STRING": "I feel a little wind blowing from the\neast. I'd bet the exit's that way.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4619, + 4987, + 4986, + 5359, + 1024 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 13, + "ASSET_SYMBOL": "I_AVF0040", + "UNK0": 270345, + "STRING": "...", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4620, + 4988, + 0, + 5359, + 1024 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 15, + "ASSET_SYMBOL": "I_AVF0020", + "UNK0": 138276, + "STRING": "(He seems kinda...imposing. I don't\nknow how to break the ice...)", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4622, + 4990, + 4988, + 5359, + 1024 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 14, + "ASSET_SYMBOL": "I_AVF0060", + "UNK0": 402416, + "STRING": "...", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4621, + 4989, + 0, + 5359, + 1024 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 431, + "ASSET_SYMBOL": "I_AVF0020", + "UNK0": 138276, + "STRING": "(He seems kinda...imposing. I don't\nknow how to break the ice...)", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4622, + 4990, + 4989, + 5359, + 1024 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 16, + "ASSET_SYMBOL": "I_AVF0040", + "UNK0": 270346, + "STRING": "Bah... I feel like we've just\nbeen going in circles.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4623, + 4991, + 0, + 5359, + 1024 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 18, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 204, + "STRING": "You might be right. Maybe we should\ncheck where we are on the map.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4625, + 4993, + 4991, + 5359, + 1024 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 17, + "ASSET_SYMBOL": "I_AVF0060", + "UNK0": 402417, + "STRING": "I feel like we've simply\nbeen running in circles.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4624, + 4992, + 0, + 5359, + 1024 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 432, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 204, + "STRING": "You might be right. Maybe we should\ncheck where we are on the map.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4625, + 4993, + 4992, + 5359, + 1024 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 19, + "ASSET_SYMBOL": "I_AVF0020", + "UNK0": 138277, + "STRING": "Wow, check out all these stalls!", + "UNK1": [ + 1.5, + 0.8999999761581421 + ], + "UNK2": [ + 45, + 4626, + 4994, + 0, + 5359, + 1044 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 20, + "ASSET_SYMBOL": "I_AVF0010", + "UNK0": 67736, + "STRING": "Oooh. The lace at that stall\nhas a really pretty design.", + "UNK1": [ + 1.5, + 0.8999999761581421 + ], + "UNK2": [ + 45, + 4627, + 4995, + 0, + 5359, + 1044 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 21, + "ASSET_SYMBOL": "I_AVF0030", + "UNK0": 199808, + "STRING": "Mishy...? I admit, it has a certain charm.", + "UNK1": [ + 1.5, + 0.8999999761581421 + ], + "UNK2": [ + 45, + 4628, + 4996, + 0, + 5359, + 1044 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 22, + "ASSET_SYMBOL": "I_AVF0010", + "UNK0": 67737, + "STRING": "All these windmills sure make\nthe town feel pretty laid back.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4629, + 4997, + 0, + 5359, + 1044 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 23, + "ASSET_SYMBOL": "I_AVF0030", + "UNK0": 199809, + "STRING": "True. The scenery is surprisingly\nrelaxing.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4630, + 4998, + 4997, + 5359, + 1044 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 24, + "ASSET_SYMBOL": "I_AVF0020", + "UNK0": 138278, + "STRING": "This would be a really tranquil\narea...if not for the monsters.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4631, + 4999, + 0, + 5359, + 1044 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 25, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 205, + "STRING": "Yeah. Let's be careful.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4632, + 5000, + 4999, + 5359, + 1044 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 26, + "ASSET_SYMBOL": "I_AVF0030", + "UNK0": 199810, + "STRING": "Is this a farmhouse?", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 45, + 4633, + 5001, + 0, + 5359, + 1044 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 27, + "ASSET_SYMBOL": "I_AVF0020", + "UNK0": 138279, + "STRING": "Huh. I wonder where we are...", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4634, + 5002, + 0, + 5359, + 1044 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 28, + "ASSET_SYMBOL": "I_AVF0030", + "UNK0": 199811, + "STRING": "Hmm... It says,\n'Lunaria Nature Park.'", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4635, + 5003, + 5002, + 5359, + 1044 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 29, + "ASSET_SYMBOL": "I_AVF0010", + "UNK0": 67738, + "STRING": "Wow. This farmhouse is huge.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4636, + 5004, + 0, + 5359, + 1044 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 30, + "ASSET_SYMBOL": "I_AVF0020", + "UNK0": 138280, + "STRING": "Haha. Look at the cows! ♪", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4637, + 5005, + 5004, + 5359, + 1044 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 31, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 206, + "STRING": "The Transcontinental Railroad, huh?\nGuess that'll take you out of the country.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4638, + 5006, + 0, + 5359, + 1044 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 32, + "ASSET_SYMBOL": "I_AVF0010", + "UNK0": 67739, + "STRING": "Yeah. If you keep on heading east, you'd\neventually reach Garrelia Fortress.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4639, + 5007, + 5006, + 5359, + 1044 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 33, + "ASSET_SYMBOL": "I_AVF0030", + "UNK0": 199812, + "STRING": "We should take a right here\nto reach the nature park.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4640, + 5008, + 0, + 1050, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 34, + "ASSET_SYMBOL": "I_AVF0010", + "UNK0": 67740, + "STRING": "Right. Let's go!", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4641, + 5009, + 5008, + 1050, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 35, + "ASSET_SYMBOL": "I_AVF0020", + "UNK0": 138281, + "STRING": "There's tons of little stone\nmonuments in here...", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4642, + 5010, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 36, + "ASSET_SYMBOL": "I_AVF0010", + "UNK0": 67741, + "STRING": "Yeah. What do you think\nthey're supposed to be?", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 4, + 4643, + 5011, + 5010, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 37, + "ASSET_SYMBOL": "I_AVF0030", + "UNK0": 199813, + "STRING": "I imagine they were made by\nthe animists in this province.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4644, + 5012, + 5011, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 38, + "ASSET_SYMBOL": "I_AVF0030", + "UNK0": 199814, + "STRING": "This way's a dead end.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4645, + 5013, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 39, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 207, + "STRING": "Yeah... This park covers a lot\nmore area than I was expecting.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4646, + 5014, + 5013, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 40, + "ASSET_SYMBOL": "I_AVF0010", + "UNK0": 67742, + "STRING": "Oh, there's a stream here.\nThis seems like a nice spot.", + "UNK1": [ + 1.5, + 1.0 + ], + "UNK2": [ + 45, + 4647, + 5015, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 41, + "ASSET_SYMBOL": "I_AVF0030", + "UNK0": 199815, + "STRING": "I can't sense anyone in this area.", + "UNK1": [ + 1.5, + 1.0 + ], + "UNK2": [ + 45, + 4648, + 5016, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 42, + "ASSET_SYMBOL": "I_AVF0020", + "UNK0": 138282, + "STRING": "Just how deep does this forest go?", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4649, + 5017, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 43, + "ASSET_SYMBOL": "I_AVF0030", + "UNK0": 199816, + "STRING": "We must be pretty far in now.\nI'd imagine we're almost there.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4650, + 5018, + 5017, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 44, + "ASSET_SYMBOL": "I_AVF0010", + "UNK0": 67743, + "STRING": "Oh, hey! There's an orbment\ncharging station!", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4651, + 5019, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 45, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 208, + "STRING": "We must be in the most remote\nreaches of the park.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4652, + 5020, + 5019, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 46, + "ASSET_SYMBOL": "I_AVF0070", + "UNK0": 463952, + "STRING": "Who's this a statue of?", + "UNK1": [ + 0.5, + 0.8999999761581421 + ], + "UNK2": [ + 13, + 4653, + 5021, + 0, + 5359, + 1562 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 47, + "ASSET_SYMBOL": "I_AVF0050", + "UNK0": 331880, + "STRING": "It seems to be a statue\nof St. Veronica.", + "UNK1": [ + 0.5, + 0.8999999761581421 + ], + "UNK2": [ + 4, + 4654, + 5022, + 5021, + 5359, + 1562 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 48, + "ASSET_SYMBOL": "I_AVF0060", + "UNK0": 402418, + "STRING": "Oh? You know of her?", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4655, + 5023, + 5022, + 5359, + 1562 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 49, + "ASSET_SYMBOL": "I_AVF0050", + "UNK0": 331881, + "STRING": "*sigh* I love the look of this\ncity. It's so beautiful...", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4656, + 5024, + 0, + 5359, + 1562 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 50, + "ASSET_SYMBOL": "I_AVF0040", + "UNK0": 270347, + "STRING": "Maybe so, but it's got nothing on\nHeimdallr in terms of sheer scale.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4657, + 5025, + 5024, + 5359, + 1562 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 51, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 209, + "STRING": "Is this the way to\nthe city's airport?", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4658, + 5026, + 0, + 5359, + 1562 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 52, + "ASSET_SYMBOL": "I_AVF0060", + "UNK0": 402419, + "STRING": "It is, though I doubt we'll have\nany reason to go there.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4659, + 5027, + 5026, + 5359, + 1562 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 53, + "ASSET_SYMBOL": "I_AVF0050", + "UNK0": 331882, + "STRING": "This seems to be the city's noble quarter.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4660, + 5028, + 0, + 5359, + 1562 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 54, + "ASSET_SYMBOL": "I_AVF0040", + "UNK0": 270348, + "STRING": "No wonder most of these houses\nlook so overblown and excessive.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 36, + 4661, + 5029, + 5028, + 5359, + 1562 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 55, + "ASSET_SYMBOL": "I_AVF0060", + "UNK0": 402420, + "STRING": "...", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4662, + 5030, + 5029, + 5359, + 1562 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 56, + "ASSET_SYMBOL": "I_AVF0060", + "UNK0": 402421, + "STRING": "Wait, this leads to...", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4663, + 5031, + 0, + 5359, + 1562 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 57, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 210, + "STRING": "Huh? What's wrong?", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 4, + 4664, + 5032, + 5031, + 5359, + 1562 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 58, + "ASSET_SYMBOL": "I_AVF0060", + "UNK0": 402422, + "STRING": "...Never mind.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4665, + 5033, + 5032, + 5359, + 1562 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 59, + "ASSET_SYMBOL": "I_AVF0070", + "UNK0": 463953, + "STRING": "This street seems kinda\ndifferent from the others.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4666, + 5034, + 0, + 5359, + 1562 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 60, + "ASSET_SYMBOL": "I_AVF0060", + "UNK0": 402423, + "STRING": "This is Artisans' Street, where craftsmen\nand merchants ply their trades.", + "UNK1": [ + 2.0, + 0.8999999761581421 + ], + "UNK2": [ + 36, + 4667, + 5035, + 5034, + 5359, + 1562 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 61, + "ASSET_SYMBOL": "I_AVF0070", + "UNK0": 463954, + "STRING": "Oh, a lake.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4668, + 5036, + 0, + 5359, + 1562 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 62, + "ASSET_SYMBOL": "I_AVF0050", + "UNK0": 331883, + "STRING": "Heehee. It looks so pretty.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4669, + 5037, + 5036, + 5359, + 1562 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 63, + "ASSET_SYMBOL": "I_AVF0040", + "UNK0": 270349, + "STRING": "A bridge, huh?", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4670, + 5038, + 0, + 5359, + 1562 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 64, + "ASSET_SYMBOL": "I_AVF0060", + "UNK0": 402424, + "STRING": "Saar Bridge. Beyond here is out\nof bounds for our field study.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4671, + 5039, + 5038, + 5359, + 1562 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 65, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 211, + "STRING": "That bridge above us looks like it\ndates back to the Middle Ages.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4672, + 5040, + 0, + 5359, + 1562 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 66, + "ASSET_SYMBOL": "I_AVF0060", + "UNK0": 402425, + "STRING": "It is. It's been there for\nseveral hundred years.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4673, + 5041, + 5040, + 5359, + 1562 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 67, + "ASSET_SYMBOL": "I_AVF0050", + "UNK0": 331884, + "STRING": "This looks like quite an old road,\nthough it does seem well reinforced.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4674, + 5042, + 0, + 5359, + 1562 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 68, + "ASSET_SYMBOL": "I_AVF0070", + "UNK0": 463955, + "STRING": "Yup... Looks like a lot of\narmored vehicles come this way.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 4, + 4675, + 5043, + 5042, + 5359, + 1562 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 69, + "ASSET_SYMBOL": "I_AVF0060", + "UNK0": 402426, + "STRING": "...", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4676, + 5044, + 5043, + 5359, + 1562 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 70, + "ASSET_SYMBOL": "I_AVF0040", + "UNK0": 270350, + "STRING": "I didn't notice there was a path here...", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4677, + 5045, + 0, + 5359, + 1558 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 71, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 212, + "STRING": "The monster we're looking\nfor should be just ahead.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4678, + 5046, + 5045, + 5359, + 1558 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 72, + "ASSET_SYMBOL": "I_AVF0070", + "UNK0": 463956, + "STRING": "We're finally back.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4679, + 5047, + 0, + 1562, + 1566 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 73, + "ASSET_SYMBOL": "I_AVF0050", + "UNK0": 331885, + "STRING": "Whew... My feet are killing me.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4680, + 5048, + 5047, + 1562, + 1566 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 74, + "ASSET_SYMBOL": "I_AVF0070", + "UNK0": 463957, + "STRING": "Just the kind of thing you'd\nexpect in an old ruin like this.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4681, + 5049, + 0, + 5359, + 1574 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 75, + "ASSET_SYMBOL": "I_AVF0050", + "UNK0": 331886, + "STRING": "Do you think it's powered by\nthe water flowing through here?", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4682, + 5050, + 5049, + 5359, + 1574 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 76, + "ASSET_SYMBOL": "I_AVF0060", + "UNK0": 402427, + "STRING": "The entrance to the guardhouse is\nto the west. We should hurry.", + "UNK1": [ + 1.5, + 1.0 + ], + "UNK2": [ + 45, + 4683, + 5051, + 0, + 5359, + 1574 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 77, + "ASSET_SYMBOL": "I_AVF0050", + "UNK0": 331887, + "STRING": "*pant* Why is this ladder so long?", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4684, + 5052, + 0, + 5359, + 1574 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 78, + "ASSET_SYMBOL": "I_AVF0070", + "UNK0": 463958, + "STRING": "Is it harder to climb ladders\nwhen you've got a big chest?", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 4, + 4685, + 5053, + 5052, + 5359, + 1574 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 79, + "ASSET_SYMBOL": "I_AVF0050", + "UNK0": 331888, + "STRING": "F-Fie...!", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 36, + 4686, + 5054, + 5053, + 5359, + 1574 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 80, + "ASSET_SYMBOL": "I_AVF1000", + "UNK0": 6605600, + "STRING": "...", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4687, + 5055, + 5054, + 5359, + 1574 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 81, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 214, + "STRING": "There's another lattice door...", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4688, + 5056, + 0, + 5359, + 1574 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 82, + "ASSET_SYMBOL": "I_AVF0060", + "UNK0": 402429, + "STRING": "There should be a mechanism\nto open it somewhere nearby.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4689, + 5057, + 5056, + 5359, + 1574 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 83, + "ASSET_SYMBOL": "I_AVF0050", + "UNK0": 331889, + "STRING": "Whew... I'm exhausted...", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4690, + 5058, + 0, + 5359, + 1574 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 84, + "ASSET_SYMBOL": "I_AVF0070", + "UNK0": 463959, + "STRING": "It's gotta be the chest...", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 4, + 4691, + 5059, + 5058, + 5359, + 1574 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 85, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 215, + "STRING": "Fie, that's enough.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 4, + 4692, + 5060, + 5059, + 5359, + 1574 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 86, + "ASSET_SYMBOL": "I_AVF0060", + "UNK0": 402430, + "STRING": "...Honestly.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4693, + 5061, + 5060, + 5359, + 1574 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 87, + "ASSET_SYMBOL": "I_AVF0040", + "UNK0": 270351, + "STRING": "Ugh. If I hadn't been so careless,\nthis would never have happened...", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4694, + 5062, + 0, + 1574, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 88, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 216, + "STRING": "There wasn't much you could've done.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 4, + 4695, + 5063, + 5062, + 1574, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 89, + "ASSET_SYMBOL": "I_AVF0050", + "UNK0": 331890, + "STRING": "Heehee. I'm just glad you're all right.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4696, + 5064, + 5063, + 1574, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 90, + "ASSET_SYMBOL": "I_AVF0070", + "UNK0": 463960, + "STRING": "That's the wrong way...!", + "UNK1": [ + 0.0, + 1.0 + ], + "UNK2": [ + 13, + 4697, + 5065, + 0, + 1574, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 91, + "ASSET_SYMBOL": "I_AVF0060", + "UNK0": 402431, + "STRING": "We need to head east! Hurry!", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4698, + 5066, + 5065, + 1574, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 92, + "ASSET_SYMBOL": "I_AVF0010", + "UNK0": 67744, + "STRING": "Yoohoo!", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4699, + 5067, + 0, + 5359, + 2061 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 93, + "ASSET_SYMBOL": "I_AVF0050", + "UNK0": 331891, + "STRING": "Heehee. You're as excited as a child.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 4, + 4700, + 5068, + 5067, + 5359, + 2061 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 94, + "ASSET_SYMBOL": "I_AVF0010", + "UNK0": 67745, + "STRING": "Ahaha. I think I'm just\ncaught up in the moment.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4701, + 5069, + 5068, + 5359, + 2061 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 95, + "ASSET_SYMBOL": "I_AVF0060", + "UNK0": 402432, + "STRING": "The sun's almost down...", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4702, + 5070, + 0, + 5359, + 2061 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 96, + "ASSET_SYMBOL": "I_AVF0080", + "UNK0": 534491, + "STRING": "We're almost at the settlement.\nLet's keep up the pace, guys.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4703, + 5071, + 5070, + 5359, + 2061 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 97, + "ASSET_SYMBOL": "I_AVF0050", + "UNK0": 331892, + "STRING": "Heehee. Look at all the sheep here.", + "UNK1": [ + 0.5, + 0.8999999761581421 + ], + "UNK2": [ + 13, + 4704, + 5072, + 0, + 5359, + 2063 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 98, + "ASSET_SYMBOL": "I_AVF0010", + "UNK0": 67746, + "STRING": "Watching them makes me feel so...content.", + "UNK1": [ + 2.0, + 0.8999999761581421 + ], + "UNK2": [ + 36, + 4705, + 5073, + 5072, + 5359, + 2063 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 99, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 217, + "STRING": "You have an orbal truck here?", + "UNK1": [ + 0.5, + 0.8999999761581421 + ], + "UNK2": [ + 13, + 4706, + 5074, + 0, + 5359, + 2063 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 100, + "ASSET_SYMBOL": "I_AVF0010", + "UNK0": 67747, + "STRING": "Looks like an old-model Reinford truck.", + "UNK1": [ + 0.5, + 0.8999999761581421 + ], + "UNK2": [ + 4, + 4707, + 5075, + 5074, + 5359, + 2063 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 101, + "ASSET_SYMBOL": "I_AVF0080", + "UNK0": 534492, + "STRING": "Yup. It was donated to the\nsettlement a few years ago.", + "UNK1": [ + 2.0, + 0.8999999761581421 + ], + "UNK2": [ + 36, + 4708, + 5076, + 5075, + 5359, + 2063 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 102, + "ASSET_SYMBOL": "I_AVF0060", + "UNK0": 402433, + "STRING": "I'm surprised to see a river\nrunning at this elevation.", + "UNK1": [ + 0.5, + 0.8999999761581421 + ], + "UNK2": [ + 13, + 4709, + 5077, + 0, + 5359, + 2063 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 103, + "ASSET_SYMBOL": "I_AVF0080", + "UNK0": 534493, + "STRING": "It's fed from the lake to the north.", + "UNK1": [ + 2.0, + 0.8999999761581421 + ], + "UNK2": [ + 36, + 4710, + 5078, + 5077, + 5359, + 2063 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 104, + "ASSET_SYMBOL": "I_AVF0080", + "UNK0": 534494, + "STRING": "I figured there'd be monsters\naround. Be careful, everyone.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4711, + 5079, + 0, + 2061, + 2063 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 105, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 218, + "STRING": "Got it.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4712, + 5080, + 5079, + 2061, + 2063 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 106, + "ASSET_SYMBOL": "I_AVF0050", + "UNK0": 331893, + "STRING": "Umm... Isn't this the way to...?", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4713, + 5081, + 0, + 2061, + 2063 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 107, + "ASSET_SYMBOL": "I_AVF0080", + "UNK0": 534495, + "STRING": "This path leads to the stone\ncircle you saw yesterday.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4714, + 5082, + 5081, + 2061, + 2063 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 108, + "ASSET_SYMBOL": "I_AVF0060", + "UNK0": 402434, + "STRING": "Is this the way to the watchtower?", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4715, + 5083, + 0, + 2061, + 2063 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 109, + "ASSET_SYMBOL": "I_AVF0080", + "UNK0": 534496, + "STRING": "Yeah. Just keep heading along this path.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4716, + 5084, + 5083, + 2061, + 2063 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 110, + "ASSET_SYMBOL": "I_AVF0010", + "UNK0": 67748, + "STRING": "Well...here we are...", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4717, + 5085, + 0, + 2061, + 2090 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 111, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 219, + "STRING": "Let's go meet with the\nlieutenant general.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4718, + 5086, + 5085, + 2061, + 2090 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 112, + "ASSET_SYMBOL": "I_AVF0010", + "UNK0": 67749, + "STRING": "That's...", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4719, + 5087, + 0, + 5359, + 2074 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 113, + "ASSET_SYMBOL": "I_AVF0050", + "UNK0": 331894, + "STRING": "It looks like a Calvard military base.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 4, + 4720, + 5088, + 5087, + 5359, + 2074 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 114, + "ASSET_SYMBOL": "I_AVF0080", + "UNK0": 534497, + "STRING": "It is. This area kind of acts as a\nbuffer zone between the two countries.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4721, + 5089, + 5088, + 5359, + 2074 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 115, + "ASSET_SYMBOL": "I_AVF0060", + "UNK0": 402435, + "STRING": "There's mist in the distance...", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4722, + 5090, + 0, + 5359, + 2074 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 116, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 220, + "STRING": "Yeah. It's even higher here\nthan the southern highlands.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4723, + 5091, + 5090, + 5359, + 2074 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 117, + "ASSET_SYMBOL": "I_AVF0010", + "UNK0": 67750, + "STRING": "Wow... That's one towering waterfall.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4724, + 5092, + 0, + 5359, + 2074 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 118, + "ASSET_SYMBOL": "I_AVF0050", + "UNK0": 331895, + "STRING": "I'll say. It must be at\nleast a 500 arge drop.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4725, + 5093, + 5092, + 5359, + 2074 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 119, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 221, + "STRING": "Oh, it's a plateau. I guess\nthis way's a dead end.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4726, + 5094, + 0, + 5359, + 2074 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 120, + "ASSET_SYMBOL": "I_AVF0050", + "UNK0": 331896, + "STRING": "Ahhh... I love how refreshing\nthe wind feels here.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4727, + 5095, + 5094, + 5359, + 2074 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 121, + "ASSET_SYMBOL": "I_AVF0010", + "UNK0": 67751, + "STRING": "Oh... We made it all the way\nto where the giant statue is.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4728, + 5096, + 0, + 5359, + 2074 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 122, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 222, + "STRING": "It looks even more massive\nthe closer we get.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 4, + 4729, + 5097, + 5096, + 5359, + 2074 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 123, + "ASSET_SYMBOL": "I_AVF0080", + "UNK0": 534498, + "STRING": "To get right in front of it, we'll\nneed to go around the cliff.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4730, + 5098, + 5097, + 5359, + 2074 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 124, + "ASSET_SYMBOL": "I_AVF0050", + "UNK0": 331897, + "STRING": "I'm glad to be back here again.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4731, + 5099, + 0, + 5359, + 2074 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 125, + "ASSET_SYMBOL": "I_AVF0060", + "UNK0": 402436, + "STRING": "Agreed. I'm certainly\nin no hurry to return.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4732, + 5100, + 5099, + 5359, + 2074 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 126, + "ASSET_SYMBOL": "I_AVF0010", + "UNK0": 67752, + "STRING": "How beautiful...", + "UNK1": [ + 0.5, + 0.8999999761581421 + ], + "UNK2": [ + 13, + 4733, + 5101, + 0, + 5359, + 2074 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 127, + "ASSET_SYMBOL": "I_AVF0050", + "UNK0": 331898, + "STRING": "Yeah... Breathtaking.", + "UNK1": [ + 2.0, + 0.8999999761581421 + ], + "UNK2": [ + 36, + 4734, + 5102, + 5101, + 5359, + 2074 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 128, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 223, + "STRING": "Man, I'd love to get in\na little fishing here.", + "UNK1": [ + 0.5, + 0.8999999761581421 + ], + "UNK2": [ + 13, + 4735, + 5103, + 0, + 5359, + 2074 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 129, + "ASSET_SYMBOL": "I_AVF0060", + "UNK0": 402437, + "STRING": "Well, no one's stopping you.", + "UNK1": [ + 2.0, + 0.800000011920929 + ], + "UNK2": [ + 36, + 4736, + 5104, + 5103, + 5359, + 2074 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 130, + "ASSET_SYMBOL": "I_AVF0050", + "UNK0": 331899, + "STRING": "This is...", + "UNK1": [ + 0.5, + 0.8999999761581421 + ], + "UNK2": [ + 13, + 4737, + 5105, + 0, + 5359, + 2074 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 131, + "ASSET_SYMBOL": "I_AVF0010", + "UNK0": 67753, + "STRING": "It's so gloomy in here...", + "UNK1": [ + 0.5, + 0.8999999761581421 + ], + "UNK2": [ + 4, + 4738, + 5106, + 5105, + 5359, + 2074 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 132, + "ASSET_SYMBOL": "I_AVF0080", + "UNK0": 534499, + "STRING": "...", + "UNK1": [ + 2.0, + 0.8999999761581421 + ], + "UNK2": [ + 36, + 4739, + 5107, + 5106, + 5359, + 2074 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 133, + "ASSET_SYMBOL": "I_AVF0010", + "UNK0": 67754, + "STRING": "That's one of the Imperial\nArmy's airships...", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4740, + 5108, + 0, + 2074, + 2076 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 134, + "ASSET_SYMBOL": "I_AVF0060", + "UNK0": 402438, + "STRING": "This situation is looking\nworse by the minute.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 4, + 4741, + 5109, + 5108, + 2074, + 2076 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 135, + "ASSET_SYMBOL": "I_AVF0080", + "UNK0": 534500, + "STRING": "...We need to hurry.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4742, + 5110, + 5109, + 2074, + 2076 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 136, + "ASSET_SYMBOL": "I_AVF0050", + "UNK0": 331900, + "STRING": "Those are armored cars\nfrom the Imperial Army...!", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4743, + 5111, + 0, + 2074, + 2076 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 137, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 224, + "STRING": "Damn... This isn't looking good...", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 4, + 4744, + 5112, + 5111, + 2074, + 2076 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 138, + "ASSET_SYMBOL": "I_AVF0080", + "UNK0": 534501, + "STRING": "...", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4745, + 5113, + 5112, + 2074, + 2076 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 139, + "ASSET_SYMBOL": "I_AVF0080", + "UNK0": 534502, + "STRING": "We can't let them get away!", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4746, + 5114, + 0, + 2081, + 2094 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 140, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 225, + "STRING": "Right! We need to overtake them!", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4747, + 5115, + 5114, + 2081, + 2094 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 141, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 226, + "STRING": "Crap... They're fast!", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4748, + 5116, + 0, + 2081, + 2094 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 142, + "ASSET_SYMBOL": "I_AVF0060", + "UNK0": 402439, + "STRING": "Just don't lose sight of them!", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4749, + 5117, + 5116, + 2081, + 2094 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 143, + "ASSET_SYMBOL": "I_AVF0050", + "UNK0": 331901, + "STRING": "Did they touch down near\nthe stone circle...?", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4750, + 5118, + 0, + 2081, + 2094 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 144, + "ASSET_SYMBOL": "I_AVF0010", + "UNK0": 67755, + "STRING": "Grrr... There's no escape for them now!", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4751, + 5119, + 5118, + 2081, + 2094 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 145, + "ASSET_SYMBOL": "I_AVF0095", + "UNK0": 596024, + "STRING": "Woohoooooo! This is amaaaziiiiiing!", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4752, + 5120, + 0, + 2082, + 2084 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 146, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 227, + "STRING": "*sigh* If you keep squirming around\nback there, you're going to fall off.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4753, + 5121, + 5120, + 2082, + 2084 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 147, + "ASSET_SYMBOL": "I_AVF0095", + "UNK0": 596025, + "STRING": "Mmm... If we keep up this pace,\nwe might make it in time after all.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4754, + 5122, + 0, + 2082, + 2084 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 148, + "ASSET_SYMBOL": "I_AVF0080", + "UNK0": 534503, + "STRING": "Not might. We WILL make it in time.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4755, + 5123, + 5122, + 2082, + 2084 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 149, + "ASSET_SYMBOL": "I_AVF0010", + "UNK0": 67756, + "STRING": "The ancient quarry is this way, right?", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4756, + 5124, + 0, + 2082, + 2084 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 150, + "ASSET_SYMBOL": "I_AVF0095", + "UNK0": 596026, + "STRING": "Yup. Just 'round the back of this statue!", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4757, + 5125, + 5124, + 2082, + 2084 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 151, + "ASSET_SYMBOL": "I_AVF0010", + "UNK0": 67757, + "STRING": "What are those glowing things, anyway?", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4758, + 5126, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 152, + "ASSET_SYMBOL": "I_AVF0050", + "UNK0": 331902, + "STRING": "I'm actually rather curious, myself.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4759, + 5127, + 5126, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 153, + "ASSET_SYMBOL": "I_AVF0095", + "UNK0": 596027, + "STRING": "A-hem!", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4760, + 5128, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 154, + "ASSET_SYMBOL": "I_AVF0060", + "UNK0": 402440, + "STRING": "How does that thing even WORK?", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4761, + 5129, + 5128, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 155, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 228, + "STRING": "That one's huge... What do you\nthink they could be?", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4762, + 5130, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 156, + "ASSET_SYMBOL": "I_AVF0080", + "UNK0": 534504, + "STRING": "I don't know, but we'd better\nexercise a little caution.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4763, + 5131, + 5130, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 157, + "ASSET_SYMBOL": "I_AVF0095", + "UNK0": 596028, + "STRING": "Oh, we're back outside.", + "UNK1": [ + 0.5, + 0.800000011920929 + ], + "UNK2": [ + 13, + 4764, + 5132, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 158, + "ASSET_SYMBOL": "I_AVF0010", + "UNK0": 67758, + "STRING": "Ahhh... It's nice to be back\nin the great outdoors again.", + "UNK1": [ + 2.0, + 0.800000011920929 + ], + "UNK2": [ + 36, + 4765, + 5133, + 5132, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 159, + "ASSET_SYMBOL": "I_AVF0030", + "UNK0": 199817, + "STRING": "Ah, isn't this...?", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4766, + 5134, + 0, + 5359, + 2596 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 160, + "ASSET_SYMBOL": "I_AVF0020", + "UNK0": 138283, + "STRING": "Oh, this is where they publish the\nImperial Chronicle newspaper.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4767, + 5135, + 5134, + 5359, + 2596 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 161, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 229, + "STRING": "So this is the opera house, huh?\nMight be nice to see a show sometime.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4768, + 5136, + 0, + 5359, + 2596 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 162, + "ASSET_SYMBOL": "I_AVF0040", + "UNK0": 270352, + "STRING": "You need to reserve your seats\ntwo months in advance, though.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 4, + 4769, + 5137, + 5136, + 5359, + 2596 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 163, + "ASSET_SYMBOL": "I_AVF0020", + "UNK0": 138284, + "STRING": "...And that's just for the cheap seats!", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4770, + 5138, + 5137, + 5359, + 2596 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 164, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 230, + "STRING": "Wow. A tiara encrusted with carnelians?\nThis is about as ritzy as you can get.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4771, + 5139, + 0, + 5359, + 2596 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 165, + "ASSET_SYMBOL": "I_AVF0070", + "UNK0": 463961, + "STRING": "It's so shiny...", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4772, + 5140, + 5139, + 5359, + 2596 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 166, + "ASSET_SYMBOL": "I_AVF0030", + "UNK0": 199818, + "STRING": "Here's the statue of Emperor Dreichels.\nHe strikes quite a stately pose.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4773, + 5141, + 0, + 5359, + 2596 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 167, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 231, + "STRING": "Weird to think he's the one\nwho founded our academy.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4774, + 5142, + 5141, + 5359, + 2596 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 168, + "ASSET_SYMBOL": "I_AVF0030", + "UNK0": 199819, + "STRING": "Hmm... Looks like we've hit a dead end.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4775, + 5143, + 0, + 5359, + 2596 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 169, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 232, + "STRING": "This area seems easy to get lost in.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4776, + 5144, + 5143, + 5359, + 2596 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 170, + "ASSET_SYMBOL": "I_AVF0070", + "UNK0": 463962, + "STRING": "That's three cats now.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4777, + 5145, + 0, + 5359, + 2596 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 171, + "ASSET_SYMBOL": "I_AVF0020", + "UNK0": 138285, + "STRING": "Ahaha. What a little cutie.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 4, + 4778, + 5146, + 5145, + 5359, + 2596 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 172, + "ASSET_SYMBOL": "I_AVF0040", + "UNK0": 270353, + "STRING": "There have always been a lot of cats\naround here. Not sure why, though.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4779, + 5147, + 5146, + 5359, + 2596 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 173, + "ASSET_SYMBOL": "I_AVF0030", + "UNK0": 199820, + "STRING": "This would make a great training area.\nI envy the people who live around here.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4780, + 5148, + 0, + 5359, + 2596 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 174, + "ASSET_SYMBOL": "I_AVF0040", + "UNK0": 270354, + "STRING": "...Only YOU would see an underground\npassage and think about training.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4781, + 5149, + 5148, + 5359, + 2596 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 175, + "ASSET_SYMBOL": "I_AVF0070", + "UNK0": 463963, + "STRING": "There's a light...", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4782, + 5150, + 0, + 5359, + 2593 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 176, + "ASSET_SYMBOL": "I_AVF0020", + "UNK0": 138286, + "STRING": "The sound's getting louder, too.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 4, + 4783, + 5151, + 5150, + 5359, + 2593 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 177, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 233, + "STRING": "We must be getting\nclose to the exit now.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4784, + 5152, + 5151, + 5359, + 2593 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 178, + "ASSET_SYMBOL": "I_AVF0030", + "UNK0": 199821, + "STRING": "Ahhh... What a pleasant evening.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4785, + 5153, + 0, + 2594, + 2596 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 179, + "ASSET_SYMBOL": "I_AVF0070", + "UNK0": 463964, + "STRING": "It's pretty relaxing.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 4, + 4786, + 5154, + 5153, + 2594, + 2596 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 180, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 234, + "STRING": "(No denying those two have\nsome surprising similarities...)", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4787, + 5155, + 5154, + 2594, + 2596 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 181, + "ASSET_SYMBOL": "I_AVF0030", + "UNK0": 199822, + "STRING": "Being near water always helps me relax.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4788, + 5156, + 0, + 2596, + 2608 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 182, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 235, + "STRING": "Oh, yeah. Your hometown is right\non a lake, isn't it?", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4789, + 5157, + 5156, + 2596, + 2608 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 183, + "ASSET_SYMBOL": "I_AVF0070", + "UNK0": 463965, + "STRING": "Esperanza?", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4790, + 5158, + 0, + 2596, + 2608 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 184, + "ASSET_SYMBOL": "I_AVF0040", + "UNK0": 270355, + "STRING": "I believe it means 'hope.'", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4791, + 5159, + 5158, + 2596, + 2608 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 185, + "ASSET_SYMBOL": "I_AVF0030", + "UNK0": 199823, + "STRING": "This park is so peaceful, it's easy\nto forget we're in the capital.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4792, + 5160, + 0, + 2596, + 2608 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 186, + "ASSET_SYMBOL": "I_AVF0070", + "UNK0": 463966, + "STRING": "I could take a nap here.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 4, + 4793, + 5161, + 5160, + 2596, + 2608 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 187, + "ASSET_SYMBOL": "I_AVF0020", + "UNK0": 138287, + "STRING": "Ahaha. Yeah. People love to\ncome here to relax.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4794, + 5162, + 5161, + 2596, + 2608 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 188, + "ASSET_SYMBOL": "I_AVF0040", + "UNK0": 270356, + "STRING": "*sigh* Just coming here reminds\nme of last night's ordeal.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4795, + 5163, + 0, + 2596, + 2608 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 189, + "ASSET_SYMBOL": "I_AVF0020", + "UNK0": 138288, + "STRING": "Sounds like you had a rough night.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4796, + 5164, + 5163, + 2596, + 2608 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 190, + "ASSET_SYMBOL": "I_AVF0070", + "UNK0": 463967, + "STRING": "There are so many butterflies.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4797, + 5165, + 0, + 2596, + 2608 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 191, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 236, + "STRING": "It really gives the place an\nexotic touch, huh?", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4798, + 5166, + 5165, + 2596, + 2608 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 192, + "ASSET_SYMBOL": "I_AVF0020", + "UNK0": 138289, + "STRING": "I wonder when that mechanism was made...", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4799, + 5167, + 0, + 5359, + 2608 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 193, + "ASSET_SYMBOL": "I_AVF0040", + "UNK0": 270357, + "STRING": "I'm guessing a few hundred years ago\nat least. Probably during the Dark Ages.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 4, + 4800, + 5168, + 5167, + 5359, + 2608 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 194, + "ASSET_SYMBOL": "I_AVF0030", + "UNK0": 199824, + "STRING": "Those were difficult times back then.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4801, + 5169, + 5168, + 5359, + 2608 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 195, + "ASSET_SYMBOL": "I_AVF0020", + "UNK0": 138290, + "STRING": "This area's full of water...", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4802, + 5170, + 0, + 5359, + 2607 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 196, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 237, + "STRING": "I'll bet there's some way\nto drain it.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 4, + 4803, + 5171, + 5170, + 5359, + 2607 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 197, + "ASSET_SYMBOL": "I_AVF0070", + "UNK0": 463968, + "STRING": "Let's have a look around, then.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4804, + 5172, + 5171, + 5359, + 2607 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 198, + "ASSET_SYMBOL": "I_AVF0020", + "UNK0": 138291, + "STRING": "This place seems like it goes\non forever...", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4805, + 5173, + 0, + 5359, + 2608 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 199, + "ASSET_SYMBOL": "I_AVF0040", + "UNK0": 270358, + "STRING": "My father sure gave us a real\nhumdinger of a job to deal with.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 4, + 4806, + 5174, + 5173, + 5359, + 2608 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 200, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 238, + "STRING": "Well, I'm sure we must be\ngetting close now.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4807, + 5175, + 5174, + 5359, + 2608 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 201, + "ASSET_SYMBOL": "I_AVF0070", + "UNK0": 463969, + "STRING": "Oh, there's the exit.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4808, + 5176, + 0, + 5359, + 2608 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 202, + "ASSET_SYMBOL": "I_AVF0030", + "UNK0": 199825, + "STRING": "Haha. We're finally there.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4809, + 5177, + 5176, + 5359, + 2608 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 203, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 239, + "STRING": "Sure are more people out than\nthere were yesterday.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4810, + 5178, + 0, + 2608, + 2614 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 204, + "ASSET_SYMBOL": "I_AVF0020", + "UNK0": 138292, + "STRING": "They must've all come to see\nthe Imperial family's parade.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4811, + 5179, + 5178, + 2608, + 2614 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 205, + "ASSET_SYMBOL": "I_AVF0040", + "UNK0": 270359, + "STRING": "Grr... Those damn terrorists...", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4812, + 5180, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 206, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 240, + "STRING": "(Elise... Princess Alfin...\nPlease be safe!)", + "UNK1": [ + 1.5, + 1.0 + ], + "UNK2": [ + 36, + 4813, + 5181, + 5180, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 207, + "ASSET_SYMBOL": "I_AVF0020", + "UNK0": 138293, + "STRING": "Monsters!", + "UNK1": [ + 0.10000000149011612, + 1.0 + ], + "UNK2": [ + 13, + 4814, + 5182, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 208, + "ASSET_SYMBOL": "I_AVF0030", + "UNK0": 199826, + "STRING": "No problem. We'll just\ncut our way through!", + "UNK1": [ + 0.10000000149011612, + 1.0 + ], + "UNK2": [ + 4, + 4815, + 5183, + 5182, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 209, + "ASSET_SYMBOL": "I_AVF0070", + "UNK0": 463970, + "STRING": "Ja.", + "UNK1": [ + 1.5, + 1.0 + ], + "UNK2": [ + 36, + 4816, + 5184, + 5183, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 210, + "ASSET_SYMBOL": "I_AVF0090", + "UNK0": 596029, + "STRING": "This is Lake Ebel, right? It's even\nbigger than I thought it'd be!", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4817, + 5185, + 0, + 5359, + 3091 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 211, + "ASSET_SYMBOL": "I_AVF0030", + "UNK0": 199827, + "STRING": "It's quite large. If the mist would\nclear, you could get a better view.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4818, + 5186, + 5185, + 5359, + 3091 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 212, + "ASSET_SYMBOL": "I_AVF0060", + "UNK0": 402441, + "STRING": "A cross inside a circle...\nAny idea what it means?", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4819, + 5187, + 0, + 5359, + 3091 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 213, + "ASSET_SYMBOL": "I_AVF0030", + "UNK0": 199828, + "STRING": "No one really knows for sure. There\nare a number of theories, though.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 4, + 4820, + 5188, + 5187, + 5359, + 3091 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 214, + "ASSET_SYMBOL": "I_AVF0050", + "UNK0": 331903, + "STRING": "Unfortunately, the meanings of most\nanimist symbols have been lost over time.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4821, + 5189, + 5188, + 5359, + 3091 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 215, + "ASSET_SYMBOL": "I_AVF0080", + "UNK0": 534505, + "STRING": "You've got a wharf here?", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4822, + 5190, + 0, + 5359, + 3091 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 216, + "ASSET_SYMBOL": "I_AVF0030", + "UNK0": 199829, + "STRING": "We do. A ferry makes trips between\nhere and the opposite shore.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 4, + 4823, + 5191, + 5190, + 5359, + 3091 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 217, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 241, + "STRING": "If you crossed the lake, you'd be\nin the Sutherland province, right?", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4824, + 5192, + 5191, + 5359, + 3091 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 218, + "ASSET_SYMBOL": "I_AVF0030", + "UNK0": 199830, + "STRING": "This building is the Legram\nbranch of the Bracer Guild.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 13, + 4825, + 5193, + 0, + 5359, + 3091 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 219, + "ASSET_SYMBOL": "I_AVF0090", + "UNK0": 596030, + "STRING": "Wow. I didn't think that door\nled out here.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4826, + 5194, + 0, + 5359, + 3091 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 220, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 242, + "STRING": "Haha. Nice find.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4827, + 5195, + 5194, + 5359, + 3091 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 221, + "ASSET_SYMBOL": "I_AVF0080", + "UNK0": 534506, + "STRING": "It feels almost...magical.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4828, + 5196, + 0, + 5359, + 3091 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 222, + "ASSET_SYMBOL": "I_AVF0050", + "UNK0": 331904, + "STRING": "I know. Like if you just wait long enough,\nyou might see a fairy or something.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4829, + 5197, + 5196, + 5359, + 3091 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 223, + "ASSET_SYMBOL": "I_AVF0090", + "UNK0": 596031, + "STRING": "Oh, the train comes through here!", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4830, + 5198, + 0, + 5359, + 3091 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 224, + "ASSET_SYMBOL": "I_AVF0060", + "UNK0": 402442, + "STRING": "That's the Ebel Branch Line--the\nsame line we traveled here on.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4831, + 5199, + 5198, + 5359, + 3091 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 225, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 243, + "STRING": "Oh, wow. There's a river out here.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4832, + 5200, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 226, + "ASSET_SYMBOL": "I_AVF0030", + "UNK0": 199831, + "STRING": "Haha. I remember playing in\nthis river when I was young.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4833, + 5201, + 5200, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 227, + "ASSET_SYMBOL": "I_AVF0090", + "UNK0": 596032, + "STRING": "Oooh, there's a boat on the wharf!", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4834, + 5202, + 0, + 3091, + 3092 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 228, + "ASSET_SYMBOL": "I_AVF0030", + "UNK0": 199832, + "STRING": "That's the ferry liner. It returns\nto the wharf every evening.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4835, + 5203, + 5202, + 3091, + 3092 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 229, + "ASSET_SYMBOL": "I_AVF0090", + "UNK0": 596033, + "STRING": "Ahhh. It's so cool here, you'd\nhardly believe it's summer.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4836, + 5204, + 0, + 3092, + 3102 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 230, + "ASSET_SYMBOL": "I_AVF0080", + "UNK0": 534507, + "STRING": "The weather's pleasant today.\nA fine wind blowing, too.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4837, + 5205, + 5204, + 3092, + 3102 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 231, + "ASSET_SYMBOL": "I_AVF0060", + "UNK0": 402443, + "STRING": "Strutting around another lord's\nterritory... How pompous can you get?", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4838, + 5206, + 0, + 3098, + 3099 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 232, + "ASSET_SYMBOL": "I_AVF0050", + "UNK0": 331905, + "STRING": "It sounds like there's a real VIP here...", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 4, + 4839, + 5207, + 5206, + 3098, + 3099 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 233, + "ASSET_SYMBOL": "I_AVF0030", + "UNK0": 199833, + "STRING": "...Well, let's return to the manor\nfor now.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4840, + 5208, + 5207, + 3098, + 3099 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 234, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 244, + "STRING": "So this is St. Sandlot's old\nstronghold, Lohengrin Castle...", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4841, + 5209, + 0, + 5359, + 3102 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 235, + "ASSET_SYMBOL": "I_AVF0030", + "UNK0": 199834, + "STRING": "This is the first time I've come here\nat night. Be careful of your footing.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4842, + 5210, + 5209, + 5359, + 3102 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 236, + "ASSET_SYMBOL": "I_AVF0090", + "UNK0": 596034, + "STRING": "Whoa! What's that?", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4843, + 5211, + 0, + 5359, + 3102 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 237, + "ASSET_SYMBOL": "I_AVF0060", + "UNK0": 402444, + "STRING": "Something's strange about the castle...", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 4, + 4844, + 5212, + 5211, + 5359, + 3102 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 238, + "ASSET_SYMBOL": "I_AVF0080", + "UNK0": 534508, + "STRING": "Is that glow just the moonlight?", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4845, + 5213, + 5212, + 5359, + 3102 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 239, + "ASSET_SYMBOL": "I_AVF0060", + "UNK0": 402445, + "STRING": "This castle has no shortage of strange\nfoes. Perhaps they really ARE gho--", + "UNK1": [ + 0.0, + 1.0 + ], + "UNK2": [ + 13, + 4846, + 5214, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 240, + "ASSET_SYMBOL": "I_AVF0090", + "UNK0": 596035, + "STRING": "D-Don't say it!", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4847, + 5215, + 5214, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 241, + "ASSET_SYMBOL": "I_AVF0050", + "UNK0": 331906, + "STRING": "You need a 'key' to dispel a barrier\nlike this. We should start looking.", + "UNK1": [ + 1.5, + 1.0 + ], + "UNK2": [ + 45, + 4848, + 5216, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 242, + "ASSET_SYMBOL": "I_AVF0080", + "UNK0": 534509, + "STRING": "An external corridor. We must be\non the north side of the castle.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4849, + 5217, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 243, + "ASSET_SYMBOL": "I_AVF0030", + "UNK0": 199835, + "STRING": "We've gone pretty far inside now.\nI hope the children are safe...", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4850, + 5218, + 5217, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 244, + "ASSET_SYMBOL": "I_AVF0050", + "UNK0": 331907, + "STRING": "Oh, another barrier. Let's see if we\ncan find the orb that dispels it.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4851, + 5219, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 245, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 245, + "STRING": "(This all seems strangely\n...normal to her.)", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4852, + 5220, + 5219, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 246, + "ASSET_SYMBOL": "I_AVF0090", + "UNK0": 596036, + "STRING": "Left hand, right hand,\nleft hand, right hand...", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4853, + 5221, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 247, + "ASSET_SYMBOL": "I_AVF0060", + "UNK0": 402446, + "STRING": "Tch... Nothing but trouble.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4854, + 5222, + 5221, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 248, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 246, + "STRING": "This looks like...", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4855, + 5223, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 249, + "ASSET_SYMBOL": "I_AVF0030", + "UNK0": 199836, + "STRING": "We've reached the uppermost floor.\nThe bell tower is ahead.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 4, + 4856, + 5224, + 5223, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 250, + "ASSET_SYMBOL": "I_AVF0050", + "UNK0": 331908, + "STRING": "The energy's source is\nnearby... Almost there!", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4857, + 5225, + 5224, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 251, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 247, + "STRING": "What the...?!", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4858, + 5226, + 0, + 3072, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 252, + "ASSET_SYMBOL": "I_AVF0110", + "UNK0": 733096, + "STRING": "Looks like they were packing explosive\ncharges. We'll need to find another route!", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4859, + 5227, + 5226, + 3072, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 253, + "ASSET_SYMBOL": "I_AVF0060", + "UNK0": 402447, + "STRING": "It seems this is a storage area.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4860, + 5228, + 0, + 3072, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 254, + "ASSET_SYMBOL": "I_AVF0090", + "UNK0": 596037, + "STRING": "Plenty of archaisms wandering\naround here, too.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4861, + 5229, + 5228, + 3072, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 255, + "ASSET_SYMBOL": "I_AVF0080", + "UNK0": 534510, + "STRING": "We finally got around to the other side.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4862, + 5230, + 0, + 3072, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 256, + "ASSET_SYMBOL": "I_AVF0030", + "UNK0": 199837, + "STRING": "The path to the right leads deeper\ninto the fort. Let's keep moving.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4863, + 5231, + 5230, + 3072, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 257, + "ASSET_SYMBOL": "I_AVF0090", + "UNK0": 596038, + "STRING": "Oooh, an orbment charging station!", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4864, + 5232, + 0, + 3072, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 258, + "ASSET_SYMBOL": "I_AVF0050", + "UNK0": 331909, + "STRING": "That door near it looks\nlike it leads outside...", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 4, + 4865, + 5233, + 5232, + 3072, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 259, + "ASSET_SYMBOL": "I_AVF0110", + "UNK0": 733097, + "STRING": "Probably an external corridor.\nEveryone, follow me!", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4866, + 5234, + 5233, + 3072, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 260, + "ASSET_SYMBOL": "I_AVF0060", + "UNK0": 402448, + "STRING": "Hmph. Another storage area.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4867, + 5235, + 0, + 3072, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 261, + "ASSET_SYMBOL": "I_AVF0090", + "UNK0": 596039, + "STRING": "Hmm... Looks like we hang a\nleft if we wanna go through.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4868, + 5236, + 5235, + 3072, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 262, + "ASSET_SYMBOL": "I_AVF0050", + "UNK0": 331910, + "STRING": "This is the freight platform... We\nfinally made it to the other side.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4869, + 5237, + 0, + 3072, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 263, + "ASSET_SYMBOL": "I_AVF0110", + "UNK0": 733098, + "STRING": "We've gotta be close. Just need to\nhead up that staircase over there!", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4870, + 5238, + 5237, + 3072, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 264, + "ASSET_SYMBOL": "I_AVF0119", + "UNK0": 772898, + "STRING": "(ARCUS ringing)", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4871, + 5239, + 0, + 3072, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 265, + "ASSET_SYMBOL": "I_AVF0110", + "UNK0": 733099, + "STRING": "Sara here... Yeah. We're almost to\nthe railway gun.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 4, + 4872, + 5240, + 5239, + 3072, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 266, + "ASSET_SYMBOL": "I_AVF0110", + "UNK0": 733100, + "STRING": "Yeah. May Aidios be with us both.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 4, + 4873, + 5241, + 5240, + 3072, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 267, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 248, + "STRING": "Is Group B almost there?", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 4, + 4874, + 5242, + 5241, + 3072, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 268, + "ASSET_SYMBOL": "I_AVF0110", + "UNK0": 733101, + "STRING": "This is it, so get ready!", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 4, + 4875, + 5243, + 5242, + 3072, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 269, + "ASSET_SYMBOL": "I_AVF1010", + "UNK0": 6671137, + "STRING": "Right!", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4876, + 5244, + 5243, + 3072, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 270, + "ASSET_SYMBOL": "I_AVF0530", + "UNK0": 3489608, + "STRING": "*sigh* Master Rean, please\ndon't cause too much trouble.", + "UNK1": [ + 0.0, + 1.0 + ], + "UNK2": [ + 13, + 4877, + 5245, + 0, + 5359, + 3598 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 271, + "ASSET_SYMBOL": "I_AVF0530", + "UNK0": 3489609, + "STRING": "Let's make our way to the\nReinford headquarters.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 4, + 4878, + 5246, + 5245, + 5359, + 3598 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 272, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 249, + "STRING": "Uh... Right. Of course.\n(...Why is she singling ME out?)", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4879, + 5247, + 5246, + 5359, + 3598 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 273, + "ASSET_SYMBOL": "I_AVF0530", + "UNK0": 3489610, + "STRING": "M a s t e r R e a n?", + "UNK1": [ + 0.0, + 1.0 + ], + "UNK2": [ + 13, + 4880, + 5248, + 0, + 5366, + 3598 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 274, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 250, + "STRING": "I-I'm sorry. (That'll give me\nnightmares...)", + "UNK1": [ + 0.0, + 1.0 + ], + "UNK2": [ + 4, + 4881, + 5249, + 5248, + 5366, + 3598 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 275, + "ASSET_SYMBOL": "I_AVF0100", + "UNK0": 666560, + "STRING": "(Sweet dreams.)", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4882, + 5250, + 5249, + 5366, + 3598 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 276, + "ASSET_SYMBOL": "I_AVF0010", + "UNK0": 67759, + "STRING": "This way leads to Marquis\nRogner's mansion.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4883, + 5251, + 0, + 5359, + 3607 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 277, + "ASSET_SYMBOL": "I_AVF0100", + "UNK0": 666561, + "STRING": "So that's where Gelica's stubborn\nold man lives, huh? Better stay away.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4884, + 5252, + 5251, + 5359, + 3607 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 278, + "ASSET_SYMBOL": "I_AVF0020", + "UNK0": 138294, + "STRING": "These things sure are convenient.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4885, + 5253, + 0, + 3598, + 3607 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 279, + "ASSET_SYMBOL": "I_AVF0040", + "UNK0": 270360, + "STRING": "I know, right? I can see them building\nsome in Heimdallr eventually.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4886, + 5254, + 5253, + 3598, + 3607 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 280, + "ASSET_SYMBOL": "I_AVF0010", + "UNK0": 67760, + "STRING": "Wh-Why are you going the wrong\nway? Just because you can?", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4887, + 5255, + 0, + 3598, + 3607 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 281, + "ASSET_SYMBOL": "I_AVF0070", + "UNK0": 463971, + "STRING": "It's kinda fun.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4888, + 5256, + 5255, + 3598, + 3607 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 282, + "ASSET_SYMBOL": "I_AVF0040", + "UNK0": 270361, + "STRING": "Plain old stairs just wouldn't cut it,\nfor the famed industrial metropolis, huh?", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4889, + 5257, + 0, + 5359, + 3607 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 283, + "ASSET_SYMBOL": "I_AVF0010", + "UNK0": 67761, + "STRING": "Yeah... For better or worse,\nthis is a town full of tech.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4890, + 5258, + 5257, + 5359, + 3607 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 284, + "ASSET_SYMBOL": "I_AVF0070", + "UNK0": 463972, + "STRING": "Looks like a dead end.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4891, + 5259, + 0, + 5359, + 3607 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 285, + "ASSET_SYMBOL": "I_AVF0010", + "UNK0": 67762, + "STRING": "This was...some kind of\nmaintenance room, I think?", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4892, + 5260, + 5259, + 5359, + 3607 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 286, + "ASSET_SYMBOL": "I_AVF0020", + "UNK0": 138295, + "STRING": "Wow. You can get a great view of\nthe Reinford building from here.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4893, + 5261, + 0, + 5359, + 3607 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 287, + "ASSET_SYMBOL": "I_AVF0070", + "UNK0": 463973, + "STRING": "...And a really sore neck.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4894, + 5262, + 5261, + 5359, + 3607 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 288, + "ASSET_SYMBOL": "I_AVF0020", + "UNK0": 138296, + "STRING": "Oh, yeah. This road leads all the way\nto your hometown, doesn't it, Rean?", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4895, + 5263, + 0, + 5359, + 3607 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 289, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 251, + "STRING": "Yeah. It'd take you days to get there\nif you tried to walk it, though.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4896, + 5264, + 5263, + 5359, + 3607 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 290, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 252, + "STRING": "Huh. This is a pretty nice area.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4897, + 5265, + 0, + 5359, + 3607 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 291, + "ASSET_SYMBOL": "I_AVF0010", + "UNK0": 67763, + "STRING": "Grandfather used to love coming here\nto fish, now that I think about it.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4898, + 5266, + 5265, + 5359, + 3607 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 292, + "ASSET_SYMBOL": "I_AVF0040", + "UNK0": 270362, + "STRING": "You can always count on provincial\narmy soldiers to be arrogant as hell.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4899, + 5267, + 0, + 5359, + 3607 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 293, + "ASSET_SYMBOL": "I_AVF0100", + "UNK0": 666562, + "STRING": "Hmm... Wonder what they're\ndoing out here.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4900, + 5268, + 5267, + 5359, + 3607 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 294, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 253, + "STRING": "Wow! You can see all of Roer\nspread out from here.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4901, + 5269, + 0, + 5359, + 3607 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 295, + "ASSET_SYMBOL": "I_AVF0010", + "UNK0": 67764, + "STRING": "You can...though the view isn't as\nnice as it'd be from the front.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4902, + 5270, + 5269, + 5359, + 3607 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 296, + "ASSET_SYMBOL": "I_AVF0070", + "UNK0": 463974, + "STRING": "...This is a pretty nice view.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4903, + 5271, + 0, + 5359, + 3607 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 297, + "ASSET_SYMBOL": "I_AVF0010", + "UNK0": 67765, + "STRING": "Oooh... Actually, I didn't even\nknow about this place.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4904, + 5272, + 5271, + 5359, + 3607 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 298, + "ASSET_SYMBOL": "I_AVF0070", + "UNK0": 463975, + "STRING": "Oh, a train track.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4905, + 5273, + 0, + 5359, + 3607 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 299, + "ASSET_SYMBOL": "I_AVF0010", + "UNK0": 67766, + "STRING": "That's the freight line that\nruns into the mine.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4906, + 5274, + 5273, + 5359, + 3607 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 300, + "ASSET_SYMBOL": "I_AVF0020", + "UNK0": 138297, + "STRING": "*pant* I'm gonna need a rest\nbefore we even get there.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4907, + 5275, + 0, + 5359, + 3607 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 301, + "ASSET_SYMBOL": "I_AVF0040", + "UNK0": 270363, + "STRING": "Yeah... I wasn't expecting\nthis path to be so steep.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 4, + 4908, + 5276, + 5275, + 5359, + 3607 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 302, + "ASSET_SYMBOL": "I_AVF0100", + "UNK0": 666563, + "STRING": "Man, you city slickers need to\ntoughen up! Left, right, left, right!", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4909, + 5277, + 5276, + 5359, + 3607 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 430, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 1079, + "STRING": "What was that...?", + "UNK1": [ + 1.0, + 1.0 + ], + "UNK2": [ + 45, + 5364, + 5365, + 0, + 3614, + 3617 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 303, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 254, + "STRING": "By the way, did you happen to\nrun into Sharon on your way out?", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4910, + 5278, + 0, + 3609, + 3620 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 304, + "ASSET_SYMBOL": "I_AVF0070", + "UNK0": 463976, + "STRING": "She saw me leaving, but she just\nlet me go.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 4, + 4911, + 5279, + 5278, + 3609, + 3620 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 305, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 255, + "STRING": "Hmm... (Even the best maids\naren't THAT all-knowing...)", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4912, + 5280, + 5279, + 3609, + 3620 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 306, + "ASSET_SYMBOL": "I_AVF0070", + "UNK0": 463977, + "STRING": "This is where Claire said\nto meet her, right?", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4913, + 5281, + 0, + 3609, + 3620 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 307, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 256, + "STRING": "Yeah. This looks like the place.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4914, + 5282, + 5281, + 3609, + 3620 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 308, + "ASSET_SYMBOL": "I_AVF0070", + "UNK0": 463978, + "STRING": "(...They seem oddly cautious.)", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4915, + 5283, + 0, + 3609, + 3620 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 309, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 257, + "STRING": "(Yeah... I wonder if it has\nsomething to do with the RMP.)", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4916, + 5284, + 5283, + 3609, + 3620 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 310, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 258, + "STRING": "This was some kind of\nclassy bar, I think?", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4917, + 5285, + 0, + 3609, + 3620 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 311, + "ASSET_SYMBOL": "I_AVF0070", + "UNK0": 463979, + "STRING": "Seems pretty lively in there.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4918, + 5286, + 5285, + 3609, + 3620 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 312, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 259, + "STRING": "Wow. This city's got a nice\nfeel at night.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4919, + 5287, + 0, + 3609, + 3620 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 313, + "ASSET_SYMBOL": "I_AVF0070", + "UNK0": 463980, + "STRING": "Yeah... It's really pretty.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4920, + 5288, + 5287, + 3609, + 3620 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 314, + "ASSET_SYMBOL": "I_AVF0010", + "UNK0": 67767, + "STRING": "Argh. Every minute we spend here, things\nare getting worse for the miners.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4921, + 5289, + 0, + 3626, + 3627 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 315, + "ASSET_SYMBOL": "I_AVF0070", + "UNK0": 463981, + "STRING": "Stay calm, Alisa.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 4, + 4922, + 5290, + 5289, + 3626, + 3627 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 316, + "ASSET_SYMBOL": "I_AVF0020", + "UNK0": 138298, + "STRING": "Yeah. The Railway Military Police\nare on their way, after all.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 4, + 4923, + 5291, + 5290, + 3626, + 3627 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 317, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 260, + "STRING": "Let's at least try and get\na look at what's going on.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4924, + 5292, + 5291, + 3626, + 3627 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 318, + "ASSET_SYMBOL": "I_AVF0100", + "UNK0": 666564, + "STRING": "But man, if terrorists really were\nplanning to blow up the mine...", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4925, + 5293, + 0, + 3626, + 3627 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 319, + "ASSET_SYMBOL": "I_AVF0040", + "UNK0": 270364, + "STRING": "It would shake the very\nfoundations of the Empire.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 4, + 4926, + 5294, + 5293, + 3626, + 3627 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 320, + "ASSET_SYMBOL": "I_AVF0010", + "UNK0": 67768, + "STRING": "...", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4927, + 5295, + 5294, + 3626, + 3627 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 321, + "ASSET_SYMBOL": "I_AVF0120", + "UNK0": 801632, + "STRING": "Hmm... Looks like this is just\na one-way path.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4928, + 5296, + 0, + 5359, + 3632 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 322, + "ASSET_SYMBOL": "I_AVF0100", + "UNK0": 666565, + "STRING": "Well, no chance of us getting lost in\nhere, at least. Let's run on through.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4929, + 5297, + 5296, + 5359, + 3632 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 323, + "ASSET_SYMBOL": "I_AVF0120", + "UNK0": 801633, + "STRING": "Oh, yeah... Towa's been pretty\nworried about all of you, you know?", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4930, + 5298, + 0, + 5359, + 3632 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 324, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 261, + "STRING": "Well, I'm glad to know she's looking\nout for us.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 4, + 4931, + 5299, + 5298, + 5359, + 3632 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 325, + "ASSET_SYMBOL": "I_AVF0010", + "UNK0": 67769, + "STRING": "Yeah. Though I feel a little bad,\nsince we're making more work for her.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4932, + 5300, + 5299, + 5359, + 3632 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 326, + "ASSET_SYMBOL": "I_AVF0020", + "UNK0": 138299, + "STRING": "We've been walking for ages.\nHow far ARE we at this point?", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4933, + 5301, + 0, + 5359, + 3632 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 327, + "ASSET_SYMBOL": "I_AVF0070", + "UNK0": 463982, + "STRING": "Judging by the distance we've traveled,\nI'd say we're about halfway.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 4, + 4934, + 5302, + 5301, + 5359, + 3632 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 328, + "ASSET_SYMBOL": "I_AVF0040", + "UNK0": 270365, + "STRING": "H-How can you tell that...?", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4935, + 5303, + 5302, + 5359, + 3632 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 329, + "ASSET_SYMBOL": "I_AVF0100", + "UNK0": 666566, + "STRING": "This path's gotten real\ntwisty all of a sudden.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4936, + 5304, + 0, + 5359, + 3632 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 330, + "ASSET_SYMBOL": "I_AVF0120", + "UNK0": 801634, + "STRING": "Hmm... I wonder if they built it like\nthat to avoid the mine shafts...", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 4, + 4937, + 5305, + 5304, + 5359, + 3632 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 331, + "ASSET_SYMBOL": "I_AVF0010", + "UNK0": 67770, + "STRING": "If that's true, that must\nmean we're almost there!", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4938, + 5306, + 5305, + 5359, + 3632 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 332, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 262, + "STRING": "Over there!", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4939, + 5307, + 0, + 5359, + 3632 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 333, + "ASSET_SYMBOL": "I_AVF0120", + "UNK0": 801635, + "STRING": "Looks like we made it.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4940, + 5308, + 5307, + 5359, + 3632 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 334, + "ASSET_SYMBOL": "I_AVF0120", + "UNK0": 801636, + "STRING": "Ahhhhhh... This is pure bliss. ㈱", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4941, + 5309, + 0, + 5359, + 3632 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 335, + "ASSET_SYMBOL": "I_AVF0010", + "UNK0": 67771, + "STRING": "Stop that, Angelica!", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 4, + 4942, + 5310, + 5309, + 5359, + 3632 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 336, + "ASSET_SYMBOL": "I_AVF0120", + "UNK0": 801637, + "STRING": "Just kiddin' around. I love it\nwhen you're angry.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 4, + 4943, + 5311, + 5310, + 5359, + 3632 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 337, + "ASSET_SYMBOL": "I_AVF0100", + "UNK0": 666567, + "STRING": "I swear, this girl...", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4944, + 5312, + 5311, + 5359, + 3632 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 338, + "ASSET_SYMBOL": "I_AVF0040", + "UNK0": 270366, + "STRING": "Looks like this place is crawling\nwith archaisms, just like Garrelia.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4945, + 5313, + 0, + 3630, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 339, + "ASSET_SYMBOL": "I_AVF0020", + "UNK0": 138300, + "STRING": "There's some monsters I didn't see\nwhen we were here yesterday, too.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 4, + 4946, + 5314, + 5313, + 3630, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 340, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 263, + "STRING": "They must have brought them in\nfrom outside. Be careful!", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4947, + 5315, + 5314, + 3630, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 341, + "ASSET_SYMBOL": "I_AVF0070", + "UNK0": 463983, + "STRING": "There's the exit. Looks like the\ngate's been shut.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4948, + 5316, + 0, + 3630, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 342, + "ASSET_SYMBOL": "I_AVF0040", + "UNK0": 270367, + "STRING": "So the provincial army and the RMP are\nhaving their shouting match out there...", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 4, + 4949, + 5317, + 5316, + 3630, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 343, + "ASSET_SYMBOL": "I_AVF0120", + "UNK0": 801638, + "STRING": "Let's just leave them to it.\nWe need to head further in.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4950, + 5318, + 5317, + 3630, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 344, + "ASSET_SYMBOL": "I_AVF0020", + "UNK0": 138301, + "STRING": "Huh? A dead end?", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4951, + 5319, + 0, + 3630, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 345, + "ASSET_SYMBOL": "I_AVF0120", + "UNK0": 801639, + "STRING": "Maybe not. We walked past\na ladder not too long ago.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 4, + 4952, + 5320, + 5319, + 3630, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 346, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 264, + "STRING": "Let's go back and find it.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4953, + 5321, + 5320, + 3630, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 347, + "ASSET_SYMBOL": "I_AVF0120", + "UNK0": 801640, + "STRING": "Yep, this is the one. Climbing\nthis should take us further in.", + "UNK1": [ + 1.5, + 1.0 + ], + "UNK2": [ + 13, + 4954, + 5322, + 0, + 3630, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 348, + "ASSET_SYMBOL": "I_AVF0070", + "UNK0": 463984, + "STRING": "...There we go.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4955, + 5323, + 0, + 3630, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 349, + "ASSET_SYMBOL": "I_AVF0010", + "UNK0": 67772, + "STRING": "Almost there... Just a little further now!", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4956, + 5324, + 5323, + 3630, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 350, + "ASSET_SYMBOL": "I_AVF0050", + "UNK0": 331911, + "STRING": "Umm... Rean...?", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4957, + 5325, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 351, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 265, + "STRING": "Hold onto that thought for now.\nLet's just keep moving.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 4, + 4958, + 5326, + 5325, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 352, + "ASSET_SYMBOL": "I_AVF0050", + "UNK0": 331912, + "STRING": "...Right!", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 4, + 4959, + 5327, + 5326, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 353, + "ASSET_SYMBOL": "I_AVF0990", + "UNK0": 6505064, + "STRING": "Meow.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4960, + 5328, + 5327, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 354, + "ASSET_SYMBOL": "I_AVF0990", + "UNK0": 6505065, + "STRING": "Meeeow... Mrrowr.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 13, + 4961, + 5329, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 355, + "ASSET_SYMBOL": "I_AVF0050", + "UNK0": 331913, + "STRING": "...I know. I'll be careful, I promise.", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 4, + 4962, + 5330, + 5329, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 356, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 266, + "STRING": "(I always get this feeling like Emma\ncan actually understand Celine...)", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4963, + 5331, + 5330, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 357, + "ASSET_SYMBOL": "I_AVF0990", + "UNK0": 6505066, + "STRING": "*hiss*", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 13, + 4964, + 5332, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 358, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 267, + "STRING": "This looks like...", + "UNK1": [ + 0.5, + 1.0 + ], + "UNK2": [ + 4, + 4965, + 5333, + 5332, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 359, + "ASSET_SYMBOL": "I_AVF0050", + "UNK0": 331914, + "STRING": "I can sense something inside.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 36, + 4966, + 5334, + 5333, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 360, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 105, + "STRING": "This looks like a nice spot.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5335, + 5342, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 361, + "ASSET_SYMBOL": "I_AVF0000", + "UNK0": 106, + "STRING": "Oooh, this looks like a good spot.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5335, + 5342, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 362, + "ASSET_SYMBOL": "I_AVF0010", + "UNK0": 67636, + "STRING": "All right, let's get started.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5336, + 5343, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 363, + "ASSET_SYMBOL": "I_AVF0010", + "UNK0": 67637, + "STRING": "Looks like we've still got a ways to go.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5337, + 5344, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 364, + "ASSET_SYMBOL": "I_AVF0010", + "UNK0": 67638, + "STRING": "Whew... This is the end.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5338, + 5345, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 365, + "ASSET_SYMBOL": "I_AVF0010", + "UNK0": 67639, + "STRING": "Ah! It's a treasure chest! ♪", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5339, + 5346, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 366, + "ASSET_SYMBOL": "I_AVF0010", + "UNK0": 67640, + "STRING": "That looks like a strong one...\nBe careful.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5340, + 5347, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 367, + "ASSET_SYMBOL": "I_AVF0010", + "UNK0": 67641, + "STRING": "What's that? It's so shiny...", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5341, + 5348, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 368, + "ASSET_SYMBOL": "I_AVF0030", + "UNK0": 199703, + "STRING": "Onward!", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5336, + 5343, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 369, + "ASSET_SYMBOL": "I_AVF0030", + "UNK0": 199704, + "STRING": "Let's keep up the pace.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5337, + 5344, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 370, + "ASSET_SYMBOL": "I_AVF0030", + "UNK0": 199705, + "STRING": "We appear to have reached the exit.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5338, + 5345, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 371, + "ASSET_SYMBOL": "I_AVF0030", + "UNK0": 199706, + "STRING": "Is that a treasure chest?", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5339, + 5346, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 372, + "ASSET_SYMBOL": "I_AVF0030", + "UNK0": 199707, + "STRING": "A challenging foe. We should engage\nit with care.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5340, + 5347, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 373, + "ASSET_SYMBOL": "I_AVF0030", + "UNK0": 199708, + "STRING": "What's that strange shining creature?", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5341, + 5348, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 374, + "ASSET_SYMBOL": "I_AVF0050", + "UNK0": 331776, + "STRING": "Please be careful, everyone.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5336, + 5343, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 375, + "ASSET_SYMBOL": "I_AVF0050", + "UNK0": 331777, + "STRING": "I wonder if we're around halfway\nthrough now.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5337, + 5344, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 376, + "ASSET_SYMBOL": "I_AVF0050", + "UNK0": 331778, + "STRING": "*sigh* It looks like we've\nfinally made it to the end.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5338, + 5345, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 377, + "ASSET_SYMBOL": "I_AVF0050", + "UNK0": 331779, + "STRING": "Oh, that's a beautiful-looking\ntreasure chest.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5339, + 5346, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 378, + "ASSET_SYMBOL": "I_AVF0050", + "UNK0": 331780, + "STRING": "This monster seems dangerous. Be careful!", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5340, + 5347, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 379, + "ASSET_SYMBOL": "I_AVF0050", + "UNK0": 331781, + "STRING": "Oh? I wonder what that strange\nglow is...", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5341, + 5348, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 380, + "ASSET_SYMBOL": "I_AVF0070", + "UNK0": 463846, + "STRING": "Let's go.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5336, + 5343, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 381, + "ASSET_SYMBOL": "I_AVF0070", + "UNK0": 463847, + "STRING": "We're still not done?\n*sigh* What a pain.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5337, + 5344, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 382, + "ASSET_SYMBOL": "I_AVF0070", + "UNK0": 463848, + "STRING": "Oh, there's the end.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5338, + 5345, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 383, + "ASSET_SYMBOL": "I_AVF0070", + "UNK0": 463849, + "STRING": "I spy treasure.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5339, + 5346, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 384, + "ASSET_SYMBOL": "I_AVF0070", + "UNK0": 463850, + "STRING": "That one looks annoying.\nWatch out.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5340, + 5347, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 385, + "ASSET_SYMBOL": "I_AVF0070", + "UNK0": 463851, + "STRING": "So shiny... What is it?", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5341, + 5348, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 386, + "ASSET_SYMBOL": "I_AVF0090", + "UNK0": 595920, + "STRING": "Let's go go gooo!", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5336, + 5343, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 387, + "ASSET_SYMBOL": "I_AVF0090", + "UNK0": 595921, + "STRING": "Huh? There's more to go?", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5337, + 5344, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 388, + "ASSET_SYMBOL": "I_AVF0090", + "UNK0": 595922, + "STRING": "Oooh, this looks like the end!", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5338, + 5345, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 389, + "ASSET_SYMBOL": "I_AVF0090", + "UNK0": 595923, + "STRING": "Yaaay, treasure!", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5339, + 5346, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 390, + "ASSET_SYMBOL": "I_AVF0090", + "UNK0": 595924, + "STRING": "Oooh, that one looks tough.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5340, + 5347, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 391, + "ASSET_SYMBOL": "I_AVF0090", + "UNK0": 595925, + "STRING": "Whoa! Look at that shiny thing!", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5341, + 5348, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 392, + "ASSET_SYMBOL": "I_AVF0095", + "UNK0": 595920, + "STRING": "Let's go go gooo!", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5336, + 5343, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 393, + "ASSET_SYMBOL": "I_AVF0095", + "UNK0": 595921, + "STRING": "Huh? There's more to go?", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5337, + 5344, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 394, + "ASSET_SYMBOL": "I_AVF0095", + "UNK0": 595922, + "STRING": "Oooh, this looks like the end!", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5338, + 5345, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 395, + "ASSET_SYMBOL": "I_AVF0095", + "UNK0": 595923, + "STRING": "Yaaay, treasure!", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5339, + 5346, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 396, + "ASSET_SYMBOL": "I_AVF0095", + "UNK0": 595924, + "STRING": "Oooh, that one looks tough.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5340, + 5347, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 397, + "ASSET_SYMBOL": "I_AVF0095", + "UNK0": 595925, + "STRING": "Whoa! Look at that shiny thing!", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5341, + 5348, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 398, + "ASSET_SYMBOL": "I_AVF0020", + "UNK0": 138167, + "STRING": "Let's be careful, everyone.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5336, + 5343, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 399, + "ASSET_SYMBOL": "I_AVF0020", + "UNK0": 138168, + "STRING": "Oh, boy... There's more?", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5337, + 5344, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 400, + "ASSET_SYMBOL": "I_AVF0020", + "UNK0": 138169, + "STRING": "Yaaay! We're at the end!", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5338, + 5345, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 401, + "ASSET_SYMBOL": "I_AVF0020", + "UNK0": 138170, + "STRING": "Oh, a treasure chest!", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5339, + 5346, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 402, + "ASSET_SYMBOL": "I_AVF0020", + "UNK0": 138171, + "STRING": "That looks like a tough one.\nBe careful!", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5340, + 5347, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 403, + "ASSET_SYMBOL": "I_AVF0020", + "UNK0": 138172, + "STRING": "Whoa! What's that shiny thing?", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5341, + 5348, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 404, + "ASSET_SYMBOL": "I_AVF0040", + "UNK0": 270240, + "STRING": "All right, time to commence our\ninvestigation.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5336, + 5343, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 405, + "ASSET_SYMBOL": "I_AVF0040", + "UNK0": 270241, + "STRING": "We're not through yet. Stay alert.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5337, + 5344, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 406, + "ASSET_SYMBOL": "I_AVF0040", + "UNK0": 270242, + "STRING": "All right! We're finally through.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5338, + 5345, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 407, + "ASSET_SYMBOL": "I_AVF0040", + "UNK0": 270243, + "STRING": "Oh, what a nice-looking treasure chest.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5339, + 5346, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 408, + "ASSET_SYMBOL": "I_AVF0040", + "UNK0": 270244, + "STRING": "A dangerous foe. Stay on guard!", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5340, + 5347, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 409, + "ASSET_SYMBOL": "I_AVF0040", + "UNK0": 270245, + "STRING": "What is that glowing creature...?", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5341, + 5348, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 410, + "ASSET_SYMBOL": "I_AVF0060", + "UNK0": 402316, + "STRING": "We should proceed onward.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5336, + 5343, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 411, + "ASSET_SYMBOL": "I_AVF0060", + "UNK0": 402317, + "STRING": "There's more. Stay alert.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5337, + 5344, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 412, + "ASSET_SYMBOL": "I_AVF0060", + "UNK0": 402318, + "STRING": "Hmph. We're finally done.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5338, + 5345, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 413, + "ASSET_SYMBOL": "I_AVF0060", + "UNK0": 402319, + "STRING": "Oh, a treasure chest.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5339, + 5346, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 414, + "ASSET_SYMBOL": "I_AVF0060", + "UNK0": 402320, + "STRING": "It's enormous... Stay on guard!", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5340, + 5347, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 415, + "ASSET_SYMBOL": "I_AVF0060", + "UNK0": 402321, + "STRING": "What is that bizarre creature?", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5341, + 5348, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 416, + "ASSET_SYMBOL": "I_AVF0080", + "UNK0": 534384, + "STRING": "It's time to begin our investigation.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5336, + 5343, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 417, + "ASSET_SYMBOL": "I_AVF0080", + "UNK0": 534385, + "STRING": "Hmm... We still seem to have a\nways to go.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5337, + 5344, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 418, + "ASSET_SYMBOL": "I_AVF0080", + "UNK0": 534386, + "STRING": "Haha. We made it through.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5338, + 5345, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 419, + "ASSET_SYMBOL": "I_AVF0080", + "UNK0": 534387, + "STRING": "Huh. There seems to be\na treasure chest here.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5339, + 5346, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 420, + "ASSET_SYMBOL": "I_AVF0080", + "UNK0": 534388, + "STRING": "What a large monster...\nWe'll need to be careful.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5340, + 5347, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 421, + "ASSET_SYMBOL": "I_AVF0080", + "UNK0": 534389, + "STRING": "What is that strange glow?", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5341, + 5348, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 422, + "ASSET_SYMBOL": "I_AVF0100", + "UNK0": 666452, + "STRING": "All right, let's get exploring!", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5336, + 5343, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 423, + "ASSET_SYMBOL": "I_AVF0100", + "UNK0": 666453, + "STRING": "Aww, man. We're still not through?", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5337, + 5344, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 424, + "ASSET_SYMBOL": "I_AVF0100", + "UNK0": 666454, + "STRING": "Whew... We're finally done.", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5338, + 5345, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 425, + "ASSET_SYMBOL": "I_AVF0100", + "UNK0": 666455, + "STRING": "*whistle* Now THAT'S what I call\na chest!", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5339, + 5346, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 426, + "ASSET_SYMBOL": "I_AVF0100", + "UNK0": 666456, + "STRING": "Looks like a tough one. Watch out!", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5340, + 5347, + 0, + 5359, + 5360 + ] + }, + { + "TYPE": "ActiveVoiceTableData", + "ID": 427, + "ASSET_SYMBOL": "I_AVF0100", + "UNK0": 666457, + "STRING": "Whoa! What's that shiny thing?", + "UNK1": [ + 2.0, + 1.0 + ], + "UNK2": [ + 55, + 5341, + 5348, + 0, + 5359, + 5360 + ] + } +] \ No newline at end of file diff --git a/text/jsons/t_book.json b/text/jsons/t_book.json new file mode 100644 index 0000000..3482329 --- /dev/null +++ b/text/jsons/t_book.json @@ -0,0 +1,425 @@ +[ + { + "TYPE": "QSBookScp", + "UNK": "626F6F6B303000" + }, + { + "TYPE": "QSBookScp", + "UNK": "626F6F6B303100" + }, + { + "TYPE": "QSBookScp", + "UNK": "626F6F6B303200" + }, + { + "TYPE": "QSBookScp", + "UNK": "626F6F6B303300" + }, + { + "TYPE": "QSChapter", + "ID": 0, + "STRING": "Imperial Chronicle" + }, + { + "TYPE": "QSChapter", + "ID": 1, + "STRING": "Carnelia" + }, + { + "TYPE": "QSChapter", + "ID": 2, + "STRING": "Red Moon Rose" + }, + { + "TYPE": "QSChapter", + "ID": 3, + "STRING": "Other" + }, + { + "TYPE": "QSBook", + "UNK0": 0, + "ID": 260, + "STRING": "Issue 1", + "BOOK": "book00", + "BOOKDATA": "BookData01", + "ID2": 0 + }, + { + "TYPE": "QSBook", + "UNK0": 0, + "ID": 261, + "STRING": "Issue 2", + "BOOK": "book00", + "BOOKDATA": "BookData02", + "ID2": 1 + }, + { + "TYPE": "QSBook", + "UNK0": 0, + "ID": 262, + "STRING": "Issue 3", + "BOOK": "book00", + "BOOKDATA": "BookData03", + "ID2": 2 + }, + { + "TYPE": "QSBook", + "UNK0": 0, + "ID": 263, + "STRING": "Issue 4", + "BOOK": "book00", + "BOOKDATA": "BookData04", + "ID2": 3 + }, + { + "TYPE": "QSBook", + "UNK0": 0, + "ID": 264, + "STRING": "Issue 5", + "BOOK": "book00", + "BOOKDATA": "BookData05", + "ID2": 4 + }, + { + "TYPE": "QSBook", + "UNK0": 0, + "ID": 265, + "STRING": "Issue 6", + "BOOK": "book00", + "BOOKDATA": "BookData06", + "ID2": 5 + }, + { + "TYPE": "QSBook", + "UNK0": 0, + "ID": 266, + "STRING": "Issue 7", + "BOOK": "book00", + "BOOKDATA": "BookData07", + "ID2": 6 + }, + { + "TYPE": "QSBook", + "UNK0": 0, + "ID": 267, + "STRING": "Issue 8", + "BOOK": "book00", + "BOOKDATA": "BookData08", + "ID2": 7 + }, + { + "TYPE": "QSBook", + "UNK0": 0, + "ID": 268, + "STRING": "Issue 9", + "BOOK": "book00", + "BOOKDATA": "BookData09", + "ID2": 8 + }, + { + "TYPE": "QSBook", + "UNK0": 0, + "ID": 269, + "STRING": "Issue 10", + "BOOK": "book00", + "BOOKDATA": "BookData10", + "ID2": 9 + }, + { + "TYPE": "QSBook", + "UNK0": 0, + "ID": 270, + "STRING": "Issue 11", + "BOOK": "book00", + "BOOKDATA": "BookData11", + "ID2": 10 + }, + { + "TYPE": "QSBook", + "UNK0": 1, + "ID": 271, + "STRING": "Chapter 1", + "BOOK": "book01", + "BOOKDATA": "BookData01", + "ID2": 11 + }, + { + "TYPE": "QSBook", + "UNK0": 1, + "ID": 272, + "STRING": "Chapter 2", + "BOOK": "book01", + "BOOKDATA": "BookData02", + "ID2": 12 + }, + { + "TYPE": "QSBook", + "UNK0": 1, + "ID": 273, + "STRING": "Chapter 3", + "BOOK": "book01", + "BOOKDATA": "BookData03", + "ID2": 13 + }, + { + "TYPE": "QSBook", + "UNK0": 1, + "ID": 274, + "STRING": "Chapter 4", + "BOOK": "book01", + "BOOKDATA": "BookData04", + "ID2": 14 + }, + { + "TYPE": "QSBook", + "UNK0": 1, + "ID": 275, + "STRING": "Chapter 5", + "BOOK": "book01", + "BOOKDATA": "BookData05", + "ID2": 15 + }, + { + "TYPE": "QSBook", + "UNK0": 1, + "ID": 276, + "STRING": "Chapter 6", + "BOOK": "book01", + "BOOKDATA": "BookData06", + "ID2": 16 + }, + { + "TYPE": "QSBook", + "UNK0": 1, + "ID": 277, + "STRING": "Chapter 7", + "BOOK": "book01", + "BOOKDATA": "BookData07", + "ID2": 17 + }, + { + "TYPE": "QSBook", + "UNK0": 1, + "ID": 278, + "STRING": "Chapter 8", + "BOOK": "book01", + "BOOKDATA": "BookData08", + "ID2": 18 + }, + { + "TYPE": "QSBook", + "UNK0": 1, + "ID": 279, + "STRING": "Chapter 9", + "BOOK": "book01", + "BOOKDATA": "BookData09", + "ID2": 19 + }, + { + "TYPE": "QSBook", + "UNK0": 1, + "ID": 280, + "STRING": "Chapter 10", + "BOOK": "book01", + "BOOKDATA": "BookData10", + "ID2": 20 + }, + { + "TYPE": "QSBook", + "UNK0": 1, + "ID": 281, + "STRING": "Finale", + "BOOK": "book01", + "BOOKDATA": "BookData11", + "ID2": 21 + }, + { + "TYPE": "QSBook", + "UNK0": 2, + "ID": 309, + "STRING": "Chapter 1", + "BOOK": "book02", + "BOOKDATA": "BookData01", + "ID2": 22 + }, + { + "TYPE": "QSBook", + "UNK0": 2, + "ID": 310, + "STRING": "Chapter 2", + "BOOK": "book02", + "BOOKDATA": "BookData02", + "ID2": 23 + }, + { + "TYPE": "QSBook", + "UNK0": 2, + "ID": 311, + "STRING": "Chapter 3", + "BOOK": "book02", + "BOOKDATA": "BookData03", + "ID2": 24 + }, + { + "TYPE": "QSBook", + "UNK0": 2, + "ID": 312, + "STRING": "Chapter 4", + "BOOK": "book02", + "BOOKDATA": "BookData04", + "ID2": 25 + }, + { + "TYPE": "QSBook", + "UNK0": 2, + "ID": 313, + "STRING": "Chapter 5", + "BOOK": "book02", + "BOOKDATA": "BookData05", + "ID2": 26 + }, + { + "TYPE": "QSBook", + "UNK0": 2, + "ID": 314, + "STRING": "Chapter 6", + "BOOK": "book02", + "BOOKDATA": "BookData06", + "ID2": 27 + }, + { + "TYPE": "QSBook", + "UNK0": 2, + "ID": 315, + "STRING": "Chapter 7", + "BOOK": "book02", + "BOOKDATA": "BookData07", + "ID2": 28 + }, + { + "TYPE": "QSBook", + "UNK0": 2, + "ID": 316, + "STRING": "Chapter 8", + "BOOK": "book02", + "BOOKDATA": "BookData08", + "ID2": 29 + }, + { + "TYPE": "QSBook", + "UNK0": 2, + "ID": 317, + "STRING": "Chapter 9", + "BOOK": "book02", + "BOOKDATA": "BookData09", + "ID2": 30 + }, + { + "TYPE": "QSBook", + "UNK0": 2, + "ID": 318, + "STRING": "Chapter 10", + "BOOK": "book02", + "BOOKDATA": "BookData10", + "ID2": 31 + }, + { + "TYPE": "QSBook", + "UNK0": 2, + "ID": 319, + "STRING": "Chapter 11", + "BOOK": "book02", + "BOOKDATA": "BookData11", + "ID2": 32 + }, + { + "TYPE": "QSBook", + "UNK0": 2, + "ID": 320, + "STRING": "Chapter 12", + "BOOK": "book02", + "BOOKDATA": "BookData12", + "ID2": 33 + }, + { + "TYPE": "QSBook", + "UNK0": 2, + "ID": 321, + "STRING": "Chapter 13", + "BOOK": "book02", + "BOOKDATA": "BookData13", + "ID2": 34 + }, + { + "TYPE": "QSBook", + "UNK0": 2, + "ID": 322, + "STRING": "Finale", + "BOOK": "book02", + "BOOKDATA": "BookData14", + "ID2": 35 + }, + { + "TYPE": "QSBook", + "UNK0": 3, + "ID": 282, + "STRING": "Imperial Railways", + "BOOK": "book03", + "BOOKDATA": "BookData01", + "ID2": 36 + }, + { + "TYPE": "QSBook", + "UNK0": 3, + "ID": 283, + "STRING": "Folklore 1", + "BOOK": "book03", + "BOOKDATA": "BookData02", + "ID2": 37 + }, + { + "TYPE": "QSBook", + "UNK0": 3, + "ID": 284, + "STRING": "Sports", + "BOOK": "book03", + "BOOKDATA": "BookData03", + "ID2": 38 + }, + { + "TYPE": "QSBook", + "UNK0": 3, + "ID": 285, + "STRING": "Folklore 2", + "BOOK": "book03", + "BOOKDATA": "BookData04", + "ID2": 39 + }, + { + "TYPE": "QSBook", + "UNK0": 3, + "ID": 286, + "STRING": "The Media", + "BOOK": "book03", + "BOOKDATA": "BookData05", + "ID2": 40 + }, + { + "TYPE": "QSBook", + "UNK0": 3, + "ID": 287, + "STRING": "Folklore 3", + "BOOK": "book03", + "BOOKDATA": "BookData06", + "ID2": 41 + }, + { + "TYPE": "QSBook", + "UNK0": 3, + "ID": 288, + "STRING": "The Reinford Group", + "BOOK": "book03", + "BOOKDATA": "BookData07", + "ID2": 42 + } +] \ No newline at end of file diff --git a/text/jsons/t_btlsys.json b/text/jsons/t_btlsys.json new file mode 100644 index 0000000..0ac6e36 --- /dev/null +++ b/text/jsons/t_btlsys.json @@ -0,0 +1,131 @@ +[ + { + "TYPE": "TacticalBonus", + "ID": 0, + "STRING": "Vanquisher", + "UNK0": 0.4000000059604645, + "UNK1": 2308 + }, + { + "TYPE": "TacticalBonus", + "ID": 1, + "STRING": "Triple Kill", + "UNK0": 0.30000001192092896, + "UNK1": 2307 + }, + { + "TYPE": "TacticalBonus", + "ID": 2, + "STRING": "Double Kill", + "UNK0": 0.20000000298023224, + "UNK1": 2306 + }, + { + "TYPE": "TacticalBonus", + "ID": 3, + "STRING": "Triple Cancel", + "UNK0": 0.20000000298023224, + "UNK1": 2307 + }, + { + "TYPE": "TacticalBonus", + "ID": 4, + "STRING": "Vengeance", + "UNK0": 0.20000000298023224, + "UNK1": 256 + }, + { + "TYPE": "TacticalBonus", + "ID": 5, + "STRING": "Unscathed", + "UNK0": 0.20000000298023224, + "UNK1": 256 + }, + { + "TYPE": "TacticalBonus", + "ID": 6, + "STRING": "Double-Teamed", + "UNK0": 0.20000000298023224, + "UNK1": 2306 + }, + { + "TYPE": "TacticalBonus", + "ID": 7, + "STRING": "Triple Counter", + "UNK0": 0.10000000149011612, + "UNK1": 2307 + }, + { + "TYPE": "TacticalBonus", + "ID": 8, + "STRING": "Overkill", + "UNK0": 0.10000000149011612, + "UNK1": 2309 + }, + { + "TYPE": "TacticalBonus", + "ID": 9, + "STRING": "Deadly Reprisal", + "UNK0": 0.10000000149011612, + "UNK1": 2304 + }, + { + "TYPE": "TacticalBonus", + "ID": 10, + "STRING": "Swift and Sure", + "UNK0": 0.10000000149011612, + "UNK1": 259 + }, + { + "TYPE": "TacticalBonus", + "ID": 11, + "STRING": "First Strike", + "UNK0": 0.10000000149011612, + "UNK1": 256 + }, + { + "TYPE": "TacticalBonus", + "ID": 12, + "STRING": "Natural Remedy", + "UNK0": 0.10000000149011612, + "UNK1": 2307 + }, + { + "TYPE": "TacticalBonus", + "ID": 13, + "STRING": "Bag of Tricks", + "UNK0": 0.10000000149011612, + "UNK1": 2307 + }, + { + "TYPE": "TacticalBonus", + "ID": 14, + "STRING": "Scouter", + "UNK0": 0.10000000149011612, + "UNK1": 2304 + }, + { + "TYPE": "AtBonus", + "UNK": "0000000064000000000000000000000000000000" + }, + { + "TYPE": "AtBonus", + "UNK": "0100000064050105010501050505000000000000" + }, + { + "TYPE": "AtBonus", + "UNK": "0200000064050105010501050505050505050500" + }, + { + "TYPE": "AtBonus", + "UNK": "0300000064050005000500050200000000000000" + }, + { + "TYPE": "AtBonus", + "UNK": "0400000064050005000500050000000000000000" + }, + { + "TYPE": "AtBonus", + "UNK": "050000006405000500050014051E000000000000" + } +] \ No newline at end of file diff --git a/text/jsons/t_card.json b/text/jsons/t_card.json new file mode 100644 index 0000000..64faf1a --- /dev/null +++ b/text/jsons/t_card.json @@ -0,0 +1,326 @@ +[ + { + "TYPE": "CardTableData", + "ID": 1, + "STRING": "ヒツジン1", + "UNK0": "040001000300030000000200030000000000000000000b000100" + }, + { + "TYPE": "CardTableData", + "ID": 2, + "STRING": "ヒツジン2", + "UNK0": "040002000000050000000000040000000000030000000c000100" + }, + { + "TYPE": "CardTableData", + "ID": 3, + "STRING": "ヒツジン3", + "UNK0": "040003000000000000000300040005000000000000000c000100" + }, + { + "TYPE": "CardTableData", + "ID": 4, + "STRING": "ヒツジン4", + "UNK0": "0500010000000400000001000200020000000000000009000100" + }, + { + "TYPE": "CardTableData", + "ID": 5, + "STRING": "ヒツジン5", + "UNK0": "040002000000020000000300040000000400000000000d000100" + }, + { + "TYPE": "CardTableData", + "ID": 6, + "STRING": "ヒツジン6", + "UNK0": "0300030000000000000002000300040000000000000009000100" + }, + { + "TYPE": "CardTableData", + "ID": 7, + "STRING": "ヒツジン7", + "UNK0": "040001000000010000000000040002000000030000000a000100" + }, + { + "TYPE": "CardTableData", + "ID": 8, + "STRING": "ヒツジン8", + "UNK0": "040002000000000000000300020000000000020004000b000100" + }, + { + "TYPE": "CardTableData", + "ID": 9, + "STRING": "ヒツジン9", + "UNK0": "0400030000000300000005000100000000000000000009000100" + }, + { + "TYPE": "CardTableData", + "ID": 10, + "STRING": "ヒツジン10", + "UNK0": "010001000000030000000000030000000000040000000a000100" + }, + { + "TYPE": "CardTableData", + "ID": 11, + "STRING": "ヒツジン11", + "UNK0": "030002000000000000000200040002000000020000000a000100" + }, + { + "TYPE": "CardTableData", + "ID": 12, + "STRING": "ヒツジン12", + "UNK0": "040003000000020004000000020000000000030000000b000100" + }, + { + "TYPE": "CardTableData", + "ID": 13, + "STRING": "ヒツジン13", + "UNK0": "040001000000000000000000040002000300010000000a000100" + }, + { + "TYPE": "CardTableData", + "ID": 14, + "STRING": "ヒツジン14", + "UNK0": "040002000000000000000000020003000000020004000b000100" + }, + { + "TYPE": "CardTableData", + "ID": 15, + "STRING": "ヒツジン15", + "UNK0": "050003000400020003000000000003000000000000000c000100" + }, + { + "TYPE": "CardTableData", + "ID": 16, + "STRING": "ヒツジン16", + "UNK0": "0500010000000000000000000100000000000000000001000100" + }, + { + "TYPE": "CardTableData", + "ID": 17, + "STRING": "ヒツジン17", + "UNK0": "0500010000000000000000000100000000000000000001000100" + }, + { + "TYPE": "CardTableData", + "ID": 18, + "STRING": "ヒツジン18", + "UNK0": "0500010000000000000000000100000000000000000001000100" + }, + { + "TYPE": "CardTableData", + "ID": 19, + "STRING": "ヒツジン19", + "UNK0": "0500010000000000000000000100000000000000000001000100" + }, + { + "TYPE": "CardTableData", + "ID": 20, + "STRING": "ヒツジン20", + "UNK0": "0500010000000000000000000100000000000000000001000100" + }, + { + "TYPE": "CardTableData", + "ID": 21, + "STRING": "ヒツジン21", + "UNK0": "0500010000000000000000000100000000000000000001000100" + }, + { + "TYPE": "CardTableData", + "ID": 22, + "STRING": "ヒツジン22", + "UNK0": "0500010000000000000000000100000000000000000001000100" + }, + { + "TYPE": "CardTableData", + "ID": 23, + "STRING": "ヒツジン23", + "UNK0": "0500010000000000000000000100000000000000000001000100" + }, + { + "TYPE": "CardTableData", + "ID": 24, + "STRING": "ヒツジン24", + "UNK0": "0500010000000000000000000100000000000000000001000100" + }, + { + "TYPE": "CardTableData", + "ID": 25, + "STRING": "ヒツジン25", + "UNK0": "0500010000000000000000000100000000000000000001000100" + }, + { + "TYPE": "CardTableData", + "ID": 26, + "STRING": "ヒツジン26", + "UNK0": "0500010000000000000000000100000000000000000001000100" + }, + { + "TYPE": "CardTableData", + "ID": 27, + "STRING": "ヒツジン27", + "UNK0": "0500010000000000000000000100000000000000000001000100" + }, + { + "TYPE": "CardTableData", + "ID": 28, + "STRING": "ヒツジン28", + "UNK0": "0500010000000000000000000100000000000000000001000100" + }, + { + "TYPE": "CardTableData", + "ID": 29, + "STRING": "ヒツジン29", + "UNK0": "0500010000000000000000000100000000000000000001000100" + }, + { + "TYPE": "CardTableData", + "ID": 30, + "STRING": "ヒツジン30", + "UNK0": "0500010000000000000000000100000000000000000001000100" + }, + { + "TYPE": "CardTableData", + "ID": 31, + "STRING": "ヒツジン31", + "UNK0": "0500010000000000000000000100000000000000000001000100" + }, + { + "TYPE": "CardTableData", + "ID": 32, + "STRING": "ヒツジン32", + "UNK0": "0500010000000000000000000100000000000000000001000100" + }, + { + "TYPE": "CardTableData", + "ID": 33, + "STRING": "ヒツジン33", + "UNK0": "0500010000000000000000000100000000000000000001000100" + }, + { + "TYPE": "CardTableData", + "ID": 34, + "STRING": "ヒツジン34", + "UNK0": "0500010000000000000000000100000000000000000001000100" + }, + { + "TYPE": "CardTableData", + "ID": 35, + "STRING": "ヒツジン35", + "UNK0": "0500010000000000000000000100000000000000000001000100" + }, + { + "TYPE": "CardTableData", + "ID": 36, + "STRING": "ヒツジン36", + "UNK0": "0500010000000000000000000100000000000000000001000100" + }, + { + "TYPE": "CardTableData", + "ID": 37, + "STRING": "ヒツジン37", + "UNK0": "0500010000000000000000000100000000000000000001000100" + }, + { + "TYPE": "CardTableData", + "ID": 38, + "STRING": "ヒツジン38", + "UNK0": "0500010000000000000000000100000000000000000001000100" + }, + { + "TYPE": "CardTableData", + "ID": 39, + "STRING": "ヒツジン39", + "UNK0": "0500010000000000000000000100000000000000000001000100" + }, + { + "TYPE": "CardTableData", + "ID": 40, + "STRING": "ヒツジン40", + "UNK0": "0500010000000000000000000100000000000000000001000100" + }, + { + "TYPE": "CardTableData", + "ID": 41, + "STRING": "ヒツジン41", + "UNK0": "0500010000000000000000000100000000000000000001000100" + }, + { + "TYPE": "CardTableData", + "ID": 42, + "STRING": "ヒツジン42", + "UNK0": "0500010000000000000000000100000000000000000001000100" + }, + { + "TYPE": "CardTableData", + "ID": 43, + "STRING": "ヒツジン43", + "UNK0": "0500010000000000000000000100000000000000000001000100" + }, + { + "TYPE": "CardTableData", + "ID": 44, + "STRING": "ヒツジン44", + "UNK0": "0500010000000000000000000100000000000000000001000100" + }, + { + "TYPE": "CardTableData", + "ID": 45, + "STRING": "ヒツジン45", + "UNK0": "0500010000000000000000000100000000000000000001000100" + }, + { + "TYPE": "CardTableData", + "ID": 46, + "STRING": "ヒツジン46", + "UNK0": "0500010000000000000000000100000000000000000001000100" + }, + { + "TYPE": "CardTableData", + "ID": 47, + "STRING": "ヒツジン47", + "UNK0": "0500010000000000000000000100000000000000000001000100" + }, + { + "TYPE": "CardTableData", + "ID": 48, + "STRING": "ヒツジン48", + "UNK0": "0500010000000000000000000100000000000000000001000100" + }, + { + "TYPE": "CardTableData", + "ID": 49, + "STRING": "ヒツジン49", + "UNK0": "0500010000000000000000000100000000000000000001000100" + }, + { + "TYPE": "CardTableData", + "ID": 50, + "STRING": "ヒツジン50", + "UNK0": "0500010000000000000000000100000000000000000001000100" + }, + { + "TYPE": "CardTableData", + "ID": 51, + "STRING": "ヒツジン51", + "UNK0": "0500010000000000000000000100000000000000000001000100" + }, + { + "TYPE": "CardTableData", + "ID": 52, + "STRING": "ヒツジン52", + "UNK0": "0500010000000000000000000100000000000000000001000100" + }, + { + "TYPE": "CardTableData", + "ID": 53, + "STRING": "ヒツジン53", + "UNK0": "0500010000000000000000000100000000000000000001000100" + }, + { + "TYPE": "CardTableData", + "ID": 54, + "STRING": "ヒツジン54", + "UNK0": "0500010000000000000000000100000000000000000001000100" + } +] \ No newline at end of file diff --git a/text/jsons/t_dlc.json b/text/jsons/t_dlc.json new file mode 100644 index 0000000..ce7c4e8 --- /dev/null +++ b/text/jsons/t_dlc.json @@ -0,0 +1,602 @@ +[ + { + "TYPE": "dlc", + "ID": 0, + "CONTENTID": "EDSENADDCONT0000", + "GROUPID": "EDSENNOKISEKIDLC", + "STRINGS": [ + "Rean's Casual Clothes", + "A set of casual clothes just right for Rean." + ] + }, + { + "TYPE": "dlc", + "ID": 1, + "CONTENTID": "EDSENADDCONT0001", + "GROUPID": "EDSENNOKISEKIDLC", + "STRINGS": [ + "Alisa's Casual Clothes", + "A set of casual clothes just right for Alisa." + ] + }, + { + "TYPE": "dlc", + "ID": 50, + "CONTENTID": "EDSENADDCONT0050", + "GROUPID": "EDSENNOKISEKIDLC", + "STRINGS": [ + "Elliot's Casual Clothes", + "A set of casual clothes just right for Elliot." + ] + }, + { + "TYPE": "dlc", + "ID": 51, + "CONTENTID": "EDSENADDCONT0051", + "GROUPID": "EDSENNOKISEKIDLC", + "STRINGS": [ + "Laura's Casual Clothes", + "A set of casual clothes just right for Laura." + ] + }, + { + "TYPE": "dlc", + "ID": 52, + "CONTENTID": "EDSENADDCONT0052", + "GROUPID": "EDSENNOKISEKIDLC", + "STRINGS": [ + "Machias' Casual Clothes", + "A set of casual clothes just right for Machias." + ] + }, + { + "TYPE": "dlc", + "ID": 53, + "CONTENTID": "EDSENADDCONT0053", + "GROUPID": "EDSENNOKISEKIDLC", + "STRINGS": [ + "Emma's Casual Clothes", + "A set of casual clothes just right for Emma." + ] + }, + { + "TYPE": "dlc", + "ID": 54, + "CONTENTID": "EDSENADDCONT0054", + "GROUPID": "EDSENNOKISEKIDLC", + "STRINGS": [ + "Jusis' Casual Clothes", + "A set of casual clothes just right for Jusis." + ] + }, + { + "TYPE": "dlc", + "ID": 55, + "CONTENTID": "EDSENADDCONT0055", + "GROUPID": "EDSENNOKISEKIDLC", + "STRINGS": [ + "Fie's Casual Clothes", + "A set of casual clothes just right for Fie." + ] + }, + { + "TYPE": "dlc", + "ID": 56, + "CONTENTID": "EDSENADDCONT0056", + "GROUPID": "EDSENNOKISEKIDLC", + "STRINGS": [ + "Gaius' Casual Clothes", + "A set of casual clothes just right for Gaius." + ] + }, + { + "TYPE": "dlc", + "ID": 57, + "CONTENTID": "EDSENADDCONT0057", + "GROUPID": "EDSENNOKISEKIDLC", + "STRINGS": [ + "Millium's Casual Clothes", + "A set of casual clothes just right for Millium." + ] + }, + { + "TYPE": "dlc", + "ID": 58, + "CONTENTID": "EDSENADDCONT0058", + "GROUPID": "EDSENNOKISEKIDLC", + "STRINGS": [ + "Crow's Casual Clothes", + "A set of casual clothes just right for Crow." + ] + }, + { + "TYPE": "dlc", + "ID": 7007, + "CONTENTID": "EDSENADDCONT7007", + "GROUPID": "EDSENNOKISEKIDLC", + "STRINGS": [ + "Jenis Uniform", + "A uniform in the colors of Jenis Royal Academy." + ] + }, + { + "TYPE": "dlc", + "ID": 7006, + "CONTENTID": "EDSENADDCONT7006", + "GROUPID": "EDSENNOKISEKIDLC", + "STRINGS": [ + "Black Uniform", + "A classy black variant uniform. Goes with everything." + ] + }, + { + "TYPE": "dlc", + "ID": 7002, + "CONTENTID": "EDSENADDCONT7002", + "GROUPID": "EDSENNOKISEKIDLC", + "STRINGS": [ + "Mishy Paradise Uniform", + "A uniform for those who need more Mishy in their life." + ] + }, + { + "TYPE": "dlc", + "ID": 7005, + "CONTENTID": "EDSENADDCONT7005", + "GROUPID": "EDSENNOKISEKIDLC", + "STRINGS": [ + "Lawson Uniform", + "A uniform for those who embrace convenience." + ] + }, + { + "TYPE": "dlc", + "ID": 7000, + "CONTENTID": "EDSENADDCONT7000", + "GROUPID": "EDSENNOKISEKIDLC", + "STRINGS": [ + "Reverse Uniform", + "A variant uniform with a special color scheme." + ] + }, + { + "TYPE": "dlc", + "ID": 11, + "CONTENTID": "EDSENADDCONT0011", + "GROUPID": "EDSENNOKISEKIDLC", + "STRINGS": [ + "Faceplate - Rean", + "A stylish metallic ARCUS cover with a design based on Rean." + ] + }, + { + "TYPE": "dlc", + "ID": 12, + "CONTENTID": "EDSENADDCONT0012", + "GROUPID": "EDSENNOKISEKIDLC", + "STRINGS": [ + "Faceplate - Alisa", + "A stylish metallic ARCUS cover with a design based on Alisa." + ] + }, + { + "TYPE": "dlc", + "ID": 13, + "CONTENTID": "EDSENADDCONT0013", + "GROUPID": "EDSENNOKISEKIDLC", + "STRINGS": [ + "Faceplate - Elliot", + "A stylish metallic ARCUS cover with a design based on Elliot." + ] + }, + { + "TYPE": "dlc", + "ID": 14, + "CONTENTID": "EDSENADDCONT0014", + "GROUPID": "EDSENNOKISEKIDLC", + "STRINGS": [ + "Faceplate - Laura", + "A stylish metallic ARCUS cover with a design based on Laura." + ] + }, + { + "TYPE": "dlc", + "ID": 59, + "CONTENTID": "EDSENADDCONT0059", + "GROUPID": "EDSENNOKISEKIDLC", + "STRINGS": [ + "Faceplate - Machias", + "A stylish metallic ARCUS cover with a design based on Machias." + ] + }, + { + "TYPE": "dlc", + "ID": 60, + "CONTENTID": "EDSENADDCONT0060", + "GROUPID": "EDSENNOKISEKIDLC", + "STRINGS": [ + "Faceplate - Emma", + "A stylish metallic ARCUS cover with a design based on Emma." + ] + }, + { + "TYPE": "dlc", + "ID": 61, + "CONTENTID": "EDSENADDCONT0061", + "GROUPID": "EDSENNOKISEKIDLC", + "STRINGS": [ + "Faceplate - Jusis", + "A stylish metallic ARCUS cover with a design based on Jusis." + ] + }, + { + "TYPE": "dlc", + "ID": 62, + "CONTENTID": "EDSENADDCONT0062", + "GROUPID": "EDSENNOKISEKIDLC", + "STRINGS": [ + "Faceplate - Fie", + "A stylish metallic ARCUS cover with a design based on Fie." + ] + }, + { + "TYPE": "dlc", + "ID": 63, + "CONTENTID": "EDSENADDCONT0063", + "GROUPID": "EDSENNOKISEKIDLC", + "STRINGS": [ + "Faceplate - Gaius", + "A stylish metallic ARCUS cover with a design based on Gaius." + ] + }, + { + "TYPE": "dlc", + "ID": 64, + "CONTENTID": "EDSENADDCONT0064", + "GROUPID": "EDSENNOKISEKIDLC", + "STRINGS": [ + "Faceplate - Millium", + "A stylish metallic ARCUS cover with a design based on Millium." + ] + }, + { + "TYPE": "dlc", + "ID": 65, + "CONTENTID": "EDSENADDCONT0065", + "GROUPID": "EDSENNOKISEKIDLC", + "STRINGS": [ + "Faceplate - Crow", + "A stylish metallic ARCUS cover with a design based on Crow." + ] + }, + { + "TYPE": "dlc", + "ID": 7003, + "CONTENTID": "EDSENADDCONT7003", + "GROUPID": "EDSENNOKISEKIDLC", + "STRINGS": [ + "Faceplate - Dengeki", + "An ARCUS cover from Dengeki Playstation㍻." + ] + }, + { + "TYPE": "dlc", + "ID": 7001, + "CONTENTID": "EDSENADDCONT7001", + "GROUPID": "EDSENNOKISEKIDLC", + "STRINGS": [ + "Faceplate - Famitsu", + "An ARCUS cover from Famitsu." + ] + }, + { + "TYPE": "dlc", + "ID": 22, + "CONTENTID": "EDSENADDCONT0022", + "GROUPID": "EDSENNOKISEKIDLC", + "STRINGS": [ + "Ride-Along Mishy", + "Have free space on your arm? Let Mishy come along!" + ] + }, + { + "TYPE": "dlc", + "ID": 23, + "CONTENTID": "EDSENADDCONT0023", + "GROUPID": "EDSENNOKISEKIDLC", + "STRINGS": [ + "Ride-Along Noi", + "Have free space on your arm? Let Noi come along!" + ] + }, + { + "TYPE": "dlc", + "ID": 24, + "CONTENTID": "EDSENADDCONT0024", + "GROUPID": "EDSENNOKISEKIDLC", + "STRINGS": [ + "Bunny Ears", + "Don these cute ears and discover the secret to hoppiness!" + ] + }, + { + "TYPE": "dlc", + "ID": 25, + "CONTENTID": "EDSENADDCONT0025", + "GROUPID": "EDSENNOKISEKIDLC", + "STRINGS": [ + "Free Trial Pack", + "Includes 3 types of healing items and 4 types of quartz." + ] + }, + { + "TYPE": "dlc", + "ID": 26, + "CONTENTID": "EDSENADDCONT0026", + "GROUPID": "EDSENNOKISEKIDLC", + "STRINGS": [ + "Free Trial Pack 2", + "Includes 2 Zeram Powders." + ] + }, + { + "TYPE": "dlc", + "ID": 27, + "CONTENTID": "EDSENADDCONT0027", + "GROUPID": "EDSENNOKISEKIDLC", + "STRINGS": [ + "Free Trial Pack 3", + "Includes 2 Shining Pom Bait." + ] + }, + { + "TYPE": "dlc", + "ID": 28, + "CONTENTID": "EDSENADDCONT0028", + "GROUPID": "EDSENNOKISEKIDLC", + "STRINGS": [ + "Sepith Pack", + "Includes 500 pieces of each type of sepith." + ] + }, + { + "TYPE": "dlc", + "ID": 29, + "CONTENTID": "EDSENADDCONT0029", + "GROUPID": "EDSENNOKISEKIDLC", + "STRINGS": [ + "Handy Accessories Pack", + "Includes 8 useful accessories." + ] + }, + { + "TYPE": "dlc", + "ID": 30, + "CONTENTID": "EDSENADDCONT0030", + "GROUPID": "EDSENNOKISEKIDLC", + "STRINGS": [ + "Monstrous Ingredients Pack", + "Includes 6 types of monster ingredients (30 of each)." + ] + }, + { + "TYPE": "dlc", + "ID": 31, + "CONTENTID": "EDSENADDCONT0031", + "GROUPID": "EDSENNOKISEKIDLC", + "STRINGS": [ + "Valuable Healing Items Pack", + "Includes 4 types of healing items (10 of each)." + ] + }, + { + "TYPE": "dlc", + "ID": 32, + "CONTENTID": "EDSENADDCONT0032", + "GROUPID": "EDSENNOKISEKIDLC", + "STRINGS": [ + "Zeram Powder Pack", + "Includes 10 Zeram Powders." + ] + }, + { + "TYPE": "dlc", + "ID": 33, + "CONTENTID": "EDSENADDCONT0033", + "GROUPID": "EDSENNOKISEKIDLC", + "STRINGS": [ + "Zeram Capsule Pack", + "Includes 10 Zeram Capsules." + ] + }, + { + "TYPE": "dlc", + "ID": 34, + "CONTENTID": "EDSENADDCONT0034", + "GROUPID": "EDSENNOKISEKIDLC", + "STRINGS": [ + "Shining Pom Bait Pack 1", + "A handy pack of 3 Shining Pom Bait." + ] + }, + { + "TYPE": "dlc", + "ID": 35, + "CONTENTID": "EDSENADDCONT0035", + "GROUPID": "EDSENNOKISEKIDLC", + "STRINGS": [ + "Shining Pom Bait Pack 2", + "A handy pack of 3 Shining Pom Bait." + ] + }, + { + "TYPE": "dlc", + "ID": 36, + "CONTENTID": "EDSENADDCONT0036", + "GROUPID": "EDSENNOKISEKIDLC", + "STRINGS": [ + "Shining Pom Bait Pack 3", + "A handy pack of 3 Shining Pom Bait." + ] + }, + { + "TYPE": "dlc", + "ID": 100, + "CONTENTID": "EDSENADDCONT0100", + "GROUPID": "EDSENNOKISEKIDLC", + "STRINGS": [ + "Shining Pom Bait Trial Set", + "A handy pack of 3 Shining Pom Bait." + ] + }, + { + "TYPE": "dlc", + "ID": 101, + "CONTENTID": "EDSENADDCONT0101", + "GROUPID": "EDSENNOKISEKIDLC", + "STRINGS": [ + "Shining Pom Bait Pack 1", + "A handy pack of 3 Shining Pom Bait." + ] + }, + { + "TYPE": "dlc", + "ID": 102, + "CONTENTID": "EDSENADDCONT0102", + "GROUPID": "EDSENNOKISEKIDLC", + "STRINGS": [ + "Shining Pom Bait Pack 2", + "A handy pack of 3 Shining Pom Bait." + ] + }, + { + "TYPE": "dlc", + "ID": 103, + "CONTENTID": "EDSENADDCONT0103", + "GROUPID": "EDSENNOKISEKIDLC", + "STRINGS": [ + "Shining Pom Bait Pack 3", + "A handy pack of 3 Shining Pom Bait." + ] + }, + { + "TYPE": "dlc", + "ID": 104, + "CONTENTID": "EDSENADDCONT0104", + "GROUPID": "EDSENNOKISEKIDLC", + "STRINGS": [ + "Shining Pom Bait Pack 4", + "A handy pack of 3 Shining Pom Bait." + ] + }, + { + "TYPE": "dlc", + "ID": 105, + "CONTENTID": "EDSENADDCONT0105", + "GROUPID": "EDSENNOKISEKIDLC", + "STRINGS": [ + "Shining Pom Bait Pack 5", + "A handy pack of 3 Shining Pom Bait." + ] + }, + { + "TYPE": "dlc", + "ID": 106, + "CONTENTID": "EDSENADDCONT0106", + "GROUPID": "EDSENNOKISEKIDLC", + "STRINGS": [ + "Shining Pom Bait Value Pack 1", + "A glorious pack of 6 Shining Pom Bait." + ] + }, + { + "TYPE": "dlc", + "ID": 107, + "CONTENTID": "EDSENADDCONT0107", + "GROUPID": "EDSENNOKISEKIDLC", + "STRINGS": [ + "Shining Pom Bait Value Pack 2", + "A glorious pack of 6 Shining Pom Bait." + ] + }, + { + "TYPE": "dlc", + "ID": 108, + "CONTENTID": "EDSENADDCONT0108", + "GROUPID": "EDSENNOKISEKIDLC", + "STRINGS": [ + "Shining Pom Bait Value Pack 3", + "A glorious pack of 6 Shining Pom Bait." + ] + }, + { + "TYPE": "dlc", + "ID": 109, + "CONTENTID": "EDSENADDCONT0109", + "GROUPID": "EDSENNOKISEKIDLC", + "STRINGS": [ + "Shining Pom Bait Value Pack 4", + "A glorious pack of 6 Shining Pom Bait." + ] + }, + { + "TYPE": "dlc", + "ID": 110, + "CONTENTID": "EDSENADDCONT0110", + "GROUPID": "EDSENNOKISEKIDLC", + "STRINGS": [ + "Shining Pom Bait Value Pack 5", + "A glorious pack of 6 Shining Pom Bait." + ] + }, + { + "TYPE": "dlc", + "ID": 7004, + "CONTENTID": "EDSENADDCONT7004", + "GROUPID": "EDSENNOKISEKIDLC", + "STRINGS": [ + "Beginner Value Pack", + "Includes 2 Zeram Capsules and 500 of each type of sepith." + ] + }, + { + "TYPE": "dlc", + "ID": 7008, + "CONTENTID": "EDSENADDCONT7008", + "GROUPID": "EDSENNOKISEKIDLC", + "STRINGS": [ + "Enrollment Bonus Pack", + "Includes Cold Steel faceplate, Suzaku quartz, and 2 accessories." + ] + }, + { + "TYPE": "dlc", + "ID": 7009, + "CONTENTID": "EDSENADDCONT7009", + "GROUPID": "EDSENNOKISEKIDLC", + "STRINGS": [ + "Ride-Along Toro", + "Have free space on your arm? Let Toro come along!" + ] + }, + { + "TYPE": "dlc", + "ID": 7010, + "CONTENTID": "EDSENADDCONT7010", + "GROUPID": "EDSENNOKISEKIDLC", + "STRINGS": [ + "Ride-Along Kuro", + "Have free space on your arm? Let Kuro come along!" + ] + }, + { + "TYPE": "dlc", + "ID": 7011, + "CONTENTID": "EDSENADDCONT7011", + "GROUPID": "EDSENNOKISEKIDLC", + "STRINGS": [ + "Faceplate - Toro & Kuro", + "An ARCUS cover featuring cool cats Toro and Kuro." + ] + } +] \ No newline at end of file diff --git a/text/jsons/t_fish.json b/text/jsons/t_fish.json new file mode 100644 index 0000000..557ac4e --- /dev/null +++ b/text/jsons/t_fish.json @@ -0,0 +1,390 @@ +[ + { + "TYPE": "fish_pnt", + "UNK": "0000D0DD0600050000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "fish_pnt", + "UNK": "0100D0DD06000500020000000200FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "fish_pnt", + "UNK": "0200D0DD0600050005000000020004000500FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "fish_pnt", + "UNK": "0300D0DD06000500070000000200040005000700FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "fish_pnt", + "UNK": "0400D0DD060005000A000000020004000500070009000A000C00FFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "fish_pnt", + "UNK": "0500D0DD060005000D000000020004000500070009000A000C000D000F00FFFFFFFFFFFF" + }, + { + "TYPE": "fish_pnt", + "UNK": "0600D0DD0600050011000000020004000500070009000A000C000D000F001100FFFFFFFF" + }, + { + "TYPE": "fish_pnt", + "UNK": "0700D0DD0600010013001300FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "fish_pnt", + "UNK": "0800D1DD06000500010000000100FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "fish_pnt", + "UNK": "0900D2DD06000500060004000600FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "fish_pnt", + "UNK": "0A00D3DD0600050009000100020007000900FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "fish_pnt", + "UNK": "0B00D4DD060005000D0002000A000D00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "fish_pnt", + "UNK": "0C00D5DD060005001000010008000C001000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "fish_pnt", + "UNK": "0D00D6DD06000500000000000100FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "fish_pnt", + "UNK": "0E00D6DD060005000300000001000300FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "fish_pnt", + "UNK": "0F00D6DD0600050004000000010003000400FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "fish_pnt", + "UNK": "1000D6DD060005000800000001000300040006000800FFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "fish_pnt", + "UNK": "1100D6DD060005000B000000010003000400060008000B00FFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "fish_pnt", + "UNK": "1200D6DD060005000E000000010003000400060008000B000E00FFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "fish_pnt", + "UNK": "1300D6DD0600050010000000010003000400060008000B000E0010001200FFFFFFFFFFFF" + }, + { + "TYPE": "fish_pnt", + "UNK": "1400D7DD060003000200000002000400FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "fish_pnt", + "UNK": "1500D8DD060003000300000001000300FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "fish_pnt", + "UNK": "1600D7DD06000300060000000200040006000F00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "fish_pnt", + "UNK": "1700D8DD06000300090000000100030009000D00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "fish_pnt", + "UNK": "1800D9DD06000300040000000400FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "fish_pnt", + "UNK": "1900DADD060003000500020004000500FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "fish_pnt", + "UNK": "1A00D9DD0600030007000000040007000C00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "fish_pnt", + "UNK": "1B00DADD060003000A000200040005000A000B00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "fish_pnt", + "UNK": "1C00DBDD06000300070002000700FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "fish_pnt", + "UNK": "1D00DCDD060003000800010005000800FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "fish_pnt", + "UNK": "1E00DBDD060003000B00020007000B000C00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "fish_pnt", + "UNK": "1F00DCDD060003000F000100050008000F001000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "fish_pnt", + "UNK": "2000DDDD060003000A0004000A00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "fish_pnt", + "UNK": "2100DEDD060003000B00030004000B00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "fish_pnt", + "UNK": "2200DFDD060003000C0002000A000C00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "fish_pnt", + "UNK": "2300E0DD0600030009000200050009000D00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "fish_pnt", + "UNK": "2400DDDD060003000A0004000A000F00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "fish_pnt", + "UNK": "2500DEDD060003000B00030004000B001100FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "fish_pnt", + "UNK": "2600DFDD060003000C0002000A000C000E00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "fish_pnt", + "UNK": "2700E0DD060003000A000200050009000A000D001100FFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "fish_pnt", + "UNK": "2800E1DD060003000E00000006000A000E00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "fish_pnt", + "UNK": "2900E2DD060003000F000100030009000F00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "fish_pnt", + "UNK": "2A00E3DD060003001100030009000A000D001100FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "fish_pnt", + "UNK": "2B00E4DD060003001200030007000D001200FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "rod_lst", + "UNK": "C9000000803F6666663F" + }, + { + "TYPE": "rod_lst", + "UNK": "CA009A99993F3333733F" + }, + { + "TYPE": "rod_lst", + "UNK": "CB003333B33F0000803F" + }, + { + "TYPE": "text_lst", + "ID": 0, + "STRING": "Fish" + }, + { + "TYPE": "text_lst", + "ID": 1, + "STRING": "Change rod" + }, + { + "TYPE": "text_lst", + "ID": 2, + "STRING": "Use groundbait (%d remaining)" + }, + { + "TYPE": "text_lst", + "ID": 3, + "STRING": "Instructions" + }, + { + "TYPE": "text_lst", + "ID": 4, + "STRING": "Cancel" + }, + { + "TYPE": "text_lst", + "ID": 5, + "STRING": "There aren't any fish here." + }, + { + "TYPE": "text_lst", + "ID": 6, + "STRING": "There aren't any fish here, but you can\nmake them gather by using groundbait. \nUse groundbait? (%d remaining)" + }, + { + "TYPE": "text_lst", + "ID": 7, + "STRING": "Using groundbait will cause more fish to gather.\nUse groundbait? (%d remaining)" + }, + { + "TYPE": "text_lst", + "ID": 8, + "STRING": "Instructions 1:\n1. When you start fishing, a ! mark will appear\nover the character's head. Press o at the right\ntime to start reeling in the fish.\n2. When reeling in fish, you'll be prompted to\npress indicated buttons rapidly to draw it in." + }, + { + "TYPE": "text_lst", + "ID": 9, + "STRING": "Instructions 2:\nYou can only fish so many times at any one spot,\nbut if you use groundbait when that number\nreaches zero, you can fish a few more times." + }, + { + "TYPE": "text_lst", + "ID": 10, + "STRING": "Fishing rank rose to Brown Angler." + }, + { + "TYPE": "text_lst", + "ID": 11, + "STRING": "Fishing rank rose to Black Angler." + }, + { + "TYPE": "text_lst", + "ID": 12, + "STRING": "Fishing rank rose to Red Angler." + }, + { + "TYPE": "text_lst", + "ID": 13, + "STRING": "Rods" + }, + { + "TYPE": "text_lst", + "ID": 14, + "STRING": "Caught #1C%s#0C!" + }, + { + "TYPE": "text_lst", + "ID": 15, + "STRING": "Result" + }, + { + "TYPE": "text_lst", + "ID": 16, + "STRING": "Points" + }, + { + "TYPE": "text_lst", + "ID": 17, + "STRING": "Size" + }, + { + "TYPE": "text_lst", + "ID": 18, + "STRING": "%3.1f rege" + }, + { + "TYPE": "text_lst", + "ID": 19, + "STRING": "New Catch" + }, + { + "TYPE": "text_lst", + "ID": 20, + "STRING": "Total Points" + }, + { + "TYPE": "text_lst", + "ID": 21, + "STRING": "Types Caught" + }, + { + "TYPE": "text_lst", + "ID": 22, + "STRING": "#0CCP recovered by #2C%d#0C." + }, + { + "TYPE": "text_lst", + "ID": 23, + "STRING": "Fish gathered in the water." + }, + { + "TYPE": "text_lst", + "ID": 24, + "STRING": "It got away." + }, + { + "TYPE": "text_lst", + "ID": 25, + "STRING": "#1C%s#0C coughed up" + }, + { + "TYPE": "text_lst", + "ID": 26, + "STRING": " " + }, + { + "TYPE": "text_lst", + "ID": 27, + "STRING": "Earth" + }, + { + "TYPE": "text_lst", + "ID": 28, + "STRING": "Water" + }, + { + "TYPE": "text_lst", + "ID": 29, + "STRING": "Fire" + }, + { + "TYPE": "text_lst", + "ID": 30, + "STRING": "Wind" + }, + { + "TYPE": "text_lst", + "ID": 31, + "STRING": "Time" + }, + { + "TYPE": "text_lst", + "ID": 32, + "STRING": "Space" + }, + { + "TYPE": "text_lst", + "ID": 33, + "STRING": "Mirage" + }, + { + "TYPE": "text_lst", + "ID": 34, + "STRING": "Mass" + }, + { + "TYPE": "text_lst", + "ID": 35, + "STRING": "#%dI#2C sepith (%s) x%d " + }, + { + "TYPE": "text_lst", + "ID": 36, + "STRING": "#%dI#2C sepith (%s) x%d #0C%s" + }, + { + "TYPE": "text_lst", + "ID": 37, + "STRING": "\n" + }, + { + "TYPE": "text_lst", + "ID": 38, + "STRING": "#0C" + }, + { + "TYPE": "text_lst", + "ID": 39, + "STRING": "#%dI#2C%s#0C x %d%s was coughed up" + } +] \ No newline at end of file diff --git a/text/jsons/t_hikitugi.json b/text/jsons/t_hikitugi.json new file mode 100644 index 0000000..3964ffd --- /dev/null +++ b/text/jsons/t_hikitugi.json @@ -0,0 +1,112 @@ +[ + { + "TYPE": "hkitugi_lst", + "ID": 0, + "UNK0": 406, + "UNK1": 0, + "STRINGS": [ + "#2C引継ぎ#0C:リンクLV・ラッシュ・バースト", + "リンクレベルを引き継ぎます。\nまた、最初からラッシュとバーストが使えます。" + ] + }, + { + "TYPE": "hkitugi_lst", + "ID": 1, + "UNK0": 407, + "UNK1": 1, + "STRINGS": [ + "#2C引継ぎ#0C:ミラ・セピス", + "ミラとセピスを引き継ぎます。" + ] + }, + { + "TYPE": "hkitugi_lst", + "ID": 2, + "UNK0": 408, + "UNK1": 1, + "STRINGS": [ + "#2C引継ぎ#0C:アイテム", + "各種アイテム(装備品・Mクオーツ・クオーツ・消耗品・本)を引き継ぎます。\n※一部のイベントアイテムを除く。" + ] + }, + { + "TYPE": "hkitugi_lst", + "ID": 3, + "UNK0": 409, + "UNK1": 1, + "STRINGS": [ + "#2C引継ぎ#0C:各種ノート情報", + "各種ノート情報(戦闘・人物・料理・釣り・書物)を引き継ぎます。" + ] + }, + { + "TYPE": "hkitugi_lst", + "ID": 4, + "UNK0": 410, + "UNK1": 2, + "STRINGS": [ + "#2C引継ぎ#0C:ステータス", + "仲間のレベル・スロット開封状況と、マスタークオーツのレベルを引き継ぎます。" + ] + }, + { + "TYPE": "hkitugi_lst", + "ID": 7, + "UNK0": 413, + "UNK1": 1, + "STRINGS": [ + "#2C 特典 #0C:『ステージ衣装』所持", + "衣装『ステージ衣装』を所持した状態で周回プレイを行います。" + ] + }, + { + "TYPE": "hkitugi_lst", + "ID": 8, + "UNK0": 414, + "UNK1": 1, + "STRINGS": [ + "#2C 特典 #0C:『その他衣装』所持", + "各種その他衣装を所持した状態で周回プレイを行います。\n内容はプレイ時にご確認ください。" + ] + }, + { + "TYPE": "hkitugi_lst", + "ID": 9, + "UNK0": 415, + "UNK1": 2, + "STRINGS": [ + "#2C 特典 #0C:『学院指定水着』所持", + "衣装『士官学院指定水着』を所持した状態で周回プレイを行います。" + ] + }, + { + "TYPE": "hkitugi_lst", + "ID": 10, + "UNK0": 416, + "UNK1": 2, + "STRINGS": [ + "#2C 特典 #0C:ミラ30万・七属性セピス×3000個入手", + "ミラ30万・七属性セピス×3000個を入手します。" + ] + }, + { + "TYPE": "hkitugi_lst", + "ID": 11, + "UNK0": 417, + "UNK1": 4, + "STRINGS": [ + "#2C 特典 #0C:絆行動ポイントMAX", + "自由行動日の絆行動ポイントが最大値になります。" + ] + }, + { + "TYPE": "hkitugi_lst", + "ID": 12, + "UNK0": 0, + "UNK1": 0, + "STRINGS": [ + "#1C          ゲームを開始する", + "選択を終え、ゲームを開始します。" + ] + } +] \ No newline at end of file diff --git a/text/jsons/t_item.json b/text/jsons/t_item.json new file mode 100644 index 0000000..49474a5 --- /dev/null +++ b/text/jsons/t_item.json @@ -0,0 +1,10683 @@ +[ + { + "TYPE": "item", + "ID": 0, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "8100010101642003000000000000000000000000000000000000000000000000000000c80000006301000000ffff", + "STRINGS": [ + "Tear Balm", + "[Restores 800 HP]\nA healing salve prepared by the Septian Church." + ] + }, + { + "TYPE": "item", + "ID": 1, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "810001010164c409000000000000000000000000000000000000000000000000000000580200006302000000ffff", + "STRINGS": [ + "Teara Balm", + "[Restores 2500 HP]\nA healing salve prepared by the Septian Church." + ] + }, + { + "TYPE": "item", + "ID": 2, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "810001010164401f000000000000000000000000000000000000000000000000000000600900006303000000ffff", + "STRINGS": [ + "Tearal Balm", + "[Restores 8000 HP]\nA healing salve prepared by the Septian Church." + ] + }, + { + "TYPE": "item", + "ID": 3, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "8100010101656400000000000000000000000000000000000000000000000000000000f40100006304000000ffff", + "STRINGS": [ + "EP Charge I", + "[Restores 100 EP]\nA capsule filled with orbal energy." + ] + }, + { + "TYPE": "item", + "ID": 4, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "8100010101652c01000000000000000000000000000000000000000000000000000000dc0500006305000000ffff", + "STRINGS": [ + "EP Charge II", + "[Restores 300 EP]\nA capsule filled with orbal energy." + ] + }, + { + "TYPE": "item", + "ID": 5, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "810001010165f401000000000000000000000000000000000000000000000000000000b80b00006306000000ffff", + "STRINGS": [ + "EP Charge III", + "[Restores 500 EP]\nA capsule filled with orbal energy." + ] + }, + { + "TYPE": "item", + "ID": 6, + "UNK0": -3, + "STRING": "RSLCBPM", + "UNK1": "81000101016ae803000000000000000000000000000000000000000000000000000000f40100006307000000ffff", + "STRINGS": [ + "Reviving Balm", + "[Cures K.O./Restores 1000 HP]\nA salve that cures K.O. and restores 1000 HP." + ] + }, + { + "TYPE": "item", + "ID": 7, + "UNK0": -3, + "STRING": "RSLCBPM", + "UNK1": "81000101016a8813000000000000000000000000000000000000000000000000000000c40900006308000000ffff", + "STRINGS": [ + "Celestial Balm", + "[Cures K.O./Restores 5000 HP]\nA salve that cures K.O. and restores 5000 HP." + ] + }, + { + "TYPE": "item", + "ID": 8, + "UNK0": -3, + "STRING": "RSLCBPM", + "UNK1": "81000101016a10270000000000000000000000000000000000000000000000000000004c1d00006309000000ffff", + "STRINGS": [ + "Celestial Balm EX", + "[Cures K.O./Restores 10,000 HP]\nA salve that cures K.O. and restores 10,000 HP." + ] + }, + { + "TYPE": "item", + "ID": 9, + "UNK0": -3, + "STRING": "RSLCBPM", + "UNK1": "81000101016b6400000066640000000000000000000000000000000000000000000000204e0000630a000000ffff", + "STRINGS": [ + "Zeram Powder", + "[Cures K.O./Restores all HP/Restores 100 CP]\nA powder that revives and restores all HP and 100 CP." + ] + }, + { + "TYPE": "item", + "ID": 10, + "UNK0": -3, + "STRING": "RSLCBPM", + "UNK1": "81000101016b6400000066c8000000000000000000000000000000000000000000000030750000630b000000ffff", + "STRINGS": [ + "Zeram Capsule", + "[Cures K.O./Restores all HP/Restores 200 CP]\nA powder that revives and restores all HP and 200 CP." + ] + }, + { + "TYPE": "item", + "ID": 11, + "UNK0": -3, + "STRING": "SLBPM", + "UNK1": "810001010132000000000000000000000000000000000000000000000000000000000028000000630c000000ffff", + "STRINGS": [ + "Antidote", + "[Cures Poison]\nA salve from the Septian Church that neutralizes poisons." + ] + }, + { + "TYPE": "item", + "ID": 12, + "UNK0": -3, + "STRING": "SLBPM", + "UNK1": "810001010133000000000000000000000000000000000000000000000000000000000028000000630d000000ffff", + "STRINGS": [ + "Relaxant", + "[Cures Seal]\nA gelatinous liquid that cures paralysis of the limbs." + ] + }, + { + "TYPE": "item", + "ID": 13, + "UNK0": -3, + "STRING": "SLBPM", + "UNK1": "810001010134000000000000000000000000000000000000000000000000000000000028000000630e000000ffff", + "STRINGS": [ + "Insulating Tape", + "[Cures Mute]\nQuick-fix tape to repair a neutralized orbment." + ] + }, + { + "TYPE": "item", + "ID": 14, + "UNK0": -3, + "STRING": "SLBPM", + "UNK1": "810001010135000000000000000000000000000000000000000000000000000000000028000000630f000000ffff", + "STRINGS": [ + "Eye Drop", + "[Cures Blind]\nEye drops that cure sudden visual impairments." + ] + }, + { + "TYPE": "item", + "ID": 15, + "UNK0": -3, + "STRING": "SLBPM", + "UNK1": "810001010136000000003c000000000000000000000000000000000000000000000000280000006310000000ffff", + "STRINGS": [ + "Mint Drop", + "[Cures Sleep/Nightmare]\nA mint-flavored candy that cures drowsiness when licked." + ] + }, + { + "TYPE": "item", + "ID": 16, + "UNK0": -3, + "STRING": "SLBPM", + "UNK1": "8100010101370000000000000000000000000000000000000000000000000000000000280000006311000000ffff", + "STRINGS": [ + "Cooling Spray", + "[Cures Burn]\nA spray that cools burns rapidly with icy powder." + ] + }, + { + "TYPE": "item", + "ID": 17, + "UNK0": -3, + "STRING": "SLBPM", + "UNK1": "8100010101380000000000000000000000000000000000000000000000000000000000280000006312000000ffff", + "STRINGS": [ + "Warmer", + "[Cures Freeze]\nA disposable packet that warms the whole body." + ] + }, + { + "TYPE": "item", + "ID": 18, + "UNK0": -3, + "STRING": "SLBPM", + "UNK1": "8100010101390000000000000000000000000000000000000000000000000000000000280000006313000000ffff", + "STRINGS": [ + "Softening Ointment", + "[Cures Petrify]\nAn ointment that softens petrified parts of the body." + ] + }, + { + "TYPE": "item", + "ID": 19, + "UNK0": -3, + "STRING": "SLBPM", + "UNK1": "81000101013a0000000000000000000000000000000000000000000000000000000000280000006314000000ffff", + "STRINGS": [ + "Stimulant", + "[Cures Faint]\nA salve from the Septian Church that restores consciousness." + ] + }, + { + "TYPE": "item", + "ID": 20, + "UNK0": -3, + "STRING": "SLBPM", + "UNK1": "81000101013b0000000000000000000000000000000000000000000000000000000000280000006315000000ffff", + "STRINGS": [ + "Sedative", + "[Cures Confuse]\nA salve from the Septian Church that restores mental alertness." + ] + }, + { + "TYPE": "item", + "ID": 21, + "UNK0": -3, + "STRING": "SLBPM", + "UNK1": "8100010101490000000000000000000000000000000000000000000000000000000000640000006316000000ffff", + "STRINGS": [ + "S-Tablet", + "[Cures Stat Down]\nA pill that returns lowered attributes to their normal levels." + ] + }, + { + "TYPE": "item", + "ID": 22, + "UNK0": -3, + "STRING": "SLBPM", + "UNK1": "8100010101480000000000000000000000000000000000000000000000000000000000f40100006317000000ffff", + "STRINGS": [ + "Curia Balm", + "[Cures Abnormal Status]\nA salve that cures all status abnormalities except K.O." + ] + }, + { + "TYPE": "item", + "ID": 23, + "UNK0": -3, + "STRING": "SLBEI", + "UNK1": "81000c6464e00000000000000000000000000000000000000000000000000000000000640000006318000000ffff", + "STRINGS": [ + "Smoke Grenade", + "[100% success fleeing battle]\nUsed to escape from battle. (Can't be used in certain battles)" + ] + }, + { + "TYPE": "item", + "ID": 24, + "UNK0": -3, + "STRING": "SLBEI", + "UNK1": "81001f6401cb0000000000000000000000000000000000000000000000000000000000640000006319000000ffff", + "STRINGS": [ + "Battle Scope", + "[Analysis]\nAnalyzes an enemy's key data." + ] + }, + { + "TYPE": "item", + "ID": 25, + "UNK0": -3, + "STRING": "CV", + "UNK1": "8200010101000000000000000000000000000000000000000000000000000000000000000000006302000000ffff", + "STRINGS": [ + "Shining Pom Bait", + "Bait to lure out a rare and elusive Shining Pom." + ] + }, + { + "TYPE": "item", + "ID": 26, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "810001010164f00a00003700000000000000000000000000000000000000000000000020030000631c000000ffff", + "STRINGS": [ + "Vanilla Gelato", + "[Restores 2800 HP/Cures Burn]\nA creamy gelato made with generous amounts of milk." + ] + }, + { + "TYPE": "item", + "ID": 27, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "810001010176e80396000000000000000000000000000000000000000000000000000020030000631d000000ffff", + "STRINGS": [ + "Lemon Gelato", + "[Restores 1000 HP/Restores 150 EP]\nA refreshing gelato with just the right amount of tartness." + ] + }, + { + "TYPE": "item", + "ID": 28, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "810001010164bc02000082190000000000000000000000000000000000000000000000b0040000631e000000ffff", + "STRINGS": [ + "Tetra Gelato", + "[Restores 700 HP/STR/DEF/ATS/ADF+25% (4 Turns)]\nA special gelato with swirls of four different flavors." + ] + }, + { + "TYPE": "item", + "ID": 29, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "8100010101646810000033000000000000000000000000000000000000000000000000b0040000631f000000ffff", + "STRINGS": [ + "Ground Sausage", + "[Restores 4200 HP/Cures Seal]\nAn extra thick, savory sausage." + ] + }, + { + "TYPE": "item", + "ID": 30, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "8100010101646810000034000000000000000000000000000000000000000000000000b00400006320000000ffff", + "STRINGS": [ + "Turkey Leg", + "[Restores 4200 HP/Cures Mute]\nA tender, juicy turkey leg, still on the bone." + ] + }, + { + "TYPE": "item", + "ID": 31, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "810001010164a00f000000000000000000000000000000000000000000000000000000e80300006321000000ffff", + "STRINGS": [ + "Chocobanana Crepe", + "[Restores 4000 HP]\nA banana crepe drizzled with chocolate. Incredibly sweet." + ] + }, + { + "TYPE": "item", + "ID": 32, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "810001010164800c000000000000000000000000000000000000000000000000000000200300006322000000ffff", + "STRINGS": [ + "Banana Crepe", + "[Restores 3200 HP]\nA standard crepe made with bananas and fresh cream." + ] + }, + { + "TYPE": "item", + "ID": 33, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "810001010176e803320000000000000000000000000000000000000000000000000000580200006323000000ffff", + "STRINGS": [ + "Apple Juice", + "[Restores 1000 HP/Restores 50 EP]\n100% pure apple juice." + ] + }, + { + "TYPE": "item", + "ID": 34, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "810001010177e803140000000000000000000000000000000000000000000000000000580200006324000000ffff", + "STRINGS": [ + "Orange Juice", + "[Restores 1000 HP/Restores 20 CP]\nPure orange juice squeezed from premium, ripe oranges." + ] + }, + { + "TYPE": "item", + "ID": 35, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "810001010164c012000041190003000000000000000000000000000000000000000000dc0500006325000000ffff", + "STRINGS": [ + "Steak Skewer", + "[Restores 4800 HP/STR+25% (3 Turns)]\nSpecially prepared by Becky without any regard for profit." + ] + }, + { + "TYPE": "item", + "ID": 36, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "8100010101647017000000000000000000000000000000000000000000000000000000dc0500006326000000ffff", + "STRINGS": [ + "Rich Strawberry Crepe", + "[Restores 6000 HP]\nDecadent crepes masterfully prepared by Hugo." + ] + }, + { + "TYPE": "item", + "ID": 37, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "810001010176d007c80000000000000000000000000000000000000000000000000000dc0500006327000000ffff", + "STRINGS": [ + "Dark Cherry Pie", + "[Restores 2000 HP/Restores 200 EP]\nA new kind of pie made using flavorful dark cherries." + ] + }, + { + "TYPE": "item", + "ID": 50, + "UNK0": -3, + "STRING": "SL", + "UNK1": "820001c800000000000000000000000000000000000000000000000000000000000000c8000000635a000000ffff", + "STRINGS": [ + "U-Material", + "An unknown material that is impossible to analyze.\nCan be used to customize equipment at an orbal factory." + ] + }, + { + "TYPE": "item", + "ID": 51, + "UNK0": -3, + "STRING": "0", + "UNK1": "820001c90000000000000000000000000000000000000000000000000000000000000000000000635b000000ffff", + "STRINGS": [ + "Zemurian Ore Shard", + "An ore fragment that glistens like the stars in the night sky.\nThey can be combined to form a full chunk of Zemurian Ore." + ] + }, + { + "TYPE": "item", + "ID": 52, + "UNK0": -3, + "STRING": "0", + "UNK1": "820001ca0000000000000000000000000000000000000000000000000000000000000000000000635c000000ffff", + "STRINGS": [ + "Zemurian Ore", + "A lump of ore that glistens like the stars in the night sky.\nIts hardness makes it extremely difficult to work with." + ] + }, + { + "TYPE": "item", + "ID": 135, + "UNK0": -3, + "STRING": "0", + "UNK1": "8200010000000000000000000000000000000000000000000000000000000000000000000000000164000000ffff", + "STRINGS": [ + "Orbal Scale", + "Entrusted to you by George. It needs to be delivered to \nNicholas of the Cooking Club." + ] + }, + { + "TYPE": "item", + "ID": 136, + "UNK0": -3, + "STRING": "0", + "UNK1": "8200010000000000000000000000000000000000000000000000000000000000000000000000000165000000ffff", + "STRINGS": [ + "Antique Orbal Lamp", + "Entrusted to you by George. It needs to be delivered to\nMicht at the pawn shop." + ] + }, + { + "TYPE": "item", + "ID": 137, + "UNK0": -3, + "STRING": "0", + "UNK1": "8200010000000000000000000000000000000000000000000000000000000000000000000000000166000000ffff", + "STRINGS": [ + "Orbal Wristwatch", + "Entrusted to you by George. It needs to be delivered to \nMichael at Radio Trista." + ] + }, + { + "TYPE": "item", + "ID": 134, + "UNK0": -3, + "STRING": "0", + "UNK1": "8200010000000000000000000000000000000000000000000000000000000000000000000000000167000000ffff", + "STRINGS": [ + "Colette's Student Notebook", + "Colette's student notebook. Found on the second floor\nof the main building." + ] + }, + { + "TYPE": "item", + "ID": 146, + "UNK0": -3, + "STRING": "0", + "UNK1": "8200010000000000000000000000000000000000000000000000000000000000000000000000000168000000ffff", + "STRINGS": [ + "Passion Leaf Bundle", + "A rare kind of seasoning native to the southern part of the\ncontinent. Has a unique flavor that's quite addictive." + ] + }, + { + "TYPE": "item", + "ID": 104, + "UNK0": -3, + "STRING": "0", + "UNK1": "8200010000000000000000000000000000000000000000000000000000000000000000000000000169000000ffff", + "STRINGS": [ + "New Orbment Light", + "A replacement orbment light, entrusted to you by Samus.\nGlows brightly." + ] + }, + { + "TYPE": "item", + "ID": 105, + "UNK0": -3, + "STRING": "0", + "UNK1": "820001000000000000000000000000000000000000000000000000000000000000000000000000016a000000ffff", + "STRINGS": [ + "Broken Orbment Light", + "A broken orbment light, recovered from a road lamp on the\nhighway." + ] + }, + { + "TYPE": "item", + "ID": 112, + "UNK0": -3, + "STRING": "0", + "UNK1": "820001000000000000000000000000000000000000000000000000000000000000000000000000016b000000ffff", + "STRINGS": [ + "Bear Claw", + "A thorny medicinal herb that looks like a bear's claw.\nSometimes used in cooking." + ] + }, + { + "TYPE": "item", + "ID": 113, + "UNK0": -3, + "STRING": "0", + "UNK1": "820001000000000000000000000000000000000000000000000000000000000000000000000000016c000000ffff", + "STRINGS": [ + "Imperial Carrots", + "Highly nutritious bright red carrots. A rare ingredient\nsometimes given as a gift to the Imperial family." + ] + }, + { + "TYPE": "item", + "ID": 124, + "UNK0": -3, + "STRING": "0", + "UNK1": "820001000000000000000000000000000000000000000000000000000000000000000000000000016d000000ffff", + "STRINGS": [ + "Lost Wallet", + "Someone's wallet, entrusted to you by Lizzie." + ] + }, + { + "TYPE": "item", + "ID": 141, + "UNK0": -3, + "STRING": "0", + "UNK1": "82000100000000000000000000000000000000000000000000000000000000000000000000000001c8000000ffff", + "STRINGS": [ + "Behind the War of the Lions", + "A book ordered by an instructor. Keynes asked you to deliver\nit." + ] + }, + { + "TYPE": "item", + "ID": 142, + "UNK0": -3, + "STRING": "0", + "UNK1": "82000100000000000000000000000000000000000000000000000000000000000000000000000001c9000000ffff", + "STRINGS": [ + "Modern Art: The Complete Works", + "A book ordered by an instructor. Keynes asked you to deliver\nit." + ] + }, + { + "TYPE": "item", + "ID": 143, + "UNK0": -3, + "STRING": "0", + "UNK1": "82000100000000000000000000000000000000000000000000000000000000000000000000000001ca000000ffff", + "STRINGS": [ + "Topical Science", + "A book ordered by an instructor. Keynes asked you to deliver\nit." + ] + }, + { + "TYPE": "item", + "ID": 144, + "UNK0": -3, + "STRING": "0", + "UNK1": "82000100000000000000000000000000000000000000000000000000000000000000000000000001cb000000ffff", + "STRINGS": [ + "Analyzing Macroeconomics", + "A book ordered by an instructor. Keynes asked you to deliver\nit." + ] + }, + { + "TYPE": "item", + "ID": 145, + "UNK0": -3, + "STRING": "0", + "UNK1": "82000100000000000000000000000000000000000000000000000000000000000000000000000001cc000000ffff", + "STRINGS": [ + "The Empire's Hottest Spots", + "A book ordered by an instructor. Keynes asked you to deliver\nit." + ] + }, + { + "TYPE": "item", + "ID": 138, + "UNK0": -3, + "STRING": "0", + "UNK1": "82000100000000000000000000000000000000000000000000000000000000000000000000000001cd000000ffff", + "STRINGS": [ + "Grand Rose Money", + "Money to buy a grand rose. Received from Linde." + ] + }, + { + "TYPE": "item", + "ID": 139, + "UNK0": -3, + "STRING": "0", + "UNK1": "82000100000000000000000000000000000000000000000000000000000000000000000000000001ce000000ffff", + "STRINGS": [ + "Snow Lilies", + "Fresh flowers received from Jane's florist. They need to be\ngiven to Linde." + ] + }, + { + "TYPE": "item", + "ID": 140, + "UNK0": -3, + "STRING": "0", + "UNK1": "82000100000000000000000000000000000000000000000000000000000000000000000000000001cf000000ffff", + "STRINGS": [ + "Grand Rose", + "A fresh flower bought from Jane's florist. It needs to be\ngiven to Linde." + ] + }, + { + "TYPE": "item", + "ID": 118, + "UNK0": -3, + "STRING": "0", + "UNK1": "82000100000000000000000000000000000000000000000000000000000000000000000000000001d0000000ffff", + "STRINGS": [ + "Dryad's Tear", + "A lump of resin obtained from the North Kreuzen Highway.\nCan be processed into a jewel as radiant as septium." + ] + }, + { + "TYPE": "item", + "ID": 125, + "UNK0": -3, + "STRING": "0", + "UNK1": "82000100000000000000000000000000000000000000000000000000000000000000000000000001d1000000ffff", + "STRINGS": [ + "Pink Salt", + "Natural rock salt from the Aurochs Canyon Path." + ] + }, + { + "TYPE": "item", + "ID": 126, + "UNK0": -3, + "STRING": "0", + "UNK1": "82000100000000000000000000000000000000000000000000000000000000000000000000000001d2000000ffff", + "STRINGS": [ + "Healing Herb", + "A medicinal herb given to you by Sister Tatiana." + ] + }, + { + "TYPE": "item", + "ID": 149, + "UNK0": -3, + "STRING": "0", + "UNK1": "820001000000000000000000000000000000000000000000000000000000000000000000000000032c010000ffff", + "STRINGS": [ + "Munk's Sticker", + "A circular sticker dropped by Munk." + ] + }, + { + "TYPE": "item", + "ID": 106, + "UNK0": -3, + "STRING": "0", + "UNK1": "820001000000000000000000000000000000000000000000000000000000000000000000000000052d010000ffff", + "STRINGS": [ + "Epona Grass", + "A medicinal herb with yellow flowers found in the south part\nof the Nord Highlands. Used to make a medicine for horses." + ] + }, + { + "TYPE": "item", + "ID": 107, + "UNK0": -3, + "STRING": "0", + "UNK1": "820001000000000000000000000000000000000000000000000000000000000000000000000000012e010000ffff", + "STRINGS": [ + "Food Parcel", + "A food parcel from Kilte for the soldiers at the watchtower.\nNeeds to be delivered to a soldier called Zats." + ] + }, + { + "TYPE": "item", + "ID": 108, + "UNK0": -3, + "STRING": "0", + "UNK1": "820001000000000000000000000000000000000000000000000000000000000000000000000000012f010000ffff", + "STRINGS": [ + "Erebonian Wine", + "A token of thanks from Zats. It needs to be delivered to\nKilte." + ] + }, + { + "TYPE": "item", + "ID": 147, + "UNK0": -3, + "STRING": "0", + "UNK1": "8200010000000000000000000000000000000000000000000000000000000000000000000000000190010000ffff", + "STRINGS": [ + "Eastern Ink Brush", + "A well-worn Eastern ink brush. Needs to be returned to its\nowner." + ] + }, + { + "TYPE": "item", + "ID": 119, + "UNK0": -3, + "STRING": "0", + "UNK1": "8200010000000000000000000000000000000000000000000000000000000000000000000000000191010000ffff", + "STRINGS": [ + "Handmade Summer Cap", + "A handmade cap dropped by a resident of the Ost District.\nIt's light and cool." + ] + }, + { + "TYPE": "item", + "ID": 122, + "UNK0": -3, + "STRING": "0", + "UNK1": "8200010000000000000000000000000000000000000000000000000000000000000000000000000192010000ffff", + "STRINGS": [ + "Orbal Camera", + "An orbal camera received from Norton. Used for his work as a\njournalist." + ] + }, + { + "TYPE": "item", + "ID": 123, + "UNK0": -3, + "STRING": "0", + "UNK1": "8200010000000000000000000000000000000000000000000000000000000000000000000000000593010000ffff", + "STRINGS": [ + "PR Comment", + "A comment from a store on Vainqueur Street for a pamphlet." + ] + }, + { + "TYPE": "item", + "ID": 127, + "UNK0": -3, + "STRING": "0", + "UNK1": "8200010000000000000000000000000000000000000000000000000000000000000000000000000194010000ffff", + "STRINGS": [ + "Record Money", + "Money to buy a record. Received from Heming." + ] + }, + { + "TYPE": "item", + "ID": 128, + "UNK0": -3, + "STRING": "0", + "UNK1": "8200010000000000000000000000000000000000000000000000000000000000000000000000000195010000ffff", + "STRINGS": [ + "Amber Amour", + "An antique record found at a used goods shop." + ] + }, + { + "TYPE": "item", + "ID": 120, + "UNK0": 3, + "STRING": "0", + "UNK1": "a100010000000000000000000000000f00780000000000140000000000030000000000000000000100000000ffff", + "STRINGS": [ + "Ladies' Stregas", + "[DEF+120/MOV+3/STR+15/ACC+20%/Laura Only]\nA new model of Stregas. Received from Howard." + ] + }, + { + "TYPE": "item", + "ID": 121, + "UNK0": -3, + "STRING": "CV", + "UNK1": "8200010000000000000000000000000000000000000000000000000000000000000000000000000100000000ffff", + "STRINGS": [ + "Orbal Pedometer", + "An orbal pedometer set to be used with a new pair of shoes.\nUsing it allows you to check how many steps you have taken." + ] + }, + { + "TYPE": "item", + "ID": 129, + "UNK0": -3, + "STRING": "0", + "UNK1": "8200010000000000000000000000000000000000000000000000000000000000000000000000000197010000ffff", + "STRINGS": [ + "Phantom Thief B's Card", + "A card left by Phantom Thief B. Received from Cordelia, the\nshop's owner." + ] + }, + { + "TYPE": "item", + "ID": 130, + "UNK0": -3, + "STRING": "0", + "UNK1": "8200010000000000000000000000000000000000000000000000000000000000000000000000000198010000ffff", + "STRINGS": [ + "Phantom Thief B's Card", + "A card left by Phantom Thief B. Found at Dreichels Plaza." + ] + }, + { + "TYPE": "item", + "ID": 131, + "UNK0": -3, + "STRING": "0", + "UNK1": "8200010000000000000000000000000000000000000000000000000000000000000000000000000199010000ffff", + "STRINGS": [ + "Phantom Thief B's Card", + "A card left by Phantom Thief B. Found in the Crystal Garden." + ] + }, + { + "TYPE": "item", + "ID": 132, + "UNK0": -3, + "STRING": "0", + "UNK1": "820001000000000000000000000000000000000000000000000000000000000000000000000000019a010000ffff", + "STRINGS": [ + "Phantom Thief B's Card", + "A card left by Phantom Thief B. Found in the former guild\nbranch." + ] + }, + { + "TYPE": "item", + "ID": 133, + "UNK0": -3, + "STRING": "0", + "UNK1": "820001000000000000000000000000000000000000000000000000000000000000000000000000019b010000ffff", + "STRINGS": [ + "Phantom Thief B's Card", + "A card left by Phantom Thief B. Found at Heimdallr Port." + ] + }, + { + "TYPE": "item", + "ID": 103, + "UNK0": -3, + "STRING": "0", + "UNK1": "820001000000000000000000000000000000000000000000000000000000000000000000000000019c010000ffff", + "STRINGS": [ + "Crimson Tiara", + "Unobtainable item." + ] + }, + { + "TYPE": "item", + "ID": 114, + "UNK0": -3, + "STRING": "0", + "UNK1": "82000100000000000000000000000000000000000000000000000000000000000000000000000001f4010000ffff", + "STRINGS": [ + "Maintenance Key", + "A key, entrusted to you by Duncan. It's required to open the\nservice panel on road lamps." + ] + }, + { + "TYPE": "item", + "ID": 115, + "UNK0": -3, + "STRING": "0", + "UNK1": "8200010000000000000000000000000000000000000000000000000000000000000000000000000ef5010000ffff", + "STRINGS": [ + "New Orbment Light", + "A replacement orbment light, entrusted to you by Duncan.\nGlows brightly." + ] + }, + { + "TYPE": "item", + "ID": 116, + "UNK0": -3, + "STRING": "0", + "UNK1": "8200010000000000000000000000000000000000000000000000000000000000000000000000000ef6010000ffff", + "STRINGS": [ + "Broken Orbment Light", + "A broken orbment light, recovered from a road lamp on the\nhighway." + ] + }, + { + "TYPE": "item", + "ID": 100, + "UNK0": -3, + "STRING": "0", + "UNK1": "82000100000000000000000000000000000000000000000000000000000000000000000000000001f7010000ffff", + "STRINGS": [ + "White Seed", + "A grain crop with pure white seeds. Often found in the Legram\narea." + ] + }, + { + "TYPE": "item", + "ID": 101, + "UNK0": -3, + "STRING": "0", + "UNK1": "82000100000000000000000000000000000000000000000000000000000000000000000000000001f8010000ffff", + "STRINGS": [ + "Legram Pretzel", + "A pretzel baked by Sister Theramis. Its unique shape is based\non the monument in the center of Legram." + ] + }, + { + "TYPE": "item", + "ID": 109, + "UNK0": -3, + "STRING": "0", + "UNK1": "82000100000000000000000000000000000000000000000000000000000000000000000000000001f9010000ffff", + "STRINGS": [ + "Gold Salmon", + "Unobtainable item." + ] + }, + { + "TYPE": "item", + "ID": 117, + "UNK0": -3, + "STRING": "0", + "UNK1": "82000100000000000000000000000000000000000000000000000000000000000000000000000001fa010000ffff", + "STRINGS": [ + "Luminous Grass", + "A rare type of flower that blooms only immediately after \nthe fog disappears in Legram." + ] + }, + { + "TYPE": "item", + "ID": 176, + "UNK0": -3, + "STRING": "0", + "UNK1": "8200010000000000000000000000000000000000000000000000000000000000000000000000000158020000ffff", + "STRINGS": [ + "Linium", + "A rare metal found in a mine shaft. It had been consumed by\na giant monster." + ] + }, + { + "TYPE": "item", + "ID": 102, + "UNK0": -3, + "STRING": "CV", + "UNK1": "8200010000000000000000000000000000000000000000000000000000000000000000000000000101000000ffff", + "STRINGS": [ + "Orbal Wave Detector", + "A device to measure orbal waves used by ARCUS orbments. \nNeeds to be used in various places, primarily indoors." + ] + }, + { + "TYPE": "item", + "ID": 111, + "UNK0": -3, + "STRING": "0", + "UNK1": "8200010000000000000000000000000000000000000000000000000000000000000000000000000136000000ffff", + "STRINGS": [ + "Blade Deck", + "A card game, given by Micht. Ideal for playing on long train\njourneys." + ] + }, + { + "TYPE": "item", + "ID": 150, + "UNK0": -3, + "STRING": "0", + "UNK1": "82000100000000000000000000000000000000000000000000000000000000000000000000000001bc020000ffff", + "STRINGS": [ + "Permission Slip (Nicholas)", + "A piece of paper that grants the student who owns it\npermission to sell food and drink at the academy festival." + ] + }, + { + "TYPE": "item", + "ID": 151, + "UNK0": -3, + "STRING": "0", + "UNK1": "82000100000000000000000000000000000000000000000000000000000000000000000000000001bd020000ffff", + "STRINGS": [ + "Permission Slip (Colette)", + "A piece of paper that grants the student who owns it\npermission to sell food and drink at the academy festival." + ] + }, + { + "TYPE": "item", + "ID": 152, + "UNK0": -3, + "STRING": "0", + "UNK1": "82000100000000000000000000000000000000000000000000000000000000000000000000000001be020000ffff", + "STRINGS": [ + "Permission Slip (Hugo)", + "A piece of paper that grants the student who owns it\npermission to sell food and drink at the academy festival." + ] + }, + { + "TYPE": "item", + "ID": 153, + "UNK0": -3, + "STRING": "0", + "UNK1": "82000100000000000000000000000000000000000000000000000000000000000000000000000001bf020000ffff", + "STRINGS": [ + "Permission Slip (Becky)", + "A piece of paper that grants the student who owns it\npermission to sell food and drink at the academy festival." + ] + }, + { + "TYPE": "item", + "ID": 148, + "UNK0": -3, + "STRING": "0", + "UNK1": "82000100000000000000000000000000000000000000000000000000000000000000000000000001c0020000ffff", + "STRINGS": [ + "Black Leather Notebook", + "A black, leather-bound notebook dropped by Vice Principal\nHeinrich. Needs to be returned to him." + ] + }, + { + "TYPE": "item", + "ID": 154, + "UNK0": -3, + "STRING": "L", + "UNK1": "82000100000000000000000000000000000000000000000000000000000000000000000000000063c1020000ffff", + "STRINGS": [ + "Mishy Plush", + "A plush of Mishy. Won at the Mishy Panic attraction." + ] + }, + { + "TYPE": "item", + "ID": 155, + "UNK0": -3, + "STRING": "L", + "UNK1": "82000100000000000000000000000000000000000000000000000000000000000000000000000063c2020000ffff", + "STRINGS": [ + "Relief Card", + "Proof that its owner has defeated the Blade Master at Gate of\nAvalon. Has a relief on its surface." + ] + }, + { + "TYPE": "item", + "ID": 156, + "UNK0": -3, + "STRING": "L", + "UNK1": "82000100000000000000000000000000000000000000000000000000000000000000000000000063c3020000ffff", + "STRINGS": [ + "Super Stallion Shield", + "An award given to those who cleared Super Stallion in a set\ntime. Lambert's beloved horse Whitcomb is carved onto it." + ] + }, + { + "TYPE": "item", + "ID": 157, + "UNK0": -3, + "STRING": "0", + "UNK1": "8200010000000000000000000000000000000000000000000000000000000000000000000000000137000000ffff", + "STRINGS": [ + "Orbal Radio", + "An orbal radio received from George." + ] + }, + { + "TYPE": "item", + "ID": 158, + "UNK0": -3, + "STRING": "0", + "UNK1": "8200010000000000000000000000000000000000000000000000000000000000000000000000000138000000ffff", + "STRINGS": [ + "Old Schoolhouse Key", + "The key to the old schoolhouse. Received from Principal\nVandyck." + ] + }, + { + "TYPE": "item", + "ID": 159, + "UNK0": -3, + "STRING": "CV", + "UNK1": "8200010000000000000000000000000000000000000000000000000000000000000000000000000103000000ffff", + "STRINGS": [ + "Nord Highlands Map", + "A map of the Nord Highlands, received from Lieutenant General\nZechs." + ] + }, + { + "TYPE": "item", + "ID": 160, + "UNK0": -3, + "STRING": "0", + "UNK1": "8200010000000000000000000000000000000000000000000000000000000000000000000000000133000000ffff", + "STRINGS": [ + "Student Notebook", + "A notebook issued to all members of Thors Military Academy,\ncontaining the school rules. Also serves as a form of ID." + ] + }, + { + "TYPE": "item", + "ID": 161, + "UNK0": -3, + "STRING": "0", + "UNK1": "8200010000000000000000000000000000000000000000000000000000000000000000000000000134000000ffff", + "STRINGS": [ + "Recipe Book", + "A notebook to record various recipes. You can cook food from\nthe NOTE menu." + ] + }, + { + "TYPE": "item", + "ID": 162, + "UNK0": -3, + "STRING": "0", + "UNK1": "8200010000000000000000000000000000000000000000000000000000000000000000000000000135000000ffff", + "STRINGS": [ + "Fishing Book", + "A notebook to record details of the fish you have caught." + ] + }, + { + "TYPE": "item", + "ID": 170, + "UNK0": -3, + "STRING": "0", + "UNK1": "820001000000000000000000000000000000000000000000000000000000000000000000000000013a000000ffff", + "STRINGS": [ + "Memory Quartz", + "A memory quartz received from Towa. Contains a video of a \nconcert held last year." + ] + }, + { + "TYPE": "item", + "ID": 171, + "UNK0": -3, + "STRING": "0", + "UNK1": "820001000000000000000000000000000000000000000000000000000000000000000000000000013b000000ffff", + "STRINGS": [ + "Address & Keys", + "A memo with an address written on it, along with a key,\nreceived from Governor Regnitz." + ] + }, + { + "TYPE": "item", + "ID": 172, + "UNK0": -3, + "STRING": "0", + "UNK1": "820001000000000000000000000000000000000000000000000000000000000000000000000000013c000000ffff", + "STRINGS": [ + "Underground Passage Key", + "The key to enter an underground passage under Heimdallr, \nreceived from Noble." + ] + }, + { + "TYPE": "item", + "ID": 173, + "UNK0": -3, + "STRING": "0", + "UNK1": "820001000000000000000000000000000000000000000000000000000000000000000000000000013d000000ffff", + "STRINGS": [ + "Underground Waterway Key", + "The key to enter an underground waterway under Heimdallr,\nreceived from Port Chief Danberto." + ] + }, + { + "TYPE": "item", + "ID": 110, + "UNK0": -3, + "STRING": "CV", + "UNK1": "8200010000000000000000000000000000000000000000000000000000000000000000000000000104000000ffff", + "STRINGS": [ + "Abend Time Sticker", + "A sticker sent by Abend Time. Has the serial number '120'\nwritten on it." + ] + }, + { + "TYPE": "item", + "ID": 174, + "UNK0": -3, + "STRING": "0", + "UNK1": "820001000000000000000000000000000000000000000000000000000000000000000000000000013f000000ffff", + "STRINGS": [ + "Yellow Orb", + "An orb obtained within Lohengrin Castle. Can be used to\ndisable the barrier that corresponds with it." + ] + }, + { + "TYPE": "item", + "ID": 178, + "UNK0": -3, + "STRING": "0", + "UNK1": "8200010000000000000000000000000000000000000000000000000000000000000000000000000140000000ffff", + "STRINGS": [ + "Red Orb", + "An orb obtained within Lohengrin Castle. Can be used to\ndisable the barrier that corresponds with it." + ] + }, + { + "TYPE": "item", + "ID": 175, + "UNK0": -3, + "STRING": "0", + "UNK1": "8200010000000000000000000000000000000000000000000000000000000000000000000000000141000000ffff", + "STRINGS": [ + "Mine Shaft Key", + "A key received from Mine Chief Rudolf. Can be used to\nenter a sealed-off mine shaft." + ] + }, + { + "TYPE": "item", + "ID": 177, + "UNK0": -3, + "STRING": "0", + "UNK1": "8200010000000000000000000000000000000000000000000000000000000000000000000000000142000000ffff", + "STRINGS": [ + "Card Key", + "A card key which opens the door leading to a passage between \nthe upper level of Roer City and the iron mine." + ] + }, + { + "TYPE": "item", + "ID": 179, + "UNK0": -3, + "STRING": "0", + "UNK1": "8200010000000000000000000000000000000000000000000000000000000000000000000000000143000000ffff", + "STRINGS": [ + "Millium's Student Notebook", + "Millium's student notebook. Received from Towa." + ] + }, + { + "TYPE": "item", + "ID": 186, + "UNK0": -3, + "STRING": "0", + "UNK1": "8200010000000000000000000000000000000000000000000000000000000000000000000000000144000000ffff", + "STRINGS": [ + "Student Council Tasks (Apr)", + "An envelope containing information on the assorted requests\nassigned by Towa." + ] + }, + { + "TYPE": "item", + "ID": 187, + "UNK0": -3, + "STRING": "0", + "UNK1": "8200010000000000000000000000000000000000000000000000000000000000000000000000000145000000ffff", + "STRINGS": [ + "Student Council Tasks (May)", + "An envelope containing information on the assorted requests\nassigned by Towa." + ] + }, + { + "TYPE": "item", + "ID": 188, + "UNK0": -3, + "STRING": "0", + "UNK1": "8200010000000000000000000000000000000000000000000000000000000000000000000000000146000000ffff", + "STRINGS": [ + "Student Council Tasks (Jun)", + "An envelope containing information on the assorted requests\nassigned by Towa." + ] + }, + { + "TYPE": "item", + "ID": 189, + "UNK0": -3, + "STRING": "0", + "UNK1": "8200010000000000000000000000000000000000000000000000000000000000000000000000000147000000ffff", + "STRINGS": [ + "Student Council Tasks (Jul)", + "An envelope containing information on the assorted requests\nassigned by Towa." + ] + }, + { + "TYPE": "item", + "ID": 190, + "UNK0": -3, + "STRING": "0", + "UNK1": "8200010000000000000000000000000000000000000000000000000000000000000000000000000148000000ffff", + "STRINGS": [ + "Student Council Tasks (Aug)", + "An envelope containing information on the assorted requests\nassigned by Towa." + ] + }, + { + "TYPE": "item", + "ID": 191, + "UNK0": -3, + "STRING": "0", + "UNK1": "8200010000000000000000000000000000000000000000000000000000000000000000000000000149000000ffff", + "STRINGS": [ + "Student Council Tasks (Sep)", + "An envelope containing information on the assorted requests\nassigned by Towa." + ] + }, + { + "TYPE": "item", + "ID": 192, + "UNK0": -3, + "STRING": "0", + "UNK1": "820001000000000000000000000000000000000000000000000000000000000000000000000000014a000000ffff", + "STRINGS": [ + "Student Council Tasks (Oct)", + "An envelope containing information on the assorted requests\nassigned by Towa." + ] + }, + { + "TYPE": "item", + "ID": 180, + "UNK0": -3, + "STRING": "0", + "UNK1": "820001000000000000000000000000000000000000000000000000000000000000000000000000014b000000ffff", + "STRINGS": [ + "Field Study Envelope (Apr)", + "An envelope containing information on all of the field study\ntasks assigned." + ] + }, + { + "TYPE": "item", + "ID": 181, + "UNK0": -3, + "STRING": "0", + "UNK1": "820001000000000000000000000000000000000000000000000000000000000000000000000000014c000000ffff", + "STRINGS": [ + "Field Study Envelope (May)", + "An envelope containing information on all of the field study\ntasks assigned." + ] + }, + { + "TYPE": "item", + "ID": 182, + "UNK0": -3, + "STRING": "0", + "UNK1": "820001000000000000000000000000000000000000000000000000000000000000000000000000014d000000ffff", + "STRINGS": [ + "Field Study Envelope (Jun)", + "An envelope containing information on all of the field study\ntasks assigned." + ] + }, + { + "TYPE": "item", + "ID": 183, + "UNK0": -3, + "STRING": "0", + "UNK1": "820001000000000000000000000000000000000000000000000000000000000000000000000000014e000000ffff", + "STRINGS": [ + "Field Study Envelope (Jul)", + "An envelope containing information on all of the field study\ntasks assigned." + ] + }, + { + "TYPE": "item", + "ID": 184, + "UNK0": -3, + "STRING": "0", + "UNK1": "820001000000000000000000000000000000000000000000000000000000000000000000000000014f000000ffff", + "STRINGS": [ + "Field Study Envelope (Aug)", + "An envelope containing information on all of the field study\ntasks assigned." + ] + }, + { + "TYPE": "item", + "ID": 185, + "UNK0": -3, + "STRING": "0", + "UNK1": "8200010000000000000000000000000000000000000000000000000000000000000000000000000150000000ffff", + "STRINGS": [ + "Field Study Envelope (Sep)", + "An envelope containing information on all of the field study\ntasks assigned." + ] + }, + { + "TYPE": "item", + "ID": 1000, + "UNK0": 0, + "STRING": "SL", + "UNK1": "8c00010101000000000000000000004b00000000000000000000000000000000000000c80000006301000000ffff", + "STRINGS": [ + "Kazekiri", + "[STR+75/RNG+1]\nA light, easy to use blade designed to cut through wind." + ] + }, + { + "TYPE": "item", + "ID": 1001, + "UNK0": 0, + "STRING": "SL", + "UNK1": "8c00010101000000000000000000005a000000000000000000050003000000000000002c0100006302000000ffff", + "STRINGS": [ + "Kazekiri +1", + "[STR+90/SPD+3/EVA+5%/RNG+1]\nA light, easy to use blade designed to cut through wind." + ] + }, + { + "TYPE": "item", + "ID": 1002, + "UNK0": 0, + "STRING": "SL", + "UNK1": "8c00010101000000000000000000007800000000000000000000000000000000000000200300006303000000ffff", + "STRINGS": [ + "Uzuki", + "[STR+120/RNG+1]\nA blade forged at winter's end, praying for a good harvest." + ] + }, + { + "TYPE": "item", + "ID": 1004, + "UNK0": 0, + "STRING": "SL", + "UNK1": "8c00010101000000000000000000009600000000000000000005000300000000000000e80300006305000000ffff", + "STRINGS": [ + "Kisaragi", + "[STR+150/SPD+3/EVA+5%/RNG+1]\nA sharper, more powerful version of the Uzuki blade." + ] + }, + { + "TYPE": "item", + "ID": 1005, + "UNK0": 0, + "STRING": "SL", + "UNK1": "8c0001010100000000000000000000b400000000000000000000000000000000000000d00700006306000000ffff", + "STRINGS": [ + "Kogitsunemaru", + "[STR+180/RNG+1]\nA replica of a sword that appears in an Eastern legend." + ] + }, + { + "TYPE": "item", + "ID": 1007, + "UNK0": 0, + "STRING": "SL", + "UNK1": "8c0001010100000000000000000000d700000000000000000005000300000000000000c40900006308000000ffff", + "STRINGS": [ + "Rougatou", + "[STR+215/SPD+3/EVA+5%/RNG+1]\nA roughly-made tachi that's exceptionally sharp." + ] + }, + { + "TYPE": "item", + "ID": 1008, + "UNK0": 0, + "STRING": "SL", + "UNK1": "8c0001010100000000000000000000ff00000000000000000000000000000000000000b80b00006309000000ffff", + "STRINGS": [ + "Nowaki no Tachi", + "[STR+255/RNG+1]\nA decorated blade with the dignity of angry winds." + ] + }, + { + "TYPE": "item", + "ID": 1010, + "UNK0": 0, + "STRING": "SL", + "UNK1": "8c00010101000000000000000000002201000000000000000005000300000000000000ac0d0000630b000000ffff", + "STRINGS": [ + "Fuujin no Tachi", + "[STR+290/SPD+3/EVA+5%/RNG+1]\nA refined blade that embodies the power of the raging winds." + ] + }, + { + "TYPE": "item", + "ID": 1011, + "UNK0": 0, + "STRING": "SL", + "UNK1": "8c00010101000000000000000000004a01000000000000000000000000000000000000a00f0000630c000000ffff", + "STRINGS": [ + "Sasameyuki", + "[STR+330/RNG+1]\nA tachi with a delicate, snow-like pattern on its surface." + ] + }, + { + "TYPE": "item", + "ID": 1013, + "UNK0": 0, + "STRING": "SL", + "UNK1": "8c00010101000000000000000000006d0100000000000000000a00050000000000000094110000630e000000ffff", + "STRINGS": [ + "Akayukitou", + "[STR+365/SPD+5/EVA+10%/RNG+1]\nA reinforced tachi. Its polished blade has a scarlet glow." + ] + }, + { + "TYPE": "item", + "ID": 1014, + "UNK0": 0, + "STRING": "SL", + "UNK1": "8c000101010000000000000000000095010000000000000000000000000000000000007c150000630f000000ffff", + "STRINGS": [ + "Hakuu", + "[STR+405/RNG+1]\nA sword that glistens beautifully in the rain." + ] + }, + { + "TYPE": "item", + "ID": 1016, + "UNK0": 0, + "STRING": "SL", + "UNK1": "8c0001010100000000000000000000b80100000000000000000a000500000000000000701700006311000000ffff", + "STRINGS": [ + "Shigure", + "[STR+440/SPD+5/EVA+10%/RNG+1]\nA tachi which, when swung, sparkles like raindrops." + ] + }, + { + "TYPE": "item", + "ID": 1017, + "UNK0": 0, + "STRING": "SL", + "UNK1": "8c0001010100000000000000000000e001000000000000000000000000000000000000581b00006312000000ffff", + "STRINGS": [ + "Fuji Ichimonji", + "[STR+480/RNG+1]\nA tachi forged by a famous Eastern swordsmith." + ] + }, + { + "TYPE": "item", + "ID": 1019, + "UNK0": 0, + "STRING": "SL", + "UNK1": "8c0001010100000000000000000000030200000000000000000a0005000000000000004c1d00006314000000ffff", + "STRINGS": [ + "Kage Ichimonji", + "[STR+515/SPD+5/EVA+10%/RNG+1]\nA blade reinforced with a black metal, ideal for espionage." + ] + }, + { + "TYPE": "item", + "ID": 1020, + "UNK0": 0, + "STRING": "SL", + "UNK1": "8c00010101000000000000000000002b02000000000000000000000000000000000000282300006315000000ffff", + "STRINGS": [ + "Yakou", + "[STR+555/RNG+1]\nA glistening blade that glows in the blackest night." + ] + }, + { + "TYPE": "item", + "ID": 1021, + "UNK0": 0, + "STRING": "SL", + "UNK1": "8c0001010100000000000000000000580200000000000000000f000700000000000000102700006316000000ffff", + "STRINGS": [ + "Byakuya", + "[STR+600/SPD+7/EVA+15%/RNG+1]\nAugmented by a strange ore. Can supposedly cut light itself." + ] + }, + { + "TYPE": "item", + "ID": 1030, + "UNK0": 1, + "STRING": "SL", + "UNK1": "8d00010601000000000000000000003c00000000000000000000000000000000000000aa0000006301000000ffff", + "STRINGS": [ + "◆武器(導力弓00)未使用", + "【STR+60 RNG+6】\n" + ] + }, + { + "TYPE": "item", + "ID": 1031, + "UNK0": 1, + "STRING": "SL", + "UNK1": "8d00010601000000000000000000004b00000000000000000000000000000000000000040100006302000000ffff", + "STRINGS": [ + "Prima Bow", + "[STR+75/RNG+6]\nA well-made bow with a simple, easy to use design." + ] + }, + { + "TYPE": "item", + "ID": 1032, + "UNK0": 1, + "STRING": "SL", + "UNK1": "8d00010601000000000000000000006900000000000000000000000000000000000000800200006303000000ffff", + "STRINGS": [ + "Light Bow", + "[STR+105/RNG+6]\nA bow designed to be light without any loss of power." + ] + }, + { + "TYPE": "item", + "ID": 1034, + "UNK0": 1, + "STRING": "SL", + "UNK1": "8d0001060100000000000000000000870000000a000000000000000500000000000000480300006305000000ffff", + "STRINGS": [ + "Rapid Bow", + "[STR+135/ATS+10/SPD+5/RNG+6]\nA bow that has been modified to be able to fire more quickly." + ] + }, + { + "TYPE": "item", + "ID": 1036, + "UNK0": 1, + "STRING": "SL", + "UNK1": "8d0001060100000000000000000000be0000000a0000000000000005000000000000005c0800006307000000ffff", + "STRINGS": [ + "Prima Bow +1", + "[STR+190/ATS+10/SPD+5/RNG+6]\nA well-made bow with a simple, easy to use design." + ] + }, + { + "TYPE": "item", + "ID": 1038, + "UNK0": 1, + "STRING": "SL", + "UNK1": "8d0001060100000000000000000000f0000000000000000000000000000000000000008c0a00006309000000ffff", + "STRINGS": [ + "Windlass", + "[STR+240/RNG+6]\nA bow capable of firing arrows that pierce the wind." + ] + }, + { + "TYPE": "item", + "ID": 1040, + "UNK0": 1, + "STRING": "SL", + "UNK1": "8d0001060100000000000000000000130100000a000000000000000500000000000000800c0000630b000000ffff", + "STRINGS": [ + "Wind Arc", + "[STR+275/ATS+10/SPD+5/RNG+6]\nA bow that fires arrows strengthened by the wind." + ] + }, + { + "TYPE": "item", + "ID": 1042, + "UNK0": 1, + "STRING": "SL", + "UNK1": "8d0001060100000000000000000000540100000a000000000000000500000000000000a00f0000630d000000ffff", + "STRINGS": [ + "Prima Bow +2", + "[STR+340/ATS+10/SPD+5/RNG+6]\nA well-made bow with a simple, easy to use design." + ] + }, + { + "TYPE": "item", + "ID": 1045, + "UNK0": 1, + "STRING": "SL", + "UNK1": "8d00010601000000000000000000009f0100000a000000000000000500000000000000dc1400006310000000ffff", + "STRINGS": [ + "Prima Bow +3", + "[STR+415/ATS+10/SPD+5/RNG+6]\nA well-made bow with a simple, easy to use design." + ] + }, + { + "TYPE": "item", + "ID": 1047, + "UNK0": 1, + "STRING": "SL", + "UNK1": "8d0001060100000000000000000000d101000000000000000000000000000000000000001900006312000000ffff", + "STRINGS": [ + "White Bow", + "[STR+465/RNG+6]\nA beautifully designed bow that has been imbued with prayers." + ] + }, + { + "TYPE": "item", + "ID": 1049, + "UNK0": 1, + "STRING": "SL", + "UNK1": "8d0001060100000000000000000000f401000014000000000000000700000000000000f41a00006314000000ffff", + "STRINGS": [ + "Platinum Bow", + "[STR+500/ATS+20/SPD+7/RNG+6]\nA powerful, ornate bow." + ] + }, + { + "TYPE": "item", + "ID": 1050, + "UNK0": 1, + "STRING": "SL", + "UNK1": "8d00010601000000000000000000001c02000000000000000000000000000000000000302000006315000000ffff", + "STRINGS": [ + "Siren's Song", + "[STR+540/RNG+6]\nA bow that is both elegant and deadly." + ] + }, + { + "TYPE": "item", + "ID": 1051, + "UNK0": 1, + "STRING": "SL", + "UNK1": "8d0001060100000000000000000000490200001e000000000000000a00000000000000182400006316000000ffff", + "STRINGS": [ + "Golden Archer", + "[STR+585/ATS+30/SPD+10/RNG+6]\nAugmented by a strange ore. Emits a beautiful glow." + ] + }, + { + "TYPE": "item", + "ID": 1060, + "UNK0": 2, + "STRING": "SL", + "UNK1": "8e00020403000000000000000000003700000000000000000000000000000000000000dc0000006301000000ffff", + "STRINGS": [ + "Lambda Rod", + "[STR+55/RNG+4/Men Only]\nAn orbal staff for men. Designed by Reinford and Epstein." + ] + }, + { + "TYPE": "item", + "ID": 1061, + "UNK0": 2, + "STRING": "SL", + "UNK1": "8e0002040300000000000000000000460000000f000000000000000300000000000000400100006302000000ffff", + "STRINGS": [ + "Lambda Rod +1", + "[STR+70/ATS+15/SPD+3/Men Only]\nAn orbal staff for men. Designed by Reinford and Epstein." + ] + }, + { + "TYPE": "item", + "ID": 1062, + "UNK0": -3838, + "STRING": "SL", + "UNK1": "9900020403000000000000000000005a00000000000000000000000000000000000000ac0300006303000000ffff", + "STRINGS": [ + "Scalar Cane", + "[STR+90/RNG+4]\nAn orbal staff which conducts magical energy more effectively." + ] + }, + { + "TYPE": "item", + "ID": 1063, + "UNK0": 5, + "STRING": "SL", + "UNK1": "9100020403000000000000000000006e00000000000000000000000000000000000000100400006304000000ffff", + "STRINGS": [ + "Belta Rod", + "[STR+110/RNG+4]\nAn orbal staff for women. Designed by Reinford and Epstein." + ] + }, + { + "TYPE": "item", + "ID": 1064, + "UNK0": -3838, + "STRING": "SL", + "UNK1": "9900020403000000000000000000007800000019000000000000000300000000000000740400006305000000ffff", + "STRINGS": [ + "Variable Cane", + "[STR+120/ATS+25/SPD+3/RNG+4]\nAn orbal staff designed to convert energy more efficiently." + ] + }, + { + "TYPE": "item", + "ID": 1065, + "UNK0": -3838, + "STRING": "SL", + "UNK1": "99000204030000000000000000000096000000000000000000000000000000000000005c0800006306000000ffff", + "STRINGS": [ + "Synchrotron", + "[STR+150/RNG+4]\nA new type of staff, capable of coping with varied situations." + ] + }, + { + "TYPE": "item", + "ID": 1066, + "UNK0": 2, + "STRING": "SL", + "UNK1": "8e0002040300000000000000000000b90000000f000000000000000300000000000000880900006307000000ffff", + "STRINGS": [ + "Lambda Rod +2", + "[STR+185/ATS+15/SPD+3/RNG+4/Men Only]\nAn orbal staff for men. Designed by Reinford and Epstein." + ] + }, + { + "TYPE": "item", + "ID": 1067, + "UNK0": -3838, + "STRING": "SL", + "UNK1": "990002040300000000000000000000b900000019000000000000000300000000000000500a00006308000000ffff", + "STRINGS": [ + "Aerial Wand", + "[STR+185/ATS+25/SPD+3/RNG+4]\nAn orbal staff that uses the wind to increase its output." + ] + }, + { + "TYPE": "item", + "ID": 1068, + "UNK0": -3838, + "STRING": "SL", + "UNK1": "990002040300000000000000000000e100000000000000000000000000000000000000e40c00006309000000ffff", + "STRINGS": [ + "Libra Staff", + "[STR+225/RNG+4]\nAn orbal staff that glows like the stars in the night sky." + ] + }, + { + "TYPE": "item", + "ID": 1069, + "UNK0": 2, + "STRING": "SL", + "UNK1": "8e0002040300000000000000000000040100000f000000000000000300000000000000100e0000630a000000ffff", + "STRINGS": [ + "Lambda Rod +3", + "[STR+260/ATS+15/SPD+3/RNG+4/Men Only]\nAn orbal staff for men. Designed by Reinford and Epstein." + ] + }, + { + "TYPE": "item", + "ID": 1070, + "UNK0": -3838, + "STRING": "SL", + "UNK1": "9900020403000000000000000000000401000019000000000000000300000000000000d80e0000630b000000ffff", + "STRINGS": [ + "Stella Oak", + "[STR+260/ATS+25/SPD+3/RNG+4]\nA staff using an unusual material for its head to raise power." + ] + }, + { + "TYPE": "item", + "ID": 1071, + "UNK0": -3838, + "STRING": "SL", + "UNK1": "9900020403000000000000000000002c01000000000000000000000000000000000000cc100000630c000000ffff", + "STRINGS": [ + "Ruby Wand", + "[STR+300/RNG+4]\nAn orbal staff with a beautiful ruby embedded in its head." + ] + }, + { + "TYPE": "item", + "ID": 1072, + "UNK0": 5, + "STRING": "SL", + "UNK1": "9100020403000000000000000000004501000019000000000000000300000000000000f8110000630d000000ffff", + "STRINGS": [ + "Belta Rod +1", + "[STR+325/ATS+25/SPD+3/RNG+4/Women Only]\nAn orbal staff for women. Designed by Reinford and Epstein." + ] + }, + { + "TYPE": "item", + "ID": 1073, + "UNK0": -3838, + "STRING": "SL", + "UNK1": "9900020403000000000000000000004f01000023000000000000000500000000000000c0120000630e000000ffff", + "STRINGS": [ + "Ruby Force", + "[STR+335/ATS+35/SPD+5/RNG+4]\nA staff modified to use all of the embedded gemstone's power." + ] + }, + { + "TYPE": "item", + "ID": 1074, + "UNK0": -3838, + "STRING": "SL", + "UNK1": "990002040300000000000000000000770100000000000000000000000000000000000034170000630f000000ffff", + "STRINGS": [ + "Vector Staff", + "[STR+375/RNG+4]\nA cutting-edge orbal staff created with advanced mathematics." + ] + }, + { + "TYPE": "item", + "ID": 1075, + "UNK0": 2, + "STRING": "SL", + "UNK1": "8e00020403000000000000000000009a0100000f000000000000000300000000000000601800006310000000ffff", + "STRINGS": [ + "Lambda Rod +4", + "[STR+410/ATS+15/SPD+3/RNG+4/Men Only]\nAn orbal staff for men. Designed by Reinford and Epstein." + ] + }, + { + "TYPE": "item", + "ID": 1076, + "UNK0": -3838, + "STRING": "SL", + "UNK1": "9900020403000000000000000000009a01000023000000000000000500000000000000281900006311000000ffff", + "STRINGS": [ + "Glare Wand", + "[STR+410/ATS+35/SPD+5/RNG+4]\nA staff holding unrestricted power. Gives off a faint light." + ] + }, + { + "TYPE": "item", + "ID": 1077, + "UNK0": -3838, + "STRING": "SL", + "UNK1": "990002040300000000000000000000c201000000000000000000000000000000000000b01d00006312000000ffff", + "STRINGS": [ + "Closed-Delta", + "[STR+450/RNG+4]\nAn orbal staff known for its strange shape. Gathers energy." + ] + }, + { + "TYPE": "item", + "ID": 1078, + "UNK0": 5, + "STRING": "SL", + "UNK1": "910002040300000000000000000000db01000019000000000000000300000000000000dc1e00006313000000ffff", + "STRINGS": [ + "Belta Rod +2", + "[STR+475/ATS+25/SPD+3/RNG+4/Women Only]\nAn orbal staff for women. Designed by Reinford and Epstein." + ] + }, + { + "TYPE": "item", + "ID": 1079, + "UNK0": -3838, + "STRING": "SL", + "UNK1": "990002040300000000000000000000e501000023000000000000000500000000000000a41f00006314000000ffff", + "STRINGS": [ + "Open-Delta", + "[STR+485/ATS+35/SPD+5/RNG+4]\nAn orbal staff known for its strange shape. Diffuses energy." + ] + }, + { + "TYPE": "item", + "ID": 1080, + "UNK0": -3838, + "STRING": "SL", + "UNK1": "9900020403000000000000000000000d020000000000000000000000000000000000000c2600006315000000ffff", + "STRINGS": [ + "Faith Rod", + "[STR+525/RNG+4]\nA miraculous staff containing the prayers of a holy man." + ] + }, + { + "TYPE": "item", + "ID": 1081, + "UNK0": 2, + "STRING": "SL", + "UNK1": "8e00020403000000000000000000004402000028000000000000000700000000000000f42900006316000000ffff", + "STRINGS": [ + "Blue Rhapsody", + "[STR+580/ATS+40/SPD+7/RNG+4/Men Only]\nAugmented by a strange ore. Generates beautiful music." + ] + }, + { + "TYPE": "item", + "ID": 1082, + "UNK0": 5, + "STRING": "SL", + "UNK1": "9100020403000000000000000000003a02000032000000000000000700000000000000242200006317000000ffff", + "STRINGS": [ + "Lunar Witch", + "[STR+570/ATS+50/SPD+7/RNG+4/Women Only]\nAugmented by a strange ore. Contains the power of the moon." + ] + }, + { + "TYPE": "item", + "ID": 1090, + "UNK0": 3, + "STRING": "SL", + "UNK1": "8f00010201000000000000000000005a00000000000000000000000000000000000000fa0000006301000000ffff", + "STRINGS": [ + "◆武器(00)未使用", + "【STR+90 RNG+2】\n" + ] + }, + { + "TYPE": "item", + "ID": 1091, + "UNK0": 3, + "STRING": "SL", + "UNK1": "8f00010201000000000000000000006900000000000000000000000000000000000000540100006302000000ffff", + "STRINGS": [ + "Braver", + "[STR+105/RNG+2]\nA solidly built two-handed sword. Beautiful and powerful." + ] + }, + { + "TYPE": "item", + "ID": 1092, + "UNK0": 3, + "STRING": "SL", + "UNK1": "8f00010201000000000000000000008700000000000000000000000000000000000000100400006303000000ffff", + "STRINGS": [ + "Broad Edge", + "[STR+135/RNG+2]\nA simply-designed two-handed sword. Powerful and heavy." + ] + }, + { + "TYPE": "item", + "ID": 1094, + "UNK0": 3, + "STRING": "SL", + "UNK1": "8f0001020112050003000000000000a500000000000000000000000300000000000000d80400006305000000ffff", + "STRINGS": [ + "Heavy Edge", + "[STR+165/SPD+3/RNG+2/Causes faint (5%)]\nA reinforced greatsword. Light to hold, heavy on impact." + ] + }, + { + "TYPE": "item", + "ID": 1096, + "UNK0": 3, + "STRING": "SL", + "UNK1": "8f0001020112050003000000000000dc00000000000000000000000300000000000000ec0900006307000000ffff", + "STRINGS": [ + "Braver +1", + "[STR+220/SPD+3/RNG+2/Causes faint (5%)]\nA solidly built two-handed sword. Beautiful and powerful." + ] + }, + { + "TYPE": "item", + "ID": 1099, + "UNK0": 3, + "STRING": "SL", + "UNK1": "8f00010201120500030000000000002701000000000000000000000300000000000000d80e0000630a000000ffff", + "STRINGS": [ + "Braver +2", + "[STR+295/SPD+3/RNG+2/Causes faint (5%)]\nA solidly built two-handed sword. Beautiful and powerful." + ] + }, + { + "TYPE": "item", + "ID": 1101, + "UNK0": 3, + "STRING": "SL", + "UNK1": "8f0001020100000000000000000000590100000000000000000000000000000000000094110000630c000000ffff", + "STRINGS": [ + "Bastard Sword", + "[STR+345/RNG+2]\nAn easy to use two-handed sword. Known for its slim blade." + ] + }, + { + "TYPE": "item", + "ID": 1103, + "UNK0": 3, + "STRING": "SL", + "UNK1": "8f00010201120a00030000000000007c0100000000000000000000050000000000000088130000630e000000ffff", + "STRINGS": [ + "Zweihaender", + "[STR+380/SPD+5/RNG+2/Causes faint (10%)]\nA reinforced greatsword. Reforged to be stronger and longer." + ] + }, + { + "TYPE": "item", + "ID": 1104, + "UNK0": 3, + "STRING": "SL", + "UNK1": "8f0001020100000000000000000000a40100000000000000000000000000000000000060180000630f000000ffff", + "STRINGS": [ + "Titania", + "[STR+420/RNG+2]\nAn ornate two-handed sword. As powerful as it is beautiful." + ] + }, + { + "TYPE": "item", + "ID": 1106, + "UNK0": 3, + "STRING": "SL", + "UNK1": "8f00010201120a0000000000000000c701000000000000000000000500000000000000541a00006311000000ffff", + "STRINGS": [ + "Durga", + "[STR+455/SPD+5/RNG+2/Causes faint (10%)]\nA powerful two-handed sword. Carved with a savage design." + ] + }, + { + "TYPE": "item", + "ID": 1108, + "UNK0": 3, + "STRING": "SL", + "UNK1": "8f000102011205000300000000000008020000000000000000000003000000000000006c2000006313000000ffff", + "STRINGS": [ + "Braver +3", + "[STR+520/SPD+3/RNG+2/Causes faint (5%)]\nA solidly built two-handed sword. Beautiful and powerful." + ] + }, + { + "TYPE": "item", + "ID": 1110, + "UNK0": 3, + "STRING": "SL", + "UNK1": "8f00010201000000000000000000003a02000000000000000000000000000000000000002800006315000000ffff", + "STRINGS": [ + "Grambringer", + "[STR+570/RNG+2]\nA giant two-handed sword. Too heavy for the weak to even hold." + ] + }, + { + "TYPE": "item", + "ID": 1111, + "UNK0": 3, + "STRING": "SL", + "UNK1": "8f00010201120f00030000000000006702000000000000000000000700000000000000e82b00006316000000ffff", + "STRINGS": [ + "Valkyria", + "[STR+615/SPD+7/RNG+2/Causes faint (15%)\nAugmented by a strange ore. Contains a warrior maiden's vows." + ] + }, + { + "TYPE": "item", + "ID": 1120, + "UNK0": 4, + "STRING": "SL", + "UNK1": "9000020605000000000000000000005a00000000000000000000000000000000000000dc0000006301000000ffff", + "STRINGS": [ + "Buster Shot", + "[STR+90/RNG+6]\nA solidly-built, easy to use shotgun made by the RF Company." + ] + }, + { + "TYPE": "item", + "ID": 1123, + "UNK0": 4, + "STRING": "SL", + "UNK1": "9000020605120500000000000000009100000000000000000000000300000000000000e80300006304000000ffff", + "STRINGS": [ + "Buster Shot +1", + "[STR+145/SPD+3/RNG+6/Causes faint (5%)]\nA solidly-built, easy to use shotgun made by the RF Company." + ] + }, + { + "TYPE": "item", + "ID": 1125, + "UNK0": 4, + "STRING": "SL", + "UNK1": "900002060500000000000000000000b900000000000000000000000000000000000000340800006306000000ffff", + "STRINGS": [ + "Needler SG50", + "[STR+185/RNG+6]\nThe Reinford Company's bestselling shotgun model." + ] + }, + { + "TYPE": "item", + "ID": 1127, + "UNK0": 4, + "STRING": "SL", + "UNK1": "900002060512050000000000000000dc00000000000000000000000300000000000000280a00006308000000ffff", + "STRINGS": [ + "Gray Needler", + "[STR+220/SPD+3/RNG+6/Causes faint (5%)]\nA shotgun modified to increase firepower." + ] + }, + { + "TYPE": "item", + "ID": 1129, + "UNK0": 4, + "STRING": "SL", + "UNK1": "9000020605120500000000000000001d01000000000000000000000300000000000000ac0d0000630a000000ffff", + "STRINGS": [ + "Buster Shot +2", + "[STR+285/SPD+3/RNG+6/Causes faint (5%)]\nA solidly-built, easy to use shotgun made by the RF Company." + ] + }, + { + "TYPE": "item", + "ID": 1131, + "UNK0": 4, + "STRING": "SL", + "UNK1": "9000020605000000000000000000004f0100000000000000000000000000000000000068100000630c000000ffff", + "STRINGS": [ + "Stinger SG30", + "[STR+335/RNG+6]\nA difficult to use shotgun that fires needle-shaped bullets." + ] + }, + { + "TYPE": "item", + "ID": 1133, + "UNK0": 4, + "STRING": "SL", + "UNK1": "9000020605120a000000000000000072010000000000000000000005000000000000005c120000630e000000ffff", + "STRINGS": [ + "Bear Stinger", + "[STR+370/SPD+5/RNG+6/Causes faint (10%)]\nA shotgun modified for power. Rebuilt from the frame inward." + ] + }, + { + "TYPE": "item", + "ID": 1135, + "UNK0": 4, + "STRING": "SL", + "UNK1": "900002060512050000000000000000b301000000000000000000000300000000000000d41700006310000000ffff", + "STRINGS": [ + "Buster Shot +3", + "[STR+435/SPD+3/RNG+6/Causes faint (5%)]\nA solidly-built, easy to use shotgun made by the RF Company." + ] + }, + { + "TYPE": "item", + "ID": 1137, + "UNK0": 4, + "STRING": "SL", + "UNK1": "900002060500000000000000000000e501000000000000000000000000000000000000e81c00006312000000ffff", + "STRINGS": [ + "Inferno Blazer", + "[STR+485/RNG+6]\nAn incredibly powerful shotgun that has unusually high recoil." + ] + }, + { + "TYPE": "item", + "ID": 1139, + "UNK0": 4, + "STRING": "SL", + "UNK1": "9000020605120a00000000000000000802000000000000000000000500000000000000dc1e00006315000000ffff", + "STRINGS": [ + "Flare Cyclone", + "[STR+520/SPD+5/RNG+6/Causes faint (10%)]\nA shotgun that gains more power by releasing explosive blasts. " + ] + }, + { + "TYPE": "item", + "ID": 1140, + "UNK0": 4, + "STRING": "SL", + "UNK1": "90000206050000000000000000000030020000000000000000000000000000000000001c2500006316000000ffff", + "STRINGS": [ + "Blitz Blaster", + "[STR+560/RNG+6]\nAn assault shotgun designed for both speed and power." + ] + }, + { + "TYPE": "item", + "ID": 1141, + "UNK0": 4, + "STRING": "SL", + "UNK1": "9000020605120f00000000000000005d02000000000000000000000700000000000000042900006317000000ffff", + "STRINGS": [ + "Subjugation Blaster", + "[STR+605/SPD+7/RNG+6/Causes faint (15%)]\nAugmented by a strange ore. Designed to crush all foes." + ] + }, + { + "TYPE": "item", + "ID": 1142, + "UNK0": 4, + "STRING": "SL", + "UNK1": "90000206050d1400040000000000001702000000000000000000000000000000000000342100000114000000ffff", + "STRINGS": [ + "Phantom SG Zero", + "[STR+535/RNG+6/Causes blind (20%)]\nA shotgun designed for low noise. Currently in development." + ] + }, + { + "TYPE": "item", + "ID": 1180, + "UNK0": 6, + "STRING": "SL", + "UNK1": "9200010101000000000000000000004600000000000000000000000000000000000000c80000006301000000ffff", + "STRINGS": [ + "Knight's Sword", + "[STR+70/RNG+1]\nA knight's sword designed for both combat and ritual use." + ] + }, + { + "TYPE": "item", + "ID": 1183, + "UNK0": 6, + "STRING": "SL", + "UNK1": "920001010100000000000000000000870000000a000000000000000500000000000000840300006304000000ffff", + "STRINGS": [ + "Knight's Sword +1", + "[STR+135/ATS+10/SPD+5/RNG+1]\nA knight's sword designed for both combat and ritual use." + ] + }, + { + "TYPE": "item", + "ID": 1185, + "UNK0": 6, + "STRING": "SL", + "UNK1": "920001010100000000000000000000af00000000000000000000000000000000000000d00700006306000000ffff", + "STRINGS": [ + "Saber", + "[STR+175/RNG+1]\nA plain knight's sword with a beautiful blade." + ] + }, + { + "TYPE": "item", + "ID": 1187, + "UNK0": 6, + "STRING": "SL", + "UNK1": "920001010100000000000000000000d20000000a000000000000000500000000000000c40900006308000000ffff", + "STRINGS": [ + "Sinclair", + "[STR+210/ATS+10/SPD+5/RNG+1]\nA sword with increased sharpness, but no excess decoration." + ] + }, + { + "TYPE": "item", + "ID": 1188, + "UNK0": 6, + "STRING": "SL", + "UNK1": "920001010100000000000000000000fa00000000000000000000000000000000000000b80b00006309000000ffff", + "STRINGS": [ + "Backsword", + "[STR+250/RNG+1]\nA sharply pointed sword used by knights in the Middle Ages." + ] + }, + { + "TYPE": "item", + "ID": 1190, + "UNK0": 6, + "STRING": "SL", + "UNK1": "9200010101000000000000000000001d0100000a000000000000000500000000000000ac0d0000630b000000ffff", + "STRINGS": [ + "Walloon Sword", + "[STR+285/ATS+10/SPD+5/RNG+1]\nA sword with a modified hilt that makes it easier to use." + ] + }, + { + "TYPE": "item", + "ID": 1192, + "UNK0": 6, + "STRING": "SL", + "UNK1": "9200010101000000000000000000005e0100000a000000000000000500000000000000cc100000630d000000ffff", + "STRINGS": [ + "Knight's Sword +2", + "[STR+350/ATS+10/SPD+5/RNG+1]\nA knight's sword designed for both combat and ritual use." + ] + }, + { + "TYPE": "item", + "ID": 1194, + "UNK0": 6, + "STRING": "SL", + "UNK1": "92000101010000000000000000000090010000000000000000000000000000000000007c150000630f000000ffff", + "STRINGS": [ + "Lombardia", + "[STR+400/RNG+1]\nA traditional knight's sword. Used since the Middle Ages." + ] + }, + { + "TYPE": "item", + "ID": 1196, + "UNK0": 6, + "STRING": "SL", + "UNK1": "920001010100000000000000000000b301000014000000000000000700000000000000701700006311000000ffff", + "STRINGS": [ + "Katzbalger", + "[STR+435/ATS+20/SPD+7/RNG+1]\nA sword with an s-shaped guard. Ideal for melee combat." + ] + }, + { + "TYPE": "item", + "ID": 1198, + "UNK0": 6, + "STRING": "SL", + "UNK1": "920001010100000000000000000000f40100000a000000000000000500000000000000841c00006313000000ffff", + "STRINGS": [ + "Knight's Sword +3", + "[STR+500/ATS+10/SPD+5/RNG+1]\nA knight's sword designed for both combat and ritual use." + ] + }, + { + "TYPE": "item", + "ID": 1200, + "UNK0": 6, + "STRING": "SL", + "UNK1": "9200010101000000000000000000002602000000000000000000000000000000000000282300006315000000ffff", + "STRINGS": [ + "Edel Saber", + "[STR+550/RNG+1]\nAn elegantly decorated sword. Made using traditional means." + ] + }, + { + "TYPE": "item", + "ID": 1201, + "UNK0": 6, + "STRING": "SL", + "UNK1": "920001010100000000000000000000530200001e000000000000000a00000000000000102700006316000000ffff", + "STRINGS": [ + "Holy Order", + "[STR+595/ATS+30/SPD+10/RNG+1]\nAugmented by a strange ore. Radiates untainted light." + ] + }, + { + "TYPE": "item", + "ID": 1210, + "UNK0": 7, + "STRING": "SL", + "UNK1": "9300010101000000000000000000004100000000000000000000000000000000000000b40000006301000000ffff", + "STRINGS": [ + "◆武器(00)未使用", + "【STR+65 RNG+1】\n" + ] + }, + { + "TYPE": "item", + "ID": 1213, + "UNK0": 7, + "STRING": "SL", + "UNK1": "9300010101000000000000000000008200000000000000000000000000000000000000200300006304000000ffff", + "STRINGS": [ + "Dual Edge", + "[STR+130/RNG+1]\nA pair of gunswords. Designed with a focus on usability." + ] + }, + { + "TYPE": "item", + "ID": 1215, + "UNK0": 7, + "STRING": "SL", + "UNK1": "930001010100000000000000000000aa000000000000000000000000000000000000006c0700006306000000ffff", + "STRINGS": [ + "Karambit", + "[STR+170/RNG+1]\nGunswords with sharply curved blades. Loved by mercenaries. " + ] + }, + { + "TYPE": "item", + "ID": 1217, + "UNK0": 7, + "STRING": "SL", + "UNK1": "930001010100000000000000000000cd00000000000000000005000300000000000000600900006308000000ffff", + "STRINGS": [ + "Double Skinner", + "[STR+205/SPD+3/EVA+5%/RNG+1]\nGunswords customized to be sharper. Ideal for hunting." + ] + }, + { + "TYPE": "item", + "ID": 1219, + "UNK0": 7, + "STRING": "SL", + "UNK1": "9300010101000000000000000000000e010000000000000000050003000000000000001c0c0000630a000000ffff", + "STRINGS": [ + "Dual Edge +1", + "[STR+270/SPD+3/EVA+5%/RNG+1]\nA pair of gunswords. Designed with a focus on usability." + ] + }, + { + "TYPE": "item", + "ID": 1221, + "UNK0": 7, + "STRING": "SL", + "UNK1": "9300010101000000000000000000004001000000000000000000000000000000000000d80e0000630c000000ffff", + "STRINGS": [ + "Gemini Star", + "[STR+320/RNG+1]\nA pair of gunswords with slightly different capabilities." + ] + }, + { + "TYPE": "item", + "ID": 1223, + "UNK0": 7, + "STRING": "SL", + "UNK1": "930001010100000000000000000000630100000000000000000a000500000000000000cc100000630e000000ffff", + "STRINGS": [ + "Odd-Eye", + "[STR+355/SPD+5/EVA+10%/RNG+1]\nA pair of differently shaped gunswords. Used by experts." + ] + }, + { + "TYPE": "item", + "ID": 1225, + "UNK0": 7, + "STRING": "SL", + "UNK1": "930001010100000000000000000000a4010000000000000000050003000000000000007c1500006310000000ffff", + "STRINGS": [ + "Dual Edge +2", + "[STR+420/SPD+3/EVA+5%/RNG+1]\nA pair of gunswords. Designed with a focus on usability." + ] + }, + { + "TYPE": "item", + "ID": 1227, + "UNK0": 7, + "STRING": "SL", + "UNK1": "930001010100000000000000000000d601000000000000000000000000000000000000c81900006312000000ffff", + "STRINGS": [ + "Strider", + "[STR+470/RNG+1]\nLight and easy to use gunswords. Ideal for swift attacks." + ] + }, + { + "TYPE": "item", + "ID": 1229, + "UNK0": 7, + "STRING": "SL", + "UNK1": "930001010100000000000000000000f90100000000000000000a000500000000000000bc1b00006315000000ffff", + "STRINGS": [ + "Avenger", + "[STR+505/SPD+5/EVA+10%/RNG+1]\nGunswords customized to be more powerful and easier to use." + ] + }, + { + "TYPE": "item", + "ID": 1230, + "UNK0": 7, + "STRING": "SL", + "UNK1": "9300010101000000000000000000002102000000000000000000000000000000000000342100006316000000ffff", + "STRINGS": [ + "Sword Breaker", + "[STR+545/RNG+1]\nGunswords with an unusual shape to hook on to a foe's sword." + ] + }, + { + "TYPE": "item", + "ID": 1231, + "UNK0": 7, + "STRING": "SL", + "UNK1": "9300010101000000000000000000004e0200000000000000000f0007000000000000001c2500006317000000ffff", + "STRINGS": [ + "Vert Venti", + "[STR+590/SPD+7/EVA+15%/RNG+1]\nAugmented by a strange ore. Makes their bearer like the wind." + ] + }, + { + "TYPE": "item", + "ID": 1232, + "UNK0": 7, + "STRING": "SL", + "UNK1": "9300010101140a000000000000000003020000000000000000000000000000000000004c1d00000114000000ffff", + "STRINGS": [ + "Black Raid", + "[STR+515/RNG+1/Causes death (10%)]\nJet black gunswords fitted with Reinford's latest gun unit." + ] + }, + { + "TYPE": "item", + "ID": 1240, + "UNK0": 8, + "STRING": "SL", + "UNK1": "9400010301000000000000000000005500000000000000000000000000000000000000f00000006301000000ffff", + "STRINGS": [ + "Cross Spear", + "[STR+85/RNG+3]\nA cross-shaped spear. The blades represent land and wind." + ] + }, + { + "TYPE": "item", + "ID": 1241, + "UNK0": 8, + "STRING": "SL", + "UNK1": "9400010301000000000000000000006400000000000000000005000300000000000000540100006302000000ffff", + "STRINGS": [ + "Cross Spear +1", + "[STR+100/SPD+3/EVA+5%/RNG+3]\nA cross-shaped spear. The blades represent land and wind." + ] + }, + { + "TYPE": "item", + "ID": 1243, + "UNK0": 8, + "STRING": "SL", + "UNK1": "94000103010000000000000000000096000000000000000000050003000000000000004c0400006304000000ffff", + "STRINGS": [ + "Cross Spear +2", + "[STR+150/SPD+3/EVA+5%/RNG+3]\nA cross-shaped spear. The blades represent land and wind." + ] + }, + { + "TYPE": "item", + "ID": 1246, + "UNK0": 8, + "STRING": "SL", + "UNK1": "940001030100000000000000000000d700000000000000000005000300000000000000c40900006307000000ffff", + "STRINGS": [ + "Cross Spear +3", + "[STR+215/SPD+3/EVA+5%/RNG+3]\nA cross-shaped spear. The blades represent land and wind." + ] + }, + { + "TYPE": "item", + "ID": 1248, + "UNK0": 8, + "STRING": "SL", + "UNK1": "9400010301000000000000000000000901000000000000000000000000000000000000480d00006309000000ffff", + "STRINGS": [ + "Long Pike", + "[STR+265/RNG+3]\nA spear which has remained unchanged since the Middle Ages." + ] + }, + { + "TYPE": "item", + "ID": 1250, + "UNK0": 8, + "STRING": "SL", + "UNK1": "9400010301000000000000000000002c010000000000000000050003000000000000003c0f0000630b000000ffff", + "STRINGS": [ + "Gladiator Spear", + "[STR+300/SPD+3/EVA+5%/RNG+3]\nA reinforced spear. Forged for a ferocious warrior." + ] + }, + { + "TYPE": "item", + "ID": 1252, + "UNK0": 8, + "STRING": "SL", + "UNK1": "9400010301000000000000000000006d010000000000000000050003000000000000005c120000630d000000ffff", + "STRINGS": [ + "Cross Spear +4", + "[STR+365/SPD+3/EVA+5%/RNG+3]\nA cross-shaped spear. The blades represent land and wind." + ] + }, + { + "TYPE": "item", + "ID": 1254, + "UNK0": 8, + "STRING": "SL", + "UNK1": "9400010301000000000000000000009f01000000000000000000000000000000000000d4170000630f000000ffff", + "STRINGS": [ + "Partisan", + "[STR+415/RNG+3]\nA spear with a long shaft and wide blade." + ] + }, + { + "TYPE": "item", + "ID": 1256, + "UNK0": 8, + "STRING": "SL", + "UNK1": "940001030100000000000000000000c20100000000000000000a000500000000000000c81900006311000000ffff", + "STRINGS": [ + "Corsesca", + "[STR+450/SPD+5/EVA+10%/RNG+3]\nA reinforced spear with wing-like blades attached to its neck." + ] + }, + { + "TYPE": "item", + "ID": 1258, + "UNK0": 8, + "STRING": "SL", + "UNK1": "9400010301000000000000000000000302000000000000000005000300000000000000a41f00006313000000ffff", + "STRINGS": [ + "Cross Spear +5", + "[STR+515/SPD+3/EVA+5%/RNG+3]\nA cross-shaped spear. The blades represent land and wind." + ] + }, + { + "TYPE": "item", + "ID": 1260, + "UNK0": 8, + "STRING": "SL", + "UNK1": "9400010301000000000000000000003502000000000000000000000000000000000000102700006315000000ffff", + "STRINGS": [ + "Dragoon Lance", + "[STR+565/RNG+3]\nA lance used by Middle Ages dragoons. Ideal for rushing." + ] + }, + { + "TYPE": "item", + "ID": 1261, + "UNK0": 8, + "STRING": "SL", + "UNK1": "940001030100000000000000000000620200000000000000000f000700000000000000f82a00006316000000ffff", + "STRINGS": [ + "Astra Hawk", + "[STR+610/SPD+7/EVA+15%/RNG+3]\nAugmented by a strange ore. Draws in swirling winds." + ] + }, + { + "TYPE": "item", + "ID": 1270, + "UNK0": 9, + "STRING": "SL", + "UNK1": "9500020303000000000000000000005f00000000000000000000000000000000000000040100006301000000ffff", + "STRINGS": [ + "◆武器(00)未使用", + "【STR+95 RNG+3】\n" + ] + }, + { + "TYPE": "item", + "ID": 1280, + "UNK0": 9, + "STRING": "SL", + "UNK1": "950002030300000000000000000000360100000000000000000000000000000000000004100000630b000000ffff", + "STRINGS": [ + "Breaker Arm", + "[STR+310/RNG+3]\nAirgetlam's arm. Sturdy and incredibly powerful." + ] + }, + { + "TYPE": "item", + "ID": 1282, + "UNK0": 9, + "STRING": "SL", + "UNK1": "950002030312050000000000000000770100000000000000000000030000000000000024130000630d000000ffff", + "STRINGS": [ + "Breaker Arm +1", + "[STR+375/SPD+3/RNG+3/Causes faint (5%)]\nAirgetlam's arm. Sturdy and incredibly powerful." + ] + }, + { + "TYPE": "item", + "ID": 1284, + "UNK0": 9, + "STRING": "SL", + "UNK1": "950002030300000000000000000000a90100000000000000000000000000000000000000190000630f000000ffff", + "STRINGS": [ + "Chrome Claw", + "[STR+425/RNG+3]\nA silvery-white claw capable of cutting into earth and iron." + ] + }, + { + "TYPE": "item", + "ID": 1286, + "UNK0": 9, + "STRING": "SL", + "UNK1": "9500020303120a0000000000000000cc01000000000000000000000500000000000000f41a00006311000000ffff", + "STRINGS": [ + "Wild Claw", + "[STR+460/SPD+5/RNG+3/Causes faint (10%)]\nA claw that has been reforged for added hardness." + ] + }, + { + "TYPE": "item", + "ID": 1288, + "UNK0": 9, + "STRING": "SL", + "UNK1": "9500020303120500000000000000000d02000000000000000000000300000000000000342100006313000000ffff", + "STRINGS": [ + "Breaker Arm +2", + "[STR+525/SPD+3/RNG+3/Causes faint (5%)]\nAirgetlam's arm. Sturdy and incredibly powerful." + ] + }, + { + "TYPE": "item", + "ID": 1290, + "UNK0": 9, + "STRING": "SL", + "UNK1": "9500020303000000000000000000003f02000000000000000000000000000000000000042900006315000000ffff", + "STRINGS": [ + "Mighty Arm", + "[STR+575/RNG+3]\nA giant gauntlet forged specially for Airgetlam." + ] + }, + { + "TYPE": "item", + "ID": 1291, + "UNK0": 9, + "STRING": "SL", + "UNK1": "9500020303120f00000000000000006c02000000000000000000000700000000000000ec2c00006316000000ffff", + "STRINGS": [ + "Divine Gear", + "[STR+620/SPD+7/RNG+3/Causes faint (15%)]\nAugmented by a strange ore. Glistens radiantly." + ] + }, + { + "TYPE": "item", + "ID": 1300, + "UNK0": 10, + "STRING": "SL", + "UNK1": "9600010501000000000000000000004b00000000000000000000000000000000000000dc0000006301000000ffff", + "STRINGS": [ + "◆武器(二丁拳銃00)未使用", + "【STR+75 RNG+5】\n" + ] + }, + { + "TYPE": "item", + "ID": 1310, + "UNK0": 10, + "STRING": "SL", + "UNK1": "9600010501000000000000000000002201000000000000000000000000000000000000740e0000630b000000ffff", + "STRINGS": [ + "Trickster", + "[STR+290/RNG+5]\nEasy to use pistols that make unusual combat styles possible." + ] + }, + { + "TYPE": "item", + "ID": 1312, + "UNK0": 10, + "STRING": "SL", + "UNK1": "960001050100000000000000000000630100000000000000000000000000000000000094110000630d000000ffff", + "STRINGS": [ + "Trickster", + "[STR+355/RNG+5]\nEasy to use pistols that make unusual combat styles possible." + ] + }, + { + "TYPE": "item", + "ID": 1315, + "UNK0": 10, + "STRING": "SL", + "UNK1": "960001050100000000000000000000ae01000000000000000005000300000000000000d41700006310000000ffff", + "STRINGS": [ + "Trickster +1", + "[STR+430/SPD+3/EVA+5%/RNG+5]\nEasy to use pistols that make unusual combat styles possible." + ] + }, + { + "TYPE": "item", + "ID": 1317, + "UNK0": 10, + "STRING": "SL", + "UNK1": "960001050100000000000000000000e001000000000000000000000000000000000000e81c00006312000000ffff", + "STRINGS": [ + "Colt & Pony", + "[STR+480/RNG+5]\nA pair of pistols made by Reinford. Deadlier than they look." + ] + }, + { + "TYPE": "item", + "ID": 1319, + "UNK0": 10, + "STRING": "SL", + "UNK1": "960001050100000000000000000000030200000000000000000a000500000000000000dc1e00006315000000ffff", + "STRINGS": [ + "Double Mustang", + "[STR+515/SPD+5/EVA+10%/RNG+5]\nA pair of pistols customized for pure, unrestricted power." + ] + }, + { + "TYPE": "item", + "ID": 1320, + "UNK0": 10, + "STRING": "SL", + "UNK1": "9600010501000000000000000000002b020000000000000000000000000000000000001c2500006316000000ffff", + "STRINGS": [ + "Shadow Jack", + "[STR+555/RNG+5]\nA pair of pistols that blend in to darkness." + ] + }, + { + "TYPE": "item", + "ID": 1321, + "UNK0": 10, + "STRING": "SL", + "UNK1": "960001050100000000000000000000580200000000000000000f000700000000000000042900006317000000ffff", + "STRINGS": [ + "Crime & Punishment", + "[STR+600/SPD+7/EVA+15%/RNG+5]\nAugmented by a strange ore. Designed to punish sinners." + ] + }, + { + "TYPE": "item", + "ID": 1322, + "UNK0": 10, + "STRING": "SL", + "UNK1": "96000105010f0a000300100a0004000d02000000000000000000000000000000000000342100000114000000ffff", + "STRINGS": [ + "Fire & Ice", + "[STR+525/RNG+5/Causes burn (10%)/freeze (10%)]\nA pair of pistols that fire bullets of different elements." + ] + }, + { + "TYPE": "item", + "ID": 1346, + "UNK0": 11, + "STRING": "SL", + "UNK1": "970001010100000000000000000000f40100000000000000000f000000000000000000701700006301000000ffff", + "STRINGS": [ + "Diablo & Pain", + "[STR+500/EVA+15%/RNG+1]\nAn orbal gun named 'Diablo' and a special blade called 'Pain'." + ] + }, + { + "TYPE": "item", + "ID": 1377, + "UNK0": 12, + "STRING": "SL", + "UNK1": "980001010112050000000000000000120200000000000000000a000000000000000000581b00006301000000ffff", + "STRINGS": [ + "Platinum Fists", + "[STR+530/EVA+10%/RNG+1/Causes faint (5%)]\nDeadly gauntlets made of brilliant platinum." + ] + }, + { + "TYPE": "item", + "ID": 500, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a000000000000000000000000000000000320000000f00000000000000000000000000780000006301000000ffff", + "STRINGS": [ + "Leather Guard", + "[DEF+50/ADF+15]\nA leather vest designed to resist light shocks." + ] + }, + { + "TYPE": "item", + "ID": 501, + "UNK0": -3840, + "STRING": "SL", + "UNK1": "a000000000000000000000000000000000460000003200000005000000000000000000f00000006302000000ffff", + "STRINGS": [ + "Border Print T-Shirt", + "[DEF+70/ADF+50/EVA+5%/Men Only]\nA t-shirt with a border print design. Made of light material." + ] + }, + { + "TYPE": "item", + "ID": 502, + "UNK0": -3839, + "STRING": "SL", + "UNK1": "a000000000000000000000000000000000410000003700000005000000000000000000f00000006303000000ffff", + "STRINGS": [ + "White Blouse", + "[DEF+65/ADF+55/EVA+5%/Women Only]\nA refreshingly white blouse." + ] + }, + { + "TYPE": "item", + "ID": 503, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a000000000000000000000000000000000500000001400000000000000000000000000580200006304000000ffff", + "STRINGS": [ + "Armored Vest", + "[DEF+80/ADF+20]\nA vest reinforced with an iron breastplate." + ] + }, + { + "TYPE": "item", + "ID": 504, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a000000000000000000000000000000000780000001e00000000000000000000000000e80300006305000000ffff", + "STRINGS": [ + "Fiber Guard", + "[DEF+120/ADF+30]\nA protective garment woven from special fibers." + ] + }, + { + "TYPE": "item", + "ID": 505, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a000000000000000000000000000000000640000000000000000000300000000000000200300006306000000ffff", + "STRINGS": [ + "Cotton Shirt", + "[DEF+100/SPD+3]\nA simple shirt. Made of soft-to-the-touch-cotton." + ] + }, + { + "TYPE": "item", + "ID": 506, + "UNK0": -3840, + "STRING": "SL", + "UNK1": "a000000000000000000000000000000300870000006400000000000000000000000000080700006307000000ffff", + "STRINGS": [ + "Silver Jacket", + "[DEF+135/ADF+100/STR+3/Men Only]\nA shiny silver jacket that isn't excessively flashy." + ] + }, + { + "TYPE": "item", + "ID": 507, + "UNK0": -3839, + "STRING": "SL", + "UNK1": "a000000000000000000000000000000000820003006900000000000000000000000000080700006308000000ffff", + "STRINGS": [ + "Golden Dress", + "[DEF+130/ADF+105/ATS+3/Women Only]\nA dazzling golden dress that accentuates any look." + ] + }, + { + "TYPE": "item", + "ID": 508, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a000000000000000000000000000000000b40000002d00000000000000000000000000600900006309000000ffff", + "STRINGS": [ + "Sturdy Leather", + "[DEF+180/ADF+45]\nA sturdy vest. Made of tanned leather." + ] + }, + { + "TYPE": "item", + "ID": 509, + "UNK0": -3840, + "STRING": "SL", + "UNK1": "a000000000000000000000000000000500af000000550000000000000000000000000098080000630a000000ffff", + "STRINGS": [ + "Earth Vest", + "[DEF+175/ADF+85/STR+5/Men Only]\nA thick vest that symbolizes earth. Primarily white in color." + ] + }, + { + "TYPE": "item", + "ID": 510, + "UNK0": -3839, + "STRING": "SL", + "UNK1": "a000000000000000000000000000000000aa0005005a0000000000000000000000000098080000630b000000ffff", + "STRINGS": [ + "Wind Robe", + "[DEF+170/ADF+90/ATS+5/Women Only]\nA light robe that symbolizes wind. Primarily green in color." + ] + }, + { + "TYPE": "item", + "ID": 511, + "UNK0": -3840, + "STRING": "SL", + "UNK1": "a000000000000000000000000000000700d20000009b00000005000000000000000000b80b0000630c000000ffff", + "STRINGS": [ + "Leopard Print Jacket", + "[DEF+210/ADF+155/STR+7/EVA+5%/Men Only]\nA jacket that captures the attention of those who look at it." + ] + }, + { + "TYPE": "item", + "ID": 512, + "UNK0": -3839, + "STRING": "SL", + "UNK1": "a000000000000000000000000000000000cd000700a000000005000000000000000000b80b0000630d000000ffff", + "STRINGS": [ + "Frilly Dress", + "[DEF+205/ADF+160/ATS+7/EVA+5%/Women Only]\nA charming one-piece dress decorated with countless frills." + ] + }, + { + "TYPE": "item", + "ID": 513, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a000000000000000000000000000000000f00000003c00000000000000000000000000b80b0000630e000000ffff", + "STRINGS": [ + "Titanium Coat", + "[DEF+240/ADF+60]\nA coat reinforced with a hard metal. Used by the military." + ] + }, + { + "TYPE": "item", + "ID": 514, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a000000000000000000000000000000000dc000000a50000000a000000000000000000100e0000630f000000ffff", + "STRINGS": [ + "Red Jacket", + "[DEF+220/ADF+165/EVA+10%]\nA jacket dyed in a passionate, vivid red color." + ] + }, + { + "TYPE": "item", + "ID": 515, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a000000000000000000000000000000000090100004100000000000000000000000000a00f00006310000000ffff", + "STRINGS": [ + "Blue Tunic", + "[DEF+265/ADF+65]\nA long garment with a distinctive, refreshing blue color." + ] + }, + { + "TYPE": "item", + "ID": 516, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a000000000000000000000000000000000fa000000320000000a000000000000000000100e00006311000000ffff", + "STRINGS": [ + "Golden Mail", + "[DEF+250/ADF+50/EVA+10%]\nIncredibly light mail made using special golden wires." + ] + }, + { + "TYPE": "item", + "ID": 517, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a00000000000000000000000000000000018010f00d200000000000000000000000000100e00006312000000ffff", + "STRINGS": [ + "Lunar Robe", + "[DEF+280/ADF+210/ATS+15]\nA robe woven from hemp. Once worn by a highly pious monk." + ] + }, + { + "TYPE": "item", + "ID": 518, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a000000000000000000000000000000000400100005000000000000000000000000000941100006313000000ffff", + "STRINGS": [ + "Battle Coat", + "[DEF+320/ADF+80]\nA sturdy, comfortable coat favored by the Imperial Army." + ] + }, + { + "TYPE": "item", + "ID": 519, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a000000000000000000000000000000f00310100000000000000000000000000000000881300006314000000ffff", + "STRINGS": [ + "Thick Jumpsuit", + "[DEF+305/STR+15]\nA sturdy jumpsuit loved by Reinford laborers." + ] + }, + { + "TYPE": "item", + "ID": 520, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a0000000000000000000000000000005004f010500fa000000000000000000000000007c1500006315000000ffff", + "STRINGS": [ + "General's Cape", + "[DEF+335/ADF+250/STR+5/ATS+5]\nA replica of the cape worn by officers in the Imperial Army." + ] + }, + { + "TYPE": "item", + "ID": 521, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a000000000000000000000000000000000680100005a00000000000000000000000000701700006316000000ffff", + "STRINGS": [ + "Shield Jacket", + "[DEF+360/ADF+90]\nA jacket reinforced with numerous protective plates." + ] + }, + { + "TYPE": "item", + "ID": 522, + "UNK0": -3840, + "STRING": "SL", + "UNK1": "a0000000000000000000000000000014007c010a001d01000000000000000000000000401f00006317000000ffff", + "STRINGS": [ + "Ares Armor", + "[DEF+380/ADF+285/STR+20/ATS+10/Men Only]\nAn armor made of glowing septium. Protects wearer with light." + ] + }, + { + "TYPE": "item", + "ID": 523, + "UNK0": -3839, + "STRING": "SL", + "UNK1": "a000000000000000000000000000000a00770114002201000000000000000000000000401f00006318000000ffff", + "STRINGS": [ + "Aurelia Dress", + "[DEF+375/ADF+290/ATS+20/STR+10/Women Only]\nA dress made of glowing septium. Protects wearer with light." + ] + }, + { + "TYPE": "item", + "ID": 524, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a000000000000000000000000000000000a4010000a401000000000000000000000000102700006319000000ffff", + "STRINGS": [ + "Aura Jacket", + "[DEF+420/ADF+420]\nA jacket woven from radiant thread. Granted to a top student." + ] + }, + { + "TYPE": "item", + "ID": 550, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a100000000000000000000000000000000190000000000000000000000010000000000780000006301000000ffff", + "STRINGS": [ + "Leather Shoes", + "[DEF+25/MOV+1]\nA light, comfortable pair of shoes with a beautiful shine." + ] + }, + { + "TYPE": "item", + "ID": 551, + "UNK0": -3840, + "STRING": "SL", + "UNK1": "a1000000000000000000000000000000002300000000000000050001000100000000002c0100006302000000ffff", + "STRINGS": [ + "Sunny Sandals", + "[DEF+35/MOV+1/SPD+1/EVA+5%/Men Only]\nLight sandals featuring bright yellow as an accent color." + ] + }, + { + "TYPE": "item", + "ID": 552, + "UNK0": -3839, + "STRING": "SL", + "UNK1": "a100000000000000000000000000000000230000000000000000000300010000000000f40100006303000000ffff", + "STRINGS": [ + "Pink High Heels", + "[DEF+35/MOV+1/SPD+3/Women Only]\nA pair of cute, pink high heels, popular with women." + ] + }, + { + "TYPE": "item", + "ID": 553, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a100000000000000000000000000000000280000000000000000000000010000000000900100006304000000ffff", + "STRINGS": [ + "Metal Spikes", + "[DEF+40/MOV+1]\nSturdy spiked shoes made from a metal that resists rust." + ] + }, + { + "TYPE": "item", + "ID": 554, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a1000000000000000000000000000000003c0000000000000000000000010000000000200300006305000000ffff", + "STRINGS": [ + "Fiber Boots", + "[DEF+60/MOV+1]\nProtective boots woven from special fibers." + ] + }, + { + "TYPE": "item", + "ID": 555, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a100000000000000000000000000000000320000000000000000000100030000000000200300006306000000ffff", + "STRINGS": [ + "Rubber Soles", + "[DEF+50/MOV+3/SPD+1]\nAffordable, comfortable shoes, loved by the working class." + ] + }, + { + "TYPE": "item", + "ID": 556, + "UNK0": -3840, + "STRING": "SL", + "UNK1": "a100000000000000000000000000000000460000000000000005000100010000000000780500006307000000ffff", + "STRINGS": [ + "Noble Leather", + "[DEF+70/MOV+1/SPD+1/EVA+5%/Men Only]\nMeticulously crafted shoes, made with the finest materials." + ] + }, + { + "TYPE": "item", + "ID": 557, + "UNK0": -3839, + "STRING": "SL", + "UNK1": "a100000000000000000000000000000000460000000000000000000300010000000000780500006308000000ffff", + "STRINGS": [ + "Glittering Mules", + "[DEF+70/MOV+1/SPD+3/Women Only]\nHigh class mules made using glittering thread." + ] + }, + { + "TYPE": "item", + "ID": 558, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a1000000000000000000000000000000005a0000000000000000000000020000000000b00400006309000000ffff", + "STRINGS": [ + "Rigid Shoes", + "[DEF+90/MOV+2]\nSturdy spiked shoes made with a resistant material." + ] + }, + { + "TYPE": "item", + "ID": 559, + "UNK0": -3840, + "STRING": "SL", + "UNK1": "a10000000000000000000000000000000050000000000000000500010002000000000078050000630a000000ffff", + "STRINGS": [ + "Frost Shoes", + "[DEF+80/MOV+2/SPD+1/EVA+5%/Men Only]\nShoes made from wool and hemp. Cool in summer, warm in winter." + ] + }, + { + "TYPE": "item", + "ID": 560, + "UNK0": -3839, + "STRING": "SL", + "UNK1": "a10000000000000000000000000000000050000000000000000000030002000000000078050000630b000000ffff", + "STRINGS": [ + "Star Shoes", + "[DEF+80/MOV+2/SPD+3/Women Only]\nShoes made from wool and silk. Extremely gentle on your feet." + ] + }, + { + "TYPE": "item", + "ID": 561, + "UNK0": -3840, + "STRING": "SL", + "UNK1": "a10000000000000000000000000000000069000000000000000a000000020000000000dc050000630c000000ffff", + "STRINGS": [ + "Feathered Shoes", + "[DEF+105/MOV+2/EVA+10%/Men Only]\nVery light shoes. The ornamental feathers draw attention." + ] + }, + { + "TYPE": "item", + "ID": 562, + "UNK0": -3839, + "STRING": "SL", + "UNK1": "a100000000000000000000000000000000690000000000000000000500020000000000dc050000630d000000ffff", + "STRINGS": [ + "Leaf Sandals", + "[DEF+105/MOV+2/SPD+5/Women Only]\nCool, fashionable green sandals. Easy to move around in." + ] + }, + { + "TYPE": "item", + "ID": 563, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a10000000000000000000000000000000078000000000000000000000003000000000040060000630e000000ffff", + "STRINGS": [ + "Military Spikes", + "[DEF+120/MOV+3]\nSpiked shoes with disruptive patterning. Used by the military." + ] + }, + { + "TYPE": "item", + "ID": 564, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a1000000000000000000000000000000006e000000000000000500030003000000000060090000630f000000ffff", + "STRINGS": [ + "Red Shoes", + "[DEF+110/MOV+3/SPD+3/EVA+5%]\nLeather shoes dyed in a passionate, vivid red color." + ] + }, + { + "TYPE": "item", + "ID": 565, + "UNK0": -3839, + "STRING": "SL", + "UNK1": "a100000000000000000000000000000f006e0000000000000005000000030000000000600900006310000000ffff", + "STRINGS": [ + "Ladies' Stregas", + "[DEF+110/MOV+3/STR+15/EVA+5%/Women Only]\nFashionable, functional sneakers made by the Strega Corporation." + ] + }, + { + "TYPE": "item", + "ID": 566, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a100000000000000000000000000000000870000000000000000000000030000000000600900006311000000ffff", + "STRINGS": [ + "Hiking Shoes", + "[DEF+135/MOV+3]\nShoes designed especially for traversing rough terrain." + ] + }, + { + "TYPE": "item", + "ID": 567, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a1000000000000000000000000000000007d0000000000000000000500030000000000f00a00006312000000ffff", + "STRINGS": [ + "Golden Thread Shoes", + "[DEF+125/MOV+3/SPD+5]\nIncredibly light shoes made using special golden thread." + ] + }, + { + "TYPE": "item", + "ID": 568, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a1000000000000000000000000000000008c0000000000000005000000030000000000f00a00006313000000ffff", + "STRINGS": [ + "Dawn Boots", + "[DEF+140/MOV+3/EVA+5%]\nLegendary boots said to have been worn by the Eisenritter." + ] + }, + { + "TYPE": "item", + "ID": 569, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a100000000000000000000000000000000a00000000000000000000000040000000000f00a00006314000000ffff", + "STRINGS": [ + "Battle Boots", + "[DEF+160/MOV+4]\nSturdy, comfortable shoes favored by the Imperial Army." + ] + }, + { + "TYPE": "item", + "ID": 570, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a100000000000000000000000000000500960000000000000000000000040000000000e40c00006315000000ffff", + "STRINGS": [ + "Haken Boots", + "[DEF+150/MOV+4/STR+5]\nReinforced spiked shoes designed for climbing mountains." + ] + }, + { + "TYPE": "item", + "ID": 571, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a100000000000000000000000000000000aa0000000000000005000000040000000000a00f00006316000000ffff", + "STRINGS": [ + "General's Boots", + "[DEF+170/MOV+4/EVA+5%]\nA replica of the boots worn by officers in the Imperial Army." + ] + }, + { + "TYPE": "item", + "ID": 572, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a100000000000000000000000000000000b40000000000000000000000040000000000941100006317000000ffff", + "STRINGS": [ + "Accel Gear", + "[DEF+180/MOV+4]\nSpiked shoes designed for battle. Light and protective." + ] + }, + { + "TYPE": "item", + "ID": 573, + "UNK0": -3840, + "STRING": "SL", + "UNK1": "a100000000000000000000000000000000be000000000000000a000300050000000000701700006318000000ffff", + "STRINGS": [ + "Orion Boots", + "[DEF+190/MOV+5/SPD+3/EVA+10%/Men Only]\nBoots with a golden glow, worn by knights in the Middle Ages." + ] + }, + { + "TYPE": "item", + "ID": 574, + "UNK0": -3839, + "STRING": "SL", + "UNK1": "a100000000000000000000000000000000be0000000000000005000700050000000000701700006319000000ffff", + "STRINGS": [ + "Kaleido Boots", + "[DEF+190/MOV+5/SPD+7/EVA+5%/Women Only]\nBoots with a silver glow, worn by knights in the Middle Ages." + ] + }, + { + "TYPE": "item", + "ID": 575, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a100000000000000000000000000000000af00000000000000000000000f000000000088130000631a000000ffff", + "STRINGS": [ + "Strega-A1", + "[DEF+175/MOV+15]\nA made-to-order pair of Strega sneakers. For students." + ] + }, + { + "TYPE": "item", + "ID": 600, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a2000000009b0000000000000000000000000000000000000000000000000000000000580200006301000000ffff", + "STRINGS": [ + "Silver Earring", + "[Prevents Poison]\nA silver earring blessed with the power of the Goddess Aidios." + ] + }, + { + "TYPE": "item", + "ID": 601, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a2000000009c0000000000000000000000000000000000000000000000000000000000580200006302000000ffff", + "STRINGS": [ + "Coral Ring", + "[Prevents Seal]\nA ring decorated with beautiful deep-water coral." + ] + }, + { + "TYPE": "item", + "ID": 602, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a2000000009d0000000000000000000000000000000000000000000000000000000000580200006303000000ffff", + "STRINGS": [ + "Marble Ring", + "[Prevents Mute]\nAn eye-catching ring with a beautiful marble effect." + ] + }, + { + "TYPE": "item", + "ID": 603, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a2000000009e0000000000000000000000000000000000000000000000000000000000580200006304000000ffff", + "STRINGS": [ + "White Glasses", + "[Prevents Blind]\nGlasses that glow faintly, allowing you to see in the dark." + ] + }, + { + "TYPE": "item", + "ID": 604, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a2000000009f0000000000000000000000000000000000000000000000000000000000840300006305000000ffff", + "STRINGS": [ + "Black Bangle", + "[Prevents Sleep]\nA bangle made of leather that digs into your wrist." + ] + }, + { + "TYPE": "item", + "ID": 605, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a200000000a00000000000000000000000000000000000000000000000000000000000840300006306000000ffff", + "STRINGS": [ + "Cool Necklace", + "[Prevents Burn]\nA necklace set with water sepith." + ] + }, + { + "TYPE": "item", + "ID": 606, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a200000000a10000000000000000000000000000000000000000000000000000000000840300006307000000ffff", + "STRINGS": [ + "Lighter", + "[Prevents Freeze]\nAn amulet carried by mountain climbers to ward off the cold." + ] + }, + { + "TYPE": "item", + "ID": 607, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a200000000a20000000000000000000000000000000000000000000000000000000000840300006308000000ffff", + "STRINGS": [ + "Stone Brooch", + "[Prevents Petrify]\nA brooch set with an exquisite shining stone." + ] + }, + { + "TYPE": "item", + "ID": 608, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a200000000a30000000000000000000000000000000000000000000000000000000000b00400006309000000ffff", + "STRINGS": [ + "Citrus Bottle", + "[Prevents Faint]\nA bottle-shaped charm filled with an invigorating fragrance." + ] + }, + { + "TYPE": "item", + "ID": 609, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a200000000a40000000000000000000000000000000000000000000000000000000000b0040000630a000000ffff", + "STRINGS": [ + "Floral Bottle", + "[Prevents Confuse]\nA bottle-shaped charm filled with a soothing fragrance." + ] + }, + { + "TYPE": "item", + "ID": 610, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a200000000a50000000000000000000000000000000000000000000000000000000000d0070000630b000000ffff", + "STRINGS": [ + "Holy Chain", + "[Prevents Deathblows]\nA gold chain, blessed with sacred prayers." + ] + }, + { + "TYPE": "item", + "ID": 614, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a200000000980000000000000000000000000000000000000000000000000000000000204e0000630c000000ffff", + "STRINGS": [ + "Grail Locket", + "[Prevents all abnormal status (except K.O.)]\nAn accessory modeled on an artifact passed down in the church." + ] + }, + { + "TYPE": "item", + "ID": 615, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a2000000009b00000000000000000000000a000000000000000000000000000000000008070000630d000000ffff", + "STRINGS": [ + "Silver Chain", + "[DEF+10/Prevents Poison]\nA chain stitched bracelet blessed with the power of Aidios." + ] + }, + { + "TYPE": "item", + "ID": 616, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a2000000009c000000000000000000050000000000000000000000000000000000000008070000630e000000ffff", + "STRINGS": [ + "Coral Bracelet", + "[STR+5/Prevents Seal]\nA flamboyant bracelet set with numerous small corals." + ] + }, + { + "TYPE": "item", + "ID": 617, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a2000000009d000000000000000000000000000500000000000000000000000000000008070000630f000000ffff", + "STRINGS": [ + "Marble Bracelet", + "[ATS+5/Prevents Mute]\nA luxurious bracelet set with marble." + ] + }, + { + "TYPE": "item", + "ID": 618, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a2000000009e0000000000000000000000000000000000320000000000000000000000080700006310000000ffff", + "STRINGS": [ + "Luminous Glasses", + "[ACC+50%/Prevents Blind]\nSpecial glasses that allow the wearer to see even at night." + ] + }, + { + "TYPE": "item", + "ID": 619, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a2000000009f00000000a60000000000000000000000000000050000000000000000008c0a00006311000000ffff", + "STRINGS": [ + "Energy Bandana", + "[EVA+5%/Prevents Sleep/Nightmare]\nA bandana that energizes its wearer." + ] + }, + { + "TYPE": "item", + "ID": 620, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a200000000a0000000000000000000000000000a0000000000000000000000000000008c0a00006312000000ffff", + "STRINGS": [ + "Cooling Belt", + "[ATS+10/Prevents Burn]\nA belt that cools the body when worn." + ] + }, + { + "TYPE": "item", + "ID": 621, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a200000000a10000000000000000000a000000000000000000000000000000000000008c0a00006313000000ffff", + "STRINGS": [ + "Cozy Socks", + "[STR+10/Prevents Freeze]\nSocks that keep your feet warm and toasty." + ] + }, + { + "TYPE": "item", + "ID": 622, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a200000000a200000000000000000000000a0000000a000000000000000000000000008c0a00006314000000ffff", + "STRINGS": [ + "Soft Stole", + "[DEF+10/ADF+10/Prevents Petrify]\nA soft and comfortable stole." + ] + }, + { + "TYPE": "item", + "ID": 623, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a200000000a30000000000000000000f00000000000000000000000000000000000000100e00006315000000ffff", + "STRINGS": [ + "Orange Cape", + "[STR+15/Prevents Faint]\nA vivid orange colored cape." + ] + }, + { + "TYPE": "item", + "ID": 624, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a200000000a4000000000000000000000000000f000000000000000000000000000000100e00006316000000ffff", + "STRINGS": [ + "Prismatic Cape", + "[ATS+15/Prevents Confuse]\nA colorful cape that shines in seven different colors." + ] + }, + { + "TYPE": "item", + "ID": 625, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a200000000a50000000000000000000000000000000000000000000000000020030000701700006317000000ffff", + "STRINGS": [ + "Holy Sphere", + "[HP+800/Prevents Deathblows]\nA pure white ornament, blessed with sacred prayers." + ] + }, + { + "TYPE": "item", + "ID": 626, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a2000000009c000000009d000000000000000000000000000000000000000000000000b80b00006318000000ffff", + "STRINGS": [ + "Yellow Pendulum", + "[Prevents Seal/Mute]\nA pendulum-shaped accessory, decorated with earth sepith." + ] + }, + { + "TYPE": "item", + "ID": 627, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a200000000aa0000000000000000000000000000000000000000000000000000000000a00f00006319000000ffff", + "STRINGS": [ + "Blue Pendulum", + "[Prevents Poison/Blind/Burn]\nA pendulum-shaped accessory, decorated with water sepith." + ] + }, + { + "TYPE": "item", + "ID": 628, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a200000000ab0000000000000000000000000000000000000000000000000000000000a00f0000631a000000ffff", + "STRINGS": [ + "Red Pendulum", + "[Prevents Freeze/Petrify/Stat Down]\nA pendulum-shaped accessory, decorated with fire sepith." + ] + }, + { + "TYPE": "item", + "ID": 629, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a200000000ac000000000000000000000000000000000000000000000000000000000088130000631b000000ffff", + "STRINGS": [ + "Green Pendulum", + "[Prevents Sleep/Nightmare/Faint/Confuse]\nA pendulum-shaped accessory, decorated with wind sepith." + ] + }, + { + "TYPE": "item", + "ID": 630, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a2000000009c000000009d000000000000320000003200000000000500000000000000c05d0000631c000000ffff", + "STRINGS": [ + "Deep Ocher", + "[DEF+50/ADF+50/SPD+5/Prevents Seal/Mute]\nA gem made from high purity amberl. Emits an amber glow." + ] + }, + { + "TYPE": "item", + "ID": 631, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a200000000aa0000000000000000000000000032000000000000000000000000000000c05d0000631d000000ffff", + "STRINGS": [ + "Still Blue", + "[ATS+50/Prevents Poison/Blind/Burn]\nA gem made from high purity sapphirl. Emits a blue glow." + ] + }, + { + "TYPE": "item", + "ID": 632, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a200000000ab0000000000000000003200000000000000000000000000000000000000c05d0000631e000000ffff", + "STRINGS": [ + "Passionate Rouge", + "[STR+50/Prevents Freeze/Petrify/Stat Down]\nA gem made from high purity carnelia. Emits a red glow." + ] + }, + { + "TYPE": "item", + "ID": 633, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a200000000ac000000000000000000000000000000000032000a000500000000000000c05d0000631f000000ffff", + "STRINGS": [ + "Evergreen", + "[ACC+50%/EVA+10%/SPD+5/Prevents Sleep/Faint/Nightmare/Confuse]\nA gem made from high purity esmelas. Emits a green glow." + ] + }, + { + "TYPE": "item", + "ID": 634, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a200000000ad0000000000000000000000000000000000000000000f0000000000000080bb00006320000000ffff", + "STRINGS": [ + "Abyss Shadow", + "[SPD+15/Prevents Deathblows/Delay/Vanish]\nA gem made from jet-black nohval. Glows faintly." + ] + }, + { + "TYPE": "item", + "ID": 635, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a200000000d20a00000000000000000000000000000000000000000000000000000000e80300006321000000ffff", + "STRINGS": [ + "Proxy Puppet", + "[Prevents K.O.]\nRevives on K.O. with 10% HP once, but breaks afterwards." + ] + }, + { + "TYPE": "item", + "ID": 639, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a200000000d03200000000000000000500000000000000000000000000000000000000881300006322000000ffff", + "STRINGS": [ + "Gladiator Headband", + "[STR+5/CP Up]\nA motivating headband. CP recovery rate rises in battle." + ] + }, + { + "TYPE": "item", + "ID": 640, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a200000000d10300000000000000000500050000000000000000000000000000000000102700006323000000ffff", + "STRINGS": [ + "Gladiator Belt", + "[STR+5/DEF+5/Auto-CP Up]\nA motivating belt. CP automatically recovers in battle." + ] + }, + { + "TYPE": "item", + "ID": 636, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a200000000000000000000000000000000000000000000190000000300000064000000e80300006324000000ffff", + "STRINGS": [ + "Swordtail Badge", + "[HP+100/ACC+25%/SPD+3]\nA badge with a picture of a swordtail on it. Part of a set." + ] + }, + { + "TYPE": "item", + "ID": 637, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a2000000000000000000000000000000000a00000000003200000000000000fa000000b80b00006325000000ffff", + "STRINGS": [ + "Carp Badge", + "[HP+250/ACC+50%/DEF+10]\nA badge with a picture of a carp on it. Part of a set." + ] + }, + { + "TYPE": "item", + "ID": 638, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a200000000000000000000000000000f000000000000006400000000000000f4010000881300006326000000ffff", + "STRINGS": [ + "Salmon Badge", + "[HP+500/ACC+100%/STR+15]\nA badge with a picture of a salmon on it. Part of a set." + ] + }, + { + "TYPE": "item", + "ID": 641, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a200000000000000000000000000000000000003000300000000000000000000000000200300006327000000ffff", + "STRINGS": [ + "Ceramic Ring", + "[ATS+3/ADF+3]\nA ring made from ceramic. Pretty but fragile." + ] + }, + { + "TYPE": "item", + "ID": 645, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a2000000009e0000000000000000000000000000000000190000000000000000000000200300006328000000ffff", + "STRINGS": [ + "ZCF Light", + "[ACC+25%/Prevents Blind]\nA small accessory light made at Zeiss Central Factory." + ] + }, + { + "TYPE": "item", + "ID": 646, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a200000000000000000000000000000000000000000000000000000200000000001400e80300006329000000ffff", + "STRINGS": [ + "Frog Strap", + "[EP+20/SPD+2]\nA strap with a figurine of a frog attached. Part of a set." + ] + }, + { + "TYPE": "item", + "ID": 647, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a2000000000000000000000000000002000000000000000000000000000000c8000000dc050000632a000000ffff", + "STRINGS": [ + "Puppy Strap", + "[HP+200/STR+2]\nA strap with a figurine of a puppy attached. Part of a set." + ] + }, + { + "TYPE": "item", + "ID": 648, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a200000000000000000000000000000000000005000000000000000000000000003200d0070000632b000000ffff", + "STRINGS": [ + "Kitty Strap", + "[EP+50/ATS+5]\nA strap with a figurine of a kitten attached. Part of a set." + ] + }, + { + "TYPE": "item", + "ID": 650, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a200000000000000000000000000000400000000000000000000000200000000000000dc050000632c000000ffff", + "STRINGS": [ + "Horseman's Cap", + "[STR+4/SPD+2]\nA luxuriously designed cap for refined horse riders." + ] + }, + { + "TYPE": "item", + "ID": 651, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a200000000000000000000000000000500000005000000000000000000000000000000d0070000632d000000ffff", + "STRINGS": [ + "Highland Cloth", + "[STR+5/ATS+5]\nCloth woven in the nomadic settlement. Multipurpose." + ] + }, + { + "TYPE": "item", + "ID": 652, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a200000000000000000000000000000000000005000000000000000300000000000000b80b0000632e000000ffff", + "STRINGS": [ + "Silver Hourglass", + "[ATS+5/SPD+3]\nA small silver charm. Modeled after an hourglass." + ] + }, + { + "TYPE": "item", + "ID": 653, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a200000000000000000000000000000700000000000000000000000300000000000000a00f0000632f000000ffff", + "STRINGS": [ + "Golden Hourglass", + "[STR+7/SPD+3]\nA small gold charm. Modeled after an hourglass." + ] + }, + { + "TYPE": "item", + "ID": 654, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a200000000a4000000000000000000000000000a000a00000000000200000000000000a00f00006330000000ffff", + "STRINGS": [ + "Fairy Brooch", + "[ATS+10/ADF+10/SPD+2/Prevents Confuse]\nA charming brooch with a design resembling a fairy's feathers." + ] + }, + { + "TYPE": "item", + "ID": 662, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a2000000009f00000000a600000000000000000a000a00000000000200000000000000881300006331000000ffff", + "STRINGS": [ + "Fairy Necklace", + "[ATS+10/ADF+10/SPD+2/Prevents Sleep/Nightmare]\nA cute necklace with a design resembling a fairy's feathers." + ] + }, + { + "TYPE": "item", + "ID": 655, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a2000000009e0000000000000000000000000000000000000000000000000000006400881300006332000000ffff", + "STRINGS": [ + "Mechanic's Goggles", + "[EP+100/Prevents Blind]\nGoggles that allow mechanics to focus on their work." + ] + }, + { + "TYPE": "item", + "ID": 656, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a200000000000000000000000000000700070007000700000000000000000000000000881300006333000000ffff", + "STRINGS": [ + "Reinford Medal", + "[STR+7/DEF+7/ATS+7/ADF+7]\nA memorial medal with the Reinford Company logo carved on it." + ] + }, + { + "TYPE": "item", + "ID": 643, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a200000000000000000000000000000000050000000500000000000000000064000000dc0500006334000000ffff", + "STRINGS": [ + "Pikkard Plush", + "[HP+100/DEF/ADF+5]\nA plush of a strange yet lovable creature. Smells oddly sweet." + ] + }, + { + "TYPE": "item", + "ID": 644, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a200000000000000000000000000000000000000000000000005000000000000000000d00700006335000000ffff", + "STRINGS": [ + "Kobold Plush", + "[EVA+5%]\nA plush of a strange yet lovable creature." + ] + }, + { + "TYPE": "item", + "ID": 642, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a200000000000000000000000000000000050000000000000000000200000000000000e80300006336000000ffff", + "STRINGS": [ + "Sitting Mishy", + "[DEF+5/SPD+2]\nA strap featuring Mishy. Part of a set." + ] + }, + { + "TYPE": "item", + "ID": 649, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a200000000000000000000000000000000000000000a00000000000200000000000000e80300006337000000ffff", + "STRINGS": [ + "Napping Mishy", + "[ADF+10/SPD+2]\nA strap featuring Mishy. Part of a set." + ] + }, + { + "TYPE": "item", + "ID": 661, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a200000000000000000000000000000000000000000000000000000500050000000000c40900006338000000ffff", + "STRINGS": [ + "Running Mishy", + "[SPD+5/MOV+5]\nA strap featuring Mishy. Part of a set." + ] + }, + { + "TYPE": "item", + "ID": 611, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a200000000a30000000000000000000500000000000000000000000000000000000000e80300006339000000ffff", + "STRINGS": [ + "Medal of Fortitude", + "[STR+5/Prevents Faint]\nA medal given to high-achieving students. Raises motivation." + ] + }, + { + "TYPE": "item", + "ID": 612, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a200000000a70000000000000000000000000000000000000000000300000000000000d0070000633a000000ffff", + "STRINGS": [ + "Medal of Discipline", + "[SPD+3/Prevents Delay]\nA medal given to high-achieving students. Focuses wearer." + ] + }, + { + "TYPE": "item", + "ID": 613, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a200000000990000000000000000000a0000000a000000000000000000000000000000b80b0000633b000000ffff", + "STRINGS": [ + "Medal of Vigor", + "[STR+10/ATS+10/Prevents Stat Down]\nA medal given to high-achieving students. Energizes wearer." + ] + }, + { + "TYPE": "item", + "ID": 663, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a200000000a900000000a7000000004b004b004b004b0000000000000000000000000080380100633c000000ffff", + "STRINGS": [ + "Medal of Dawn", + "[STR/ATS/DEF/ADF+75/Prevents Delay/Abnormal status/Stat Down]\nAn esteemed medal given to students who reach Rank A0." + ] + }, + { + "TYPE": "item", + "ID": 657, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a200000000000000000000000000001900000000000000000000000500000000000000204e0000633d000000ffff", + "STRINGS": [ + "Medal of Valor", + "[STR+25/SPD+5]\nOne of the four Lionheart Medals. Given by Instructor Makarov." + ] + }, + { + "TYPE": "item", + "ID": 658, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a2000000000000000000000000000000001900000019000000000000000000e8030000204e0000633e000000ffff", + "STRINGS": [ + "Medal of Friendship", + "[HP+1000/DEF+25/ADF+25]\nOne of the four Lionheart Medals. Given by Instructor Mary." + ] + }, + { + "TYPE": "item", + "ID": 659, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a200000000000000000000000000000000000019000000000000000000000000006400204e0000633f000000ffff", + "STRINGS": [ + "Medal of Compassion", + "[EP+100/ATS+25]\nOne of the four Lionheart Medals. Given by Instructor Beatrix." + ] + }, + { + "TYPE": "item", + "ID": 660, + "UNK0": -3, + "STRING": "SL", + "UNK1": "a200000000000000000000000000003200000032000000000000000000000000000000307500006340000000ffff", + "STRINGS": [ + "Medal of Heroism", + "[STR+50/ATS+50]\nThe most revered Lionheart Medal. Given by Principal Vandyck." + ] + }, + { + "TYPE": "item", + "ID": 800, + "UNK0": -3837, + "STRING": "0", + "UNK1": "a300000000000000000000000000000000000000000000000000000000000000000000000000006301000000ffff", + "STRINGS": [ + "Class VII Uniform", + "The distinctive red uniform supplied to Class VII." + ] + }, + { + "TYPE": "item", + "ID": 801, + "UNK0": -3836, + "STRING": "0", + "UNK1": "a300000000000000000000000000000000000000000000000000000000000000000000000000006302000000ffff", + "STRINGS": [ + "Thors Summer Uniform", + "Thors Military Academy's summer uniform. Students are free to\nmake tweaks and adjustments to it." + ] + }, + { + "TYPE": "item", + "ID": 802, + "UNK0": -3836, + "STRING": "0", + "UNK1": "a300000000000000000000000000000000000000000000000000000000000000000000000000006303000000ffff", + "STRINGS": [ + "Academy Swimsuit", + "A standard swimsuit worn during swimming lessons." + ] + }, + { + "TYPE": "item", + "ID": 803, + "UNK0": -3837, + "STRING": "0", + "UNK1": "a300000000000000000000000000000000000000000000000000000000000000000000000000006304000000ffff", + "STRINGS": [ + "Stage Outfit", + "A fancy outfit worn during Class VII's festival concert." + ] + }, + { + "TYPE": "item", + "ID": 804, + "UNK0": -3835, + "STRING": "0", + "UNK1": "a300000000000000000000000000000000000000000000000000000000000000000000000000006305000000ffff", + "STRINGS": [ + "Class VII Uniform", + "The distinctive red uniform supplied to Class VII." + ] + }, + { + "TYPE": "item", + "ID": 805, + "UNK0": 0, + "STRING": "0", + "UNK1": "a300000000000000000000000000000000000000000000000000000000000000000000000000006306000000ffff", + "STRINGS": [ + "Rean - Awakened (Dev Use)", + "Rean - Awakened (Dev Use)" + ] + }, + { + "TYPE": "item", + "ID": 806, + "UNK0": 0, + "STRING": "0", + "UNK1": "a300000000000000000000000000000000000000000000000000000000000000000000000000006307000000ffff", + "STRINGS": [ + "Rean - Long Sleeves (Dev Use)", + "Rean - Long Sleeves (Dev Use)" + ] + }, + { + "TYPE": "item", + "ID": 807, + "UNK0": 0, + "STRING": "0", + "UNK1": "a300000000000000000000000000000000000000000000000000000000000000000000000000006308000000ffff", + "STRINGS": [ + "Rean's Pajamas", + "Not just for nights anymore." + ] + }, + { + "TYPE": "item", + "ID": 808, + "UNK0": 0, + "STRING": "0", + "UNK1": "a300000000000000000000000000000000000000000000000000000000000000000000000000006309000000ffff", + "STRINGS": [ + "Rean's Shirt", + "A shirt Rean likes to wear." + ] + }, + { + "TYPE": "item", + "ID": 809, + "UNK0": 0, + "STRING": "0", + "UNK1": "a30000000000000000000000000000000000000000000000000000000000000000000000000000630a000000ffff", + "STRINGS": [ + "Rean's Sleeveless Shirt", + "A sleeveless shirt Rean likes to wear." + ] + }, + { + "TYPE": "item", + "ID": 820, + "UNK0": 1, + "STRING": "0", + "UNK1": "a30000000000000000000000000000000000000000000000000000000000000000000000000000630b000000ffff", + "STRINGS": [ + "Alisa's Lacrosse Wear", + "The uniform worn by the Lacrosse Club." + ] + }, + { + "TYPE": "item", + "ID": 972, + "UNK0": 5, + "STRING": "0", + "UNK1": "a30000000000000000000000000000000000000000000000000000000000000000000000000000630c000000ffff", + "STRINGS": [ + "Emma's Pajamas", + "Book and herbal tea not included." + ] + }, + { + "TYPE": "item", + "ID": 997, + "UNK0": 6, + "STRING": "0", + "UNK1": "a30000000000000000000000000000000000000000000000000000000000000000000000000000630d000000ffff", + "STRINGS": [ + "Jusis' Pajamas", + "Only the finest in noble sleepwear." + ] + }, + { + "TYPE": "item", + "ID": 925, + "UNK0": 8, + "STRING": "0", + "UNK1": "a30000000000000000000000000000000000000000000000000000000000000000000000000000630e000000ffff", + "STRINGS": [ + "Gaius' Traditional Garb", + "Traditional clothing from Nord." + ] + }, + { + "TYPE": "item", + "ID": 940, + "UNK0": 9, + "STRING": "0", + "UNK1": "a30000000000000000000000000000000000000000000000000000000000000000000000000000630f000000ffff", + "STRINGS": [ + "Special Ops Uniform", + "Worn by Millium on SUPER SECRET missions and stuff." + ] + }, + { + "TYPE": "item", + "ID": 955, + "UNK0": 10, + "STRING": "0", + "UNK1": "a300000000000000000000000000000000000000000000000000000000000000000000000000006310000000ffff", + "STRINGS": [ + "Thors Standard Uniform", + "Crow's standard-issue Thors uniform." + ] + }, + { + "TYPE": "item", + "ID": 967, + "UNK0": 11, + "STRING": "0", + "UNK1": "a300000000000000000000000000000000000000000000000000000000000000000000000000006311000000ffff", + "STRINGS": [ + "Sara's Swimwear ", + "Sara's special instructor swimwear. A+." + ] + }, + { + "TYPE": "item", + "ID": 815, + "UNK0": -3, + "STRING": "0", + "UNK1": "8000000000000000000000000000000000000000000000000000000000000000000000000000006300000000ffff", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 816, + "UNK0": -3, + "STRING": "0", + "UNK1": "8000000000000000000000000000000000000000000000000000000000000000000000000000006300000000ffff", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 817, + "UNK0": -3, + "STRING": "0", + "UNK1": "8000000000000000000000000000000000000000000000000000000000000000000000000000006300000000ffff", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 818, + "UNK0": -3, + "STRING": "0", + "UNK1": "8000000000000000000000000000000000000000000000000000000000000000000000000000006300000000ffff", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 830, + "UNK0": -3, + "STRING": "0", + "UNK1": "8000000000000000000000000000000000000000000000000000000000000000000000000000006300000000ffff", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 831, + "UNK0": -3, + "STRING": "0", + "UNK1": "8000000000000000000000000000000000000000000000000000000000000000000000000000006300000000ffff", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 832, + "UNK0": -3, + "STRING": "0", + "UNK1": "8000000000000000000000000000000000000000000000000000000000000000000000000000006300000000ffff", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 833, + "UNK0": -3, + "STRING": "0", + "UNK1": "8000000000000000000000000000000000000000000000000000000000000000000000000000006300000000ffff", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 845, + "UNK0": -3, + "STRING": "0", + "UNK1": "8000000000000000000000000000000000000000000000000000000000000000000000000000006300000000ffff", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 846, + "UNK0": -3, + "STRING": "0", + "UNK1": "8000000000000000000000000000000000000000000000000000000000000000000000000000006300000000ffff", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 847, + "UNK0": -3, + "STRING": "0", + "UNK1": "8000000000000000000000000000000000000000000000000000000000000000000000000000006300000000ffff", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 848, + "UNK0": -3, + "STRING": "0", + "UNK1": "8000000000000000000000000000000000000000000000000000000000000000000000000000006300000000ffff", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 860, + "UNK0": -3, + "STRING": "0", + "UNK1": "8000000000000000000000000000000000000000000000000000000000000000000000000000006300000000ffff", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 861, + "UNK0": -3, + "STRING": "0", + "UNK1": "8000000000000000000000000000000000000000000000000000000000000000000000000000006300000000ffff", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 862, + "UNK0": -3, + "STRING": "0", + "UNK1": "8000000000000000000000000000000000000000000000000000000000000000000000000000006300000000ffff", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 863, + "UNK0": -3, + "STRING": "0", + "UNK1": "8000000000000000000000000000000000000000000000000000000000000000000000000000006300000000ffff", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 975, + "UNK0": -3, + "STRING": "0", + "UNK1": "8000000000000000000000000000000000000000000000000000000000000000000000000000006300000000ffff", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 976, + "UNK0": -3, + "STRING": "0", + "UNK1": "8000000000000000000000000000000000000000000000000000000000000000000000000000006300000000ffff", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 977, + "UNK0": -3, + "STRING": "0", + "UNK1": "8000000000000000000000000000000000000000000000000000000000000000000000000000006300000000ffff", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 978, + "UNK0": -3, + "STRING": "0", + "UNK1": "8000000000000000000000000000000000000000000000000000000000000000000000000000006300000000ffff", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 990, + "UNK0": -3, + "STRING": "0", + "UNK1": "8000000000000000000000000000000000000000000000000000000000000000000000000000006300000000ffff", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 991, + "UNK0": -3, + "STRING": "0", + "UNK1": "8000000000000000000000000000000000000000000000000000000000000000000000000000006300000000ffff", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 992, + "UNK0": -3, + "STRING": "0", + "UNK1": "8000000000000000000000000000000000000000000000000000000000000000000000000000006300000000ffff", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 993, + "UNK0": -3, + "STRING": "0", + "UNK1": "8000000000000000000000000000000000000000000000000000000000000000000000000000006300000000ffff", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 905, + "UNK0": -3, + "STRING": "0", + "UNK1": "8000000000000000000000000000000000000000000000000000000000000000000000000000006300000000ffff", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 906, + "UNK0": -3, + "STRING": "0", + "UNK1": "8000000000000000000000000000000000000000000000000000000000000000000000000000006300000000ffff", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 907, + "UNK0": -3, + "STRING": "0", + "UNK1": "8000000000000000000000000000000000000000000000000000000000000000000000000000006300000000ffff", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 908, + "UNK0": -3, + "STRING": "0", + "UNK1": "8000000000000000000000000000000000000000000000000000000000000000000000000000006300000000ffff", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 920, + "UNK0": -3, + "STRING": "0", + "UNK1": "8000000000000000000000000000000000000000000000000000000000000000000000000000006300000000ffff", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 921, + "UNK0": -3, + "STRING": "0", + "UNK1": "8000000000000000000000000000000000000000000000000000000000000000000000000000006300000000ffff", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 922, + "UNK0": -3, + "STRING": "0", + "UNK1": "8000000000000000000000000000000000000000000000000000000000000000000000000000006300000000ffff", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 923, + "UNK0": -3, + "STRING": "0", + "UNK1": "8000000000000000000000000000000000000000000000000000000000000000000000000000006300000000ffff", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 935, + "UNK0": -3, + "STRING": "0", + "UNK1": "8000000000000000000000000000000000000000000000000000000000000000000000000000006300000000ffff", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 936, + "UNK0": -3, + "STRING": "0", + "UNK1": "8000000000000000000000000000000000000000000000000000000000000000000000000000006300000000ffff", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 937, + "UNK0": -3, + "STRING": "0", + "UNK1": "8000000000000000000000000000000000000000000000000000000000000000000000000000006300000000ffff", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 938, + "UNK0": -3, + "STRING": "0", + "UNK1": "8000000000000000000000000000000000000000000000000000000000000000000000000000006300000000ffff", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 950, + "UNK0": -3, + "STRING": "0", + "UNK1": "8000000000000000000000000000000000000000000000000000000000000000000000000000006300000000ffff", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 951, + "UNK0": -3, + "STRING": "0", + "UNK1": "8000000000000000000000000000000000000000000000000000000000000000000000000000006300000000ffff", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 953, + "UNK0": -3, + "STRING": "0", + "UNK1": "8000000000000000000000000000000000000000000000000000000000000000000000000000006300000000ffff", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 2400, + "UNK0": 0, + "STRING": "0", + "UNK1": "a3000000000000000000000000000000000000000000000000000000000000000000000000000063e80300000000", + "STRINGS": [ + "Rean's Casual Clothes", + "A set of casual clothes just right for Rean." + ] + }, + { + "TYPE": "item", + "ID": 2401, + "UNK0": 1, + "STRING": "0", + "UNK1": "a3000000000000000000000000000000000000000000000000000000000000000000000000000063e90300000100", + "STRINGS": [ + "Alisa's Casual Clothes", + "A set of casual clothes just right for Alisa." + ] + }, + { + "TYPE": "item", + "ID": 2402, + "UNK0": 2, + "STRING": "0", + "UNK1": "a3000000000000000000000000000000000000000000000000000000000000000000000000000063ea0300003200", + "STRINGS": [ + "Elliot's Casual Clothes", + "A set of casual clothes just right for Elliot." + ] + }, + { + "TYPE": "item", + "ID": 2403, + "UNK0": 3, + "STRING": "0", + "UNK1": "a3000000000000000000000000000000000000000000000000000000000000000000000000000063eb0300003300", + "STRINGS": [ + "Laura's Casual Clothes", + "A set of casual clothes just right for Laura." + ] + }, + { + "TYPE": "item", + "ID": 2404, + "UNK0": 4, + "STRING": "0", + "UNK1": "a3000000000000000000000000000000000000000000000000000000000000000000000000000063ec0300003400", + "STRINGS": [ + "Machias' Casual Clothes", + "A set of casual clothes just right for Machias." + ] + }, + { + "TYPE": "item", + "ID": 2405, + "UNK0": 5, + "STRING": "0", + "UNK1": "a3000000000000000000000000000000000000000000000000000000000000000000000000000063ed0300003500", + "STRINGS": [ + "Emma's Casual Clothes", + "A set of casual clothes just right for Emma." + ] + }, + { + "TYPE": "item", + "ID": 2406, + "UNK0": 6, + "STRING": "0", + "UNK1": "a3000000000000000000000000000000000000000000000000000000000000000000000000000063ee0300003600", + "STRINGS": [ + "Jusis' Casual Clothes", + "A set of casual clothes just right for Jusis." + ] + }, + { + "TYPE": "item", + "ID": 2407, + "UNK0": 7, + "STRING": "0", + "UNK1": "a3000000000000000000000000000000000000000000000000000000000000000000000000000063ef0300003700", + "STRINGS": [ + "Fie's Casual Clothes", + "A set of casual clothes just right for Fie." + ] + }, + { + "TYPE": "item", + "ID": 2408, + "UNK0": 8, + "STRING": "0", + "UNK1": "a3000000000000000000000000000000000000000000000000000000000000000000000000000063f00300003800", + "STRINGS": [ + "Gaius' Casual Clothes", + "A set of casual clothes just right for Gaius." + ] + }, + { + "TYPE": "item", + "ID": 2409, + "UNK0": 9, + "STRING": "0", + "UNK1": "a3000000000000000000000000000000000000000000000000000000000000000000000000000063f10300003900", + "STRINGS": [ + "Millium's Casual Clothes", + "A set of casual clothes just right for Millium." + ] + }, + { + "TYPE": "item", + "ID": 2410, + "UNK0": 10, + "STRING": "0", + "UNK1": "a3000000000000000000000000000000000000000000000000000000000000000000000000000063f20300003a00", + "STRINGS": [ + "Crow's Casual Clothes", + "A set of casual clothes just right for Crow." + ] + }, + { + "TYPE": "item", + "ID": 2455, + "UNK0": -3837, + "STRING": "0", + "UNK1": "a3000000000000000000000000000000000000000000000000000000000000000000000000000063dc0500005f1b", + "STRINGS": [ + "Jenis Uniform", + "A uniform in the colors of Jenis Royal Academy." + ] + }, + { + "TYPE": "item", + "ID": 2444, + "UNK0": -3837, + "STRING": "0", + "UNK1": "a3000000000000000000000000000000000000000000000000000000000000000000000000000063dd0500005e1b", + "STRINGS": [ + "Black Uniform", + "A classy black variant uniform. Goes with everything." + ] + }, + { + "TYPE": "item", + "ID": 2422, + "UNK0": -3837, + "STRING": "0", + "UNK1": "a3000000000000000000000000000000000000000000000000000000000000000000000000000063de0500005a1b", + "STRINGS": [ + "Mishy Paradise Uniform", + "A uniform for those who need more Mishy in their lives." + ] + }, + { + "TYPE": "item", + "ID": 2433, + "UNK0": -3837, + "STRING": "0", + "UNK1": "a3000000000000000000000000000000000000000000000000000000000000000000000000000063df0500005d1b", + "STRINGS": [ + "Lawson Uniform", + "A uniform for those who embrace convenience." + ] + }, + { + "TYPE": "item", + "ID": 2411, + "UNK0": -3837, + "STRING": "0", + "UNK1": "a3000000000000000000000000000000000000000000000000000000000000000000000000000063e0050000581b", + "STRINGS": [ + "Reverse Uniform", + "A variant uniform with a special color scheme." + ] + }, + { + "TYPE": "item", + "ID": 2412, + "UNK0": -3, + "STRING": "0", + "UNK1": "8000000000000000000000000000000000000000000000000000000000000000000000000000006300000000581b", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 2413, + "UNK0": -3, + "STRING": "0", + "UNK1": "8000000000000000000000000000000000000000000000000000000000000000000000000000006300000000581b", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 2414, + "UNK0": -3, + "STRING": "0", + "UNK1": "8000000000000000000000000000000000000000000000000000000000000000000000000000006300000000581b", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 2415, + "UNK0": -3, + "STRING": "0", + "UNK1": "8000000000000000000000000000000000000000000000000000000000000000000000000000006300000000581b", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 2416, + "UNK0": -3, + "STRING": "0", + "UNK1": "8000000000000000000000000000000000000000000000000000000000000000000000000000006300000000581b", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 2417, + "UNK0": -3, + "STRING": "0", + "UNK1": "8000000000000000000000000000000000000000000000000000000000000000000000000000006300000000581b", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 2418, + "UNK0": -3, + "STRING": "0", + "UNK1": "8000000000000000000000000000000000000000000000000000000000000000000000000000006300000000581b", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 2419, + "UNK0": -3, + "STRING": "0", + "UNK1": "8000000000000000000000000000000000000000000000000000000000000000000000000000006300000000581b", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 2420, + "UNK0": -3, + "STRING": "0", + "UNK1": "8000000000000000000000000000000000000000000000000000000000000000000000000000006300000000581b", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 2421, + "UNK0": -3, + "STRING": "0", + "UNK1": "8000000000000000000000000000000000000000000000000000000000000000000000000000006300000000581b", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 2423, + "UNK0": -3, + "STRING": "0", + "UNK1": "80000000000000000000000000000000000000000000000000000000000000000000000000000063000000005a1b", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 2424, + "UNK0": -3, + "STRING": "0", + "UNK1": "80000000000000000000000000000000000000000000000000000000000000000000000000000063000000005a1b", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 2425, + "UNK0": -3, + "STRING": "0", + "UNK1": "80000000000000000000000000000000000000000000000000000000000000000000000000000063000000005a1b", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 2426, + "UNK0": -3, + "STRING": "0", + "UNK1": "80000000000000000000000000000000000000000000000000000000000000000000000000000063000000005a1b", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 2427, + "UNK0": -3, + "STRING": "0", + "UNK1": "80000000000000000000000000000000000000000000000000000000000000000000000000000063000000005a1b", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 2428, + "UNK0": -3, + "STRING": "0", + "UNK1": "80000000000000000000000000000000000000000000000000000000000000000000000000000063000000005a1b", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 2429, + "UNK0": -3, + "STRING": "0", + "UNK1": "80000000000000000000000000000000000000000000000000000000000000000000000000000063000000005a1b", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 2430, + "UNK0": -3, + "STRING": "0", + "UNK1": "80000000000000000000000000000000000000000000000000000000000000000000000000000063000000005a1b", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 2431, + "UNK0": -3, + "STRING": "0", + "UNK1": "80000000000000000000000000000000000000000000000000000000000000000000000000000063000000005a1b", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 2432, + "UNK0": -3, + "STRING": "0", + "UNK1": "80000000000000000000000000000000000000000000000000000000000000000000000000000063000000005a1b", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 2434, + "UNK0": -3, + "STRING": "0", + "UNK1": "80000000000000000000000000000000000000000000000000000000000000000000000000000063000000005d1b", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 2435, + "UNK0": -3, + "STRING": "0", + "UNK1": "80000000000000000000000000000000000000000000000000000000000000000000000000000063000000005d1b", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 2436, + "UNK0": -3, + "STRING": "0", + "UNK1": "80000000000000000000000000000000000000000000000000000000000000000000000000000063000000005d1b", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 2437, + "UNK0": -3, + "STRING": "0", + "UNK1": "80000000000000000000000000000000000000000000000000000000000000000000000000000063000000005d1b", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 2438, + "UNK0": -3, + "STRING": "0", + "UNK1": "80000000000000000000000000000000000000000000000000000000000000000000000000000063000000005d1b", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 2439, + "UNK0": -3, + "STRING": "0", + "UNK1": "80000000000000000000000000000000000000000000000000000000000000000000000000000063000000005d1b", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 2440, + "UNK0": -3, + "STRING": "0", + "UNK1": "80000000000000000000000000000000000000000000000000000000000000000000000000000063000000005d1b", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 2441, + "UNK0": -3, + "STRING": "0", + "UNK1": "80000000000000000000000000000000000000000000000000000000000000000000000000000063000000005d1b", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 2442, + "UNK0": -3, + "STRING": "0", + "UNK1": "80000000000000000000000000000000000000000000000000000000000000000000000000000063000000005d1b", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 2443, + "UNK0": -3, + "STRING": "0", + "UNK1": "80000000000000000000000000000000000000000000000000000000000000000000000000000063000000005d1b", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 2445, + "UNK0": -3, + "STRING": "0", + "UNK1": "80000000000000000000000000000000000000000000000000000000000000000000000000000063000000005e1b", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 2446, + "UNK0": -3, + "STRING": "0", + "UNK1": "80000000000000000000000000000000000000000000000000000000000000000000000000000063000000005e1b", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 2447, + "UNK0": -3, + "STRING": "0", + "UNK1": "80000000000000000000000000000000000000000000000000000000000000000000000000000063000000005e1b", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 2448, + "UNK0": -3, + "STRING": "0", + "UNK1": "80000000000000000000000000000000000000000000000000000000000000000000000000000063000000005e1b", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 2449, + "UNK0": -3, + "STRING": "0", + "UNK1": "80000000000000000000000000000000000000000000000000000000000000000000000000000063000000005e1b", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 2450, + "UNK0": -3, + "STRING": "0", + "UNK1": "80000000000000000000000000000000000000000000000000000000000000000000000000000063000000005e1b", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 2451, + "UNK0": -3, + "STRING": "0", + "UNK1": "80000000000000000000000000000000000000000000000000000000000000000000000000000063000000005e1b", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 2452, + "UNK0": -3, + "STRING": "0", + "UNK1": "80000000000000000000000000000000000000000000000000000000000000000000000000000063000000005e1b", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 2453, + "UNK0": -3, + "STRING": "0", + "UNK1": "80000000000000000000000000000000000000000000000000000000000000000000000000000063000000005e1b", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 2454, + "UNK0": -3, + "STRING": "0", + "UNK1": "80000000000000000000000000000000000000000000000000000000000000000000000000000063000000005e1b", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 2456, + "UNK0": -3, + "STRING": "0", + "UNK1": "80000000000000000000000000000000000000000000000000000000000000000000000000000063000000005f1b", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 2457, + "UNK0": -3, + "STRING": "0", + "UNK1": "80000000000000000000000000000000000000000000000000000000000000000000000000000063000000005f1b", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 2458, + "UNK0": -3, + "STRING": "0", + "UNK1": "80000000000000000000000000000000000000000000000000000000000000000000000000000063000000005f1b", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 2459, + "UNK0": -3, + "STRING": "0", + "UNK1": "80000000000000000000000000000000000000000000000000000000000000000000000000000063000000005f1b", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 2460, + "UNK0": -3, + "STRING": "0", + "UNK1": "80000000000000000000000000000000000000000000000000000000000000000000000000000063000000005f1b", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 2461, + "UNK0": -3, + "STRING": "0", + "UNK1": "80000000000000000000000000000000000000000000000000000000000000000000000000000063000000005f1b", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 2462, + "UNK0": -3, + "STRING": "0", + "UNK1": "80000000000000000000000000000000000000000000000000000000000000000000000000000063000000005f1b", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 2463, + "UNK0": -3, + "STRING": "0", + "UNK1": "80000000000000000000000000000000000000000000000000000000000000000000000000000063000000005f1b", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 2464, + "UNK0": -3, + "STRING": "0", + "UNK1": "80000000000000000000000000000000000000000000000000000000000000000000000000000063000000005f1b", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 2465, + "UNK0": -3, + "STRING": "0", + "UNK1": "80000000000000000000000000000000000000000000000000000000000000000000000000000063000000005f1b", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 2600, + "UNK0": -3, + "STRING": "0", + "UNK1": "a4000000000000000000000000000000000000000000000000000000000000000000000000000063640000001600", + "STRINGS": [ + "Ride-Along Mishy", + "Need an adventuring buddy? Let Mishy come along!" + ] + }, + { + "TYPE": "item", + "ID": 2601, + "UNK0": -3, + "STRING": "0", + "UNK1": "a4000000000000000000000000000000000000000000000000000000000000000000000000000063650000001700", + "STRINGS": [ + "Ride-Along Noi", + "Need an adventuring buddy? Let Noi come along!" + ] + }, + { + "TYPE": "item", + "ID": 2602, + "UNK0": -3, + "STRING": "0", + "UNK1": "a4000000000000000000000000000000000000000000000000000000000000000000000000000063660000001800", + "STRINGS": [ + "Bunny Ears", + "Cute ears you can wear to embrace true hoppiness." + ] + }, + { + "TYPE": "item", + "ID": 2603, + "UNK0": -3, + "STRING": "0", + "UNK1": "a400000000000000000000000000000000000000000000000000000000000000000000000000006367000000611b", + "STRINGS": [ + "Ride-Along Toro", + "Need an adventuring buddy? Let Toro come along!" + ] + }, + { + "TYPE": "item", + "ID": 2604, + "UNK0": -3, + "STRING": "0", + "UNK1": "a400000000000000000000000000000000000000000000000000000000000000000000000000006368000000621b", + "STRINGS": [ + "Ride-Along Kuro", + "Need an adventuring buddy? Let Kuro come along!" + ] + }, + { + "TYPE": "item", + "ID": 980, + "UNK0": -3, + "STRING": "L", + "UNK1": "a400000000000000000000000000000000000000000000000000000000000000000000000000006300000000ffff", + "STRINGS": [ + "Kitty Ears", + "Cute ears you can wear to embody feline grace...or laziness." + ] + }, + { + "TYPE": "item", + "ID": 981, + "UNK0": -3, + "STRING": "L", + "UNK1": "a400000000000000000000000000000000000000000000000000000000000000000000000000006301000000ffff", + "STRINGS": [ + "Ride-Along Bear", + "Need an adventuring buddy? Let this friendly bear come along!" + ] + }, + { + "TYPE": "item", + "ID": 982, + "UNK0": -3, + "STRING": "L", + "UNK1": "a400000000000000000000000000000000000000000000000000000000000000000000000000006302000000ffff", + "STRINGS": [ + "Ride-Along Bunny", + "Need an adventuring buddy? Let this friendly bunny come along!" + ] + }, + { + "TYPE": "item", + "ID": 983, + "UNK0": -3, + "STRING": "L", + "UNK1": "a400000000000000000000000000000000000000000000000000000000000000000000000000006303000000ffff", + "STRINGS": [ + "Student Council Band", + "An armband worn by members of the Student Council." + ] + }, + { + "TYPE": "item", + "ID": 2000, + "UNK0": -3, + "STRING": "0", + "UNK1": "ab03000000000000000000000000000000000000000000000000000000000000000000000000000109000000ffff", + "STRINGS": [ + "Force", + "Fire elemental master quartz. \nKilling enemies restores CP." + ] + }, + { + "TYPE": "item", + "ID": 2001, + "UNK0": -3, + "STRING": "0", + "UNK1": "ab02000000000000000000000000000000000000000000000000000000000000000000000000000105000000ffff", + "STRINGS": [ + "Canon", + "Water elemental master quartz. \nIncreases potency of healing arts." + ] + }, + { + "TYPE": "item", + "ID": 2002, + "UNK0": -3, + "STRING": "0", + "UNK1": "ab0400000000000000000000000000000000000000000000000000000000000000000000000000010d000000ffff", + "STRINGS": [ + "Falco", + "Wind elemental master quartz. \nGain insight status." + ] + }, + { + "TYPE": "item", + "ID": 2003, + "UNK0": -3, + "STRING": "0", + "UNK1": "ab06000000000000000000000000000000000000000000000000000000000000000000000000000115000000ffff", + "STRINGS": [ + "Angel", + "Space elemental master quartz.\nAutomatically recover from K.O." + ] + }, + { + "TYPE": "item", + "ID": 2004, + "UNK0": -3, + "STRING": "0", + "UNK1": "ab0300000000000000000000000000000000000000000000000000000000000000000000000000010a000000ffff", + "STRINGS": [ + "Brave", + "Fire elemental master quartz.\nObtain a significant STR bonus." + ] + }, + { + "TYPE": "item", + "ID": 2005, + "UNK0": -3, + "STRING": "0", + "UNK1": "ab02000000000000000000000000000000000000000000000000000000000000000000d00700000106000000ffff", + "STRINGS": [ + "Scepter", + "Water elemental master quartz.\nObtain sepith from attacks/crafts." + ] + }, + { + "TYPE": "item", + "ID": 2006, + "UNK0": -3, + "STRING": "0", + "UNK1": "ab01000000000000000000000000000000000000000000000000000000000000000000000000000101000000ffff", + "STRINGS": [ + "Iron", + "Earth elemental master quartz.\nObtain a significant DEF/ADF bonus." + ] + }, + { + "TYPE": "item", + "ID": 2007, + "UNK0": -3, + "STRING": "0", + "UNK1": "ab0400000000000000000000000000000000000000000000000000000000000000000000000000010e000000ffff", + "STRINGS": [ + "Mistral", + "Wind elemental master quartz.\nObtain a significant ATS bonus." + ] + }, + { + "TYPE": "item", + "ID": 2008, + "UNK0": -3, + "STRING": "0", + "UNK1": "ab05000000000000000000000000000000000000000000000000000000000000000000000000000111000000ffff", + "STRINGS": [ + "Raven", + "Time elemental master quartz.\nObtain a significant SPD bonus." + ] + }, + { + "TYPE": "item", + "ID": 2009, + "UNK0": -3, + "STRING": "0", + "UNK1": "ab07000000000000000000000000000000000000000000000000000000000000000000000000000119000000ffff", + "STRINGS": [ + "Mirage", + "Mirage elemental master quartz.\nKilling enemies restores EP." + ] + }, + { + "TYPE": "item", + "ID": 2010, + "UNK0": -3, + "STRING": "0", + "UNK1": "ab04000000000000000000000000000000000000000000000000000000000000000000a00f0000010f000000ffff", + "STRINGS": [ + "Wing", + "Wind elemental master quartz.\nPrevents abnormal status/stat down." + ] + }, + { + "TYPE": "item", + "ID": 2013, + "UNK0": -3, + "STRING": "0", + "UNK1": "ab06000000000000000000000000000000000000000000000000000000000000000000401f00000116000000ffff", + "STRINGS": [ + "Moebius", + "Space elemental master quartz.\nIncreases potency of healing items." + ] + }, + { + "TYPE": "item", + "ID": 2012, + "UNK0": -3, + "STRING": "0", + "UNK1": "ab02000000000000000000000000000000000000000000000000000000000000000000102700000107000000ffff", + "STRINGS": [ + "Aries", + "Water elemental master quartz.\nRecover HP through offensive arts." + ] + }, + { + "TYPE": "item", + "ID": 2015, + "UNK0": -3, + "STRING": "0", + "UNK1": "ab03000000000000000000000000000000000000000000000000000000000000000000e02e0000010b000000ffff", + "STRINGS": [ + "Criminal", + "Fire elemental master quartz.\nOffensive arts deal critical damage." + ] + }, + { + "TYPE": "item", + "ID": 2014, + "UNK0": -3, + "STRING": "0", + "UNK1": "ab01000000000000000000000000000000000000000000000000000000000000000000b03600000102000000ffff", + "STRINGS": [ + "Tauros", + "Earth elemental master quartz.\nAttacks do more damage, but delay afterwards is longer." + ] + }, + { + "TYPE": "item", + "ID": 2011, + "UNK0": -3, + "STRING": "0", + "UNK1": "ab01000000000000000000000000000000000000000000000000000000000000000000000000000103000000ffff", + "STRINGS": [ + "Aegis", + "Earth elemental master quartz.\nReflect magic damage and gain immunity against physical damage." + ] + }, + { + "TYPE": "item", + "ID": 2017, + "UNK0": -3, + "STRING": "0", + "UNK1": "ab05000000000000000000000000000000000000000000000000000000000000000000000000000112000000ffff", + "STRINGS": [ + "Cypher", + "Time elemental master quartz.\nAttacks/crafts cause stat down." + ] + }, + { + "TYPE": "item", + "ID": 2018, + "UNK0": -3, + "STRING": "0", + "UNK1": "ab07000000000000000000000000000000000000000000000000000000000000000000803e0000011a000000ffff", + "STRINGS": [ + "Pandora", + "Mirage elemental master quartz.\nDamage of offensive arts is raised, but more EP consumed." + ] + }, + { + "TYPE": "item", + "ID": 2019, + "UNK0": -3, + "STRING": "0", + "UNK1": "ab05000000000000000000000000000000000000000000000000000000000000000000504600000113000000ffff", + "STRINGS": [ + "Katze", + "Time elemental master quartz.\nAbsorb enemy magic damage." + ] + }, + { + "TYPE": "item", + "ID": 2022, + "UNK0": -3, + "STRING": "0", + "UNK1": "ab01000000000000000000000000000000000000000000000000000000000000000000204e00000104000000ffff", + "STRINGS": [ + "Megalith", + "Earth elemental master quartz.\nIncreases obtained EXP." + ] + }, + { + "TYPE": "item", + "ID": 2016, + "UNK0": -3, + "STRING": "0", + "UNK1": "ab07000000000000000000000000000000000000000000000000000000000000000000983a0000011b000000ffff", + "STRINGS": [ + "Juggler", + "Mirage elemental master quartz.\nAttacks/crafts inflict random abnormalities." + ] + }, + { + "TYPE": "item", + "ID": 2025, + "UNK0": -3, + "STRING": "0", + "UNK1": "ab0500000000000000000000000000000000000000000000000000000000000000000050c300000114000000ffff", + "STRINGS": [ + "Murakumo", + "Time elemental master quartz.\nAttacks/crafts sometimes deal critical damage." + ] + }, + { + "TYPE": "item", + "ID": 2024, + "UNK0": -3, + "STRING": "0", + "UNK1": "ab0300000000000000000000000000000000000000000000000000000000000000000000000000010c000000ffff", + "STRINGS": [ + "Vermillion", + "Fire elemental master quartz.\nIncreases physical damage relative to how high HP is." + ] + }, + { + "TYPE": "item", + "ID": 2023, + "UNK0": -3, + "STRING": "0", + "UNK1": "ab02000000000000000000000000000000000000000000000000000000000000000000000000000108000000ffff", + "STRINGS": [ + "Orochi", + "Water elemental master quartz.\nRandomly increases physical damage." + ] + }, + { + "TYPE": "item", + "ID": 2020, + "UNK0": -3, + "STRING": "0", + "UNK1": "ab06000000000000000000000000000000000000000000000000000000000000000000000000000117000000ffff", + "STRINGS": [ + "Chevalier", + "Space elemental master quartz.\nIncreases physical damage relative to how low HP is." + ] + }, + { + "TYPE": "item", + "ID": 2027, + "UNK0": -3, + "STRING": "0", + "UNK1": "ab04000000000000000000000000000000000000000000000000000000000000000000000000000110000000ffff", + "STRINGS": [ + "Thor", + "Wind elemental master quartz.\nRecover HP/EP through attacks/crafts." + ] + }, + { + "TYPE": "item", + "ID": 2021, + "UNK0": -3, + "STRING": "0", + "UNK1": "ab0700000000000000000000000000000000000000000000000000000000000000000000000000011c000000ffff", + "STRINGS": [ + "Magius", + "Mirage elemental master quartz.\nIncreases magic damage relative to how low HP is." + ] + }, + { + "TYPE": "item", + "ID": 2026, + "UNK0": -3, + "STRING": "0", + "UNK1": "ab06000000000000000000000000000000000000000000000000000000000000000000000000000118000000ffff", + "STRINGS": [ + "Emblem", + "Space elemental master quartz.\nDecreases damage received relative to how low HP is." + ] + }, + { + "TYPE": "item", + "ID": 2028, + "UNK0": -3, + "STRING": "T", + "UNK1": "ab06000000000000000000000000000000000000000000000000000000000000000000000000000100000000ffff", + "STRINGS": [ + "Emblem", + "Space elemental master quartz.\nDecreases damage received relative to how low HP is." + ] + }, + { + "TYPE": "item", + "ID": 2029, + "UNK0": -3, + "STRING": "T", + "UNK1": "ab04000000000000000000000000000000000000000000000000000000000000000000000000000100000000ffff", + "STRINGS": [ + "Thor", + "Wind elemental master quartz.\nRecover HP/EP through attacks/crafts." + ] + }, + { + "TYPE": "item", + "ID": 2100, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0100000000ffffffff00140000000000000000000000000000000000000000000000900100006301000a00ffff", + "STRINGS": [ + "Needle Shoot", + "[#32IAttack - One - Petrify (20%)]\nLaunches a sharply pointed boulder at an enemy." + ] + }, + { + "TYPE": "item", + "ID": 2101, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0100000000ffffffff00150000000000000000000000000000000000000000000000e80300006302000f00ffff", + "STRINGS": [ + "Earth Lance", + "[#32IAttack (Set) - Area (S) - Petrify (20%)]\nSummons lances of earth from below the ground." + ] + }, + { + "TYPE": "item", + "ID": 2102, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0100000000ffffffff00160000000000000000000000000000000000000000000000c40900006303001e00ffff", + "STRINGS": [ + "Grand Press", + "[#32IAttack (Set) - Area (M) - MOV-50%]\nCreates a localized earthquake below enemies." + ] + }, + { + "TYPE": "item", + "ID": 2103, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0100000000ffffffff00170000000000000000000000000000000000000000000000701700006304003200ffff", + "STRINGS": [ + "Yggdrasil", + "[#32IAttack (Set) - Area (L) - Petrify (30%)]\nSummons a sentient tree to skewer enemies." + ] + }, + { + "TYPE": "item", + "ID": 2104, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0100000000ffffffff00180000000000000000000000000000000000000000000000102700006305003c00ffff", + "STRINGS": [ + "Ancient Glyph", + "[#32IAttack (Set) - Area (XL) - Petrify (20%)]\nSummons a megalith high above, then drops it." + ] + }, + { + "TYPE": "item", + "ID": 2105, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0100000000ffffffff00190000000000000000000000000000000000000000000000dc0500006306001400ffff", + "STRINGS": [ + "Earth Pulse", + "[#32IRecovery - One - HP Regen]\nStimulates healing. Heals 30% HP for 4 turns." + ] + }, + { + "TYPE": "item", + "ID": 2106, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0100000000ffffffff001a0000000000000000000000000000000000000000000000900100006307000a00ffff", + "STRINGS": [ + "Crest", + "[#32ISupport - One - DEF+25% (4 turns)]\nGrants earth's protection to raise defense." + ] + }, + { + "TYPE": "item", + "ID": 2107, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0100000000ffffffff001b0000000000000000000000000000000000000000000000c40900006308002800ffff", + "STRINGS": [ + "La Crest", + "[#32ISupport - Area (M) - DEF+25% (4 turns)]\nGrants earth's protection to raise defense." + ] + }, + { + "TYPE": "item", + "ID": 2108, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0100000000ffffffff001c0000000000000000000000000000000000000000000000102700006309003c00ffff", + "STRINGS": [ + "Adamantine Shield", + "[#32ISupport - Area (M) - Physical Immunity]\nA shield protects from one physical attack." + ] + }, + { + "TYPE": "item", + "ID": 2109, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0100000000ffffffff00ffff000000000a0000000000000000000000000000000000e8030000630a000a00ffff", + "STRINGS": [ + "Defense 1", + "[#32I]\nDEF+10" + ] + }, + { + "TYPE": "item", + "ID": 2110, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0100000000ffffffff00ffff00000000140000000000000000000000000000000000c4090000630b001e00ffff", + "STRINGS": [ + "Defense 2", + "[#32I]\nDEF+20" + ] + }, + { + "TYPE": "item", + "ID": 2111, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0100000000ffffffff00ffff0000000028000000000000000000000000000000000070170000630c003200ffff", + "STRINGS": [ + "Defense 3", + "[#32I]\nDEF+40" + ] + }, + { + "TYPE": "item", + "ID": 2112, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa010100000affffffff00ffff0a000000000000000000000000000000000000000000dc050000630d001400ffff", + "STRINGS": [ + "Poison", + "[#32I]\nAttacks/crafts can poison enemies (10% chance)." + ] + }, + { + "TYPE": "item", + "ID": 2113, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0101000011ffffffff00ffff0a000000000000000000000000000000000000000000c4090000630e001e00ffff", + "STRINGS": [ + "Petrify", + "[#32I]\nAttacks/crafts can petrify enemies (10% chance)." + ] + }, + { + "TYPE": "item", + "ID": 2122, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0100000000ffffffff01140000000200030000000000000000000000000000000000b0040000630f000c00ffff", + "STRINGS": [ + "Needle Shoot", + "[#32I(R)Attack - One - Petrify (20%)]\n(DEF+3/STR+2) Launches a sharply pointed boulder at an enemy." + ] + }, + { + "TYPE": "item", + "ID": 2123, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0100000000ffffffff01150000000300050000000000000000000000000000000000b80b00006310001400ffff", + "STRINGS": [ + "Earth Lance", + "[#32I(R)Attack (Set) - Area (S) - Petrify (20%)]\n(DEF+5/STR+3) Summons lances of earth from below the ground." + ] + }, + { + "TYPE": "item", + "ID": 2124, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0100000000ffffffff011600000005000700000000000000000000000000000000004c1d00006311002800ffff", + "STRINGS": [ + "Grand Press", + "[#32I(R)Attack (Set) - Area (M) - MOV-50%]\n(DEF+7/STR+5) Creates a localized earthquake below enemies." + ] + }, + { + "TYPE": "item", + "ID": 2125, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0100000000ffffffff011700000007000a0000000000000000000000000000000000504600006312003700ffff", + "STRINGS": [ + "Yggdrasil", + "[#32I(R)Attack (Set) - Area (L) - Petrify (30%)]\n(DEF+10/STR+7) Summons a sentient tree to skewer enemies." + ] + }, + { + "TYPE": "item", + "ID": 2126, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0100000000ffffffff01180000000a000f0000000000000000000000000000000000307500006313003e00ffff", + "STRINGS": [ + "Ancient Glyph", + "[#32I(R)Attack (Set) - Area (XL) - Petrify (20%)]\n(DEF+15/STR+10) Summons a megalith high above, then drops it." + ] + }, + { + "TYPE": "item", + "ID": 2127, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0100000000ffffffff011900000000000500000000000000000000000000c8000000941100006314001e00ffff", + "STRINGS": [ + "Earth Pulse", + "[#32I(R)Recovery - One - HP Regen]\n(HP+200/DEF+5) Stimulates healing. Heals 30% HP for 4 turns." + ] + }, + { + "TYPE": "item", + "ID": 2128, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0100000000ffffffff011a0000000000050000000000000000000000000032000000b00400006315000c00ffff", + "STRINGS": [ + "Crest", + "[#32I(R)Support - One - DEF+25% (4 turns)]\n(DEF+5/HP+50) Grants earth's protection to raise defense." + ] + }, + { + "TYPE": "item", + "ID": 2129, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0100000000ffffffff011b00000000000a00000000000000000000000000640000004c1d00006316002a00ffff", + "STRINGS": [ + "La Crest", + "[#32I(R)Support - Area (M) - DEF+25% (4 turns)]\n(DEF+10/HP+100) Grants earth's protection to raise defense." + ] + }, + { + "TYPE": "item", + "ID": 2130, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0100000000ffffffff011c00000000000f00000000000000000000000000f4010000307500006317003e00ffff", + "STRINGS": [ + "Adamantine Shield", + "[#32I(R)Support - Area (M) - Physical Immunity]\n(DEF+15/HP+500) A shield protects from one physical attack." + ] + }, + { + "TYPE": "item", + "ID": 2116, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa01000000e2ffffffff01ffff01000000000000000000000000000000000000000000701700006318001e00ffff", + "STRINGS": [ + "Septium Vein", + "[#32I(R)]\nIncreases the amount of sepith dropped by enemies." + ] + }, + { + "TYPE": "item", + "ID": 2117, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa01000000e2ffffffff01ffff01000000000000000000000000000000000000000000b03600006319002d00ffff", + "STRINGS": [ + "Dragon Vein", + "[#32I(R)]\nEP recovers on field, and enemies drop more sepith." + ] + }, + { + "TYPE": "item", + "ID": 2114, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa010200001fffffffff01ffff0f000a00000000000000000000000000000000000000a00f0000631a002800ffff", + "STRINGS": [ + "Shield Breaker", + "[#32I(R)]\n(STR+10) Attacks/crafts cause DEF-25% (15% chance)." + ] + }, + { + "TYPE": "item", + "ID": 2115, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa01000000e1ffffffff01ffff32000000000005000000000000000000000000000000401f0000631b003200ffff", + "STRINGS": [ + "Earth Bell", + "[#32I(R)]\n(ATS+5) Halves delay after using earth arts." + ] + }, + { + "TYPE": "item", + "ID": 2118, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa01000000001b001600021900000000000500050000000000000000000000c8000000401f0000631c001e00ffff", + "STRINGS": [ + "Harvest", + "[#32I(SR) Earth Pulse/La Crest/Grand Press]\nHP+200/DEF+5/ATS+5" + ] + }, + { + "TYPE": "item", + "ID": 2121, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0101000053ffffffff02ffff0a000000000000000000000000000000000000000000401f0000631d002800ffff", + "STRINGS": [ + "Genbu", + "[#32I(SR)]\nAttacks/crafts can poison or petrify enemies (10% chance)." + ] + }, + { + "TYPE": "item", + "ID": 2119, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa01000000007400ffff021c0000000000140000001400000000000000000000000000b8880000631e003c00ffff", + "STRINGS": [ + "Impenetrable Shield", + "[#32I(SR) Adamantine Shield/Crescent Mirror]\nDEF+20/ADF+20" + ] + }, + { + "TYPE": "item", + "ID": 2120, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0100000000ffffffff02180000000000500000000000000000000000000000000000b8880000631f004600ffff", + "STRINGS": [ + "Acala Gem", + "[#32I(SR) Ancient Glyph]\nDEF+80" + ] + }, + { + "TYPE": "item", + "ID": 2135, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0200000000ffffffff00230000000000000000000000000000000000000000000000900100006332000a00ffff", + "STRINGS": [ + "Aqua Bleed", + "[#33IAttack - One]\nStrikes an enemy with a heavy mass of water." + ] + }, + { + "TYPE": "item", + "ID": 2136, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0200000000ffffffff00240000000000000000000000000000000000000000000000e80300006333000f00ffff", + "STRINGS": [ + "Frost Edge", + "[#33IAttack - Area (M) - Freeze (20%)]\nAttacks enemies with blades of crystallized ice." + ] + }, + { + "TYPE": "item", + "ID": 2137, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0200000000ffffffff00250000000000000000000000000000000000000000000000c40900006334001e00ffff", + "STRINGS": [ + "Hydro Cannon", + "[#33IAttack (Set) - Line (M)]\nStrikes with a high-pressure water current." + ] + }, + { + "TYPE": "item", + "ID": 2138, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0200000000ffffffff00260000000000000000000000000000000000000000000000701700006335003200ffff", + "STRINGS": [ + "Crystal Flood", + "[#33IAttack (Set) - Line (L) - Freeze (30%)]\nCreates a glistening river of ice." + ] + }, + { + "TYPE": "item", + "ID": 2139, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0200000000ffffffff00270000000000000000000000000000000000000000000000102700006336003c00ffff", + "STRINGS": [ + "Maelstrom", + "[#33IAttack - All]\nCreates a powerful whirlpool. " + ] + }, + { + "TYPE": "item", + "ID": 2140, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0200000000ffffffff00280000000000000000000000000000000000000000000000900100006337000a00ffff", + "STRINGS": [ + "Tear", + "[#33IRecovery - One - HP Heal (S)]\nHeals a small amount of HP with the power of water." + ] + }, + { + "TYPE": "item", + "ID": 2141, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0200000000ffffffff00290000000000000000000000000000000000000000000000dc0500006338001400ffff", + "STRINGS": [ + "Teara", + "[#33IRecovery - One - HP Heal (M)]\nHeals a medium amount of HP with the power of water." + ] + }, + { + "TYPE": "item", + "ID": 2142, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0200000000ffffffff002a0000000000000000000000000000000000000000000000b80b00006339002800ffff", + "STRINGS": [ + "Tearal", + "[#33IRecovery - One - HP Heal (L)]\nHeals a large amount of HP with the power of water." + ] + }, + { + "TYPE": "item", + "ID": 2143, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0200000000ffffffff002b0000000000000000000000000000000000000000000000e8030000633a000a00ffff", + "STRINGS": [ + "Thelas", + "[#33IRecovery - One - Revive & HP Heal (S)]\nRevives one ally, and heals a small amount of HP." + ] + }, + { + "TYPE": "item", + "ID": 2144, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0200000000ffffffff002c000000000000000000000000000000000000000000000088130000633b002800ffff", + "STRINGS": [ + "Athelas", + "[#33IRecovery - One - Revive & HP Heal (M)]\nRevives one ally, and heals a medium amount of HP." + ] + }, + { + "TYPE": "item", + "ID": 2145, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0200000000ffffffff00ffff000000000000000000000000000000000000f4010000dc050000633c000a00ffff", + "STRINGS": [ + "HP 1", + "[#33I]\nHP+500" + ] + }, + { + "TYPE": "item", + "ID": 2146, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0200000000ffffffff00ffff000000000000000000000000000000000000e8030000a00f0000633d002800ffff", + "STRINGS": [ + "HP 2", + "[#33I]\nHP+1000" + ] + }, + { + "TYPE": "item", + "ID": 2147, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0200000000ffffffff00ffff00000000000000000a00000000000000000000000000e8030000633e000a00ffff", + "STRINGS": [ + "Shield 1", + "[#33I]\nADF+10" + ] + }, + { + "TYPE": "item", + "ID": 2148, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0200000000ffffffff00ffff00000000000000001400000000000000000000000000c4090000633f001e00ffff", + "STRINGS": [ + "Shield 2", + "[#33I]\nADF+20" + ] + }, + { + "TYPE": "item", + "ID": 2149, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0200000000ffffffff00ffff00000000000000002800000000000000000000000000701700006340003200ffff", + "STRINGS": [ + "Shield 3", + "[#33I]\nADF+40" + ] + }, + { + "TYPE": "item", + "ID": 2150, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa020100000cffffffff00ffff0a000000000000000000000000000000000000000000dc0500006341001400ffff", + "STRINGS": [ + "Mute", + "[#33I]\nAttacks/crafts can mute enemies (10% chance)." + ] + }, + { + "TYPE": "item", + "ID": 2151, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0201000010ffffffff00ffff0a000000000000000000000000000000000000000000c40900006342001e00ffff", + "STRINGS": [ + "Freeze", + "[#33I]\nAttacks/crafts can freeze enemies (10% chance)." + ] + }, + { + "TYPE": "item", + "ID": 2159, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0200000000ffffffff01230000000000000002000300000000000000000000000000b00400006343000c00ffff", + "STRINGS": [ + "Aqua Bleed", + "[#33I(R)Attack - One]\n(ADF+3/ATS+2) Strikes an enemy with a heavy mass of water." + ] + }, + { + "TYPE": "item", + "ID": 2160, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0200000000ffffffff01240000000000000003000500000000000000000000000000b80b00006344001400ffff", + "STRINGS": [ + "Frost Edge", + "[#33I(R)Attack - Area (M) - Freeze (20%)]\n(ADF+5/ATS+3) Attacks enemies with blades of crystallized ice." + ] + }, + { + "TYPE": "item", + "ID": 2161, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0200000000ffffffff012500000000000000050007000000000000000000000000004c1d00006345002800ffff", + "STRINGS": [ + "Hydro Cannon", + "[#33I(R)Attack (Set) - Line (M)]\n(ADF+7/ATS+5) Strikes with a high-pressure water current." + ] + }, + { + "TYPE": "item", + "ID": 2162, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0200000000ffffffff01260000000000000007000a00000000000000000000000000504600006346003c00ffff", + "STRINGS": [ + "Crystal Flood", + "[#33I(R)Attack (Set) - Line (L) - Freeze (30%)]\n(ADF+10/ATS+7) Creates a glistening river of ice." + ] + }, + { + "TYPE": "item", + "ID": 2163, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0200000000ffffffff0127000000000000000a000f00000000000000000000000000307500006347003e00ffff", + "STRINGS": [ + "Maelstrom", + "[#33I(R)Attack - All]\n(ADF+15/ATS+10) Creates a powerful whirlpool. " + ] + }, + { + "TYPE": "item", + "ID": 2164, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0200000000ffffffff012800000000000000000000000000000000000000fa000000b00400006348000f00ffff", + "STRINGS": [ + "Tear", + "[#33I(R)Recovery - One - HP Heal (S)]\n(HP+250) Heals a small amount of HP with the power of water." + ] + }, + { + "TYPE": "item", + "ID": 2165, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0200000000ffffffff012900000000000000000000000000000000000000f4010000941100006349001e00ffff", + "STRINGS": [ + "Teara", + "[#33I(R)Recovery - One - HP Heal (M)]\n(HP+500) Heals a medium amount of HP with the power of water." + ] + }, + { + "TYPE": "item", + "ID": 2166, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0200000000ffffffff012a00000000000000000000000000000000000000e803000028230000634a003200ffff", + "STRINGS": [ + "Tearal", + "[#33I(R)Recovery - One - HP Heal (L)]\n(HP+1000) Heals a large amount of HP with the power of water." + ] + }, + { + "TYPE": "item", + "ID": 2167, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0200000000ffffffff012b0000000000000000000000000000000000000000002800b80b0000634b001400ffff", + "STRINGS": [ + "Thelas", + "[#33I(R)Recovery - One - Revive & HP Heal (S)]\n(EP+40) Revives one ally, and heals a small amount of HP." + ] + }, + { + "TYPE": "item", + "ID": 2168, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0200000000ffffffff012c0000000000000000000000000000000000000000005000983a0000634c003200ffff", + "STRINGS": [ + "Athelas", + "[#33I(R)Recovery - One - Revive & HP Heal (M)]\n(EP+80) Revives one ally, and heals a medium amount of HP." + ] + }, + { + "TYPE": "item", + "ID": 2153, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa02000000002900ffff01280000000000000000000000000000000000000000000000a00f0000634d001e00ffff", + "STRINGS": [ + "Heal", + "[#33I(R) Tear/Teara]\nHP gradually recovers while walking on the field." + ] + }, + { + "TYPE": "item", + "ID": 2154, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0200000000ffffffff01290000000000000000000000000000000000000000000000b80b0000634e001e00ffff", + "STRINGS": [ + "Effort", + "[#33I(R) Teara]\nGives a 70% chance to make a superb dish when cooking." + ] + }, + { + "TYPE": "item", + "ID": 2152, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0202000021ffffffff01ffff0f000a00000000000000000000000000000000000000a00f0000634f002800ffff", + "STRINGS": [ + "Spirit Breaker", + "[#33I(R)]\n(STR+10) Attacks/crafts cause ADF-25% (15% chance)." + ] + }, + { + "TYPE": "item", + "ID": 2155, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa02000000e1ffffffff01ffff32000000000005000000000000000000000000000000401f00006350003200ffff", + "STRINGS": [ + "Water Bell", + "[#33I(R)]\n(ATS+5) Halves delay after using water arts." + ] + }, + { + "TYPE": "item", + "ID": 2156, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa020000000026002c000225000000000000000a000000000000000000000020035000e02e00006351003200ffff", + "STRINGS": [ + "Flood", + "[#33I(SR) Hydro Cannon/Crystal Flood/Athelas]\nHP+800/EP+80/ATS+10" + ] + }, + { + "TYPE": "item", + "ID": 2158, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0201000054ffffffff02ffff0a000000000000000000000000000000000000000000401f00006352002800ffff", + "STRINGS": [ + "Seiryuu ", + "[#33I(SR)]\nAttacks/crafts can mute or freeze enemies (10% chance)." + ] + }, + { + "TYPE": "item", + "ID": 2157, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0200000000ffffffff02270000000000000000005000000000000000000008070000409c00006353004600ffff", + "STRINGS": [ + "Sennin Gem", + "[#33I(SR) Maelstrom]\nHP+1800/ADF+80" + ] + }, + { + "TYPE": "item", + "ID": 2170, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0300000000ffffffff00320000000000000000000000000000000000000000000000900100006364000a00ffff", + "STRINGS": [ + "Fire Bolt", + "[#34IAttack - One - Burn (20%)]\nShoots a blazing orb of fire at an enemy." + ] + }, + { + "TYPE": "item", + "ID": 2171, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0300000000ffffffff00330000000000000000000000000000000000000000000000e80300006365000f00ffff", + "STRINGS": [ + "Heatwave", + "[#34IAttack - Area (S) - Burn (30%)]\nCovers the earth's surface with intense heat." + ] + }, + { + "TYPE": "item", + "ID": 2172, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0300000000ffffffff00340000000000000000000000000000000000000000000000c40900006366001e00ffff", + "STRINGS": [ + "Flame Tongue", + "[#34IAttack - Area (M) - Burn (20%)]\nFlames erupt from the ground, skewering enemies." + ] + }, + { + "TYPE": "item", + "ID": 2173, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0300000000ffffffff00350000000000000000000000000000000000000000000000a00f00006367002800ffff", + "STRINGS": [ + "Volcanic Rain", + "[#34IAttack - Area (L) - Burn (30%)]\nIncandescent volcanic bombs rain from the sky." + ] + }, + { + "TYPE": "item", + "ID": 2174, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0300000000ffffffff00360000000000000000000000000000000000000000000000881300006368003200ffff", + "STRINGS": [ + "Flare Bomb", + "[#34IAttack - Area (XL) - Burn (20%)]\nTwo flames collide, causing a great explosion." + ] + }, + { + "TYPE": "item", + "ID": 2175, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0300000000ffffffff00370000000000000000000000000000000000000000000000102700006369003c00ffff", + "STRINGS": [ + "Purgatorial Flame", + "[#34IAttack - Area (S) - Burn (50%)]\nSummons the flames of Gehenna to turn enemies to ash." + ] + }, + { + "TYPE": "item", + "ID": 2176, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0300000000ffffffff00380000000000000000000000000000000000000000000000dc050000636a001400ffff", + "STRINGS": [ + "Impassion", + "[#34IRecovery - One - CP Regen]\nRaises spirit. Restores 20CP for 4 turns." + ] + }, + { + "TYPE": "item", + "ID": 2177, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0300000000ffffffff003b0000000000000000000000000000000000000000000000d0070000636b001e00ffff", + "STRINGS": [ + "Heat Up", + "[#34IRecovery - Area (L) - Cures stat down - CP+5]\nCures stat down, and restores 5CP." + ] + }, + { + "TYPE": "item", + "ID": 2178, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0300000000ffffffff0039000000000000000000000000000000000000000000000090010000636c000a00ffff", + "STRINGS": [ + "Forte", + "[#34ISupport - One - STR+25% (4 turns)]\nTemporarily grants fire's protection to raise attack." + ] + }, + { + "TYPE": "item", + "ID": 2179, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0300000000ffffffff003a0000000000000000000000000000000000000000000000c4090000636d002800ffff", + "STRINGS": [ + "La Forte", + "[#34ISupport - Area (M) - STR+25% (4 turns)]\nTemporarily grants fire's protection to raise attack." + ] + }, + { + "TYPE": "item", + "ID": 2180, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0300000000ffffffff00ffff00000a00000000000000000000000000000000000000e8030000636e000a00ffff", + "STRINGS": [ + "Attack 1", + "[#34I]\nSTR+10" + ] + }, + { + "TYPE": "item", + "ID": 2181, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0300000000ffffffff00ffff00001400000000000000000000000000000000000000c4090000636f001e00ffff", + "STRINGS": [ + "Attack 2", + "[#34I]\nSTR+20" + ] + }, + { + "TYPE": "item", + "ID": 2182, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0300000000ffffffff00ffff00002800000000000000000000000000000000000000701700006370003200ffff", + "STRINGS": [ + "Attack 3", + "[#34I]\nSTR+40" + ] + }, + { + "TYPE": "item", + "ID": 2183, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa030100000bffffffff00ffff0a000000000000000000000000000000000000000000dc0500006371001400ffff", + "STRINGS": [ + "Seal", + "[#34I]\nAttacks/crafts can seal enemies (10% chance)." + ] + }, + { + "TYPE": "item", + "ID": 2184, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa030100000fffffffff00ffff0a000000000000000000000000000000000000000000c40900006372001e00ffff", + "STRINGS": [ + "Burn", + "[#34I]\nAttacks/crafts can burn enemies (10% chance)." + ] + }, + { + "TYPE": "item", + "ID": 2193, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0300000000ffffffff01320000000300020000000000000000000000000000000000b00400006373000c00ffff", + "STRINGS": [ + "Fire Bolt", + "[#34I(R)Attack - One - Burn (20%)]\n(STR+3/DEF+2) Shoots a blazing orb of fire at an enemy." + ] + }, + { + "TYPE": "item", + "ID": 2194, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0300000000ffffffff01330000000500030000000000000000000000000000000000b80b00006374001400ffff", + "STRINGS": [ + "Heatwave", + "[#34I(R)Attack - Area (S) - Burn (30%)]\n(STR+5/DEF+3) Covers the earth's surface with intense heat." + ] + }, + { + "TYPE": "item", + "ID": 2195, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0300000000ffffffff013400000007000500000000000000000000000000000000004c1d00006375002800ffff", + "STRINGS": [ + "Flame Tongue", + "[#34I(R)Attack - Area (M) - Burn (20%)]\n(STR+7/DEF+5) Flames erupt from the ground, skewering enemies." + ] + }, + { + "TYPE": "item", + "ID": 2196, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0300000000ffffffff01350000000900060000000000000000000000000000000000e02e00006376003200ffff", + "STRINGS": [ + "Volcanic Rain", + "[#34I(R)Attack - Area (L) - Burn (30%)]\n(STR+9/DEF+6) Incandescent volcanic bombs rain from the sky." + ] + }, + { + "TYPE": "item", + "ID": 2197, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0300000000ffffffff01360000000a00070000000000000000000000000000000000983a00006377003c00ffff", + "STRINGS": [ + "Flare Bomb", + "[#34I(R)Attack - Area (XL) - Burn (20%)]\n(STR+10/DEF+7) Two flames collide, causing a great explosion." + ] + }, + { + "TYPE": "item", + "ID": 2198, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0300000000ffffffff01370000000f000a0000000000000000000000000000000000307500006378003e00ffff", + "STRINGS": [ + "Purgatorial Flame", + "[#34I(R)Attack - Area (S) - Burn (50%)]\n(STR+15/DEF+10) The flames of Gehenna turn enemies to ash." + ] + }, + { + "TYPE": "item", + "ID": 2199, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0300000000ffffffff013800000005000000000000000000000000000000c8000000941100006379001e00ffff", + "STRINGS": [ + "Impassion", + "[#34I(R)Recovery - One - CP Regen]\n(HP+200/STR+5) Raises spirit. Restores 20CP for 4 turns." + ] + }, + { + "TYPE": "item", + "ID": 2200, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0300000000ffffffff013b000000070000000000000000000000000000000000000070170000637a002800ffff", + "STRINGS": [ + "Heat Up", + "[#34I(R)Recovery - Area (L) - Cures stat down - CP+5]\n(STR+7) Cures stat down, and restores 5CP." + ] + }, + { + "TYPE": "item", + "ID": 2201, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0300000000ffffffff01390000000500000000000000000000000000000000000000b0040000637b000a00ffff", + "STRINGS": [ + "Forte", + "[#34I(R)Support - One - STR+25% (4 turns)]\n(STR+5) Temporarily grants fire's protection to raise attack." + ] + }, + { + "TYPE": "item", + "ID": 2202, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0300000000ffffffff013a0000000a000000000000000000000000000000000000004c1d0000637c002800ffff", + "STRINGS": [ + "La Forte", + "[#34I(R)Support - Area (M) - STR+25% (4 turns)]\n(STR+10) Temporarily grants fire's protection to raise attack." + ] + }, + { + "TYPE": "item", + "ID": 2187, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0300000000ffffffff0138000000000000000000000000000000000000000000000070170000637d001e00ffff", + "STRINGS": [ + "Invigorate", + "[#34I(R) Impassion]\nRestores CP by attacking enemies on the field." + ] + }, + { + "TYPE": "item", + "ID": 2186, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0300000000ffffffff01340000000000000000000000000000000000000000000000b80b0000637e001e00ffff", + "STRINGS": [ + "Prankster", + "[#34I(R) Flame Tongue]\nGives a 70% chance to make a peculiar dish when cooking." + ] + }, + { + "TYPE": "item", + "ID": 2188, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0300000000ffffffff01ffff00000000000005000000000000000000000000000000401f0000637f002800ffff", + "STRINGS": [ + "Ingenuity", + "[#34I(R)]\n(ATS+5) EP gradually recovers while walking on the field." + ] + }, + { + "TYPE": "item", + "ID": 2185, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa030200001effffffff01ffff0f000a00000000000000000000000000000000000000a00f00006380002800ffff", + "STRINGS": [ + "Sword Breaker", + "[#34I(R)]\n(STR+10) Attacks/crafts cause STR-25% (15% chance)." + ] + }, + { + "TYPE": "item", + "ID": 2189, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa03000000e1ffffffff01ffff32000000000005000000000000000000000000000000401f00006381003200ffff", + "STRINGS": [ + "Fire Bell", + "[#34I(R)]\n(ATS+5) Halves delay after using fire arts." + ] + }, + { + "TYPE": "item", + "ID": 2190, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0300000000350036000234000000000000000a000000000000000000000000006400102700006382003200ffff", + "STRINGS": [ + "Hellfire", + "[#34I(SR) Flame Tongue/Volcanic Rain/Flare Bomb]\nEP+100/ATS+10" + ] + }, + { + "TYPE": "item", + "ID": 2192, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0301000055ffffffff02ffff0a000000000000000000000000000000000000000000401f00006383002800ffff", + "STRINGS": [ + "Suzaku", + "[#34I(SR)]\nAttacks/crafts can seal or burn enemies (10% chance)." + ] + }, + { + "TYPE": "item", + "ID": 2191, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0300000000ffffffff0237000000500000000000000000000000000000000000000050c300006384004600ffff", + "STRINGS": [ + "Mars Gem", + "[#34I(SR) Purgatorial Flame]\nSTR+80" + ] + }, + { + "TYPE": "item", + "ID": 2205, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0400000000ffffffff00410000000000000000000000000000000000000000000000900100006396000a00ffff", + "STRINGS": [ + "Air Strike", + "[#35IAttack - One]\nAttacks an enemy with a mass of compressed air." + ] + }, + { + "TYPE": "item", + "ID": 2206, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0400000000ffffffff00420000000000000000000000000000000000000000000000e80300006397000f00ffff", + "STRINGS": [ + "Spark Arrow", + "[#35IAttack (Set) - Line (S) - Seal (20%)]\nUnleashes a line of lightning towards enemies." + ] + }, + { + "TYPE": "item", + "ID": 2207, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0400000000ffffffff00430000000000000000000000000000000000000000000000c40900006398001e00ffff", + "STRINGS": [ + "Aerial", + "[#35IAttack (Set) - Area (L)]\nCreates a whirlwind containing pieces of rubble." + ] + }, + { + "TYPE": "item", + "ID": 2208, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0400000000ffffffff00440000000000000000000000000000000000000000000000701700006399003200ffff", + "STRINGS": [ + "Judgment Bolt", + "[#35IAttack (Set) - Line (M) - Seal (50%)]\nBrings down judgment upon foes with lightning." + ] + }, + { + "TYPE": "item", + "ID": 2209, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0400000000ffffffff0045000000000000000000000000000000000000000000000010270000639a003c00ffff", + "STRINGS": [ + "Ragna Vortex", + "[#35IAttack - All - Seal (30%)]\nLightning-bearing whirlwind swallows enemies." + ] + }, + { + "TYPE": "item", + "ID": 2210, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0400000000ffffffff00460000000000000000000000000000000000000000000000e8030000639b000a00ffff", + "STRINGS": [ + "Breath", + "[#35IRecovery - Area (M) - HP Heal (S)]\nHeals allies in an area with purifying breath." + ] + }, + { + "TYPE": "item", + "ID": 2211, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0400000000ffffffff00470000000000000000000000000000000000000000000000a00f0000639c002800ffff", + "STRINGS": [ + "Holy Breath", + "[#35IRecovery - Area (L) - HP Heal (M)]\nHeals allies in an area with purifying sacred breath." + ] + }, + { + "TYPE": "item", + "ID": 2212, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0400000000ffffffff00480000000000000000000000000000000000000000000000d0070000639d001e00ffff", + "STRINGS": [ + "Recuria", + "[#35IRecovery - Area (XL) - Cures abnormal status]\nCures abnormal status (except K.O.)" + ] + }, + { + "TYPE": "item", + "ID": 2213, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0400000000ffffffff00ffff00000000000000000000000005000000000000000000dc050000639e000a00ffff", + "STRINGS": [ + "Evade 1", + "[#35I]\nEVA+5%" + ] + }, + { + "TYPE": "item", + "ID": 2214, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0400000000ffffffff00ffff0000000000000000000000000a000000000000000000a00f0000639f002800ffff", + "STRINGS": [ + "Evade 2", + "[#35I]\nEVA+10%" + ] + }, + { + "TYPE": "item", + "ID": 2215, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0400000000ffffffff00ffff00000000000000000000000000000000050000000000e803000063a0000a00ffff", + "STRINGS": [ + "Move 1", + "[#35I]\nMOV+5" + ] + }, + { + "TYPE": "item", + "ID": 2216, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0400000000ffffffff00ffff000000000000000000000000000000000a0000000000c409000063a1001e00ffff", + "STRINGS": [ + "Move 2", + "[#35I]\nMOV+10" + ] + }, + { + "TYPE": "item", + "ID": 2217, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0400000000ffffffff00ffff000000000000000000000000000000000f00000000007017000063a2003200ffff", + "STRINGS": [ + "Move 3", + "[#35I]\nMOV+15" + ] + }, + { + "TYPE": "item", + "ID": 2218, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa040100000dffffffff00ffff0a000000000000000000000000000000000000000000dc05000063a3001400ffff", + "STRINGS": [ + "Blind", + "[#35I]\nAttacks/crafts can blind enemies (10% chance)." + ] + }, + { + "TYPE": "item", + "ID": 2219, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa040100000effffffff00ffff0a000000000000000000000000000000000000000000c409000063a4001e00ffff", + "STRINGS": [ + "Sleep", + "[#35I]\nAttacks/crafts can put enemies to sleep (10% chance)." + ] + }, + { + "TYPE": "item", + "ID": 2229, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0400000000ffffffff01410000000000000003000200000000000000000000000000b004000063a5000c00ffff", + "STRINGS": [ + "Air Strike", + "[#35I(R)Attack - One]\n(ATS+3/ADF+2) Attacks an enemy with a mass of compressed air." + ] + }, + { + "TYPE": "item", + "ID": 2230, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0400000000ffffffff01420000000000000005000300000000000000000000000000b80b000063a6001400ffff", + "STRINGS": [ + "Spark Arrow", + "[#35I(R)Attack (Set) - Line (S) - Seal (20%)]\n(ATS+5/ADF+3) Unleashes a line of lightning towards enemies." + ] + }, + { + "TYPE": "item", + "ID": 2231, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0400000000ffffffff014300000000000000070005000000000000000000000000004c1d000063a7002800ffff", + "STRINGS": [ + "Aerial", + "[#35I(R)Attack (Set) - Area (L)]\n(ATS+7/ADF+5) Creates a whirlwind containing pieces of rubble." + ] + }, + { + "TYPE": "item", + "ID": 2232, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0400000000ffffffff0144000000000000000a0007000000000000000000000000005046000063a8003c00ffff", + "STRINGS": [ + "Judgment Bolt", + "[#35I(R)Attack (Set) - Line (M) - Seal (50%)]\n(ATS+10/ADF+7) Brings down judgment upon foes with lightning." + ] + }, + { + "TYPE": "item", + "ID": 2233, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0400000000ffffffff0145000000000000000f000a000000000000000000000000003075000063a9003e00ffff", + "STRINGS": [ + "Ragna Vortex", + "[#35I(R)Attack - All - Seal (30%)]\n(ATS+15/ADF+10) Lightning-bearing whirlwind swallows enemies." + ] + }, + { + "TYPE": "item", + "ID": 2234, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0400000000ffffffff01460000000000000000000000000000000200000000000000b80b000063aa001400ffff", + "STRINGS": [ + "Breath", + "[#35I(R)Recovery - Area (M) - HP Heal (S)]\n(SPD+2) Heals allies in an area with purifying breath." + ] + }, + { + "TYPE": "item", + "ID": 2235, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0400000000ffffffff01470000000000000000000000000000000300000000000000401f000063ab003200ffff", + "STRINGS": [ + "Holy Breath", + "[#35I(R)Recovery - Area (L) - HP Heal (M)]\n(SPD+3) Heals allies in an area with purifying sacred breath." + ] + }, + { + "TYPE": "item", + "ID": 2236, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0400000000ffffffff014800000000000000000000000000000000000000f4010000a00f000063ac002800ffff", + "STRINGS": [ + "Recuria", + "[#35I(R)Recovery - Area (XL) - Cures abnormal status]\n(HP+500) Cures abnormal status (except K.O.)" + ] + }, + { + "TYPE": "item", + "ID": 2221, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa04000000e3ffffffff01460028000000000000000000000000000000000000000000b80b000063ad001e00ffff", + "STRINGS": [ + "Hare", + "[#35I(R) Breath]\nIncreases odds of successfully running from battle by 40%." + ] + }, + { + "TYPE": "item", + "ID": 2222, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa04000000001600600001430000000000000000000000000000000000000000000000a00f000063ae002800ffff", + "STRINGS": [ + "Scent", + "[#35I(R) Aerial/Grand Press/Dark Matter]\nMakes enemies more likely to notice you." + ] + }, + { + "TYPE": "item", + "ID": 2220, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0402000023ffffffff01ffff0f000a00000000000000000000000000000000000000a00f000063af002800ffff", + "STRINGS": [ + "Leg Breaker", + "[#35I(R)]\n(STR+10) Attacks/crafts cause MOV-50% (15% chance)." + ] + }, + { + "TYPE": "item", + "ID": 2224, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa04000000e1ffffffff01ffff32000000000005000000000000000000000000000000401f000063b0003200ffff", + "STRINGS": [ + "Wind Bell", + "[#35I(R)]\n(ATS+5) Halves delay after using wind arts." + ] + }, + { + "TYPE": "item", + "ID": 2225, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa040000000046004800024300000000000000050000000000000000000000000028008813000063b1001400ffff", + "STRINGS": [ + "Breeze", + "[#35I(SR) Aerial/Breath/Recuria]\nEP+40/ATS+5" + ] + }, + { + "TYPE": "item", + "ID": 2228, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0401000056ffffffff02ffff0a000000000000000000000000000000000000000000401f000063b2002800ffff", + "STRINGS": [ + "Byakko", + "[#35I(SR)]\nAttacks/crafts can put to sleep or blind enemies (10% chance)." + ] + }, + { + "TYPE": "item", + "ID": 2223, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa04000000e4ffffffff02ffff00000000000000000000000000000000000000000000204e000063b3003200ffff", + "STRINGS": [ + "Wrath", + "[#35I(SR)]\nCounter attacks after evading always deal critical damage." + ] + }, + { + "TYPE": "item", + "ID": 2226, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0400000085ffffffff02450016030a00000000000000000000000000000000000000b888000063b4003c00ffff", + "STRINGS": [ + "Zeus Gem", + "[#35I(SR) Ragna Vortex]\n(STR+10) Attacks/crafts can cancel arts (90% chance). Delay+7." + ] + }, + { + "TYPE": "item", + "ID": 2227, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0400000000ffffffff02470000000a0000000000000032000f0000000a0000000000b888000063b5004600ffff", + "STRINGS": [ + "Aeolus Gem", + "[#35I(SR) Holy Breath]\nSTR+10/ACC+50%/EVA+15%/MOV+10" + ] + }, + { + "TYPE": "item", + "ID": 2240, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0500000000ffffffff005000000000000000000000000000000000000000000000005802000063c8000a00ffff", + "STRINGS": [ + "Soul Blur", + "[#36IAttack - One - Faint (30%)]\nEmits a time-space shaking pulse." + ] + }, + { + "TYPE": "item", + "ID": 2241, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0500000000ffffffff00510000000000000000000000000000000000000000000000c409000063c9001400ffff", + "STRINGS": [ + "Demonic Scythe", + "[#36IAttack - Area (M) - K.O. (30%)]\nReaps the souls of foes with the Grim Reaper's scythe." + ] + }, + { + "TYPE": "item", + "ID": 2242, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0500000000ffffffff005200000000000000000000000000000000000000000000008813000063ca002800ffff", + "STRINGS": [ + "Grim Butterfly", + "[#36IAttack - Area (XL) - Nightmare (50%)]\nA butterfly swarm plunges enemies into despair." + ] + }, + { + "TYPE": "item", + "ID": 2243, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0500000000ffffffff00530000000000000000000000000000000000000000000000983a000063cb003c00ffff", + "STRINGS": [ + "Shadow Blade", + "[#36IAttack - Area (L) - HP Absorb]\nA demonic blade. Absorb 5% of damage dealt as HP." + ] + }, + { + "TYPE": "item", + "ID": 2244, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0500000000ffffffff00540000000000000000000000000000000000000000000000dc05000063cc001400ffff", + "STRINGS": [ + "Chrono Drive", + "[#36ISupport - Area (M) - SPD+25%/MOV+50% (4 turns)]\nSpeeds up the flow of time for targeted allies." + ] + }, + { + "TYPE": "item", + "ID": 2245, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0500000000ffffffff00550000000000000000000000000000000000000000000000b80b000063cd001e00ffff", + "STRINGS": [ + "Chrono Break", + "[#36ISupport - Area (M) - SPD-25% - Delay+15]\nSlows down the flow of time for targeted enemies." + ] + }, + { + "TYPE": "item", + "ID": 2246, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0500000000ffffffff005600000000000000000000000000000000000000000000001027000063ce003c00ffff", + "STRINGS": [ + "Chrono Burst", + "[#36ISupport - Self - Attack twice in succession]\nAlters time's laws, allowing user to act twice more." + ] + }, + { + "TYPE": "item", + "ID": 2247, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0500000000ffffffff00ffff00000000000000000000000000000300000000000000e803000063cf000a00ffff", + "STRINGS": [ + "Action 1", + "[#36I]\nSPD+3" + ] + }, + { + "TYPE": "item", + "ID": 2248, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0500000000ffffffff00ffff00000000000000000000000000000600000000000000c409000063d0001e00ffff", + "STRINGS": [ + "Action 2", + "[#36I]\nSPD+6" + ] + }, + { + "TYPE": "item", + "ID": 2249, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0500000000ffffffff00ffff000000000000000000000000000009000000000000007017000063d1003200ffff", + "STRINGS": [ + "Action 3", + "[#36I]\nSPD+9" + ] + }, + { + "TYPE": "item", + "ID": 2250, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0500000085ffffffff00ffff4a010000000000000000000000000000000000000000d007000063d2000a00ffff", + "STRINGS": [ + "Impede 1", + "[#36I]\nAttacks/crafts can cancel arts (30% chance). Delay+3." + ] + }, + { + "TYPE": "item", + "ID": 2251, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0500000085ffffffff00ffff300200000000000000000000000000000000000000008813000063d3002800ffff", + "STRINGS": [ + "Impede 2", + "[#36I]\nAttacks/crafts can cancel arts (60% chance). Delay+5." + ] + }, + { + "TYPE": "item", + "ID": 2252, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa05000000d5ffffffff00ffff0a000000000000000000000000000000000000000000dc05000063d4000a00ffff", + "STRINGS": [ + "Cast 1", + "[#36I]\nTime to cast arts is cut by 10%." + ] + }, + { + "TYPE": "item", + "ID": 2253, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa05000000d5ffffffff00ffff0f000000000000000000000000000000000000000000a00f000063d5002800ffff", + "STRINGS": [ + "Cast 2", + "[#36I]\nTime to cast arts is cut by 15%." + ] + }, + { + "TYPE": "item", + "ID": 2261, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0500000000ffffffff015000000000000000000000000000000003000000000000000807000063d6001400ffff", + "STRINGS": [ + "Soul Blur", + "[#36I(R)Attack - One - Faint (30%)]\n(SPD+3) Emits a time-space shaking pulse." + ] + }, + { + "TYPE": "item", + "ID": 2262, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0500000000ffffffff015100000000000000000000000000000004000000000000004c1d000063d7001e00ffff", + "STRINGS": [ + "Demonic Scythe", + "[#36I(R)Attack - Area (M) - K.O. (30%)]\n(SPD+4) Reaps the souls of foes with the Grim Reaper's scythe." + ] + }, + { + "TYPE": "item", + "ID": 2263, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0500000000ffffffff01520000000000000000000000000000000500000000000000983a000063d8002d00ffff", + "STRINGS": [ + "Grim Butterfly", + "[#36I(R)Attack - Area (XL) - Nightmare (50%)]\n(SPD+5) A butterfly swarm plunges enemies into despair." + ] + }, + { + "TYPE": "item", + "ID": 2264, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0500000000ffffffff01530000000000000000000000000000000600000000000000b888000063d9004100ffff", + "STRINGS": [ + "Shadow Blade", + "[#36I(R)Attack - Area (L) - HP Absorb]\n(SPD+6) A demonic blade. Absorb 5% of damage dealt as HP." + ] + }, + { + "TYPE": "item", + "ID": 2265, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0500000000ffffffff01540000000000000000000000000000000300000000000000b80b000063da001e00ffff", + "STRINGS": [ + "Chrono Drive", + "[#36I(R)Support - Area (M) - SPD+25%/MOV+50% (4 Turns)]\n(SPD+3) Speeds up the flow of time for targeted allies." + ] + }, + { + "TYPE": "item", + "ID": 2266, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0500000000ffffffff015500000000000000000000000000000005000000000000007017000063db002800ffff", + "STRINGS": [ + "Chrono Break", + "[#36I(R)Support - Area (M) - SPD-25% - Delay+15]\n(SPD+5) Slows down the flow of time for targeted enemies." + ] + }, + { + "TYPE": "item", + "ID": 2267, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0500000000ffffffff01560000000000000000000000000000000700000000000000204e000063dc003e00ffff", + "STRINGS": [ + "Chrono Burst", + "[#36I(R)Support - Self - Attack twice in succession]\n(SPD+7) Alters time's laws, allowing user to act twice more." + ] + }, + { + "TYPE": "item", + "ID": 2254, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0501000015ffffffff01ffff0a000a000000000000000000000000000000000000008813000063dd003200ffff", + "STRINGS": [ + "Nightmare", + "[#36I(R)]\n(STR+10) Attacks/crafts can nightmare enemies (10% chance)." + ] + }, + { + "TYPE": "item", + "ID": 2255, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0502000022ffffffff01ffff0f000a00000000000000000000000000000000000000a00f000063de002800ffff", + "STRINGS": [ + "Speed Breaker", + "[#36I(R)]\n(STR+10) Attacks/crafts cause SPD-25% (15% chance)." + ] + }, + { + "TYPE": "item", + "ID": 2256, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa05000000e1ffffffff01ffff320000000000070000000000000000000000000000001027000063df003c00ffff", + "STRINGS": [ + "Black Bell", + "[#36I(R)]\n(ATS+7) Halves delay after using time arts." + ] + }, + { + "TYPE": "item", + "ID": 2257, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa050000000042005100022400000000000000050000000000000002000000000000007017000063e0002800ffff", + "STRINGS": [ + "Reaper", + "[#36I(SR) Demonic Scythe/Frost Edge/Spark Arrow]\nATS+5/SPD+2" + ] + }, + { + "TYPE": "item", + "ID": 2260, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0502000057ffffffff02ffff0a001e000000000000000000000000000000000000001027000063e1003200ffff", + "STRINGS": [ + "Rakshasha", + "[#36I(SR)]\n(STR+30) Attacks/crafts cause SPD-25% or MOV-50% (10% chance)." + ] + }, + { + "TYPE": "item", + "ID": 2258, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa05000000005500560002540000000000000000000000000000000f00000000000000c8af000063e2003c00ffff", + "STRINGS": [ + "Skanda Gem", + "[#36I(SR) Chrono Drive/Chrono Break/Chrono Burst]\nSPD+15" + ] + }, + { + "TYPE": "item", + "ID": 2259, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa05000000d5ffffffff02530019000000000000000000000000000000000000000000c8af000063e3004600ffff", + "STRINGS": [ + "Diabolos Gem", + "[#36I(SR) Shadow Blade]\nDecreases arts' casting time by 25%." + ] + }, + { + "TYPE": "item", + "ID": 2270, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0600000000ffffffff005f00000000000000000000000000000000000000000000005802000063fa000a00ffff", + "STRINGS": [ + "Golden Sphere", + "[#37IAttack (Set) - Area (S) - Blind (30%)]\nAttacks enemies with golden magic orbs." + ] + }, + { + "TYPE": "item", + "ID": 2271, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0600000000ffffffff00600000000000000000000000000000000000000000000000ac0d000063fb001400ffff", + "STRINGS": [ + "Dark Matter", + "[#37IAttack (Set) - Area (L) - Suction - MOV-50%]\nDraws in and compresses enemies." + ] + }, + { + "TYPE": "item", + "ID": 2272, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0600000000ffffffff00610000000000000000000000000000000000000000000000401f000063fc002800ffff", + "STRINGS": [ + "Cross Crusade", + "[#37IAttack - All]\nA cross-shaped hole bathes all in holy light." + ] + }, + { + "TYPE": "item", + "ID": 2273, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0600000000ffffffff00620000000000000000000000000000000000000000000000983a000063fd003c00ffff", + "STRINGS": [ + "Altair Cannon", + "[#37IAttack - All - ATS/ADF-25%]\nBlasts of light rain down from above." + ] + }, + { + "TYPE": "item", + "ID": 2274, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0600000000ffffffff00630000000000000000000000000000000000000000000000dc05000063fe001e00ffff", + "STRINGS": [ + "Fortuna", + "[#37ISupport - Area (M) - ATS/ADF+25% (4 Turns)]\nGrants light's protection to raise ATS/ADF." + ] + }, + { + "TYPE": "item", + "ID": 2275, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0600000000ffffffff006400000000000000000000000000000000000000000000002003000063ff001400ffff", + "STRINGS": [ + "Shining", + "[#37ISupport - One - Insight]\nGrants insight status for 4 turns." + ] + }, + { + "TYPE": "item", + "ID": 2276, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0600000000ffffffff00650000000000000000000000000000000000000000000000204e00006300013c00ffff", + "STRINGS": [ + "Seraphic Ring", + "[#37IRecovery - All - Cures K.O. - HP Heal (Full) - HP Regen]\nFully heals, and heals 30% HP for 4 turns." + ] + }, + { + "TYPE": "item", + "ID": 2277, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa06000000d6ffffffff00ffff0a000000000000000000000000000000000000000000dc0500006301010a00ffff", + "STRINGS": [ + "EP Cut 1", + "[#37I]\nArts' EP cost -10%." + ] + }, + { + "TYPE": "item", + "ID": 2278, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa06000000d6ffffffff00ffff0f000000000000000000000000000000000000000000a00f00006302012800ffff", + "STRINGS": [ + "EP Cut 2", + "[#37I]\nArts' EP cost -15%." + ] + }, + { + "TYPE": "item", + "ID": 2279, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0600000000ffffffff00ffff00000000000000000000320000000000000000000000dc0500006303010a00ffff", + "STRINGS": [ + "Hit 1", + "[#37I]\nACC+50%" + ] + }, + { + "TYPE": "item", + "ID": 2280, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0600000000ffffffff00ffff00000000000000000000640000000000000000000000a00f00006304012800ffff", + "STRINGS": [ + "Hit 2", + "[#37I]\nACC+100%" + ] + }, + { + "TYPE": "item", + "ID": 2291, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0600000000ffffffff015f00000004000000000000000000000000000000c8000000d00700006305011400ffff", + "STRINGS": [ + "Golden Sphere", + "[#37I(R) Attack (Set) - Area (S) - Blind (30%)]\n(HP+200/STR+4) Attacks enemies with golden magic orbs." + ] + }, + { + "TYPE": "item", + "ID": 2292, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0600000000ffffffff0160000000060000000000000000000000000000002c010000282300006306011e00ffff", + "STRINGS": [ + "Dark Matter", + "[#37I(R) Attack (Set) - Area (L) - Suction - MOV-50%]\n(HP+300/STR+6) Draws in and compresses enemies." + ] + }, + { + "TYPE": "item", + "ID": 2293, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0600000000ffffffff01610000000800000000000000000000000000000090010000204e00006307012d00ffff", + "STRINGS": [ + "Cross Crusade", + "[#37I(R) Attack - All]\n(HP+400/STR+8) A cross-shaped hole bathes all in holy light." + ] + }, + { + "TYPE": "item", + "ID": 2294, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0600000000ffffffff01620000000c00000000000000000000000000000058020000c8af00006308014100ffff", + "STRINGS": [ + "Altair Cannon", + "[#37I(R) Attack - All - ATS/ADF-25%]\n(HP+600/STR+12) Blasts of light rain down from above." + ] + }, + { + "TYPE": "item", + "ID": 2295, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0600000000ffffffff01630000000000000005000500000000000000000000000000d00700006309011900ffff", + "STRINGS": [ + "Fortuna", + "[#37I(R) Support - Area (M) - ATS/ADF+25% (4 Turns)]\n(ATS+5/ADF+5) Grants light's protection to raise ATS/ADF." + ] + }, + { + "TYPE": "item", + "ID": 2296, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0600000000ffffffff01640000000000000000000000320005000000000000000000b80b0000630a012300ffff", + "STRINGS": [ + "Shining", + "[#37I(R) Support - One - Insight]\n(ACC+50%/EVA+5%) Grants insight status for 4 turns." + ] + }, + { + "TYPE": "item", + "ID": 2297, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0600000000ffffffff016500000000000000000000000000000000000000e803640030750000630b014100ffff", + "STRINGS": [ + "Seraphic Ring", + "[#37I(R) Recovery - All - Cures K.O. - HP Heal (Full) - HP Regen]\n(HP+1000/EP+100) Fully heals, and heals 30% HP for 4 turns." + ] + }, + { + "TYPE": "item", + "ID": 2284, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0600000000ffffffff01ffff00000000000005000000000000000000000000000000b80b0000630c011400ffff", + "STRINGS": [ + "Detection", + "[#37I(R)]\n(ATS+5) Undiscovered treasure chests are shown on the minimap." + ] + }, + { + "TYPE": "item", + "ID": 2285, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa06000000cfffffffff0163001e000000000005000000000000000000000000000000b80b0000630d011e00ffff", + "STRINGS": [ + "Luck", + "[#37I(R) Fortuna]\n(ATS+5) Increases the chance of an item dropping in battle." + ] + }, + { + "TYPE": "item", + "ID": 2286, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa06000000e5ffffffff01ffff00000a0000000000000000000000000000000000000088130000630e013200ffff", + "STRINGS": [ + "Dragon Vision", + "[#37I(R)]\n(STR+10) Automatically analyzes defeated enemies." + ] + }, + { + "TYPE": "item", + "ID": 2281, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0601000017ffffffff01ffff0a000a0000000000000000000000000000000000000088130000630f013200ffff", + "STRINGS": [ + "Vanish", + "[#37I(R)]\n(STR+10) Attacks/crafts can vanish enemies (10% chance)." + ] + }, + { + "TYPE": "item", + "ID": 2282, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0602000020ffffffff01ffff0f000a00000000000000000000000000000000000000a00f00006310012800ffff", + "STRINGS": [ + "Voice Breaker", + "[#37I(R)]\n(STR+10) Attacks/crafts cause ATS-25% (15% chance)." + ] + }, + { + "TYPE": "item", + "ID": 2283, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa06000000e1ffffffff01ffff32000000000007000000000000000000000000000000102700006311013c00ffff", + "STRINGS": [ + "Golden Bell", + "[#37I(R)]\n(ATS+7) Halves delay after using space arts." + ] + }, + { + "TYPE": "item", + "ID": 2289, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa06000000006500ffff0264000000000000000f000000000000000000000000006400409c00006312014600ffff", + "STRINGS": [ + "Seraph", + "[#37I(SR) Shining/Seraphic Ring]\nEP+100/ATS+15" + ] + }, + { + "TYPE": "item", + "ID": 2290, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0602000058ffffffff02ffff0a001e00000000000000000000000000000000000000102700006313013200ffff", + "STRINGS": [ + "Qilin", + "[#37I(SR)]\n(STR+30) Attacks/crafts cause STR-25% or DEF-25% (10% chance)." + ] + }, + { + "TYPE": "item", + "ID": 2287, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa06000000e6ffffffff02ffffc8000f00000000000000000000000000000000000000c8af00006314013c00ffff", + "STRINGS": [ + "Domination", + "[#37I(R)]\n(STR+15) First attack/craft used each battle deals 2x damage." + ] + }, + { + "TYPE": "item", + "ID": 2288, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa06000000d6ffffffff02620019000f00000000000000000000000000000000000000c8af00006315014600ffff", + "STRINGS": [ + "Deus Gem", + "[#37I(R) Altair Cannon]\n(STR+15) Arts' EP cost -25%." + ] + }, + { + "TYPE": "item", + "ID": 2300, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0700000000ffffffff006e000000000000000000000000000000000000000000000058020000632c010a00ffff", + "STRINGS": [ + "Luminous Ray", + "[#38IAttack (Set) - Line (S)]\nUnleashes a beam of lunar light." + ] + }, + { + "TYPE": "item", + "ID": 2301, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0700000000ffffffff006f0000000000000000000000000000000000000000000000c4090000632d011400ffff", + "STRINGS": [ + "Silver Thorn", + "[#38IAttack - Area (M) - Confuse (40%)]\nBlades of condensed insanity rain from above." + ] + }, + { + "TYPE": "item", + "ID": 2302, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0700000000ffffffff00700000000000000000000000000000000000000000000000581b0000632e012800ffff", + "STRINGS": [ + "Phantom Phobia", + "[#38IAttack - Area (XL) - Stat Down (random)]\nTerrifies enemies with an illusion of death." + ] + }, + { + "TYPE": "item", + "ID": 2303, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0700000000ffffffff00710000000000000000000000000000000000000000000000983a0000632f013c00ffff", + "STRINGS": [ + "Claiomh Solarion", + "[#38IAttack - All]\nAnnihilates all with a beam of magical energy." + ] + }, + { + "TYPE": "item", + "ID": 2304, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0700000000ffffffff00720000000000000000000000000000000000000000000000c80000006330010a00ffff", + "STRINGS": [ + "Analyze", + "[#38ISupport - One - Analysis]\nAnalyzes and obtains data on an enemy." + ] + }, + { + "TYPE": "item", + "ID": 2305, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0700000000ffffffff00730000000000000000000000000000000000000000000000b00400006331011e00ffff", + "STRINGS": [ + "Saintly Force", + "[#38ISupport - One - STR/DEF+25% (4 Turns) - Cures Stat Down]\nBuffs an ally with pure radiance." + ] + }, + { + "TYPE": "item", + "ID": 2306, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0700000000ffffffff00740000000000000000000000000000000000000000000000401f00006332012800ffff", + "STRINGS": [ + "Crescent Mirror", + "[#38ISupport - All - Magic Reflect - ATS+25% (4 Turns)]\nReflects one magic attack. Increases ATS by 25%." + ] + }, + { + "TYPE": "item", + "ID": 2307, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0700000000ffffffff00ffff00000000000000000000000000000000000000003200dc0500006333010a00ffff", + "STRINGS": [ + "EP 1", + "[#38I]\nEP+50" + ] + }, + { + "TYPE": "item", + "ID": 2308, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0700000000ffffffff00ffff00000000000000000000000000000000000000006400a00f00006334012800ffff", + "STRINGS": [ + "EP 2", + "[#38I]\nEP+100" + ] + }, + { + "TYPE": "item", + "ID": 2309, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0700000000ffffffff00ffff0000000000000a000000000000000000000000000000e80300006335010a00ffff", + "STRINGS": [ + "Mind 1", + "[#38I]\nATS+10" + ] + }, + { + "TYPE": "item", + "ID": 2310, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0700000000ffffffff00ffff00000000000014000000000000000000000000000000c40900006336011e00ffff", + "STRINGS": [ + "Mind 2", + "[#38I]\nATS+20" + ] + }, + { + "TYPE": "item", + "ID": 2311, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0700000000ffffffff00ffff00000000000028000000000000000000000000000000701700006337013200ffff", + "STRINGS": [ + "Mind 3", + "[#38I]\nATS+40" + ] + }, + { + "TYPE": "item", + "ID": 2320, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0700000000ffffffff016e0000000000000004000000000000000000000000001400080700006338011400ffff", + "STRINGS": [ + "Luminous Ray", + "[#38I(R)Attack (Set) - Line (S)]\n(EP+20/ATS+4) Unleashes a beam of lunar light." + ] + }, + { + "TYPE": "item", + "ID": 2321, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0700000000ffffffff016f0000000000000006000000000000000000000000001e004c1d00006339011e00ffff", + "STRINGS": [ + "Silver Thorn", + "[#38I(R)Attack - Area (M) - Confuse (40%)]\n(EP+30/ATS+6) Blades of condensed insanity rain from above." + ] + }, + { + "TYPE": "item", + "ID": 2322, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0700000000ffffffff01700000000000000008000000000000000000000000002800983a0000633a012800ffff", + "STRINGS": [ + "Phantom Phobia", + "[#38I(R)Attack - Area (XL) - Stat Down (random)]\n(EP+40/ATS+8) Terrifies enemies with an illusion of death." + ] + }, + { + "TYPE": "item", + "ID": 2323, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0700000000ffffffff0171000000000000000c000000000000000000000000003c00c8af0000633b013c00ffff", + "STRINGS": [ + "Claiomh Solarion", + "[#38I(R)Attack - All]\n(EP+60/ATS+12) Annihilates all with a beam of magical energy." + ] + }, + { + "TYPE": "item", + "ID": 2324, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0700000000ffffffff0172000000000000000300000000000000000000000000000058020000633c010a00ffff", + "STRINGS": [ + "Analyze", + "[#38I(R)Support - One - Analysis]\n(ATS+3) Analyzes and obtains data on an enemy." + ] + }, + { + "TYPE": "item", + "ID": 2325, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0700000000ffffffff01730000000700070000000000000000000000000000000000ac0d0000633d012800ffff", + "STRINGS": [ + "Saintly Force", + "[#38I(R)Support - One - STR/DEF+25% (4 Turns) - Cures Stat Down]\n(STR+7/DEF+7) Buffs an ally with pure radiance." + ] + }, + { + "TYPE": "item", + "ID": 2326, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0700000000ffffffff01740000000000000009000900000000000000000000000000e02e0000633e013200ffff", + "STRINGS": [ + "Crescent Mirror", + "[#38ISupport - All - Magic Reflect - ATS+25% (4 Turns)]\n(ATS+9/ADF+9) Reflects one magic attack. Increases ATS by 25%." + ] + }, + { + "TYPE": "item", + "ID": 2313, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa07000000e7ffffffff01720000000300000000000000000000000000000000000000e8030000633f011400ffff", + "STRINGS": [ + "Information", + "[#38I(R) Analyze]\n(STR+3) Allows you to see data on enemies yet to be analyzed." + ] + }, + { + "TYPE": "item", + "ID": 2314, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0700000000ffffffff01700000000000000000000000000000000000000000000000401f00006340013200ffff", + "STRINGS": [ + "Intimidation", + "[#38I(R)S Phantom Phobia]\nMakes enemies on the field more likely to run from you." + ] + }, + { + "TYPE": "item", + "ID": 2315, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa07000000e8ffffffff01ffff02000d00000000000000000000000000000000000000a00f00006341013c00ffff", + "STRINGS": [ + "Chaos", + "[#38I(R)]\n(STR+13) Abnormal statuses inflicted on foes last 2 more turns." + ] + }, + { + "TYPE": "item", + "ID": 2312, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0701000013ffffffff01ffff0a000a00000000000000000000000000000000000000881300006342013200ffff", + "STRINGS": [ + "Confuse", + "[#38I(R)]\n(STR+10) Attacks/crafts can confuse enemies (10% chance)." + ] + }, + { + "TYPE": "item", + "ID": 2316, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa07000000e1ffffffff01ffff32000000000007000000000000000000000000000000102700006343013c00ffff", + "STRINGS": [ + "Silver Bell", + "[#38I(R)]\n(ATS+7) Halves delay after using mirage arts." + ] + }, + { + "TYPE": "item", + "ID": 2319, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa070200004effffffff02ffff0a001e00000000000000000000000000000000000000881300006344013200ffff", + "STRINGS": [ + "Youkai Gem", + "[#38I(SR)]\n(STR+30) Attacks/crafts cause ATS-25% or ADF-25% (10% chance)." + ] + }, + { + "TYPE": "item", + "ID": 2317, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa0700000000ffffffff02710000000000000050000000000000000000000000000000c8af00006345013c00ffff", + "STRINGS": [ + "Brahma Gem", + "[#38I(SR) Claiomh Solarion]\nATS+80" + ] + }, + { + "TYPE": "item", + "ID": 2318, + "UNK0": -3, + "STRING": "SL", + "UNK1": "aa070000000073007400026f000000000000000000000000000000000000000000b400c8af00006346014600ffff", + "STRINGS": [ + "Chakravarti Gem", + "[#38I(SR) Silver Thorn/Saintly Force/Crescent Mirror]\nEP+180" + ] + }, + { + "TYPE": "item", + "ID": 2350, + "UNK0": -3, + "STRING": "0", + "UNK1": "c400000000000000000000000000000000000000000000000000000000000000000000000000000100000000ffff", + "STRINGS": [ + "Thors Faceplate", + "An ARCUS cover for Class VII with a lion on a red background." + ] + }, + { + "TYPE": "item", + "ID": 2351, + "UNK0": 9, + "STRING": "0", + "UNK1": "c400000000000000000000000001000000000000000000000000000000000000000000000000000101000000ffff", + "STRINGS": [ + "Special Ops Faceplate", + "An ARCUS cover designed for special ops." + ] + }, + { + "TYPE": "item", + "ID": 2352, + "UNK0": -3, + "STRING": "0", + "UNK1": "c400000000000000000000000002000000000000000000000000000000000000000000204e00000102000000ffff", + "STRINGS": [ + "Thors Faceplate - Black", + "An official Thors Military Academy ARCUS cover." + ] + }, + { + "TYPE": "item", + "ID": 2353, + "UNK0": -3, + "STRING": "0", + "UNK1": "c400000000000000000000000003000000000000000000000000000000000000000000204e00000103000000ffff", + "STRINGS": [ + "Thors Faceplate - Red", + "An official Thors Military Academy ARCUS cover." + ] + }, + { + "TYPE": "item", + "ID": 2354, + "UNK0": -3, + "STRING": "0", + "UNK1": "c400000000000000000000000004000000000000000000000000000000000000000000000000000104000000ffff", + "STRINGS": [ + "◆", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 2700, + "UNK0": -3, + "STRING": "0", + "UNK1": "c4000000000000000000000000000000000000000000000000000000000000000000000000000001320000000b00", + "STRINGS": [ + "Faceplate - Rean", + "A stylish metallic ARCUS cover with a design based on Rean." + ] + }, + { + "TYPE": "item", + "ID": 2701, + "UNK0": -3, + "STRING": "0", + "UNK1": "c4000000000000000000000000000000000000000000000000000000000000000000000000000001330000000c00", + "STRINGS": [ + "Faceplate - Alisa", + "A stylish metallic ARCUS cover with a design based on Alisa." + ] + }, + { + "TYPE": "item", + "ID": 2702, + "UNK0": -3, + "STRING": "0", + "UNK1": "c4000000000000000000000000000000000000000000000000000000000000000000000000000001340000000d00", + "STRINGS": [ + "Faceplate - Elliot", + "A stylish metallic ARCUS cover with a design based on Elliot." + ] + }, + { + "TYPE": "item", + "ID": 2703, + "UNK0": -3, + "STRING": "0", + "UNK1": "c4000000000000000000000000000000000000000000000000000000000000000000000000000001350000000e00", + "STRINGS": [ + "Faceplate - Laura", + "A stylish metallic ARCUS cover with a design based on Laura." + ] + }, + { + "TYPE": "item", + "ID": 2704, + "UNK0": -3, + "STRING": "0", + "UNK1": "c4000000000000000000000000000000000000000000000000000000000000000000000000000001360000003b00", + "STRINGS": [ + "Faceplate - Machias", + "A stylish metallic ARCUS cover with a design based on Machias." + ] + }, + { + "TYPE": "item", + "ID": 2705, + "UNK0": -3, + "STRING": "0", + "UNK1": "c4000000000000000000000000000000000000000000000000000000000000000000000000000001370000003c00", + "STRINGS": [ + "Faceplate - Emma", + "A stylish metallic ARCUS cover with a design based on Emma." + ] + }, + { + "TYPE": "item", + "ID": 2706, + "UNK0": -3, + "STRING": "0", + "UNK1": "c4000000000000000000000000000000000000000000000000000000000000000000000000000001380000003d00", + "STRINGS": [ + "Faceplate - Jusis", + "A stylish metallic ARCUS cover with a design based on Jusis." + ] + }, + { + "TYPE": "item", + "ID": 2707, + "UNK0": -3, + "STRING": "0", + "UNK1": "c4000000000000000000000000000000000000000000000000000000000000000000000000000001390000003e00", + "STRINGS": [ + "Faceplate - Fie", + "A stylish metallic ARCUS cover with a design based on Fie." + ] + }, + { + "TYPE": "item", + "ID": 2708, + "UNK0": -3, + "STRING": "0", + "UNK1": "c40000000000000000000000000000000000000000000000000000000000000000000000000000013a0000003f00", + "STRINGS": [ + "Faceplate - Gaius", + "A stylish metallic ARCUS cover with a design based on Gaius." + ] + }, + { + "TYPE": "item", + "ID": 2709, + "UNK0": -3, + "STRING": "0", + "UNK1": "c40000000000000000000000000000000000000000000000000000000000000000000000000000013b0000004000", + "STRINGS": [ + "Faceplate - Millium", + "A stylish metallic ARCUS cover with a design based on Millium." + ] + }, + { + "TYPE": "item", + "ID": 2710, + "UNK0": -3, + "STRING": "0", + "UNK1": "c40000000000000000000000000000000000000000000000000000000000000000000000000000013c0000004100", + "STRINGS": [ + "Faceplate - Crow", + "A stylish metallic ARCUS cover with a design based on Crow." + ] + }, + { + "TYPE": "item", + "ID": 2713, + "UNK0": -3, + "STRING": "0", + "UNK1": "c400000000000000000000000000000000000000000000000000000000000000000000000000000164000000601b", + "STRINGS": [ + "Faceplate - Cold Steel", + "An ARCUS cover featuring the game's logo." + ] + }, + { + "TYPE": "item", + "ID": 2712, + "UNK0": -3, + "STRING": "0", + "UNK1": "c4000000000000000000000000000000000000000000000000000000000000000000000000000001650000005b1b", + "STRINGS": [ + "Faceplate - Dengeki", + "An ARCUS cover from Dengeki Playstation㍻." + ] + }, + { + "TYPE": "item", + "ID": 2711, + "UNK0": -3, + "STRING": "0", + "UNK1": "c400000000000000000000000000000000000000000000000000000000000000000000000000000166000000591b", + "STRINGS": [ + "Faceplate - Famitsu", + "An ARCUS cover from Famitsu." + ] + }, + { + "TYPE": "item", + "ID": 2716, + "UNK0": -3, + "STRING": "0", + "UNK1": "c400000000000000000000000000000000000000000000000000000000000000000000000000000167000000631b", + "STRINGS": [ + "Faceplate - Toro & Kuro", + "An ARCUS cover featuring cool cats Toro and Kuro." + ] + }, + { + "TYPE": "item", + "ID": 201, + "UNK0": -3, + "STRING": "0", + "UNK1": "c900000000000000000000000000000000000000000000000000000000000000000000000000000101000000ffff", + "STRINGS": [ + "Beginner Rod", + "A lightweight rod that lets you feel even the\nslightest tug. Ideal for catching small fish." + ] + }, + { + "TYPE": "item", + "ID": 202, + "UNK0": -3, + "STRING": "0", + "UNK1": "c900000000000000000000000000000000000000000000000000000000000000000000000000000102000000ffff", + "STRINGS": [ + "Deluxe Rod", + "A standard rod, modified to be easy to use.\nIdeal for catching medium sized fish." + ] + }, + { + "TYPE": "item", + "ID": 203, + "UNK0": -3, + "STRING": "0", + "UNK1": "c900000000000000000000000000000000000000000000000000000000000000000000000000000103000000ffff", + "STRINGS": [ + "Lakelord Star", + "An exceptionally sturdy rod that can withstand\nthe mightiest catch. Ideal for catching large fish." + ] + }, + { + "TYPE": "item", + "ID": 220, + "UNK0": -3, + "STRING": "0", + "UNK1": "ca00000000000000000000000000000000000000000000000000000000000000000000000000006301000000ffff", + "STRINGS": [ + "Groundbait", + "A bait designed to lure in fish. Increases the\nnumber of times you can fish at a specific spot." + ] + }, + { + "TYPE": "item", + "ID": 241, + "UNK0": -3, + "STRING": "0", + "UNK1": "8000000000000000000000000000000000000000000000000000000000000000000000000000000101000000ffff", + "STRINGS": [ + "Earth Sepith", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 242, + "UNK0": -3, + "STRING": "0", + "UNK1": "8000000000000000000000000000000000000000000000000000000000000000000000000000000101000000ffff", + "STRINGS": [ + "Water Sepith", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 243, + "UNK0": -3, + "STRING": "0", + "UNK1": "8000000000000000000000000000000000000000000000000000000000000000000000000000000101000000ffff", + "STRINGS": [ + "Fire Sepith", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 244, + "UNK0": -3, + "STRING": "0", + "UNK1": "8000000000000000000000000000000000000000000000000000000000000000000000000000000101000000ffff", + "STRINGS": [ + "Wind Sepith", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 245, + "UNK0": -3, + "STRING": "0", + "UNK1": "8000000000000000000000000000000000000000000000000000000000000000000000000000000101000000ffff", + "STRINGS": [ + "Time Sepith", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 246, + "UNK0": -3, + "STRING": "0", + "UNK1": "8000000000000000000000000000000000000000000000000000000000000000000000000000000101000000ffff", + "STRINGS": [ + "Space Sepith", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 247, + "UNK0": -3, + "STRING": "0", + "UNK1": "8000000000000000000000000000000000000000000000000000000000000000000000000000000101000000ffff", + "STRINGS": [ + "Mirage Sepith", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 248, + "UNK0": -3, + "STRING": "0", + "UNK1": "8000000000000000000000000000000000000000000000000000000000000000000000000000000101000000ffff", + "STRINGS": [ + "Sepith Mass", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 249, + "UNK0": -3, + "STRING": "0", + "UNK1": "8000000000000000000000000000000000000000000000000000000000000000000000000000000101000000ffff", + "STRINGS": [ + "All Element Sepith", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 250, + "UNK0": -3, + "STRING": "T", + "UNK1": "8200000000000000000000000000000000000000000000000000000000000000000000000000000101000000ffff", + "STRINGS": [ + "Notebook - Main", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 251, + "UNK0": -3, + "STRING": "T", + "UNK1": "8200000000000000000000000000000000000000000000000000000000000000000000000000000101000000ffff", + "STRINGS": [ + "Notebook - Quest", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 252, + "UNK0": -3, + "STRING": "T", + "UNK1": "8200000000000000000000000000000000000000000000000000000000000000000000000000000101000000ffff", + "STRINGS": [ + "Notebook - Battle", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 253, + "UNK0": -3, + "STRING": "T", + "UNK1": "8200000000000000000000000000000000000000000000000000000000000000000000000000000101000000ffff", + "STRINGS": [ + "Notebook - Character", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 254, + "UNK0": -3, + "STRING": "T", + "UNK1": "8200000000000000000000000000000000000000000000000000000000000000000000000000000101000000ffff", + "STRINGS": [ + "Recipe Book", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 255, + "UNK0": -3, + "STRING": "T", + "UNK1": "8200000000000000000000000000000000000000000000000000000000000000000000000000000101000000ffff", + "STRINGS": [ + "Fishing Book", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 256, + "UNK0": -3, + "STRING": "T", + "UNK1": "8200000000000000000000000000000000000000000000000000000000000000000000000000000101000000ffff", + "STRINGS": [ + "Notebook - Books", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 257, + "UNK0": -3, + "STRING": "T", + "UNK1": "8200000000000000000000000000000000000000000000000000000000000000000000000000000101000000ffff", + "STRINGS": [ + "Notebook - A.Voice", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 258, + "UNK0": -3, + "STRING": "T", + "UNK1": "8200000000000000000000000000000000000000000000000000000000000000000000000000000101000000ffff", + "STRINGS": [ + "Notebook - Help", + "◆" + ] + }, + { + "TYPE": "item", + "ID": 260, + "UNK0": -3, + "STRING": "SL", + "UNK1": "c300000000000000000000000000000000000000000000000000000000000000000000640000000101000000ffff", + "STRINGS": [ + "Imperial Chronicle - Issue 1", + "Issue 1 [Budget and Military Expansion Plans Unveiled]\nHow will both chambers react to the chancellor's plans?" + ] + }, + { + "TYPE": "item", + "ID": 261, + "UNK0": -3, + "STRING": "SL", + "UNK1": "c300000000000000000000000000000000000000000000000000000000000000000000640000000102000000ffff", + "STRINGS": [ + "Imperial Chronicle - Issue 2", + "Issue 2 [The Imperial Provincial Council Meets]\nThe Four Great Houses convene. Also: Violence in Crossbell?" + ] + }, + { + "TYPE": "item", + "ID": 262, + "UNK0": -3, + "STRING": "SL", + "UNK1": "c300000000000000000000000000000000000000000000000000000000000000000000640000000103000000ffff", + "STRINGS": [ + "Imperial Chronicle - Issue 3", + "Issue 3 [The RFTF is here! All the latest tech on show]\nChairman Irina Reinford shares her vision for the future." + ] + }, + { + "TYPE": "item", + "ID": 263, + "UNK0": -3, + "STRING": "SL", + "UNK1": "c300000000000000000000000000000000000000000000000000000000000000000000640000000104000000ffff", + "STRINGS": [ + "Imperial Chronicle - Issue 4", + "Issue 4 [The Heimdallr Summer Festival Approaches!]\nAttendees listed! Who will Princess Alfin dance with?" + ] + }, + { + "TYPE": "item", + "ID": 264, + "UNK0": -3, + "STRING": "SL", + "UNK1": "c300000000000000000000000000000000000000000000000000000000000000000000640000000105000000ffff", + "STRINGS": [ + "Imperial Chronicle - Issue 5", + "Issue 5 [Special Issue - The Heimdallr Summer Festival]\nThis year's highlights, plus an interview with the RMP!" + ] + }, + { + "TYPE": "item", + "ID": 265, + "UNK0": -3, + "STRING": "SL", + "UNK1": "c300000000000000000000000000000000000000000000000000000000000000000000640000000106000000ffff", + "STRINGS": [ + "Imperial Chronicle - Issue 6", + "Issue 6 [The Imperial Liberation Front Still at Large!]\nTerrorists attack! Plus the latest on the Imperial family." + ] + }, + { + "TYPE": "item", + "ID": 266, + "UNK0": -3, + "STRING": "SL", + "UNK1": "c300000000000000000000000000000000000000000000000000000000000000000000640000000107000000ffff", + "STRINGS": [ + "Imperial Chronicle - Issue 7", + "Issue 7 [History's First International Conference Begins]\nWho's going to be in attendance? Plus, the Orchis Tower!" + ] + }, + { + "TYPE": "item", + "ID": 267, + "UNK0": -3, + "STRING": "SL", + "UNK1": "c300000000000000000000000000000000000000000000000000000000000000000000640000000108000000ffff", + "STRINGS": [ + "Imperial Chronicle - Issue 8", + "Issue 8 [Terrorism at the Trade Conference]\nAll the details on the attack and how it was resolved!" + ] + }, + { + "TYPE": "item", + "ID": 268, + "UNK0": -3, + "STRING": "SL", + "UNK1": "c300000000000000000000000000000000000000000000000000000000000000000000640000000109000000ffff", + "STRINGS": [ + "Imperial Chronicle - Issue 9", + "Issue 9 [The Courageous Takes Flight!]\nExclusive interview with Prince Olivert!" + ] + }, + { + "TYPE": "item", + "ID": 269, + "UNK0": -3, + "STRING": "SL", + "UNK1": "c30000000000000000000000000000000000000000000000000000000000000000000064000000010a000000ffff", + "STRINGS": [ + "Imperial Chronicle - Issue 10", + "Issue 10 [The Imperial Liberation Front Meets its end!]\nA stunning achievement for the Railway Military Police!" + ] + }, + { + "TYPE": "item", + "ID": 270, + "UNK0": -3, + "STRING": "SL", + "UNK1": "c30000000000000000000000000000000000000000000000000000000000000000000064000000010b000000ffff", + "STRINGS": [ + "Imperial Chronicle - Issue 11", + "Issue 11 [Breaking News -- Garrelia Fortress is no More!]\nHis Majesty speaks. Now is the time to be strong, Erebonians!" + ] + }, + { + "TYPE": "item", + "ID": 271, + "UNK0": -3, + "STRING": "SL", + "UNK1": "c300000000000000000000000000000000000000000000000000000000000000000000640000000114000000ffff", + "STRINGS": [ + "Carnelia Reprint - Chapter 1", + "Part 1 of a popular novel published in Liberl." + ] + }, + { + "TYPE": "item", + "ID": 272, + "UNK0": -3, + "STRING": "SL", + "UNK1": "c300000000000000000000000000000000000000000000000000000000000000000000640000000115000000ffff", + "STRINGS": [ + "Carnelia Reprint - Chapter 2", + "Part 2 of a popular novel published in Liberl." + ] + }, + { + "TYPE": "item", + "ID": 273, + "UNK0": -3, + "STRING": "SL", + "UNK1": "c300000000000000000000000000000000000000000000000000000000000000000000640000000116000000ffff", + "STRINGS": [ + "Carnelia Reprint - Chapter 3", + "Part 3 of a popular novel published in Liberl." + ] + }, + { + "TYPE": "item", + "ID": 274, + "UNK0": -3, + "STRING": "SL", + "UNK1": "c300000000000000000000000000000000000000000000000000000000000000000000640000000117000000ffff", + "STRINGS": [ + "Carnelia Reprint - Chapter 4", + "Part 4 of a popular novel published in Liberl." + ] + }, + { + "TYPE": "item", + "ID": 275, + "UNK0": -3, + "STRING": "SL", + "UNK1": "c300000000000000000000000000000000000000000000000000000000000000000000640000000118000000ffff", + "STRINGS": [ + "Carnelia Reprint - Chapter 5", + "Part 5 of a popular novel published in Liberl." + ] + }, + { + "TYPE": "item", + "ID": 276, + "UNK0": -3, + "STRING": "SL", + "UNK1": "c300000000000000000000000000000000000000000000000000000000000000000000640000000119000000ffff", + "STRINGS": [ + "Carnelia Reprint - Chapter 6", + "Part 6 of a popular novel published in Liberl." + ] + }, + { + "TYPE": "item", + "ID": 277, + "UNK0": -3, + "STRING": "SL", + "UNK1": "c30000000000000000000000000000000000000000000000000000000000000000000064000000011a000000ffff", + "STRINGS": [ + "Carnelia Reprint - Chapter 7", + "Part 7 of a popular novel published in Liberl." + ] + }, + { + "TYPE": "item", + "ID": 278, + "UNK0": -3, + "STRING": "SL", + "UNK1": "c30000000000000000000000000000000000000000000000000000000000000000000064000000011b000000ffff", + "STRINGS": [ + "Carnelia Reprint - Chapter 8", + "Part 8 of a popular novel published in Liberl." + ] + }, + { + "TYPE": "item", + "ID": 279, + "UNK0": -3, + "STRING": "SL", + "UNK1": "c30000000000000000000000000000000000000000000000000000000000000000000064000000011c000000ffff", + "STRINGS": [ + "Carnelia Reprint - Chapter 9", + "Part 9 of a popular novel published in Liberl." + ] + }, + { + "TYPE": "item", + "ID": 280, + "UNK0": -3, + "STRING": "SL", + "UNK1": "c30000000000000000000000000000000000000000000000000000000000000000000064000000011d000000ffff", + "STRINGS": [ + "Carnelia Reprint - Chapter 10", + "Part 10 of a popular novel published in Liberl." + ] + }, + { + "TYPE": "item", + "ID": 281, + "UNK0": -3, + "STRING": "SL", + "UNK1": "c30000000000000000000000000000000000000000000000000000000000000000000064000000011e000000ffff", + "STRINGS": [ + "Carnelia Reprint - Finale", + "The finale of a popular novel published in Liberl." + ] + }, + { + "TYPE": "item", + "ID": 282, + "UNK0": -3, + "STRING": "T", + "UNK1": "c30000000000000000000000000000000000000000000000000000000000000000000000000000013c000000ffff", + "STRINGS": [ + "Erebonian Public Transport", + "Erebonian Public Transport" + ] + }, + { + "TYPE": "item", + "ID": 283, + "UNK0": -3, + "STRING": "T", + "UNK1": "c30000000000000000000000000000000000000000000000000000000000000000000000000000013d000000ffff", + "STRINGS": [ + "Erebonian Folklore: Vol. 1", + "Erebonian Folklore: Vol. 1" + ] + }, + { + "TYPE": "item", + "ID": 284, + "UNK0": -3, + "STRING": "T", + "UNK1": "c30000000000000000000000000000000000000000000000000000000000000000000000000000013e000000ffff", + "STRINGS": [ + "Erebonian Sports", + "Erebonian Sports" + ] + }, + { + "TYPE": "item", + "ID": 285, + "UNK0": -3, + "STRING": "T", + "UNK1": "c30000000000000000000000000000000000000000000000000000000000000000000000000000013f000000ffff", + "STRINGS": [ + "Erebonian Mass Media", + "Erebonian Mass Media" + ] + }, + { + "TYPE": "item", + "ID": 286, + "UNK0": -3, + "STRING": "T", + "UNK1": "c300000000000000000000000000000000000000000000000000000000000000000000000000000140000000ffff", + "STRINGS": [ + "Erebonian Folklore: Vol. 2", + "Erebonian Folklore: Vol. 2" + ] + }, + { + "TYPE": "item", + "ID": 287, + "UNK0": -3, + "STRING": "T", + "UNK1": "c300000000000000000000000000000000000000000000000000000000000000000000000000000141000000ffff", + "STRINGS": [ + "Reinford Group: Past to Present", + "Reinford Group: Past to Present" + ] + }, + { + "TYPE": "item", + "ID": 288, + "UNK0": -3, + "STRING": "T", + "UNK1": "c300000000000000000000000000000000000000000000000000000000000000000000000000000142000000ffff", + "STRINGS": [ + "Erebonian Folklore: Vol. 3", + "Erebonian Folklore: Vol. 3" + ] + }, + { + "TYPE": "item", + "ID": 289, + "UNK0": -3, + "STRING": "CVLS", + "UNK1": "8300000000000000000000000000000000000000000000000000000000000000000000f40100000146000000ffff", + "STRINGS": [ + "Manly Munchies - Omelets", + "A cookbook marketed toward men. Use it to learn a recipe." + ] + }, + { + "TYPE": "item", + "ID": 290, + "UNK0": -3, + "STRING": "CVLS", + "UNK1": "8300000000000000000000000000000000000000000000000000000000000000000000f40100000147000000ffff", + "STRINGS": [ + "Manly Munchies - Cookies", + "A cookbook marketed toward men. Use it to learn a recipe." + ] + }, + { + "TYPE": "item", + "ID": 291, + "UNK0": -3, + "STRING": "CVLS", + "UNK1": "8300000000000000000000000000000000000000000000000000000000000000000000f40100000148000000ffff", + "STRINGS": [ + "Manly Munchies - Juice", + "A cookbook marketed toward men. Use it to learn a recipe." + ] + }, + { + "TYPE": "item", + "ID": 292, + "UNK0": -3, + "STRING": "CVLS", + "UNK1": "8300000000000000000000000000000000000000000000000000000000000000000000f40100000149000000ffff", + "STRINGS": [ + "Manly Munchies - Sandwiches", + "A cookbook marketed toward men. Use it to learn a recipe." + ] + }, + { + "TYPE": "item", + "ID": 293, + "UNK0": -3, + "STRING": "CVLS", + "UNK1": "8300000000000000000000000000000000000000000000000000000000000000000000f4010000014a000000ffff", + "STRINGS": [ + "Manly Munchies - Tea", + "A cookbook marketed toward men. Use it to learn a recipe." + ] + }, + { + "TYPE": "item", + "ID": 294, + "UNK0": -3, + "STRING": "CVLS", + "UNK1": "8300000000000000000000000000000000000000000000000000000000000000000000f4010000014b000000ffff", + "STRINGS": [ + "Manly Munchies - Chowder", + "A cookbook marketed toward men. Use it to learn a recipe." + ] + }, + { + "TYPE": "item", + "ID": 295, + "UNK0": -3, + "STRING": "CVLS", + "UNK1": "8300000000000000000000000000000000000000000000000000000000000000000000f4010000014c000000ffff", + "STRINGS": [ + "Manly Munchies - Tarts", + "A cookbook marketed toward men. Use it to learn a recipe." + ] + }, + { + "TYPE": "item", + "ID": 296, + "UNK0": -3, + "STRING": "CVLS", + "UNK1": "8300000000000000000000000000000000000000000000000000000000000000000000f4010000014d000000ffff", + "STRINGS": [ + "Manly Munchies - Porridge", + "A cookbook marketed toward men. Use it to learn a recipe." + ] + }, + { + "TYPE": "item", + "ID": 297, + "UNK0": -3, + "STRING": "CVLS", + "UNK1": "8300000000000000000000000000000000000000000000000000000000000000000000f4010000014e000000ffff", + "STRINGS": [ + "Manly Munchies - Pizza", + "A cookbook marketed toward men. Use it to learn a recipe." + ] + }, + { + "TYPE": "item", + "ID": 298, + "UNK0": -3, + "STRING": "CVLS", + "UNK1": "8300000000000000000000000000000000000000000000000000000000000000000000e8030000014f000000ffff", + "STRINGS": [ + "Manly Munchies - Coffee", + "A cookbook marketed toward men. Use it to learn a recipe." + ] + }, + { + "TYPE": "item", + "ID": 299, + "UNK0": -3, + "STRING": "CVLS", + "UNK1": "8300000000000000000000000000000000000000000000000000000000000000000000e80300000150000000ffff", + "STRINGS": [ + "Manly Munchies - Gratin", + "A cookbook marketed toward men. Use it to learn a recipe." + ] + }, + { + "TYPE": "item", + "ID": 300, + "UNK0": -3, + "STRING": "CVLS", + "UNK1": "8300000000000000000000000000000000000000000000000000000000000000000000e80300000151000000ffff", + "STRINGS": [ + "Manly Munchies - Deep Frying", + "A cookbook marketed toward men. Use it to learn a recipe." + ] + }, + { + "TYPE": "item", + "ID": 301, + "UNK0": -3, + "STRING": "CVLS", + "UNK1": "8300000000000000000000000000000000000000000000000000000000000000000000e80300000152000000ffff", + "STRINGS": [ + "Manly Munchies - Puddings", + "A cookbook marketed toward men. Use it to learn a recipe." + ] + }, + { + "TYPE": "item", + "ID": 302, + "UNK0": -3, + "STRING": "CVLS", + "UNK1": "8300000000000000000000000000000000000000000000000000000000000000000000e80300000153000000ffff", + "STRINGS": [ + "Manly Munchies - Pasta Soup", + "A cookbook marketed toward men. Use it to learn a recipe." + ] + }, + { + "TYPE": "item", + "ID": 303, + "UNK0": -3, + "STRING": "CVLS", + "UNK1": "8300000000000000000000000000000000000000000000000000000000000000000000e80300000154000000ffff", + "STRINGS": [ + "Manly Munchies - Beef & Rice", + "A cookbook marketed toward men. Use it to learn a recipe." + ] + }, + { + "TYPE": "item", + "ID": 304, + "UNK0": -3, + "STRING": "CVLS", + "UNK1": "8300000000000000000000000000000000000000000000000000000000000000000000dc0500000155000000ffff", + "STRINGS": [ + "Manly Munchies - Steak", + "A cookbook marketed toward men. Use it to learn a recipe." + ] + }, + { + "TYPE": "item", + "ID": 305, + "UNK0": -3, + "STRING": "CVLS", + "UNK1": "8300000000000000000000000000000000000000000000000000000000000000000000dc0500000156000000ffff", + "STRINGS": [ + "Manly Munchies - Cocktails", + "A cookbook marketed toward men. Use it to learn a recipe." + ] + }, + { + "TYPE": "item", + "ID": 306, + "UNK0": -3, + "STRING": "CVLS", + "UNK1": "8300000000000000000000000000000000000000000000000000000000000000000000d00700000157000000ffff", + "STRINGS": [ + "Manly Munchies - Gelato", + "A cookbook marketed toward men. Use it to learn a recipe." + ] + }, + { + "TYPE": "item", + "ID": 307, + "UNK0": -3, + "STRING": "CVLS", + "UNK1": "8300000000000000000000000000000000000000000000000000000000000000000000d00700000158000000ffff", + "STRINGS": [ + "Manly Munchies - Hotpots", + "A cookbook marketed toward men. Use it to learn a recipe." + ] + }, + { + "TYPE": "item", + "ID": 308, + "UNK0": -3, + "STRING": "CVLS", + "UNK1": "8300000000000000000000000000000000000000000000000000000000000000000000d00700000159000000ffff", + "STRINGS": [ + "Manly Munchies - Hamburgers", + "A cookbook marketed toward men. Use it to learn a recipe." + ] + }, + { + "TYPE": "item", + "ID": 309, + "UNK0": -3, + "STRING": "SL", + "UNK1": "c300000000000000000000000000000000000000000000000000000000000000000000e80300006328000000ffff", + "STRINGS": [ + "Red Moon Rose - Chapter 1", + "Part 1 of a popular novel published in Erebonia." + ] + }, + { + "TYPE": "item", + "ID": 310, + "UNK0": -3, + "STRING": "SL", + "UNK1": "c300000000000000000000000000000000000000000000000000000000000000000000e80300006329000000ffff", + "STRINGS": [ + "Red Moon Rose - Chapter 2", + "Part 2 of a popular novel published in Erebonia." + ] + }, + { + "TYPE": "item", + "ID": 311, + "UNK0": -3, + "STRING": "SL", + "UNK1": "c300000000000000000000000000000000000000000000000000000000000000000000dc050000632a000000ffff", + "STRINGS": [ + "Red Moon Rose - Chapter 3", + "Part 3 of a popular novel published in Erebonia." + ] + }, + { + "TYPE": "item", + "ID": 312, + "UNK0": -3, + "STRING": "SL", + "UNK1": "c300000000000000000000000000000000000000000000000000000000000000000000dc050000632b000000ffff", + "STRINGS": [ + "Red Moon Rose - Chapter 4", + "Part 4 of a popular novel published in Erebonia." + ] + }, + { + "TYPE": "item", + "ID": 313, + "UNK0": -3, + "STRING": "SL", + "UNK1": "c300000000000000000000000000000000000000000000000000000000000000000000d0070000632c000000ffff", + "STRINGS": [ + "Red Moon Rose - Chapter 5", + "Part 5 of a popular novel published in Erebonia." + ] + }, + { + "TYPE": "item", + "ID": 314, + "UNK0": -3, + "STRING": "SL", + "UNK1": "c300000000000000000000000000000000000000000000000000000000000000000000d0070000632d000000ffff", + "STRINGS": [ + "Red Moon Rose - Chapter 6", + "Part 6 of a popular novel published in Erebonia." + ] + }, + { + "TYPE": "item", + "ID": 315, + "UNK0": -3, + "STRING": "SL", + "UNK1": "c300000000000000000000000000000000000000000000000000000000000000000000d0070000632e000000ffff", + "STRINGS": [ + "Red Moon Rose - Chapter 7", + "Part 7 of a popular novel published in Erebonia." + ] + }, + { + "TYPE": "item", + "ID": 316, + "UNK0": -3, + "STRING": "SL", + "UNK1": "c300000000000000000000000000000000000000000000000000000000000000000000c4090000632f000000ffff", + "STRINGS": [ + "Red Moon Rose - Chapter 8", + "Part 8 of a popular novel published in Erebonia." + ] + }, + { + "TYPE": "item", + "ID": 317, + "UNK0": -3, + "STRING": "SL", + "UNK1": "c300000000000000000000000000000000000000000000000000000000000000000000c40900006330000000ffff", + "STRINGS": [ + "Red Moon Rose - Chapter 9", + "Part 9 of a popular novel published in Erebonia." + ] + }, + { + "TYPE": "item", + "ID": 318, + "UNK0": -3, + "STRING": "SL", + "UNK1": "c300000000000000000000000000000000000000000000000000000000000000000000b80b00006331000000ffff", + "STRINGS": [ + "Red Moon Rose - Chapter 10", + "Part 10 of a popular novel published in Erebonia." + ] + }, + { + "TYPE": "item", + "ID": 319, + "UNK0": -3, + "STRING": "SL", + "UNK1": "c300000000000000000000000000000000000000000000000000000000000000000000b80b00006332000000ffff", + "STRINGS": [ + "Red Moon Rose - Chapter 11", + "Part 11 of a popular novel published in Erebonia." + ] + }, + { + "TYPE": "item", + "ID": 320, + "UNK0": -3, + "STRING": "SL", + "UNK1": "c300000000000000000000000000000000000000000000000000000000000000000000881300006333000000ffff", + "STRINGS": [ + "Red Moon Rose - Chapter 12", + "Part 12 of a popular novel published in Erebonia." + ] + }, + { + "TYPE": "item", + "ID": 321, + "UNK0": -3, + "STRING": "SL", + "UNK1": "c300000000000000000000000000000000000000000000000000000000000000000000881300006334000000ffff", + "STRINGS": [ + "Red Moon Rose - Chapter 13", + "Part 13 of a popular novel published in Erebonia." + ] + }, + { + "TYPE": "item", + "ID": 322, + "UNK0": -3, + "STRING": "SL", + "UNK1": "c300000000000000000000000000000000000000000000000000000000000000000000881300006335000000ffff", + "STRINGS": [ + "Red Moon Rose - Finale", + "The finale of a popular novel published in Erebonia." + ] + }, + { + "TYPE": "item", + "ID": 323, + "UNK0": -3, + "STRING": "CVLS", + "UNK1": "830000000000000000000000000000000000000000000000000000000000000000000064000000015a000000ffff", + "STRINGS": [ + "Relaxation Through Music", + "A book about relaxing music." + ] + }, + { + "TYPE": "item", + "ID": 324, + "UNK0": -3, + "STRING": "CVLS", + "UNK1": "830000000000000000000000000000000000000000000000000000000000000000000064000000015b000000ffff", + "STRINGS": [ + "Legram Guidebook", + "A book for tourists, introducing good tourist spots in Legram." + ] + }, + { + "TYPE": "item", + "ID": 325, + "UNK0": -3, + "STRING": "CVLS", + "UNK1": "830000000000000000000000000000000000000000000000000000000000000000000064000000015c000000ffff", + "STRINGS": [ + "Touching Paintings", + "A book full of touching and moving paintings." + ] + }, + { + "TYPE": "item", + "ID": 326, + "UNK0": -3, + "STRING": "CVLS", + "UNK1": "830000000000000000000000000000000000000000000000000000000000000000000064000000015d000000ffff", + "STRINGS": [ + "Traditional Archery", + "A guidebook on traditional Erebonian archery." + ] + }, + { + "TYPE": "item", + "ID": 327, + "UNK0": -3, + "STRING": "CVLS", + "UNK1": "830000000000000000000000000000000000000000000000000000000000000000000064000000015e000000ffff", + "STRINGS": [ + "The Art of Napping", + "A practical guide to improving the quality of your naps." + ] + }, + { + "TYPE": "item", + "ID": 328, + "UNK0": -3, + "STRING": "CVLS", + "UNK1": "830000000000000000000000000000000000000000000000000000000000000000000064000000015f000000ffff", + "STRINGS": [ + "Intermediate Chess", + "A chess handbook for intermediate level players." + ] + }, + { + "TYPE": "item", + "ID": 329, + "UNK0": -3, + "STRING": "CVLS", + "UNK1": "8300000000000000000000000000000000000000000000000000000000000000000000640000000160000000ffff", + "STRINGS": [ + "A Teaching Primer", + "A book that explains the best way to teach others." + ] + }, + { + "TYPE": "item", + "ID": 330, + "UNK0": -3, + "STRING": "CVLS", + "UNK1": "8300000000000000000000000000000000000000000000000000000000000000000000640000000161000000ffff", + "STRINGS": [ + "Imperial Horsemanship", + "A textbook on traditional Erebonian horsemanship." + ] + }, + { + "TYPE": "item", + "ID": 331, + "UNK0": -3, + "STRING": "CVLS", + "UNK1": "8300000000000000000000000000000000000000000000000000000000000000000000f40100000162000000ffff", + "STRINGS": [ + "Swimming Strategies", + "A book detailing how to improve your swimming skills." + ] + }, + { + "TYPE": "item", + "ID": 332, + "UNK0": -3, + "STRING": "CVLS", + "UNK1": "8300000000000000000000000000000000000000000000000000000000000000000000f40100000163000000ffff", + "STRINGS": [ + "Military Mania", + "A book full of information on different kinds of weaponry." + ] + }, + { + "TYPE": "item", + "ID": 333, + "UNK0": -3, + "STRING": "CVLS", + "UNK1": "8300000000000000000000000000000000000000000000000000000000000000000000f40100000164000000ffff", + "STRINGS": [ + "Erebonian Art History", + "A book detailing the history of Erebonian art." + ] + }, + { + "TYPE": "item", + "ID": 334, + "UNK0": -3, + "STRING": "CVLS", + "UNK1": "8300000000000000000000000000000000000000000000000000000000000000000000f40100000165000000ffff", + "STRINGS": [ + "Essence of Lacrosse", + "A book detailing how to improve your lacrosse skills." + ] + }, + { + "TYPE": "item", + "ID": 335, + "UNK0": -3, + "STRING": "CVLS", + "UNK1": "8300000000000000000000000000000000000000000000000000000000000000000000f40100000166000000ffff", + "STRINGS": [ + "Big Book of Instruments", + "A book that introduces all kinds of different instruments." + ] + }, + { + "TYPE": "item", + "ID": 336, + "UNK0": -3, + "STRING": "CVLS", + "UNK1": "8300000000000000000000000000000000000000000000000000000000000000000000f40100000167000000ffff", + "STRINGS": [ + "Advanced Court Fencing", + "A guidebook on traditional Imperial court fencing." + ] + }, + { + "TYPE": "item", + "ID": 337, + "UNK0": -3, + "STRING": "CVLS", + "UNK1": "8300000000000000000000000000000000000000000000000000000000000000000000f40100000168000000ffff", + "STRINGS": [ + "Brewing Amazing Coffee", + "A book all about how to brew the perfect cup of coffee." + ] + }, + { + "TYPE": "item", + "ID": 338, + "UNK0": -3, + "STRING": "CVLS", + "UNK1": "8300000000000000000000000000000000000000000000000000000000000000000000f40100000169000000ffff", + "STRINGS": [ + "Cats, Cats, Cats", + "A book filled from cover to cover with photographs of cats." + ] + }, + { + "TYPE": "item", + "ID": 339, + "UNK0": -3, + "STRING": "CVLS", + "UNK1": "8300000000000000000000000000000000000000000000000000000000000000000000f4010000016a000000ffff", + "STRINGS": [ + "Expert Cookware", + "A book full of useful kinds of cookware." + ] + }, + { + "TYPE": "item", + "ID": 340, + "UNK0": -3, + "STRING": "CVLS", + "UNK1": "8300000000000000000000000000000000000000000000000000000000000000000000f4010000016b000000ffff", + "STRINGS": [ + "The Philosophy of Blade", + "A book that applies Blade's philosophies to daily life." + ] + }, + { + "TYPE": "item", + "ID": 1575, + "UNK0": -3, + "STRING": "SLBE", + "UNK1": "b9000a050401640000000a320000000000000000000000000000000000000000000000580200006301000000ffff", + "STRINGS": [ + "Ooze Cookie ", + "[Attack (Set) - Area (S) - Poison (50%)]\n(Rank D) An unusually-colored poisonous cookie." + ] + }, + { + "TYPE": "item", + "ID": 1576, + "UNK0": -3, + "STRING": "SLBE", + "UNK1": "b9000a0504026e00000010320000000000000000000000000000000000000000000000840300006302000000ffff", + "STRINGS": [ + "Frozen Soup ", + "[Magic Attack (Set) - Area (S) - Freeze (50%)]\n(Rank C) Soup so cold, it freezes your whole body." + ] + }, + { + "TYPE": "item", + "ID": 1577, + "UNK0": -3, + "STRING": "SLBE", + "UNK1": "b9000a0504016e0000000f320000000000000000000000000000000000000000000000b00400006303000000ffff", + "STRINGS": [ + "Roasted Fry-up ", + "[Attack (Set) - Area (S) - Burn (50%)]\n(Rank C) Fry-up that was fried so much, it bursts into flames." + ] + }, + { + "TYPE": "item", + "ID": 1578, + "UNK0": -3, + "STRING": "SLBE", + "UNK1": "b9000a0504017800000016640014000000000000000000000000000000000000000000a40600006304000000ffff", + "STRINGS": [ + "Hampering Rice ", + "[Attack (Set) - Area (S) - Delay+20]\n(Rank B) Hashed beef rice that's too sticky to actually eat." + ] + }, + { + "TYPE": "item", + "ID": 1579, + "UNK0": -3, + "STRING": "SLBE", + "UNK1": "b9000a0506018200000012320000000000000000000000000000000000000000000000600900006305000000ffff", + "STRINGS": [ + "Dangerous Meatball ", + "[Attack (Set) - Area (M) - Faint (50%)]\n(Rank A) A highly volatile meatball that explodes on impact." + ] + }, + { + "TYPE": "item", + "ID": 1520, + "UNK0": -3, + "STRING": "SLCBPMR", + "UNK1": "b5000101016a6400000000000000000000000000000000000000000000000000000000180100006306000000ffff", + "STRINGS": [ + "Soft & Fluffy Omelet", + "[Restores 100 HP/Cures K.O.]\nThe perfect omelet. Soft and fluffy outside, runny inside." + ] + }, + { + "TYPE": "item", + "ID": 1521, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b50001010164e803000032000000000000000000000000000000000000000000000000400100006307000000ffff", + "STRINGS": [ + "Royal Sable", + "[Restores 1000 HP/Cures Poison]\nAn elegant, fragrant sable that isn't too sweet." + ] + }, + { + "TYPE": "item", + "ID": 1522, + "UNK0": -3, + "STRING": "SLCBPMR", + "UNK1": "b5000101016ab0040000000000000000000000000000000000000000000000000000001c0200006308000000ffff", + "STRINGS": [ + "Golden Juice", + "[Restores 1200 HP/Cures K.O.]\nA miraculous mixed juice that radiates a gold color." + ] + }, + { + "TYPE": "item", + "ID": 1523, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b500010101770807140000000000000000000000000000000000000000000000000000a80200006309000000ffff", + "STRINGS": [ + "Elegant Sandwich", + "[Restores 1800 HP/Restores 20 CP]\nA sandwich made from the freshest ingredients money can buy." + ] + }, + { + "TYPE": "item", + "ID": 1524, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b50001010164d00700005c00000000000000000000000000000000000000000000000080020000630a000000ffff", + "STRINGS": [ + "Aromatic Tea", + "[Restores 2000 HP/Cures Seal/Mute]\nA luxurious cup of tea with a full-bodied fragrance." + ] + }, + { + "TYPE": "item", + "ID": 1525, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b50001010164600900003800000000000000000000000000000000000000000000000080020000630b000000ffff", + "STRINGS": [ + "Jewel Potage", + "[Restores 2400 HP/Cures Freeze]\nA thick potage that shines like a high-class gemstone." + ] + }, + { + "TYPE": "item", + "ID": 1526, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b50001010164f00a00003900000000000000000000000000000000000000000000000020030000630c000000ffff", + "STRINGS": [ + "Luxury Tart", + "[Restores 2800 HP/Cures Petrify]\nA luxurious tart topped with a variety of different fruits." + ] + }, + { + "TYPE": "item", + "ID": 1527, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b50001010164280a00005f19000500000000000000000000000000000000000000000048030000630d000000ffff", + "STRINGS": [ + "Nord Porridge", + "[Restores 2600 HP/DEF/ADF+25% (5 Turns)]\nMilk porridge in a Nord style. Fills you with energy." + ] + }, + { + "TYPE": "item", + "ID": 1528, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b50001010177d007190049000000000000000000000000000000000000000000000000c0030000630e000000ffff", + "STRINGS": [ + "Special Pizza", + "[Restores 2000 HP/Restores 25 CP/Cures Stat Down]\nA pizza made from a perfect harmony of ingredients and sauces." + ] + }, + { + "TYPE": "item", + "ID": 1529, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b50001010164b80b00006100000000000000000000000000000000000000000000000020030000630f000000ffff", + "STRINGS": [ + "Premium Coffee", + "[Restores 3000 HP/Cures Sleep/Nightmare]\nThe perfect coffee. Made from meticulously selected beans." + ] + }, + { + "TYPE": "item", + "ID": 1530, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b50001010177f00a280000000000000000000000000000000000000000000000000000000500006310000000ffff", + "STRINGS": [ + "Melted Gratin", + "[Restores 2800 HP/Restores 40 CP]\nThe ultimate gratin, coated in a layer of melted cheese." + ] + }, + { + "TYPE": "item", + "ID": 1531, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b50001010164a00f000045190005000000000000000000000000000000000000000000c00300006311000000ffff", + "STRINGS": [ + "Elegant Fried Fish", + "[Restores 4000 HP/SPD+25% (5 Turns)]\nAn elegant fried fish in a fragrant, delicious batter." + ] + }, + { + "TYPE": "item", + "ID": 1532, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b50001010164280a000063190005000000000000000000000000000000000000000000200300006312000000ffff", + "STRINGS": [ + "Wobbly Pudding", + "[Restores 2600 HP/ATS/ADF+25% (5 Turns)]\nA thick yet delicate wobbly pudding." + ] + }, + { + "TYPE": "item", + "ID": 1533, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b50001010176b80b960037000000000000000000000000000000000000000000000000140500006313000000ffff", + "STRINGS": [ + "Celestial Pasta Soup", + "[Restores 3000 HP/Restores 150 EP/Cures Burn]\nHas a refreshing taste that makes you think of the blue sky." + ] + }, + { + "TYPE": "item", + "ID": 1534, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b5000101017788130f0083190003000000000000000000000000000000000000000000780500006314000000ffff", + "STRINGS": [ + "Noble Demi-Glace Rice", + "[Restores 5000 HP/Restores 15 CP/ATS/SPD+25% (3 Turns)]\nRice in a flavorful, mellow demi-glace sauce." + ] + }, + { + "TYPE": "item", + "ID": 1535, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b50001010164e015000052190005000000000000000000000000000000000000000000dc0500006315000000ffff", + "STRINGS": [ + "Marbled Steak", + "[Restores 5600 HP/STR/DEF+25% (5 Turns)]\nAn exquisite steak that melts in the mouth." + ] + }, + { + "TYPE": "item", + "ID": 1536, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b50001010177800c2d0000000000000000000000000000000000000000000000000000780500006316000000ffff", + "STRINGS": [ + "Miraculous Cocktail", + "[Restores 3200 HP/Restores 45 CP]\nA vividly-red non-alcoholic cocktail." + ] + }, + { + "TYPE": "item", + "ID": 1537, + "UNK0": -3, + "STRING": "SLCBPMR", + "UNK1": "b5000101016a800c000065960000000000000000000000000000000000000000000000400600006317000000ffff", + "STRINGS": [ + "Heavenly Gelato", + "[Restores 3200 HP/Restores 150 EP/Cures K.O.]\nGelato containing a variety of flavors in perfect harmony." + ] + }, + { + "TYPE": "item", + "ID": 1538, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b50001010164e02e000084320003000000000000000000000000000000000000000000100e00006318000000ffff", + "STRINGS": [ + "Ultimate Hotpot", + "[Restores 12,000 HP/STR/ATS/SPD+50% (3 Turns)]\nThe ultimate hotpot. Piled high with ingredients." + ] + }, + { + "TYPE": "item", + "ID": 1539, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b500010101771027140052320005000000000000000000000000000000000000000000800c00006319000000ffff", + "STRINGS": [ + "Imperial Hamburger", + "[Restores 10,000 HP/Restores 20 CP/STR/DEF+50% (5 Turns)]\nA lord among hamburgers that fills you with energy." + ] + }, + { + "TYPE": "item", + "ID": 1540, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b600010101645802000000000000000000000000000000000000000000000000000000a0000000631a000000ffff", + "STRINGS": [ + "Simple Omelet", + "[Restores 600 HP]\nA plain and easy to make omelet." + ] + }, + { + "TYPE": "item", + "ID": 1541, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b60001010164bc02000032000000000000000000000000000000000000000000000000f0000000631b000000ffff", + "STRINGS": [ + "Sweet Cookie", + "[Restores 700 HP/Cures Poison]\nA homemade cookie that's a little rough round the edges." + ] + }, + { + "TYPE": "item", + "ID": 1542, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b60001010164e80300003a00000000000000000000000000000000000000000000000018010000631c000000ffff", + "STRINGS": [ + "Whole Juice", + "[Restores 1000 HP/Cures Faint]\nA high-class juice made from squeezed whole fruits." + ] + }, + { + "TYPE": "item", + "ID": 1543, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b60001010177dc050a0000000000000000000000000000000000000000000000000000f4010000631d000000ffff", + "STRINGS": [ + "Tomato Sandwich", + "[Restores 1500 HP/Restores 10 CP]\nA sandwich containing freshly picked tomatoes." + ] + }, + { + "TYPE": "item", + "ID": 1544, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b60001010164b0040000330000000000000000000000000000000000000000000000007c010000631e000000ffff", + "STRINGS": [ + "Savory Herb Tea", + "[Restores 1200 HP/Cures Seal]\nA flavorful herb tea containing a blend of different herbs." + ] + }, + { + "TYPE": "item", + "ID": 1545, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b6000101016478050000380000000000000000000000000000000000000000000000007c010000631f000000ffff", + "STRINGS": [ + "Creamy Chowder", + "[Restores 1400 HP/Cures Freeze]\nA thick, creamy seafood stew." + ] + }, + { + "TYPE": "item", + "ID": 1546, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b6000101016408070000390000000000000000000000000000000000000000000000001c0200006320000000ffff", + "STRINGS": [ + "Berry Tart", + "[Restores 1800 HP/Cures Petrify]\nA sweet and sour tart topped with plenty of fresh berries." + ] + }, + { + "TYPE": "item", + "ID": 1547, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b60001010164080700005f190003000000000000000000000000000000000000000000580200006321000000ffff", + "STRINGS": [ + "Milk Porridge", + "[Restores 1800 HP/DEF/ADF+25% (3 Turns)]\nHealthy, warming porridge with a hint of sweetness." + ] + }, + { + "TYPE": "item", + "ID": 1548, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b60001010177b0040f0000000000000000000000000000000000000000000000000000300200006322000000ffff", + "STRINGS": [ + "Crispy Pizza", + "[Restores 1200 HP/Restores 15 CP]\nCrispy mixed pizza topped with fragrant, mildly burned cheese." + ] + }, + { + "TYPE": "item", + "ID": 1549, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b600010101644006000061000000000000000000000000000000000000000000000000b80100006323000000ffff", + "STRINGS": [ + "Roasted Coffee", + "[Restores 1600 HP/Cures Sleep/Nightmare]\nHighly fragrant coffee for the discerning adult." + ] + }, + { + "TYPE": "item", + "ID": 1550, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b600010101776009140000000000000000000000000000000000000000000000000000200300006324000000ffff", + "STRINGS": [ + "Tomato Gratin", + "[Restores 2400 HP/Restores 20 CP]\nA deliciously sweet tomato gratin." + ] + }, + { + "TYPE": "item", + "ID": 1551, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b60001010164b80b000045190003000000000000000000000000000000000000000000d00200006325000000ffff", + "STRINGS": [ + "Fried Fish", + "[Restores 3000 HP/SPD+25% (3 Turns)]\nA crunchy and fresh fried fish. One is enough to satisfy you." + ] + }, + { + "TYPE": "item", + "ID": 1552, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b600010101640807000063190003000000000000000000000000000000000000000000e00100006326000000ffff", + "STRINGS": [ + "Custard Pudding", + "[Restores 1800 HP/ATS/ADF+25% (3 Turns)]\nA simple, run-of-the-mill pudding with a distinctive taste." + ] + }, + { + "TYPE": "item", + "ID": 1553, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b60001010176280a320037000000000000000000000000000000000000000000000000c00300006327000000ffff", + "STRINGS": [ + "Refreshing Pasta Soup", + "[Restores 2600 HP/Restores 50 EP/Cures Burn]\nA pasta soup that fills your mouth with a refreshing aroma." + ] + }, + { + "TYPE": "item", + "ID": 1554, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b60001010177b80b0a00451900030000000000000000000000000000000000000000004c0400006328000000ffff", + "STRINGS": [ + "Hashed Beef Rice", + "[Restores 3000 HP/Restores 10 CP/SPD+25% (3 Turns)]\nA meal served once a week in the Imperial Army. " + ] + }, + { + "TYPE": "item", + "ID": 1555, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b60001010164100e000052190003000000000000000000000000000000000000000000c00300006329000000ffff", + "STRINGS": [ + "Stamina Steak", + "[Restores 3600 HP/STR/DEF+25% (3 Turns)]\nA steak with added spices to stimulate your appetite." + ] + }, + { + "TYPE": "item", + "ID": 1556, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b60001010177280a1e0000000000000000000000000000000000000000000000000000e8030000632a000000ffff", + "STRINGS": [ + "Tomato Cocktail", + "[Restores 2600 HP/Restores 30 CP]\nA healthy, non-alcoholic cocktail made with acerbic tomatoes." + ] + }, + { + "TYPE": "item", + "ID": 1557, + "UNK0": -3, + "STRING": "SLCBPMR", + "UNK1": "b6000101016ad007000065640000000000000000000000000000000000000000000000e8030000632b000000ffff", + "STRINGS": [ + "Mixed Gelato", + "[Restores 2000 HP/Restores 100 EP/Cures K.O.]\nGelato made with a perfect balance of different flavors." + ] + }, + { + "TYPE": "item", + "ID": 1558, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b60001010164581b00008419000300000000000000000000000000000000000000000060090000632c000000ffff", + "STRINGS": [ + "Filling Hotpot", + "[Restores 7000 HP/STR/ATS/SPD+25% (3 Turns)]\nA filling hotpot that's bursting with meat and vegetables." + ] + }, + { + "TYPE": "item", + "ID": 1559, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b6000101017770170a0052190005000000000000000000000000000000000000000000dc050000632d000000ffff", + "STRINGS": [ + "Handmade Hamburger", + "[Restores 6000 HP/Restores 10 CP/STR/DEF+25% (5 Turns)]\nA delicious hamburger with a hand-shaped patty." + ] + }, + { + "TYPE": "item", + "ID": 1560, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b70001010164900100004219000300000000000000000000000000000000000000000078000000632e000000ffff", + "STRINGS": [ + "Solid Omelet ", + "[Restores 400 HP/DEF+25% (3 Turns)]\nResembles an omelet, although it's far too chewy to be one." + ] + }, + { + "TYPE": "item", + "ID": 1561, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b700010101656400000000000000000000000000000000000000000000000000000000f4010000632f000000ffff", + "STRINGS": [ + "Yellow Liquid ", + "[Restores 100 EP]\nA mysterious yellow liquid made up of liquefied orbal energy." + ] + }, + { + "TYPE": "item", + "ID": 1562, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b700010101776400280000000000000000000000000000000000000000000000000000bc0200006330000000ffff", + "STRINGS": [ + "Bitter Sandwich ", + "[Restores 100 HP/Restores 40 CP]\nA highly bitter sandwich. You either love it or hate it." + ] + }, + { + "TYPE": "item", + "ID": 1563, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b70001010165c800000000000000000000000000000000000000000000000000000000840300006331000000ffff", + "STRINGS": [ + "Brown Liquid ", + "[Restores 200 EP]\nLiquid with an odd smell. Made up of liquefied orbal energy." + ] + }, + { + "TYPE": "item", + "ID": 1564, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b70001010164b004000043190005000000000000000000000000000000000000000000a80200006332000000ffff", + "STRINGS": [ + "Elementart ", + "[Restores 1200 HP/ATS+25% (5 Turns)]\nA simple yet stylish tart." + ] + }, + { + "TYPE": "item", + "ID": 1565, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b70001010164200300005f3200030000000000000000000000000000000000000000001c0200006333000000ffff", + "STRINGS": [ + "Soggy Porridge ", + "[Restores 800 HP/DEF/ADF+50% (3 Turns)]\nPorridge that has a little too much moisture." + ] + }, + { + "TYPE": "item", + "ID": 1566, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b700010101653200000097010000000000000000000000000000000000000000000000bc0200006334000000ffff", + "STRINGS": [ + "Mirror Pizza ", + "[Restores 50 EP/Magic Reflect]\nA circular pizza with a strange shine to it." + ] + }, + { + "TYPE": "item", + "ID": 1567, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b70001010165fa00000000000000000000000000000000000000000000000000000000b00400006335000000ffff", + "STRINGS": [ + "Black Liquid ", + "[Restores 250 EP]\nA black liquid made up of liquefied orbal energy." + ] + }, + { + "TYPE": "item", + "ID": 1568, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b70001010177c800320000000000000000000000000000000000000000000000000000e80300006336000000ffff", + "STRINGS": [ + "Magma Gratin ", + "[Restores 200 HP/Restores 50 CP]\nA gratin with a surface that boils like magma." + ] + }, + { + "TYPE": "item", + "ID": 1569, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b700010101645802000047000005000000000000000000000000000000000000000000d00200006337000000ffff", + "STRINGS": [ + "Egg Custard Pudding ", + "[Restores 600 HP/Insight (5 Turns)]\nEastern-styled pudding. Seems ordinary until you take a bite." + ] + }, + { + "TYPE": "item", + "ID": 1570, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b700010101646009000050190003000000000000000000000000000000000000000000a80200006338000000ffff", + "STRINGS": [ + "Colorless Noodles ", + "[Restores 2400 HP/STR/SPD+25% (3 Turns)]\nSimple noodles with none of the taste of their ingredients." + ] + }, + { + "TYPE": "item", + "ID": 1571, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b70001010164e803000096010000000000000000000000000000000000000000000000200300006339000000ffff", + "STRINGS": [ + "Adamantine Steak ", + "[Restores 1000 HP/Physical Immunity]\nA lump of meat that's as hard as rock." + ] + }, + { + "TYPE": "item", + "ID": 1572, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b700010101782c012d000000000000000000000000000000000000000000000000000008070000633a000000ffff", + "STRINGS": [ + "Red Liquid ", + "[Restores 300 EP/Restores 45 CP]\nLiquefied orbal energy. Has a pungent smell." + ] + }, + { + "TYPE": "item", + "ID": 1573, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b70001010176f40196004a00000000000000000000000000000000000000000000000020030000633b000000ffff", + "STRINGS": [ + "Wonder Gelato ", + "[Restores 500 HP/150EP/Cures abnormal status/Stat Down]\nA mysterious, very soft to the touch gelato." + ] + }, + { + "TYPE": "item", + "ID": 1574, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b7000101017a6400000065f40100000000000000000000000000000000000000000000b80b0000633c000000ffff", + "STRINGS": [ + "Enigmatic Hotpot ", + "[Restores 500 EP/Either restores 100 CP or causes Near-Death]\nA mysterious hotpot. It smells dangerous." + ] + }, + { + "TYPE": "item", + "ID": 1500, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b80001010164580200005919000300000000000000000000000000000000000000000040010000633d000000ffff", + "STRINGS": [ + "Warm Egg Soup ", + "[Restores 600 HP/STR+25% (3 Turns)/Cures Freeze]\nA soup that warms you from head to toe from the first sip." + ] + }, + { + "TYPE": "item", + "ID": 1501, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b80001010164200300005a00000000000000000000000000000000000000000000000040010000633e000000ffff", + "STRINGS": [ + "White Cookie ", + "[Restores 800 HP/Cures Poison/Burn]\nA high-class cookie with luxurious white chocolate inside." + ] + }, + { + "TYPE": "item", + "ID": 1502, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b80001010176e80332005b00000000000000000000000000000000000000000000000058020000633f000000ffff", + "STRINGS": [ + "Wild Mix ", + "[Restores 1000 HP/Restores 50 EP/Cures Faint/Confuse]\nA mixed juice made by randomly adding ingredients." + ] + }, + { + "TYPE": "item", + "ID": 1503, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b80001010177dc05190041190003000000000000000000000000000000000000000000ac0300006340000000ffff", + "STRINGS": [ + "Victory Sandwich ", + "[Restores 1500 HP/Restores 25 CP/STR+25% (3 Turns)]\nA sandwich made with plenty of meat. Fills you with energy." + ] + }, + { + "TYPE": "item", + "ID": 1504, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b800010101644006000045190003000000000000000000000000000000000000000000bc0200006341000000ffff", + "STRINGS": [ + "Nord Tea ", + "[Restores 1600 HP/SPD+25% (3 Turns)]\nA variety of herb tea long loved by the people of Nord." + ] + }, + { + "TYPE": "item", + "ID": 1505, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b80001010164d00700005d000000000000000000000000000000000000000000000000bc0200006342000000ffff", + "STRINGS": [ + "Deluxe Herb Chowder ", + "[Restores 2000 HP/Cures Poison/Blind/Burn/Freeze]\nFull of ingredients. The herbs' aroma whets the appetite." + ] + }, + { + "TYPE": "item", + "ID": 1506, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b80001010164600900005e000000000000000000000000000000000000000000000000d00200006343000000ffff", + "STRINGS": [ + "Soft Chocolate Tart ", + "[Restores 2400 HP/Cures Freeze/Petrify]\nUses only the finest chocolate. Looks as good as it tastes." + ] + }, + { + "TYPE": "item", + "ID": 1507, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b80001010164b004000052190005000000000000000000000000000000000000000000480300006344000000ffff", + "STRINGS": [ + "Three Cheese Risotto ", + "[Restores 1200 HP/STR/ATS+25% (5 Turns)]\nA perfectly crafted risotto containing a variety of cheeses." + ] + }, + { + "TYPE": "item", + "ID": 1508, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b800010101776009190060190003000000000000000000000000000000000000000000e80300006345000000ffff", + "STRINGS": [ + "Teriyaki Chicken Pizza ", + "[Restores 2400 HP/Restores 25 CP/DEF/SPD+25% (3 Turns)]\nAn Eastern-style chicken pizza with plenty of flavorful sauce." + ] + }, + { + "TYPE": "item", + "ID": 1509, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b800010101646009000062000000000000000000000000000000000000000000000000200300006346000000ffff", + "STRINGS": [ + "Double Espresso ", + "[Restores 2400 HP/Cures Sleep/Nightmare/Faint/Confuse]\nA special kind of espresso made with rare, dark-roasted beans." + ] + }, + { + "TYPE": "item", + "ID": 1510, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b80001010177d0071900433200030000000000000000000000000000000000000000004c0400006347000000ffff", + "STRINGS": [ + "Whole Pumpkin Gratin ", + "[Restores 2000 HP/Restores 25 CP/ATS+50% (3 Turns)]\nA gratin full of pumpkin, served in a hollowed-out pumpkin." + ] + }, + { + "TYPE": "item", + "ID": 1511, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b80001010164100e000045320003000000000000000000000000000000000000000000e80300006348000000ffff", + "STRINGS": [ + "Fish Nuggets", + "[Restores 3600 HP/SPD+50% (3 Turns)]\nCharmingly bite-sized nuggets of fried fish." + ] + }, + { + "TYPE": "item", + "ID": 1512, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b800010101647805000082190004000000000000000000000000000000000000000000840300006349000000ffff", + "STRINGS": [ + "Quartet Pudding ", + "[Restores 1400 HP/STR/DEF/ATS/ADF+25% (4 Turns)]\nA carefully crafted pudding with four perfectly fused sauces." + ] + }, + { + "TYPE": "item", + "ID": 1513, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b80001010176080764004800000000000000000000000000000000000000000000000078050000634a000000ffff", + "STRINGS": [ + "Deluxe Herb Pasta ", + "[Restores 1800 HP/Restores 100 EP/Cures abnormal status]\nHerb pasta known for its unique, addictive fragrance." + ] + }, + { + "TYPE": "item", + "ID": 1514, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b80001010177100e14005f320003000000000000000000000000000000000000000000c8050000634b000000ffff", + "STRINGS": [ + "Artistic Omurice ", + "[Restores 3600 HP/Restores 20 CP/DEF/ADF+50% (3 Turns)]\nA playful omelet with a picture drawn in sauce on top of it." + ] + }, + { + "TYPE": "item", + "ID": 1515, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b80001010164501400004132000500000000000000000000000000000000000000000040060000634c000000ffff", + "STRINGS": [ + "Juicy Kebab ", + "[Restores 5200 HP/STR+50% (5 Turns)]\nA kebab bursting with juices, with delicious-smelling sauce." + ] + }, + { + "TYPE": "item", + "ID": 1516, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b8000101017798083c0000000000000000000000000000000000000000000000000000dc050000634d000000ffff", + "STRINGS": [ + "Red Hot Soda ", + "[Restores 2200 HP/Restores 60 CP]\nA stimulating drink that gets its taste from the spices used." + ] + }, + { + "TYPE": "item", + "ID": 1517, + "UNK0": -3, + "STRING": "SLCBPMR", + "UNK1": "b8000101016ac409000078320019000000000000000000000000000000000000000000d0070000634e000000ffff", + "STRINGS": [ + "Salty Gelato ", + "[Restores 2500 HP/Restores 50 EP/25 CP/Cures K.O.]\nA pretty blue salted gelato. As nice to look at as to eat." + ] + }, + { + "TYPE": "item", + "ID": 1518, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b80001010179c409c53a50320005000000000000000000000000000000000000000000800c0000634f000000ffff", + "STRINGS": [ + "Hurricane Hotpot", + "[Restores 2500 HP/Restores 150 EP/45 CP/STR/SPD+50% (5 Turns)]\nA simple, flavorful hot pot made using delicious stock." + ] + }, + { + "TYPE": "item", + "ID": 1519, + "UNK0": -3, + "STRING": "SLCBPM", + "UNK1": "b80001010177401f1e0063320005000000000000000000000000000000000000000000800c00006350000000ffff", + "STRINGS": [ + "Mixed Hamburger Dish ", + "[Restores 8000 HP/Restores 30 CP/ATS/ADF+50% (5 Turns)]\nA dish perfectly balanced for variety and nutrition." + ] + }, + { + "TYPE": "item", + "ID": 1600, + "UNK0": -3, + "STRING": "SL", + "UNK1": "b400000000000000000000000000000000000000000000000000000000000000000000280000006301000000ffff", + "STRINGS": [ + "Fresh Egg", + "A freshly laid egg. The yellow yolk inside is highly\nnutritious." + ] + }, + { + "TYPE": "item", + "ID": 1601, + "UNK0": -3, + "STRING": "SL", + "UNK1": "b400000000000000000000000000000000000000000000000000000000000000000000280000006302000000ffff", + "STRINGS": [ + "Fresh Milk", + "Freshly drawn milk. Soft and pleasant on the tongue with a\nhint of sweetness." + ] + }, + { + "TYPE": "item", + "ID": 1602, + "UNK0": -3, + "STRING": "SL", + "UNK1": "b400000000000000000000000000000000000000000000000000000000000000000000280000006303000000ffff", + "STRINGS": [ + "Mature Cheese", + "Matured cheese with a deep flavor. Delicious both on its own\nand when used for cooking." + ] + }, + { + "TYPE": "item", + "ID": 1603, + "UNK0": -3, + "STRING": "SL", + "UNK1": "b400000000000000000000000000000000000000000000000000000000000000000000280000006304000000ffff", + "STRINGS": [ + "Fresh Herb", + "A herb with a refreshing fragrance. Used for a variety of\npurposes, from removing odors from meats to making herb tea." + ] + }, + { + "TYPE": "item", + "ID": 1604, + "UNK0": -3, + "STRING": "SL", + "UNK1": "b400000000000000000000000000000000000000000000000000000000000000000000280000006305000000ffff", + "STRINGS": [ + "Crisp Onion", + "A large onion with a crisp texture. Not all that pungent, so\nit can be eaten as it is." + ] + }, + { + "TYPE": "item", + "ID": 1605, + "UNK0": -3, + "STRING": "SL", + "UNK1": "b400000000000000000000000000000000000000000000000000000000000000000000280000006306000000ffff", + "STRINGS": [ + "Flaky Potato", + "A fresh potato that's a little on the small side. Tends to\nmaintain its shape, making it ideal for boiling." + ] + }, + { + "TYPE": "item", + "ID": 1606, + "UNK0": -3, + "STRING": "SL", + "UNK1": "b400000000000000000000000000000000000000000000000000000000000000000000500000006307000000ffff", + "STRINGS": [ + "Starberry", + "A small fruit with a star-like shape when cut open. Known for \nits sweet and sour taste." + ] + }, + { + "TYPE": "item", + "ID": 1607, + "UNK0": -3, + "STRING": "SL", + "UNK1": "b400000000000000000000000000000000000000000000000000000000000000000000c80000006308000000ffff", + "STRINGS": [ + "Acerbic Tomato", + "A new kind of tomato native to the Liberl Kingdom. \nIncredibly bitter, and yet strangely addictive." + ] + }, + { + "TYPE": "item", + "ID": 1608, + "UNK0": -3, + "STRING": "SL", + "UNK1": "b400000000000000000000000000000000000000000000000000000000000000000000140000006309000000ffff", + "STRINGS": [ + "Honey Syrup", + "Fragrant honey syrup. Known for being sweet without being too\nrich." + ] + }, + { + "TYPE": "item", + "ID": 1609, + "UNK0": -3, + "STRING": "SL", + "UNK1": "b40000000000000000000000000000000000000000000000000000000000000000000014000000630a000000ffff", + "STRINGS": [ + "Coarse Rock Salt", + "Coarsely ground rock salt. Exceptionally salty on the tongue." + ] + }, + { + "TYPE": "item", + "ID": 1610, + "UNK0": -3, + "STRING": "SL", + "UNK1": "b40000000000000000000000000000000000000000000000000000000000000000000064000000630b000000ffff", + "STRINGS": [ + "Assorted Grains", + "An assortment of popular grains, including rice, wheat and\nbeans. Essential for cooking." + ] + }, + { + "TYPE": "item", + "ID": 1611, + "UNK0": -3, + "STRING": "SL", + "UNK1": "b40000000000000000000000000000000000000000000000000000000000000000000064000000630c000000ffff", + "STRINGS": [ + "Healthy Liquor", + "A liquor with a mild taste. Highly nutritious, it is\nparticularly prized in cooking." + ] + }, + { + "TYPE": "item", + "ID": 1612, + "UNK0": -3, + "STRING": "SL", + "UNK1": "b40000000000000000000000000000000000000000000000000000000000000000000090010000630d000000ffff", + "STRINGS": [ + "Red Beast Flesh", + "Red meat from a monster. Fills you with energy with every\nbite." + ] + }, + { + "TYPE": "item", + "ID": 1613, + "UNK0": -3, + "STRING": "SL", + "UNK1": "b40000000000000000000000000000000000000000000000000000000000000000000090010000630e000000ffff", + "STRINGS": [ + "White Beast Flesh", + "White meat from a monster. Has a tender texture and\nrefreshing taste." + ] + }, + { + "TYPE": "item", + "ID": 1614, + "UNK0": -3, + "STRING": "SL", + "UNK1": "b40000000000000000000000000000000000000000000000000000000000000000000090010000630f000000ffff", + "STRINGS": [ + "Chitinous Shell", + "A highly nutritious monster's shell. Produces a mellow\ntasting stock when boiled." + ] + }, + { + "TYPE": "item", + "ID": 1615, + "UNK0": -3, + "STRING": "SL", + "UNK1": "b400000000000000000000000000000000000000000000000000000000000000000000900100006310000000ffff", + "STRINGS": [ + "Clear Gelatin", + "A wobbly, viscous liquid. Its appearance may leave much to be\ndesired, but it melts in the mouth." + ] + }, + { + "TYPE": "item", + "ID": 1616, + "UNK0": -3, + "STRING": "SL", + "UNK1": "b400000000000000000000000000000000000000000000000000000000000000000000900100006311000000ffff", + "STRINGS": [ + "Globby Fat", + "Thick fat from a monster. Delicious, though it takes some\ngetting used to the taste." + ] + }, + { + "TYPE": "item", + "ID": 1617, + "UNK0": -3, + "STRING": "SL", + "UNK1": "b400000000000000000000000000000000000000000000000000000000000000000000900100006312000000ffff", + "STRINGS": [ + "Hearty Powder", + "Delicate powder that stimulates the tastebuds. Used as a \nspice and as a thickener in cooking." + ] + } +] \ No newline at end of file diff --git a/text/jsons/t_jump.json b/text/jsons/t_jump.json new file mode 100644 index 0000000..12058c3 --- /dev/null +++ b/text/jsons/t_jump.json @@ -0,0 +1,842 @@ +[ + { + "TYPE": "MapJumpData", + "ID": 1, + "UNK0": 1, + "STRING1": "Front Entrance", + "UNK1": "01000000", + "STRING2": "t0000", + "STRING3": "0", + "UNK2": "0000000000000000000000c0000034438a020000d501000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 2, + "UNK0": 1, + "STRING1": "Main Building - 1F", + "UNK1": "01000000", + "STRING2": "t0010", + "STRING3": "t0010_t0000_1", + "UNK2": "804fc347000000000000000000000000790400005002000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 3, + "UNK0": 1, + "STRING1": "Main Building - 2F", + "UNK1": "01000000", + "STRING2": "t0020", + "STRING3": "t0020_t0010_1", + "UNK2": "804fc347000000000000000000000000720400009e01000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 4, + "UNK0": 1, + "STRING1": "Main Building - Rooftop", + "UNK1": "01000000", + "STRING2": "t0000", + "STRING3": "t0000_t0020", + "UNK2": "804fc347000000000000000000000000720400000801000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 5, + "UNK0": 1, + "STRING1": "Student Union", + "UNK1": "01000000", + "STRING2": "t0080", + "STRING3": "t0080_t0000", + "UNK2": "804fc347000000000000000000000000100300005501000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 6, + "UNK0": 1, + "STRING1": "Library", + "UNK1": "01000000", + "STRING2": "t0060", + "STRING3": "t0060_t0000", + "UNK2": "804fc347000000000000000000000000760300005701000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 7, + "UNK0": 1, + "STRING1": "Courtyard", + "UNK1": "01000000", + "STRING2": "t0000", + "STRING3": "0", + "UNK2": "000000000000000000008cc2000000004f0200000c01000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 8, + "UNK0": 1, + "STRING1": "Academy Field", + "UNK1": "01000000", + "STRING2": "t0000", + "STRING3": "0", + "UNK2": "000094c2000040c0000068c200008743390100006501000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 9, + "UNK0": 1, + "STRING1": "Gymnasium", + "UNK1": "01005015", + "STRING2": "t0050", + "STRING3": "t0050_t0000", + "UNK2": "804fc34700000000000000000000000000020000d200000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 10, + "UNK0": 1, + "STRING1": "Engineering Building", + "UNK1": "01000000", + "STRING2": "t0090", + "STRING3": "t0090_t0000", + "UNK2": "804fc347000000000000000000000000fc020000e400000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 11, + "UNK0": 1, + "STRING1": "Old Schoolhouse", + "UNK1": "01000000", + "STRING2": "t0200", + "STRING3": "go_t0000", + "UNK2": "804fc347000000000000000000000000d40200007b00000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 12, + "UNK0": 1, + "STRING1": "Old Schoolhouse", + "UNK1": "01000000", + "STRING2": "t0201", + "STRING3": "go_t0000", + "UNK2": "804fc347000000000000000000000000d40200007b00000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 101, + "UNK0": 2, + "STRING1": "Class VII Dormitory", + "UNK1": "02000000", + "STRING2": "t1010", + "STRING3": "go_t1000", + "UNK2": "804fc34700000000000000000000000048030000e801000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 102, + "UNK0": 2, + "STRING1": "Kirsche's Cafe & Inn", + "UNK1": "02000000", + "STRING2": "t1050", + "STRING3": "go_t1000", + "UNK2": "804fc3470000000000000000000000001c020000d601000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 103, + "UNK0": 2, + "STRING1": "Brandon's General Goods", + "UNK1": "02000000", + "STRING2": "t1020", + "STRING3": "go_t1000", + "UNK2": "804fc347000000000000000000000000b6020000b001000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 104, + "UNK0": 2, + "STRING1": "Boutique - Le Sage", + "UNK1": "02000000", + "STRING2": "t1040", + "STRING3": "go_t1000", + "UNK2": "804fc347000000000000000000000000b00200008801000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 105, + "UNK0": 2, + "STRING1": "Keynes' Bookstore", + "UNK1": "02000000", + "STRING2": "t1030", + "STRING3": "go_t1000", + "UNK2": "804fc347000000000000000000000000140200008001000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 106, + "UNK0": 2, + "STRING1": "Micht's Pawn Shop", + "UNK1": "02000000", + "STRING2": "t1060", + "STRING3": "go_t1000", + "UNK2": "804fc347000000000000000000000000f40200003801000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 107, + "UNK0": 2, + "STRING1": "Park", + "UNK1": "02000000", + "STRING2": "t1000", + "STRING3": "0", + "UNK2": "713d8a3e000000bf1f858bc0000034437a020000ce01000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 108, + "UNK0": 2, + "STRING1": "Academy Front Gate", + "UNK1": "02000000", + "STRING2": "t1000", + "STRING3": "0", + "UNK2": "f628f4c000000040d723a2c200000000f70100009c00000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 201, + "UNK0": 3, + "STRING1": "Grand Market", + "UNK1": "03000215", + "STRING2": "t1500", + "STRING3": "0", + "UNK2": "00000000000000c0000010c200003443000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 202, + "UNK0": 3, + "STRING1": "Weathercock Inn", + "UNK1": "03000315", + "STRING2": "t1510", + "STRING3": "go_t1500", + "UNK2": "804fc347000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 203, + "UNK0": 3, + "STRING1": "Oddvin's Arms & Orbal Factory", + "UNK1": "03000415", + "STRING2": "t1550", + "STRING3": "go_t1500", + "UNK2": "804fc347000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 204, + "UNK0": 3, + "STRING1": "East Celdic Highway", + "UNK1": "03000515", + "STRING2": "r0020", + "STRING3": "go_t1500", + "UNK2": "804fc347000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 205, + "UNK0": 3, + "STRING1": "West Celdic Highway", + "UNK1": "03000615", + "STRING2": "r0000", + "STRING3": "go_t1500", + "UNK2": "804fc347000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 301, + "UNK0": 4, + "STRING1": "Central Plaza", + "UNK1": "04000000", + "STRING2": "t2100", + "STRING3": "0", + "UNK2": "5c8f1240000000003d0a774000003443000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 302, + "UNK0": 4, + "STRING1": "Station Street", + "UNK1": "04000000", + "STRING2": "t2000", + "STRING3": "go_t2100", + "UNK2": "804fc347000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 303, + "UNK0": 4, + "STRING1": "Noble District", + "UNK1": "04000000", + "STRING2": "t2200", + "STRING3": "go_t2100", + "UNK2": "804fc347000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 304, + "UNK0": 4, + "STRING1": "Artisans' Street", + "UNK1": "04000000", + "STRING2": "t2300", + "STRING3": "go_t2100", + "UNK2": "804fc347000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 305, + "UNK0": 4, + "STRING1": "Hotel Esmeralda", + "UNK1": "04000000", + "STRING2": "t2110", + "STRING3": "out1", + "UNK2": "804fc347000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 306, + "UNK0": 4, + "STRING1": "Christie's Galleria", + "UNK1": "04000000", + "STRING2": "t2020", + "STRING3": "out1", + "UNK2": "804fc347000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 307, + "UNK0": 4, + "STRING1": "Davos' Factory", + "UNK1": "04000000", + "STRING2": "t2310", + "STRING3": "out1", + "UNK2": "804fc347000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 308, + "UNK0": 4, + "STRING1": "Aurochs Canyon Path", + "UNK1": "04000715", + "STRING2": "r0200", + "STRING3": "go_t2000", + "UNK2": "804fc347000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 309, + "UNK0": 4, + "STRING1": "North Kreuzen Highway", + "UNK1": "04000815", + "STRING2": "r0100", + "STRING3": "go_t2000", + "UNK2": "804fc347000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 401, + "UNK0": 5, + "STRING1": "Lodging Yurt", + "UNK1": "05000000", + "STRING2": "t4520", + "STRING3": "go_t4500", + "UNK2": "804fc347000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 406, + "UNK0": 5, + "STRING1": "Elder's Home", + "UNK1": "05000000", + "STRING2": "t4530", + "STRING3": "go_t4500", + "UNK2": "804fc347000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 402, + "UNK0": 5, + "STRING1": "Worzel Home", + "UNK1": "05000000", + "STRING2": "t4510", + "STRING3": "go_t4500", + "UNK2": "804fc347000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 403, + "UNK0": 5, + "STRING1": "Trading Post", + "UNK1": "05000000", + "STRING2": "t4540", + "STRING3": "go_t4500", + "UNK2": "804fc347000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 404, + "UNK0": 5, + "STRING1": "Nord Highlands - South", + "UNK1": "05000000", + "STRING2": "r0800", + "STRING3": "go_t4500", + "UNK2": "804fc347000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 405, + "UNK0": 5, + "STRING1": "Nord Highlands - North", + "UNK1": "05000915", + "STRING2": "r0810", + "STRING3": "for_t4500", + "UNK2": "804fc347000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 501, + "UNK0": 6, + "STRING1": "Viscount Arseid's Mansion", + "UNK1": "06000000", + "STRING2": "t3060", + "STRING3": "from_t3000", + "UNK2": "804fc347000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 502, + "UNK0": 6, + "STRING1": "Bracer Guild - Legram Branch", + "UNK1": "06003115", + "STRING2": "t3010", + "STRING3": "from_t3000", + "UNK2": "804fc347000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 503, + "UNK0": 6, + "STRING1": "Aprikoze Inn", + "UNK1": "06000000", + "STRING2": "t3100", + "STRING3": "from_t3000_00", + "UNK2": "804fc347000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 504, + "UNK0": 6, + "STRING1": "Watteau's Store", + "UNK1": "06000000", + "STRING2": "t3020", + "STRING3": "from_t3000_00", + "UNK2": "804fc347000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 505, + "UNK0": 6, + "STRING1": "Ebel Highway", + "UNK1": "06003015", + "STRING2": "r0300", + "STRING3": "from_t3000", + "UNK2": "804fc347000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 601, + "UNK0": 7, + "STRING1": "Reinford Corporate HQ", + "UNK1": "07004315", + "STRING2": "t3510", + "STRING3": "go_t3500", + "UNK2": "804fc347000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 602, + "UNK0": 7, + "STRING1": "RF Arms", + "UNK1": "07004415", + "STRING2": "t3600", + "STRING3": "go_t3500", + "UNK2": "804fc347000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 603, + "UNK0": 7, + "STRING1": "RF Store", + "UNK1": "07000000", + "STRING2": "t3560", + "STRING3": "go_t3500", + "UNK2": "804fc347000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 604, + "UNK0": 7, + "STRING1": "Boronia's General Goods", + "UNK1": "07000000", + "STRING2": "t3570", + "STRING3": "go_t3500", + "UNK2": "804fc347000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 605, + "UNK0": 7, + "STRING1": "Jackass' Repair Shop", + "UNK1": "07000000", + "STRING2": "t3730", + "STRING3": "go_t3500", + "UNK2": "804fc347000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 606, + "UNK0": 7, + "STRING1": "Nortia Highway", + "UNK1": "07004015", + "STRING2": "r0410", + "STRING3": "to_t3500", + "UNK2": "804fc347000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 607, + "UNK0": 7, + "STRING1": "Spina Byroad", + "UNK1": "07004115", + "STRING2": "r0400", + "STRING3": "to_t3500", + "UNK2": "804fc347000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 608, + "UNK0": 7, + "STRING1": "Sachsen Mountain Path", + "UNK1": "07004215", + "STRING2": "r0420", + "STRING3": "to_t3500", + "UNK2": "804fc347000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 701, + "UNK0": 10, + "STRING1": "Vainqueur Street", + "UNK1": "0a000d15", + "STRING2": "c0100", + "STRING3": "0", + "UNK2": "9a9919c100000000b81e7d4200003443000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 702, + "UNK0": 10, + "STRING1": "Alto Street", + "UNK1": "0a000e15", + "STRING2": "c0300", + "STRING3": "0", + "UNK2": "713d9240cdccccbdb81e3b42cd4c3d43000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 703, + "UNK0": 10, + "STRING1": "Garnier District", + "UNK1": "0a000f15", + "STRING2": "c0200", + "STRING3": "0", + "UNK2": "8fc28f416666e6be8fc28f4100006143000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 704, + "UNK0": 10, + "STRING1": "Ost District", + "UNK1": "0a001015", + "STRING2": "c0400", + "STRING3": "0", + "UNK2": "0ad7edc1000000000000e0bf0000b442000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 705, + "UNK0": 10, + "STRING1": "Dreichels Plaza", + "UNK1": "0a001115", + "STRING2": "c0800", + "STRING3": "0", + "UNK2": "000040c1000000000000964200003443000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 706, + "UNK0": 10, + "STRING1": "Mater Park", + "UNK1": "0a001215", + "STRING2": "c0700", + "STRING3": "0", + "UNK2": "d7a3e4410000004014ae114200003443000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 707, + "UNK0": 10, + "STRING1": "Heimdallr Port", + "UNK1": "0a001315", + "STRING2": "c0500", + "STRING3": "0", + "UNK2": "9a99dbc10000000048e1fabe0000b442000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 708, + "UNK0": 10, + "STRING1": "Sankt District", + "UNK1": "0a001415", + "STRING2": "c0600", + "STRING3": "0", + "UNK2": "00000000000000000000a04000008743000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 711, + "UNK0": 11, + "STRING1": "Plaza Bifrost", + "UNK1": "0b000000", + "STRING2": "c0120", + "STRING3": "exit_SE", + "UNK2": "804fc347000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 712, + "UNK0": 11, + "STRING1": "Le Sage Boutique", + "UNK1": "0b000000", + "STRING2": "c0110", + "STRING3": "go_c0100", + "UNK2": "804fc347000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 713, + "UNK0": 11, + "STRING1": "Watson's Weapons & Armor", + "UNK1": "0b000000", + "STRING2": "c0130", + "STRING3": "c0130", + "UNK2": "804fc347000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 714, + "UNK0": 11, + "STRING1": "Lumiere Orbal Factory", + "UNK1": "0b000000", + "STRING2": "c0150", + "STRING3": "c0150", + "UNK2": "804fc347000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 715, + "UNK0": 11, + "STRING1": "Travel to another district", + "UNK1": "0b000000", + "STRING2": "c0000", + "STRING3": "0", + "UNK2": "804fc347000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 721, + "UNK0": 12, + "STRING1": "Hotel - Der Himmel", + "UNK1": "0c000000", + "STRING2": "c0230", + "STRING3": "to_c0200", + "UNK2": "804fc347000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 722, + "UNK0": 12, + "STRING1": "San Corries Jewelers", + "UNK1": "0c000000", + "STRING2": "c0220", + "STRING3": "to_c0200", + "UNK2": "804fc347000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 723, + "UNK0": 12, + "STRING1": "Underground Passage", + "UNK1": "0c002015", + "STRING2": "m2000", + "STRING3": "go_c0230", + "UNK2": "804fc347000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 724, + "UNK0": 12, + "STRING1": "Travel to another district", + "UNK1": "0c000000", + "STRING2": "c0000", + "STRING3": "0", + "UNK2": "804fc347000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 731, + "UNK0": 13, + "STRING1": "Former Guild Branch", + "UNK1": "0d000000", + "STRING2": "c0330", + "STRING3": "go_c0300", + "UNK2": "804fc347000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 732, + "UNK0": 13, + "STRING1": "Concert Cafe - Etoile", + "UNK1": "0d000000", + "STRING2": "c0350", + "STRING3": "go_c0300", + "UNK2": "804fc347000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 733, + "UNK0": 13, + "STRING1": "Travel to another district", + "UNK1": "0d000000", + "STRING2": "c0000", + "STRING3": "0", + "UNK2": "804fc347000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 741, + "UNK0": 14, + "STRING1": "Gamgee's Pub", + "UNK1": "0e000000", + "STRING2": "c0430", + "STRING3": "c0430", + "UNK2": "804fc347000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 742, + "UNK0": 14, + "STRING1": "Emmrod's Used Goods", + "UNK1": "0e000000", + "STRING2": "c0440", + "STRING3": "c0440", + "UNK2": "804fc347000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 743, + "UNK0": 14, + "STRING1": "Underground Waterway", + "UNK1": "0e000000", + "STRING2": "m2021", + "STRING3": "go_c0400", + "UNK2": "804fc347000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 744, + "UNK0": 14, + "STRING1": "Travel to another district", + "UNK1": "0e000000", + "STRING2": "c0000", + "STRING3": "0", + "UNK2": "804fc347000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 751, + "UNK0": 15, + "STRING1": "Underground Waterway", + "UNK1": "0f000000", + "STRING2": "m2020", + "STRING3": "go_c0500", + "UNK2": "804fc347000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 752, + "UNK0": 15, + "STRING1": "Travel to another district", + "UNK1": "0f000000", + "STRING2": "c0000", + "STRING3": "0", + "UNK2": "804fc347000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 761, + "UNK0": 16, + "STRING1": "Crystal Garden", + "UNK1": "10000a15", + "STRING2": "c0710", + "STRING3": "c0710", + "UNK2": "804fc347000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 762, + "UNK0": 16, + "STRING1": "Underground Waterway", + "UNK1": "10000b15", + "STRING2": "m2001", + "STRING3": "go_c0700", + "UNK2": "804fc347000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 763, + "UNK0": 16, + "STRING1": "Travel to another district", + "UNK1": "10000c15", + "STRING2": "c0000", + "STRING3": "0", + "UNK2": "804fc347000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 771, + "UNK0": 17, + "STRING1": "Travel to another district", + "UNK1": "11002115", + "STRING2": "c0000", + "STRING3": "0", + "UNK2": "804fc347000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "MapJumpData", + "ID": 781, + "UNK0": 18, + "STRING1": "Travel to another district", + "UNK1": "12000000", + "STRING2": "c0000", + "STRING3": "0", + "UNK2": "804fc347000000000000000000000000000000000000000000000000" + } +] \ No newline at end of file diff --git a/text/jsons/t_linkab.json b/text/jsons/t_linkab.json new file mode 100644 index 0000000..f9014b0 --- /dev/null +++ b/text/jsons/t_linkab.json @@ -0,0 +1,672 @@ +[ + { + "TYPE": "LinkAbList", + "UNK0": 0, + "ID": 1, + "UNK1": 0, + "STRINGS": [ + "Link Attack", + "Allows the use of link attacks." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 0, + "ID": 2, + "UNK1": 10, + "STRINGS": [ + "Finishing Blow", + "Follows assist attacks with a finishing blow if the foe has low HP." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 0, + "ID": 3, + "UNK1": 20, + "STRINGS": [ + "Cover", + "Sometimes defends partner from an attack, halving damage." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 0, + "ID": 4, + "UNK1": 30, + "STRINGS": [ + "Powerful Strike", + "Increases finishing blow's power and activation frequency." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 0, + "ID": 5, + "UNK1": 50, + "STRINGS": [ + "Rush 2", + "Increases the power of Rush." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 1, + "ID": 1, + "UNK1": 0, + "STRINGS": [ + "Link Attack", + "Allows the use of link attacks." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 1, + "ID": 2, + "UNK1": 10, + "STRINGS": [ + "Finishing Blow", + "Follows assist attacks with a finishing blow if the foe has low HP." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 1, + "ID": 3, + "UNK1": 21, + "STRINGS": [ + "Auto-Tear", + "Sometimes heals partner's HP when they are attacked." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 1, + "ID": 4, + "UNK1": 31, + "STRINGS": [ + "Cheer", + "Sometimes encourages partner when they are attacked. CP+50." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 1, + "ID": 5, + "UNK1": 50, + "STRINGS": [ + "Rush 2", + "Increases the power of Rush." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 2, + "ID": 1, + "UNK1": 0, + "STRINGS": [ + "Link Attack", + "Allows the use of link attacks." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 2, + "ID": 2, + "UNK1": 10, + "STRINGS": [ + "Finishing Blow", + "Follows assist attacks with a finishing blow if the foe has low HP." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 2, + "ID": 3, + "UNK1": 21, + "STRINGS": [ + "Auto-Tear", + "Sometimes heals partner's HP when they are attacked." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 2, + "ID": 4, + "UNK1": 32, + "STRINGS": [ + "Arts Support", + "Sometimes increases the power of partner's arts by 1.2x." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 2, + "ID": 5, + "UNK1": 50, + "STRINGS": [ + "Rush 2", + "Increases the power of Rush." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 3, + "ID": 1, + "UNK1": 0, + "STRINGS": [ + "Link Attack", + "Allows the use of link attacks." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 3, + "ID": 2, + "UNK1": 10, + "STRINGS": [ + "Finishing Blow", + "Follows assist attacks with a finishing blow if the foe has low HP." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 3, + "ID": 3, + "UNK1": 20, + "STRINGS": [ + "Cover", + "Sometimes defends partner from an attack, halving damage." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 3, + "ID": 4, + "UNK1": 33, + "STRINGS": [ + "Vengeance", + "Sometimes counters with a critical when partner is attacked." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 3, + "ID": 5, + "UNK1": 50, + "STRINGS": [ + "Rush 2", + "Increases the power of Rush." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 4, + "ID": 1, + "UNK1": 0, + "STRINGS": [ + "Link Attack", + "Allows the use of link attacks." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 4, + "ID": 2, + "UNK1": 10, + "STRINGS": [ + "Finishing Blow", + "Follows assist attacks with a finishing blow if the foe has low HP." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 4, + "ID": 3, + "UNK1": 21, + "STRINGS": [ + "Auto-Tear", + "Sometimes heals partner's HP when they are attacked." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 4, + "ID": 4, + "UNK1": 34, + "STRINGS": [ + "Auto-Charge", + "Sometimes restores partner's EP after they use arts." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 4, + "ID": 5, + "UNK1": 50, + "STRINGS": [ + "Rush 2", + "Increases the power of Rush." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 5, + "ID": 1, + "UNK1": 0, + "STRINGS": [ + "Link Attack", + "Allows the use of link attacks." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 5, + "ID": 2, + "UNK1": 10, + "STRINGS": [ + "Finishing Blow", + "Follows assist attacks with a finishing blow if the foe has low HP." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 5, + "ID": 3, + "UNK1": 21, + "STRINGS": [ + "Auto-Tear", + "Sometimes heals partner's HP when they are attacked." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 5, + "ID": 4, + "UNK1": 35, + "STRINGS": [ + "Auto-Curia", + "Sometimes cures a partner's abnormal status or stat down." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 5, + "ID": 5, + "UNK1": 50, + "STRINGS": [ + "Rush 2", + "Increases the power of Rush." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 6, + "ID": 1, + "UNK1": 0, + "STRINGS": [ + "Link Attack", + "Allows the use of link attacks." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 6, + "ID": 2, + "UNK1": 10, + "STRINGS": [ + "Finishing Blow", + "Follows assist attacks with a finishing blow if the foe has low HP." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 6, + "ID": 3, + "UNK1": 22, + "STRINGS": [ + "Counterattack", + "Sometimes counterattacks foe when partner is attacked." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 6, + "ID": 4, + "UNK1": 32, + "STRINGS": [ + "Arts Support", + "Sometimes increases the power of partner's arts by 1.2x." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 6, + "ID": 5, + "UNK1": 50, + "STRINGS": [ + "Rush 2", + "Increases the power of Rush." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 7, + "ID": 1, + "UNK1": 0, + "STRINGS": [ + "Link Attack", + "Allows the use of link attacks." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 7, + "ID": 2, + "UNK1": 10, + "STRINGS": [ + "Finishing Blow", + "Follows assist attacks with a finishing blow if the foe has low HP." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 7, + "ID": 3, + "UNK1": 22, + "STRINGS": [ + "Counterattack", + "Sometimes counterattacks foe when partner is attacked." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 7, + "ID": 4, + "UNK1": 36, + "STRINGS": [ + "Deadly Assist", + "Assist attacks deal critical damage and cause delay+20." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 7, + "ID": 5, + "UNK1": 50, + "STRINGS": [ + "Rush 2", + "Increases the power of Rush." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 8, + "ID": 1, + "UNK1": 0, + "STRINGS": [ + "Link Attack", + "Allows the use of link attacks." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 8, + "ID": 2, + "UNK1": 10, + "STRINGS": [ + "Finishing Blow", + "Follows assist attacks with a finishing blow if the foe has low HP." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 8, + "ID": 3, + "UNK1": 22, + "STRINGS": [ + "Counterattack", + "Sometimes counterattacks foe when partner is attacked." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 8, + "ID": 4, + "UNK1": 37, + "STRINGS": [ + "Protective Wall", + "Sometimes protects partner, reducing incoming damage by 90%." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 8, + "ID": 5, + "UNK1": 50, + "STRINGS": [ + "Rush 2", + "Increases the power of Rush." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 9, + "ID": 1, + "UNK1": 0, + "STRINGS": [ + "Link Attack", + "Allows the use of link attacks." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 9, + "ID": 2, + "UNK1": 10, + "STRINGS": [ + "Finishing Blow", + "Follows assist attacks with a finishing blow if the foe has low HP." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 9, + "ID": 3, + "UNK1": 22, + "STRINGS": [ + "Counterattack", + "Sometimes counterattacks foe when partner is attacked." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 9, + "ID": 4, + "UNK1": 31, + "STRINGS": [ + "Cheer", + "Sometimes encourages partner when they are attacked. CP+50." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 9, + "ID": 5, + "UNK1": 50, + "STRINGS": [ + "Rush 2", + "Increases the power of Rush." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 10, + "ID": 1, + "UNK1": 0, + "STRINGS": [ + "Link Attack", + "Allows the use of link attacks." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 10, + "ID": 2, + "UNK1": 10, + "STRINGS": [ + "Finishing Blow", + "Follows assist attacks with a finishing blow if the foe has low HP." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 10, + "ID": 3, + "UNK1": 22, + "STRINGS": [ + "Counterattack", + "Sometimes counterattacks foe when partner is attacked." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 10, + "ID": 4, + "UNK1": 34, + "STRINGS": [ + "Auto-Charge", + "Sometimes restores partner's EP after they use arts." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 10, + "ID": 5, + "UNK1": 50, + "STRINGS": [ + "Rush 2", + "Increases the power of Rush." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 11, + "ID": 1, + "UNK1": 0, + "STRINGS": [ + "Link Attack", + "Allows the use of link attacks." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 11, + "ID": 2, + "UNK1": 10, + "STRINGS": [ + "Finishing Blow", + "Follows assist attacks with a finishing blow if the foe has low HP." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 11, + "ID": 3, + "UNK1": 20, + "STRINGS": [ + "Cover", + "Sometimes defends partner from an attack, halving damage." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 11, + "ID": 4, + "UNK1": 36, + "STRINGS": [ + "Deadly Assist", + "Assist attacks deal critical damage and cause delay+20." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 11, + "ID": 5, + "UNK1": 50, + "STRINGS": [ + "Rush 2", + "Increases the power of Rush." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 12, + "ID": 1, + "UNK1": 0, + "STRINGS": [ + "Link Attack", + "Allows the use of link attacks." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 12, + "ID": 2, + "UNK1": 10, + "STRINGS": [ + "Finishing Blow", + "Follows assist attacks with a finishing blow if the foe has low HP." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 12, + "ID": 3, + "UNK1": 22, + "STRINGS": [ + "Counterattack", + "Sometimes counterattacks foe when partner is attacked." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 12, + "ID": 4, + "UNK1": 30, + "STRINGS": [ + "Powerful Strike", + "Increases finishing blow's power and activation frequency." + ] + }, + { + "TYPE": "LinkAbList", + "UNK0": 12, + "ID": 5, + "UNK1": 50, + "STRINGS": [ + "Rush 2", + "Increases the power of Rush." + ] + }, + { + "TYPE": "LinkLevelExp", + "UNK": "0100000000" + }, + { + "TYPE": "LinkLevelExp", + "UNK": "02E8030000" + }, + { + "TYPE": "LinkLevelExp", + "UNK": "03D0070000" + }, + { + "TYPE": "LinkLevelExp", + "UNK": "04AC0D0000" + }, + { + "TYPE": "LinkLevelExp", + "UNK": "0582140000" + } +] \ No newline at end of file diff --git a/text/jsons/t_magic.json b/text/jsons/t_magic.json new file mode 100644 index 0000000..2240cf6 --- /dev/null +++ b/text/jsons/t_magic.json @@ -0,0 +1,1946 @@ +[ + { + "TYPE": "magic", + "ID": 0, + "UNK0": 65533, + "GROUP": "EBDN", + "UNK1": "010100010101016400000000000000000014000000000000", + "NAMEID": "AniBtlAttack", + "STRINGS": [ + "Attack", + "Attack" + ] + }, + { + "TYPE": "magic", + "ID": 1, + "UNK0": 65533, + "GROUP": "0", + "UNK1": "03000014000100000000000000000000000f0000ff000100", + "NAMEID": "AniBtlMove", + "STRINGS": [ + "Move", + "Move" + ] + }, + { + "TYPE": "magic", + "ID": 2, + "UNK0": 65533, + "GROUP": "EBID", + "UNK1": "0200001e01010164000000000000000000000000ff000200", + "NAMEID": "AniBtlCounter", + "STRINGS": [ + "Counter", + "Counter" + ] + }, + { + "TYPE": "magic", + "ID": 3, + "UNK0": 65533, + "GROUP": "0", + "UNK1": "0400000001010000000000000000000000140000ff000300", + "NAMEID": "AniBtlItem", + "STRINGS": [ + "Item", + "Item" + ] + }, + { + "TYPE": "magic", + "ID": 4, + "UNK0": 65533, + "GROUP": "0", + "UNK1": "0500000001010000000000000000000000140000ff000400", + "NAMEID": "0", + "STRINGS": [ + "Penalty", + "When you can't act due to status" + ] + }, + { + "TYPE": "magic", + "ID": 5, + "UNK0": 65533, + "GROUP": "0", + "UNK1": "0700000001010000000000000000000000140000ff000500", + "NAMEID": "0", + "STRINGS": [ + "Flee", + "Flee" + ] + }, + { + "TYPE": "magic", + "ID": 6, + "UNK0": 65533, + "GROUP": "EBI", + "UNK1": "0800000c64640164000000000000000000000000ff000600", + "NAMEID": "0", + "STRINGS": [ + "Triple Advantage", + "Triple Advantage Damage" + ] + }, + { + "TYPE": "magic", + "ID": 20, + "UNK0": 65533, + "GROUP": "EBIQ", + "UNK1": "1401011e640102b4000000111400000005141400ff000000", + "NAMEID": "AniBtlArtsEarth00", + "STRINGS": [ + "Needle Shoot", + "[#32IAttack - One - Petrify (20%)]\nLaunches a sharply pointed boulder at an enemy." + ] + }, + { + "TYPE": "magic", + "ID": 21, + "UNK0": 65533, + "GROUP": "EBIQ", + "UNK1": "14010120640402d2000000111400000007143c00ff000100", + "NAMEID": "AniBtlArtsEarth01", + "STRINGS": [ + "Earth Lance", + "[#32IAttack (Set) - Area (S) - Petrify (20%)]\nSummons lances of earth from below the ground." + ] + }, + { + "TYPE": "magic", + "ID": 22, + "UNK0": 65533, + "GROUP": "EBIQ", + "UNK1": "140101206406020e01000023320000000a197800ff000200", + "NAMEID": "AniBtlArtsEarth02", + "STRINGS": [ + "Grand Press", + "[#32IAttack (Set) - Area (M) - MOV-50%]\nCreates a localized earthquake below enemies." + ] + }, + { + "TYPE": "magic", + "ID": 23, + "UNK0": 65533, + "GROUP": "EBIQ", + "UNK1": "140101206408024a010000111e0000000f19f000ff000300", + "NAMEID": "AniBtlArtsEarth03", + "STRINGS": [ + "Yggdrasil", + "[#32IAttack (Set) - Area (L) - Petrify (30%)]\nSummons a sentient tree to skewer enemies." + ] + }, + { + "TYPE": "magic", + "ID": 24, + "UNK0": 65533, + "GROUP": "EBIQ", + "UNK1": "14010120640c02680100001114000000141e6801ff000400", + "NAMEID": "AniBtlArtsEarth04", + "STRINGS": [ + "Ancient Glyph", + "[#32IAttack (Set) - Area (XL) - Petrify (20%)]\nSummons a megalith high above, then drops it." + ] + }, + { + "TYPE": "magic", + "ID": 25, + "UNK0": 65533, + "GROUP": "PMBIQ", + "UNK1": "1404011e6401711e000000000000000005141e00ff000500", + "NAMEID": "AniBtlArtsEarth05", + "STRINGS": [ + "Earth Pulse", + "[#32IRecovery - One - HP Regen]\nStimulates healing. Heals 30% HP for 4 turns." + ] + }, + { + "TYPE": "magic", + "ID": 26, + "UNK0": 65533, + "GROUP": "PMBIQ", + "UNK1": "1404011e64014219000000000000000005141e00ff000600", + "NAMEID": "AniBtlArtsEarth06", + "STRINGS": [ + "Crest", + "[#32ISupport - One - DEF+25% (4 turns)]\nTemporarily grants earth's protection to raise defense." + ] + }, + { + "TYPE": "magic", + "ID": 27, + "UNK0": 65533, + "GROUP": "PMBIQ", + "UNK1": "1404011f64064219000000000000000005143c00ff000700", + "NAMEID": "AniBtlArtsEarth07", + "STRINGS": [ + "La Crest", + "[#32ISupport - Area (M) - DEF+25% (4 turns)]\nTemporarily grants earth's protection to raise defense." + ] + }, + { + "TYPE": "magic", + "ID": 28, + "UNK0": 65533, + "GROUP": "PMBIQ", + "UNK1": "1404011f6406960100000000000000000a14c800ff000800", + "NAMEID": "AniBtlArtsEarth08", + "STRINGS": [ + "Adamantine Shield", + "[#32ISupport - Area (M) - Physical Immunity]\nA shield protects targets from one physical attack." + ] + }, + { + "TYPE": "magic", + "ID": 35, + "UNK0": 65533, + "GROUP": "EBIQ", + "UNK1": "1401021e640102b4000000000000000005141400ff000f00", + "NAMEID": "AniBtlArtsWater00", + "STRINGS": [ + "Aqua Bleed", + "[#33IAttack - One]\nStrikes an enemy with a heavy mass of water." + ] + }, + { + "TYPE": "magic", + "ID": 36, + "UNK0": 65533, + "GROUP": "EBIQ", + "UNK1": "1401021f640602d7000000101400000007143c00ff001000", + "NAMEID": "AniBtlArtsWater01", + "STRINGS": [ + "Frost Edge", + "[#33IAttack - Area (M) - Freeze (20%)]\nAttacks enemies with blades of crystallized ice." + ] + }, + { + "TYPE": "magic", + "ID": 37, + "UNK0": 65533, + "GROUP": "EBIQ", + "UNK1": "1401020b6403021301000000000000000a196e00ff001100", + "NAMEID": "AniBtlArtsWater02", + "STRINGS": [ + "Hydro Cannon", + "[#33IAttack (Set) - Line (M)]\nStrikes with a high-pressure water current." + ] + }, + { + "TYPE": "magic", + "ID": 38, + "UNK0": 65533, + "GROUP": "EBIQ", + "UNK1": "1401020b6406024f010000101e0000000f19dc00ff001200", + "NAMEID": "AniBtlArtsWater03", + "STRINGS": [ + "Crystal Flood", + "[#33IAttack (Set) - Line (L) - Freeze (30%)]\nCreates a glistening river of ice." + ] + }, + { + "TYPE": "magic", + "ID": 39, + "UNK0": 65533, + "GROUP": "EBIQ", + "UNK1": "1401020c6464026d0100000000000000141e5e01ff001300", + "NAMEID": "AniBtlArtsWater04", + "STRINGS": [ + "Maelstrom", + "[#33IAttack - All]\nCreates a powerful whirlpool. " + ] + }, + { + "TYPE": "magic", + "ID": 40, + "UNK0": 65533, + "GROUP": "PMBCIQ", + "UNK1": "1403021e64016c2c010a00000000000003141400ff001400", + "NAMEID": "AniBtlArtsWater05", + "STRINGS": [ + "Tear", + "[#33IRecovery - One - HP Heal (S)]\nHeals a small amount of HP with the power of water." + ] + }, + { + "TYPE": "magic", + "ID": 41, + "UNK0": 65533, + "GROUP": "PMBCIQ", + "UNK1": "1403021e64016c58020a00000000000004143c00ff001500", + "NAMEID": "AniBtlArtsWater06", + "STRINGS": [ + "Teara", + "[#33IRecovery - One - HP Heal (M)]\nHeals a medium amount of HP with the power of water." + ] + }, + { + "TYPE": "magic", + "ID": 42, + "UNK0": 65533, + "GROUP": "PMBCIQ", + "UNK1": "1403021e64016cb0040a00000000000006197800ff001500", + "NAMEID": "AniBtlArtsWater07", + "STRINGS": [ + "Tearal", + "[#33IRecovery - One - HP Heal (L)]\nHeals a large amount of HP with the power of water." + ] + }, + { + "TYPE": "magic", + "ID": 43, + "UNK0": 65533, + "GROUP": "PMRBCIQ", + "UNK1": "1403021e6401742c010a00000000000005143200ff001600", + "NAMEID": "AniBtlArtsWater08", + "STRINGS": [ + "Thelas", + "[#33IRecovery - One - Revive & HP Heal (S)]\nRevives one ally, and heals a small amount of HP." + ] + }, + { + "TYPE": "magic", + "ID": 44, + "UNK0": 65533, + "GROUP": "PMRBCIQ", + "UNK1": "1403021e64017458020a00000000000007199600ff001700", + "NAMEID": "AniBtlArtsWater09", + "STRINGS": [ + "Athelas", + "[#33IRecovery - One - Revive & HP Heal (M)]\nRevives one ally, and heals a medium amount of HP." + ] + }, + { + "TYPE": "magic", + "ID": 50, + "UNK0": 65533, + "GROUP": "EBIQ", + "UNK1": "1401031e640102b40000000f1400000005141400ff001e00", + "NAMEID": "AniBtlArtsFire00", + "STRINGS": [ + "Fire Bolt", + "[#34IAttack - One - Burn (20%)]\nShoots a blazing orb of fire at an enemy." + ] + }, + { + "TYPE": "magic", + "ID": 51, + "UNK0": 65533, + "GROUP": "EBIQ", + "UNK1": "1401031f640402dc0000000f1e00000007143200ff001f00", + "NAMEID": "AniBtlArtsFire01", + "STRINGS": [ + "Heatwave", + "[#34IAttack - Area (S) - Burn (30%)]\nCovers the earth's surface with intense heat." + ] + }, + { + "TYPE": "magic", + "ID": 52, + "UNK0": 65533, + "GROUP": "EBIQ", + "UNK1": "1401031f640602180100000f140000000a197800ff002000", + "NAMEID": "AniBtlArtsFire02", + "STRINGS": [ + "Flame Tongue", + "[#34IAttack - Area (M) - Burn (20%)]\nFlames erupt from the ground, skewering enemies." + ] + }, + { + "TYPE": "magic", + "ID": 53, + "UNK0": 65533, + "GROUP": "EBIQ", + "UNK1": "1401031f640802360100000f1e0000000f19b400ff002100", + "NAMEID": "AniBtlArtsFire03", + "STRINGS": [ + "Volcanic Rain", + "[#34IAttack - Area (L) - Burn (30%)]\nCauses incandescent volcanic bombs to rain from the sky." + ] + }, + { + "TYPE": "magic", + "ID": 54, + "UNK0": 65533, + "GROUP": "EBIQ", + "UNK1": "1401031f640c02540100000f140000001419f000ff002200", + "NAMEID": "AniBtlArtsFire04", + "STRINGS": [ + "Flare Bomb", + "[#34IAttack - Area (XL) - Burn (20%)]\nTwo flames collide, causing a great explosion." + ] + }, + { + "TYPE": "magic", + "ID": 55, + "UNK0": 65533, + "GROUP": "EBIQ", + "UNK1": "1401031f640402c20100000f32000000191e9001ff002200", + "NAMEID": "AniBtlArtsFire05", + "STRINGS": [ + "Purgatorial Flame", + "[#34IAttack - Area (S) - Burn (50%)]\nSummons the flames of Gehenna to reduce enemies to ash." + ] + }, + { + "TYPE": "magic", + "ID": 56, + "UNK0": 65533, + "GROUP": "PMBIQ", + "UNK1": "1404031e6401730a000000000000000005142800ff002300", + "NAMEID": "AniBtlArtsFire06", + "STRINGS": [ + "Impassion", + "[#34IRecovery - One - CP Regen]\nRaises spirit. Restores 20CP for 4 turns." + ] + }, + { + "TYPE": "magic", + "ID": 59, + "UNK0": 65533, + "GROUP": "PMBIQ", + "UNK1": "1404031f64084900000000660500000005143200ff002400", + "NAMEID": "AniBtlArtsFire09", + "STRINGS": [ + "Heat Up", + "[#34IRecovery - Area (L) - Cures status down - CP+5]\nCures status down, and restores 5CP." + ] + }, + { + "TYPE": "magic", + "ID": 57, + "UNK0": 65533, + "GROUP": "PMBIQ", + "UNK1": "1404031e64014119000000000000000005141e00ff002500", + "NAMEID": "AniBtlArtsFire07", + "STRINGS": [ + "Forte", + "[#34ISupport - One - STR+25% (4 turns)]\nTemporarily grants fire's blessing to raise attack." + ] + }, + { + "TYPE": "magic", + "ID": 58, + "UNK0": 65533, + "GROUP": "PMBIQ", + "UNK1": "1404031f64064119000000000000000005143c00ff002600", + "NAMEID": "AniBtlArtsFire08", + "STRINGS": [ + "La Forte", + "[#34ISupport - Area (M) - STR+25% (4 turns)]\nTemporarily grants fire's blessing to raise attack." + ] + }, + { + "TYPE": "magic", + "ID": 65, + "UNK0": 65533, + "GROUP": "EBIQ", + "UNK1": "1401041e640102b4000000000000000004141400ff002d00", + "NAMEID": "AniBtlArtsWind00", + "STRINGS": [ + "Air Strike", + "[#35IAttack - One]\nAttacks an enemy with a mass of compressed air." + ] + }, + { + "TYPE": "magic", + "ID": 66, + "UNK0": 65533, + "GROUP": "EBIQ", + "UNK1": "1401040b640202d20000000b1400000006143200ff002e00", + "NAMEID": "AniBtlArtsWind01", + "STRINGS": [ + "Spark Arrow", + "[#35IAttack (Set) - Line (S) - Seal (20%)]\nUnleashes a line of lightning towards enemies." + ] + }, + { + "TYPE": "magic", + "ID": 67, + "UNK0": 65533, + "GROUP": "EBIQ", + "UNK1": "140104206408020e010000000000000009197800ff002f00", + "NAMEID": "AniBtlArtsWind02", + "STRINGS": [ + "Aerial", + "[#35IAttack (Set) - Area (L)]\nCreates a whirlwind containing pieces of rubble." + ] + }, + { + "TYPE": "magic", + "ID": 68, + "UNK0": 65533, + "GROUP": "EBIQ", + "UNK1": "1401040b6403024a0100000b320000000e19dc00ff003000", + "NAMEID": "AniBtlArtsWind03", + "STRINGS": [ + "Judgment Bolt", + "[#35IAttack (Set) - Line (M) - Seal (50%)]\nBrings down judgment upon foes with lightning." + ] + }, + { + "TYPE": "magic", + "ID": 69, + "UNK0": 65533, + "GROUP": "EBIQ", + "UNK1": "1401040c646402680100000b1e000000121e6801ff003100", + "NAMEID": "AniBtlArtsWind04", + "STRINGS": [ + "Ragna Vortex", + "[#35IAttack - All - Seal (30%)]\nSwallows up enemies with a lightning-imbued whirlwind." + ] + }, + { + "TYPE": "magic", + "ID": 70, + "UNK0": 65533, + "GROUP": "PMBCIQ", + "UNK1": "1403041f64066cfa000a00000000000005142800ff003200", + "NAMEID": "AniBtlArtsWind05", + "STRINGS": [ + "Breath", + "[#35IRecovery - Area (M) - HP Heal (S)]\nHeals allies in an area with purifying breath." + ] + }, + { + "TYPE": "magic", + "ID": 71, + "UNK0": 65533, + "GROUP": "PMBCIQ", + "UNK1": "1403041f64086c26020a00000000000007197800ff003300", + "NAMEID": "AniBtlArtsWind06", + "STRINGS": [ + "Holy Breath", + "[#35IRecovery - Area (L) - HP Heal (M)]\nHeals allies in an area with purifying sacred breath." + ] + }, + { + "TYPE": "magic", + "ID": 72, + "UNK0": 65533, + "GROUP": "PMBIQ", + "UNK1": "1404041f640c4800000000000000000005143200ff003400", + "NAMEID": "AniBtlArtsWind07", + "STRINGS": [ + "Recuria", + "[#35IRecovery - Area (XL) - Cures abnormal status]\nCures abnormal status (except K.O.)" + ] + }, + { + "TYPE": "magic", + "ID": 80, + "UNK0": 65533, + "GROUP": "EBIQ", + "UNK1": "1401051e640102c8000000121e00000007071e00ff003c00", + "NAMEID": "AniBtlArtsTime00", + "STRINGS": [ + "Soul Blur", + "[#36IAttack - One - Faint (30%)]\nEmits a spacetime-shaking pulse." + ] + }, + { + "TYPE": "magic", + "ID": 81, + "UNK0": 65533, + "GROUP": "EBIQ", + "UNK1": "1401051f640602f0000000141e0000000a0a6400ff003d00", + "NAMEID": "AniBtlArtsTime01", + "STRINGS": [ + "Demonic Scythe", + "[#36IAttack - Area (M) - K.O. (30%)]\nSteals foes' souls with the Grim Reaper's scythe." + ] + }, + { + "TYPE": "magic", + "ID": 82, + "UNK0": 65533, + "GROUP": "EBIQ", + "UNK1": "1401051f640c02360100001532000000140fc800ff003e00", + "NAMEID": "AniBtlArtsTime02", + "STRINGS": [ + "Grim Butterfly", + "[#36IAttack - Area (XL) - Nightmare (50%)]\nA swarm of butterflies plunges enemies into despair." + ] + }, + { + "TYPE": "magic", + "ID": 83, + "UNK0": 65533, + "GROUP": "EBIQ", + "UNK1": "1401051f6408709a01050000000000001e1e9001ff003f00", + "NAMEID": "AniBtlArtsTime03", + "STRINGS": [ + "Shadow Blade", + "[#36IAttack - Area (L) - HP Absorb]\nA demonic blade. Absorb 5% of damage dealt as HP." + ] + }, + { + "TYPE": "magic", + "ID": 84, + "UNK0": 65533, + "GROUP": "PMBIQ", + "UNK1": "1404051f64064519000000463200000005141400ff004000", + "NAMEID": "AniBtlArtsTime04", + "STRINGS": [ + "Chrono Drive", + "[#36ISupport - Area (M) - SPD+25%/MOV+50% (4 turns)]\nSpeeds up the flow of time for targeted allies." + ] + }, + { + "TYPE": "magic", + "ID": 85, + "UNK0": 65533, + "GROUP": "EBIQ", + "UNK1": "1402051f64061664000f00221900000005143200ff004100", + "NAMEID": "AniBtlArtsTime05", + "STRINGS": [ + "Chrono Break", + "[#36ISupport - Area (M) - SPD-25% - Delay+15]\nSlows down the flow of time for targeted enemies." + ] + }, + { + "TYPE": "magic", + "ID": 86, + "UNK0": 65533, + "GROUP": "MBIQ", + "UNK1": "1404051e0001510000000000000000000000c800ff004200", + "NAMEID": "AniBtlArtsTime06", + "STRINGS": [ + "Chrono Burst", + "[#36ISupport - Self - Act twice in succession]\nAlters the laws of time, allowing the user to act twice more." + ] + }, + { + "TYPE": "magic", + "ID": 95, + "UNK0": 65533, + "GROUP": "EBIQ", + "UNK1": "14010620640402aa0000000d1e00000007141e00ff004b00", + "NAMEID": "AniBtlArtsGold00", + "STRINGS": [ + "Golden Sphere", + "[#37IAttack (Set) - Area (S) - Blind (30%)]\nAttacks enemies with golden magic orbs." + ] + }, + { + "TYPE": "magic", + "ID": 96, + "UNK0": 65533, + "GROUP": "EBIQ", + "UNK1": "14010620640802fa00000023320000000a196400ff004c00", + "NAMEID": "AniBtlArtsGold01", + "STRINGS": [ + "Dark Matter", + "[#37IAttack (Set) - Area (L) - Suction - MOV-50%]\nDraws in and compresses enemies." + ] + }, + { + "TYPE": "magic", + "ID": 97, + "UNK0": 65533, + "GROUP": "EBIQ", + "UNK1": "1401060c6464024001000000000000000f19c800ff004d00", + "NAMEID": "AniBtlArtsGold02", + "STRINGS": [ + "Cross Crusade", + "[#37IAttack - All]\nA cross-shaped void bathes all in holy light." + ] + }, + { + "TYPE": "magic", + "ID": 98, + "UNK0": 65533, + "GROUP": "EBIQ", + "UNK1": "1401060c646402900100004e190000001e1e9001ff004e00", + "NAMEID": "AniBtlArtsGold03", + "STRINGS": [ + "Altair Cannon", + "[#37IAttack - All - ATS/ADF-25%]\nBlasts of light fall from above." + ] + }, + { + "TYPE": "magic", + "ID": 99, + "UNK0": 65533, + "GROUP": "PMBIQ", + "UNK1": "1404061f64064319000000441900000005141e00ff004f00", + "NAMEID": "AniBtlArtsGold04", + "STRINGS": [ + "Fortuna", + "[#37ISupport - Area (M) - ATS/ADF+25% (4 turns)]\nGrants light's clarity to raise ATS/ADF." + ] + }, + { + "TYPE": "magic", + "ID": 100, + "UNK0": 65533, + "GROUP": "PMBIQ", + "UNK1": "1404061e64014700000000000000000005143200ff005000", + "NAMEID": "AniBtlArtsGold05", + "STRINGS": [ + "Shining", + "[#37ISupport - One - Insight]\nGrants insight status for 4 turns." + ] + }, + { + "TYPE": "magic", + "ID": 101, + "UNK0": 65533, + "GROUP": "PMRBCIQ", + "UNK1": "1403060c64646b64000000711e0000000a149001ff005100", + "NAMEID": "AniBtlArtsGold06", + "STRINGS": [ + "Seraphic Ring", + "[#37IRecovery - All - Cures K.O. - HP Heal (Full) - HP Regen]\nFully heals, and heals 30% HP for 4 turns." + ] + }, + { + "TYPE": "magic", + "ID": 110, + "UNK0": 65533, + "GROUP": "EBIQ", + "UNK1": "1401070b640202aa000000000000000007141e00ff005a00", + "NAMEID": "AniBtlArtsSilver00", + "STRINGS": [ + "Luminous Ray", + "[#38IAttack (Set) - Line (S)]\nUnleashes a beam of lunar light." + ] + }, + { + "TYPE": "magic", + "ID": 111, + "UNK0": 65533, + "GROUP": "EBIQ", + "UNK1": "1401071f640602f000000013280000000a196400ff005b00", + "NAMEID": "AniBtlArtsSilver01", + "STRINGS": [ + "Silver Thorn", + "[#38IAttack - Area (M) - Confuse (40%)]\nBlades of condensed insanity rain from above." + ] + }, + { + "TYPE": "magic", + "ID": 112, + "UNK0": 65533, + "GROUP": "EBIQ", + "UNK1": "1401071f640c022c0100002c190000000f19c800ff005c00", + "NAMEID": "AniBtlArtsSilver02", + "STRINGS": [ + "Phantom Phobia", + "[#38IAttack - Area (XL) - Status down (random)]\nTerrifies enemies with an illusion of death." + ] + }, + { + "TYPE": "magic", + "ID": 113, + "UNK0": 65533, + "GROUP": "EBIQ", + "UNK1": "1401070c646402a401000000000000001e1ea401ff005d00", + "NAMEID": "AniBtlArtsSilver03", + "STRINGS": [ + "Claiomh Solarion", + "[#38IAttack - All]\nAnnihilates all with a beam of condensed magical energy." + ] + }, + { + "TYPE": "magic", + "ID": 114, + "UNK0": 65533, + "GROUP": "EBIQ", + "UNK1": "1402071e6401cb00000000000000000005140a00ff005e00", + "NAMEID": "AniBtlArtsSilver04", + "STRINGS": [ + "Analyze", + "[#38ISupport - One - Analysis]\nAnalyzes and obtains data on an enemy." + ] + }, + { + "TYPE": "magic", + "ID": 115, + "UNK0": 65533, + "GROUP": "PMBIQ", + "UNK1": "1404071e64014900000000521900000005143200ff005f00", + "NAMEID": "AniBtlArtsSilver05", + "STRINGS": [ + "Saintly Force", + "[#38ISupport - One - STR/DEF+25% (4 turns) - Cures status down]\nBuffs an ally with pure radiance." + ] + }, + { + "TYPE": "magic", + "ID": 116, + "UNK0": 65533, + "GROUP": "PMBIQ", + "UNK1": "1404070c6464970100000043190000000a149600ff006000", + "NAMEID": "AniBtlArtsSilver06", + "STRINGS": [ + "Crescent Mirror", + "[#38ISupport - All - Magic Reflect - ATS+25% (4 turns)]\nReflects one magic attack. Increases ATS by 25%." + ] + }, + { + "TYPE": "magic", + "ID": 200, + "UNK0": 0, + "GROUP": "EB", + "UNK1": "1e01000a0204d96e0064001664000f00001914000a010000", + "NAMEID": "AniBtlCraft00", + "STRINGS": [ + "Autumn Leaf Cutter", + "[Attack (Set) - Area (S) - Impede - Delay+15]\n(Class C) Slashes foes while dashing by them. Unbalance+10%." + ] + }, + { + "TYPE": "magic", + "ID": 201, + "UNK0": 0, + "GROUP": "PMBI", + "UNK1": "1e040021000c4119000000660a000000001e1e00ff050100", + "NAMEID": "AniBtlCraft01", + "STRINGS": [ + "Motivate", + "[Support - Area (XL/Self) - STR+25% - CP+10]\nAn encouraging shout to rouse allies to battle." + ] + }, + { + "TYPE": "magic", + "ID": 202, + "UNK0": 0, + "GROUP": "EB", + "UNK1": "1e01000b640201780000001664001e0000141e00000f0200", + "NAMEID": "AniBtlCraft02", + "STRINGS": [ + "Arc Slash", + "[Attack (Set) - Line (S) - Delay+30]\n(Class B) Unleashes an arc-shaped shock wave. Can unbalance." + ] + }, + { + "TYPE": "magic", + "ID": 203, + "UNK0": 0, + "GROUP": "EB", + "UNK1": "1e01001f640801820000000b320005000019230014230300", + "NAMEID": "AniBtlCraft03", + "STRINGS": [ + "Gale", + "[Attack - Area (L) - Seal (50%)]\n(Class A) Slices up enemies at high speed. Unbalance+20%." + ] + }, + { + "TYPE": "magic", + "ID": 204, + "UNK0": 0, + "GROUP": "EB", + "UNK1": "1e01000a010401960000004c32000500001e23001e370400", + "NAMEID": "AniBtlCraft04", + "STRINGS": [ + "Flame Impact", + "[Attack (Set) - Area (S) - Burn (50%) - Faint (50%)]\n(Class S+) A powerful downward slash. Unbalance+30%." + ] + }, + { + "TYPE": "magic", + "ID": 210, + "UNK0": 0, + "GROUP": "EBI", + "UNK1": "1f01001f6406012c0100000f6400000000286400ff000500", + "NAMEID": "AniBtlSCraft00", + "STRINGS": [ + "Flame Slash", + "[Attack - Area (M) - Burn (100%)]\n(Class SS) Bathes sword in flames and slashes enemies." + ] + }, + { + "TYPE": "magic", + "ID": 211, + "UNK0": 0, + "GROUP": "EBI", + "UNK1": "1f01001f640801a40100000f6400000000286400ff000600", + "NAMEID": "AniBtlSCraft00", + "STRINGS": [ + "Azure Flame Slash", + "[Attack - Area (L) - Burn (100%)]\n(Class SSS) Bathes sword in blue flames and slashes enemies." + ] + }, + { + "TYPE": "magic", + "ID": 220, + "UNK0": 1, + "GROUP": "EBD", + "UNK1": "1e0100010101d9780064000f32000000001e140014010000", + "NAMEID": "AniBtlCraft00", + "STRINGS": [ + "Flamberge", + "[Attack - One - Impede - Burn (50%)]\n(Class B) Pierces enemy with a burning arrow. Unbalance+20%." + ] + }, + { + "TYPE": "magic", + "ID": 221, + "UNK0": 1, + "GROUP": "PBID", + "UNK1": "1e03002001046cc2010a006628000000001e2800ff080100", + "NAMEID": "AniBtlCraft01", + "STRINGS": [ + "Blessed Arrow", + "[Recovery (Set) - Area (S) - HP Heal (S) - CP+40]\nFires a blessed arrow into the air, healing allies in an area." + ] + }, + { + "TYPE": "magic", + "ID": 222, + "UNK0": 1, + "GROUP": "EBD", + "UNK1": "1e010020010801640000000000000000001e230000180200", + "NAMEID": "AniBtlCraft02", + "STRINGS": [ + "Molten Rain", + "[Attack (Set) - Area (L)]\n(Class C) Rains burning arrows onto enemies. Can unbalance." + ] + }, + { + "TYPE": "magic", + "ID": 223, + "UNK0": 1, + "GROUP": "PBID", + "UNK1": "1e04002001064700000000730a000000001e3200ff340300", + "NAMEID": "AniBtlCraft03", + "STRINGS": [ + "Heavenly Gift", + "[Support (Set) - Area (M) - Insight - CP Regen]\nGrants allies insight status and restores 20CP every turn." + ] + }, + { + "TYPE": "magic", + "ID": 230, + "UNK0": 1, + "GROUP": "EBI", + "UNK1": "1f01000b6403022c0100000c6400000000286400ff000400", + "NAMEID": "AniBtlSCraft00", + "STRINGS": [ + "Rosetta Arrow", + "[Magic Attack (Set) - Line (M) - Mute (100%)]\n(Class SS) Fires an arrow containing condensed magical energy." + ] + }, + { + "TYPE": "magic", + "ID": 231, + "UNK0": 1, + "GROUP": "EBI", + "UNK1": "1f01000b6406025e0100000c6400000000286400ff000500", + "NAMEID": "AniBtlSCraft01", + "STRINGS": [ + "Judgment Arrow", + "[Magic Attack (Set) - Line (L) - Mute (100%)]\n(Class SS+) Annihilates enemies with an arrow of judgment." + ] + }, + { + "TYPE": "magic", + "ID": 240, + "UNK0": 2, + "GROUP": "PMBI", + "UNK1": "1e04002064064219000000711e000000001e1400ff010100", + "NAMEID": "AniBtlCraft00", + "STRINGS": [ + "Resounding Beat", + "[Support (Set) - Area (M) - DEF+25% - HP Regen]\nBoosts the DEF of allies by 25% and heals 30% HP every turn." + ] + }, + { + "TYPE": "magic", + "ID": 241, + "UNK0": 2, + "GROUP": "EB", + "UNK1": "1e01000a0306026e0000000e1e000000001e1e00ff060200", + "NAMEID": "AniBtlCraft01", + "STRINGS": [ + "Blue Lullaby", + "[Magic Attack (Set) - Area (M) - Sleep (30%)]\n(Class C) Lulls foes to sleep with soothing sounding bubbles." + ] + }, + { + "TYPE": "magic", + "ID": 242, + "UNK0": 2, + "GROUP": "PMBI", + "UNK1": "1e03002100086c84030a004a00000000001e1e00ff1f0300", + "NAMEID": "AniBtlCraft02", + "STRINGS": [ + "Holy Song", + "[Recovery - Area (L/Self) - HP Heal (M) - Cures all bar K.O.]\nPurifies allies with a holy song." + ] + }, + { + "TYPE": "magic", + "ID": 243, + "UNK0": 2, + "GROUP": "EB", + "UNK1": "1e0100206408da82003200151e000000001e2800ff390400", + "NAMEID": "AniBtlCraft03", + "STRINGS": [ + "Nocturne Bell", + "[Magic Attack (Set) - Area (L) - Sleep (50%) Nightmare (30%)]\n(Class A) Steals foes' consciousness with silver bells." + ] + }, + { + "TYPE": "magic", + "ID": 244, + "UNK0": 2, + "GROUP": "EBI", + "UNK1": "1e02001e64011a64000000cb00000000001e1400ff090000", + "NAMEID": "AniBtlCraft04", + "STRINGS": [ + "Detector", + "[Support - One - Analysis - Balance Down]\nAnalyzes an enemy, making it easier to unbalance them." + ] + }, + { + "TYPE": "magic", + "ID": 250, + "UNK0": 2, + "GROUP": "EBI", + "UNK1": "1f01001f640c025e010000136400000000286400ff000500", + "NAMEID": "AniBtlSCraft00", + "STRINGS": [ + "Seventh Rhapsody", + "[Magic Attack - Area (XL) - Confuse (100%)]\n(Class SS+) Utterly destroys foes with the power of music." + ] + }, + { + "TYPE": "magic", + "ID": 260, + "UNK0": 3, + "GROUP": "EBD", + "UNK1": "1e0100010101db87001e001f19000000001e19001e010000", + "NAMEID": "AniBtlCraft00", + "STRINGS": [ + "Armor Breaker", + "[Attack - One - DEF-25% - Seal (30%)]\n(Class A+) Tears the armor from enemies. Unbalance+30%." + ] + }, + { + "TYPE": "magic", + "ID": 261, + "UNK0": 3, + "GROUP": "EB", + "UNK1": "1e01000b640301780000002332000000001e1e000a090100", + "NAMEID": "AniBtlCraft01", + "STRINGS": [ + "Earth Cleaver", + "[Attack (Set) - Line (M) - MOV-50%]\n(Class B) Splits the earth beneath foes' feet. Unbalance+10%." + ] + }, + { + "TYPE": "magic", + "ID": 262, + "UNK0": 3, + "GROUP": "EB", + "UNK1": "1e0100140008018c000000121e000000001e2d0000240200", + "NAMEID": "AniBtlCraft02", + "STRINGS": [ + "Brilliant Spin", + "[Attack (Set) - Area (L) - Suction - Faint (30%)]\n(Class S) Draws foes into a vortex of light. Can unbalance." + ] + }, + { + "TYPE": "magic", + "ID": 263, + "UNK0": 3, + "GROUP": "MBI", + "UNK1": "1e04001e00014d320003004e32000300001e1e00ff2d0300", + "NAMEID": "AniBtlCraft03", + "STRINGS": [ + "Radiant Wings", + "[Support - Self - STR/DEF+50% - Insight - ATS/ADF-50%]\nIncreases physical abilities at the expense of magical ones." + ] + }, + { + "TYPE": "magic", + "ID": 270, + "UNK0": 3, + "GROUP": "EBI", + "UNK1": "1f01001f6406014a010000000000000000286400ff000400", + "NAMEID": "AniBtlSCraft00", + "STRINGS": [ + "Radiant Dance", + "[Attack - Area (M)]\n(Class SS) Slices up foes with a blade of light." + ] + }, + { + "TYPE": "magic", + "ID": 271, + "UNK0": 3, + "GROUP": "EBI", + "UNK1": "1f01001f640c0190010000000000000000286400ff000500", + "NAMEID": "AniBtlSCraft01", + "STRINGS": [ + "Radiant Waltz", + "[Attack - Area (XL)]\n(Class SSS) Cuts up foes with a series of beautiful slashes." + ] + }, + { + "TYPE": "magic", + "ID": 280, + "UNK0": 4, + "GROUP": "EBD", + "UNK1": "1e0100010101d9820064001f19000000001e140014010000", + "NAMEID": "AniBtlCraft00", + "STRINGS": [ + "Break Shot", + "[Attack - One - Impede - DEF-25%]\n(Class A) Fires an armor-piercing round. Unbalance+20%." + ] + }, + { + "TYPE": "magic", + "ID": 281, + "UNK0": 4, + "GROUP": "PBID", + "UNK1": "1e030002010667190000006819000000001e1e00ff110100", + "NAMEID": "AniBtlCraft01", + "STRINGS": [ + "Energy Shell", + "[Recovery - Area (M) - HP/EP Heal (25%)]\nLaunches a special recovery bullet filled with energy." + ] + }, + { + "TYPE": "magic", + "ID": 282, + "UNK0": 4, + "GROUP": "EBD", + "UNK1": "1e010002010801780000001132000000001e1e0000220200", + "NAMEID": "AniBtlCraft02", + "STRINGS": [ + "Petrification Shell", + "[Attack - Area (L) - Petrify (50%)]\n(Class B) Fires a bullet that can petrify. Can unbalance." + ] + }, + { + "TYPE": "magic", + "ID": 283, + "UNK0": 4, + "GROUP": "PBID", + "UNK1": "1e0400020106c9000000000000000000001e2300ff390300", + "NAMEID": "AniBtlCraft03", + "STRINGS": [ + "Burst Drive", + "[Support - Area (M) - Accelerate]\nBreaks the time barrier, allowing allies to act faster." + ] + }, + { + "TYPE": "magic", + "ID": 290, + "UNK0": 4, + "GROUP": "EBI", + "UNK1": "1f01001f6408012c010000286400000000286400ff000400", + "NAMEID": "AniBtlSCraft00", + "STRINGS": [ + "Ultimate Shot", + "[Attack - Area (L) - Random abnormal status]\n(Class SS) Fires a bullet of unimaginable power." + ] + }, + { + "TYPE": "magic", + "ID": 300, + "UNK0": 5, + "GROUP": "PRBID", + "UNK1": "1e03000101016b320000006614000000001e1e00ff010100", + "NAMEID": "AniBtlCraft00", + "STRINGS": [ + "Serene Blessing", + "[Recovery - One - Cures K.O. - HP Heal (50%) - CP+20]\nHeals an ally with the calm of the moon." + ] + }, + { + "TYPE": "magic", + "ID": 301, + "UNK0": 5, + "GROUP": "EB", + "UNK1": "1e01000b640302780000002032000000001e1e000a100200", + "NAMEID": "AniBtlCraft01", + "STRINGS": [ + "Ethereal Edge", + "[Magic Attack (Set) - Line (M) - ATS-50%]\n(Class B) Releases several magical blades. Unbalance+10%." + ] + }, + { + "TYPE": "magic", + "ID": 302, + "UNK0": 5, + "GROUP": "PBI", + "UNK1": "1e04001f640642320000009701000000001e1e00ff190300", + "NAMEID": "AniBtlCraft02", + "STRINGS": [ + "Crescent Shell", + "[Support - Area (M) - DEF+50% - Magic Reflect]\nStrengthens allies with the crescent moon's power." + ] + }, + { + "TYPE": "magic", + "ID": 303, + "UNK0": 5, + "GROUP": "EB", + "UNK1": "1e01001f640802820000004f1e000000001e2800ff300400", + "NAMEID": "AniBtlCraft03", + "STRINGS": [ + "Aster Flare", + "[Magic Attack - Area (L) - Burn (30%) Confuse (30%)]\n(Class A) Muddles an enemy's cognitive abilities with flame." + ] + }, + { + "TYPE": "magic", + "ID": 304, + "UNK0": 5, + "GROUP": "EBI", + "UNK1": "1e02001e64011a64000000cb00000000001e1400ff010000", + "NAMEID": "AniBtlCraft04", + "STRINGS": [ + "Detector", + "[Support - One - Analysis - Balance Down]\nAnalyzes an enemy, making it easier to unbalance them." + ] + }, + { + "TYPE": "magic", + "ID": 310, + "UNK0": 5, + "GROUP": "EBI", + "UNK1": "1f01000c64640290010000000000000000286400ff000500", + "NAMEID": "AniBtlSCraft00", + "STRINGS": [ + "Lord Albireon", + "[Magic Attack - All]\n(Class SSS) Turns all to dust with the light of mighty towers." + ] + }, + { + "TYPE": "magic", + "ID": 320, + "UNK0": 6, + "GROUP": "EBD", + "UNK1": "1e0100010101d9820064001664001e00001e140014010000", + "NAMEID": "AniBtlCraft00", + "STRINGS": [ + "Rapid Thrust", + "[Attack - One - Impede - Delay+30]\n(Class A) A series of three rapid thrusts. Unbalance+20%." + ] + }, + { + "TYPE": "magic", + "ID": 331, + "UNK0": 6, + "GROUP": "EB", + "UNK1": "1e010002030602780000002132000000001e1e00ff100100", + "NAMEID": "AniBtlCraft01", + "STRINGS": [ + "Rune Blade", + "[Magic Attack - Area (M) - ADF-50%]\n(Class B) Cuts enemies in half with a magical slash." + ] + }, + { + "TYPE": "magic", + "ID": 342, + "UNK0": 6, + "GROUP": "PMBI", + "UNK1": "1e040021010c41190000008319000000001e1900ff1a0200", + "NAMEID": "AniBtlCraft02", + "STRINGS": [ + "Noble Command", + "[Support - Area (XL/Self) - STR/ATS/SPD+25%]\nRaises the morale of allies with an inspiring shout." + ] + }, + { + "TYPE": "magic", + "ID": 353, + "UNK0": 6, + "GROUP": "EB", + "UNK1": "1e01000a0306db820032001032000000001e2800142e0300", + "NAMEID": "AniBtlCraft03", + "STRINGS": [ + "Treasure Sword", + "[Attack (Set) - Area (M) - Seal (50%) Freeze (50%)]\n(Class A) Seals foes in ice, then shatters it. Unbalance+20%." + ] + }, + { + "TYPE": "magic", + "ID": 360, + "UNK0": 6, + "GROUP": "EBI", + "UNK1": "1f01001f6408012c010000000000000000286400ff000400", + "NAMEID": "AniBtlSCraft00", + "STRINGS": [ + "Crystal Saber", + "[Attack - Area (L)]\n(Class SS) Imprisons foes in a barrier, then eliminates them." + ] + }, + { + "TYPE": "magic", + "ID": 370, + "UNK0": 7, + "GROUP": "EB", + "UNK1": "1e0100020506d978006400221900000000191e0000010000", + "NAMEID": "AniBtlCraft00", + "STRINGS": [ + "Sweep", + "[Attack - Area (M) - Impede - SPD-25%]\n(Class B) Mows down foes with twin gunswords. Can unbalance." + ] + }, + { + "TYPE": "magic", + "ID": 371, + "UNK0": 7, + "GROUP": "EB", + "UNK1": "1e01001f6408db64001e000d1e000000001e2300ff110100", + "NAMEID": "AniBtlCraft01", + "STRINGS": [ + "Flash Grenade", + "[Attack - Area (L) - Blind (30%) Seal (30%)]\n(Class D) Throws a grenade which emits bright light." + ] + }, + { + "TYPE": "magic", + "ID": 372, + "UNK0": 7, + "GROUP": "EB", + "UNK1": "1e01000b6402dc82001e00141e00000000141e0014210200", + "NAMEID": "AniBtlCraft02", + "STRINGS": [ + "Scud Ripper", + "[Attack (Set) - Line (S) - Faint (30%) K.O. (30%)]\n(Class A) Strikes enemies' weak points. Unbalance+20%." + ] + }, + { + "TYPE": "magic", + "ID": 373, + "UNK0": 7, + "GROUP": "EB", + "UNK1": "1e0100020306db960032001664002300001928001e380300", + "NAMEID": "AniBtlCraft03", + "STRINGS": [ + "Bullet Cyclone", + "[Attack - Area (M) - Seal (50%) - Delay+35]\n(Class S+) Dominates foes with rapid attacks. Unbalance+30%." + ] + }, + { + "TYPE": "magic", + "ID": 380, + "UNK0": 7, + "GROUP": "EBI", + "UNK1": "1f01001f640c015e010000000000000000286400ff000400", + "NAMEID": "AniBtlSCraft00", + "STRINGS": [ + "Sylphid Dance", + "[Attack - Area (XL)]\n(Class SS+) Overwhelms foes with a dance of death." + ] + }, + { + "TYPE": "magic", + "ID": 390, + "UNK0": 8, + "GROUP": "EB", + "UNK1": "1e01000b6402016e0000000b32000000001e140000010000", + "NAMEID": "AniBtlCraft00", + "STRINGS": [ + "Gale Stinger", + "[Attack (Set) - Line (S) - Seal (50%)]\n(Class C) Launches a blast of wind forwards. Can unbalance." + ] + }, + { + "TYPE": "magic", + "ID": 391, + "UNK0": 8, + "GROUP": "EBD", + "UNK1": "1e010002010601820000000d32000000001e1e000a0e0100", + "NAMEID": "AniBtlCraft01", + "STRINGS": [ + "Turbulence", + "[Attack - Area (M) - Blind (50%)]\n(Class A) Envelops foes in turbulent winds. Unbalance+10%." + ] + }, + { + "TYPE": "magic", + "ID": 392, + "UNK0": 8, + "GROUP": "MBI", + "UNK1": "1e04001e0001051e0000006632000000001e0000ff190200", + "NAMEID": "AniBtlCraft02", + "STRINGS": [ + "Wild Rage", + "[Support - Self - HP-30% - CP+50]\nCries out with wild anger, trading HP for CP." + ] + }, + { + "TYPE": "magic", + "ID": 393, + "UNK0": 8, + "GROUP": "EB", + "UNK1": "1e0100140006dd960032001664002300001e2800142f0300", + "NAMEID": "AniBtlCraft03", + "STRINGS": [ + "Savage Fang", + "[Attack (Set) - Area (M) - MOV-50% - Delay+35]\n(Class S+) Skewers foes with great force. Unbalance+20%." + ] + }, + { + "TYPE": "magic", + "ID": 400, + "UNK0": 8, + "GROUP": "EBI", + "UNK1": "1f01001f6408015e010000000000000000286400ff000400", + "NAMEID": "AniBtlSCraft00", + "STRINGS": [ + "Calamity Hawk", + "[Attack - Area (L)]\n(Class SS+) Descends upon foes with a hawklike aura." + ] + }, + { + "TYPE": "magic", + "ID": 410, + "UNK0": 9, + "GROUP": "EBD", + "UNK1": "1e0100020106d9780064001232000000001e1e0014010000", + "NAMEID": "AniBtlCraft00", + "STRINGS": [ + "Buster Arm", + "[Attack - Area (M) - Impede - Faint (50%)]\n(Class B) Airgetlam attacks with great force. Unbalance+20%." + ] + }, + { + "TYPE": "magic", + "ID": 411, + "UNK0": 9, + "GROUP": "MBI", + "UNK1": "1e04001e000196010000000000000000001e1400ff010100", + "NAMEID": "AniBtlCraft01", + "STRINGS": [ + "Ultimate Barrier", + "[Support - Self - Physical Immunity]\nCreates a silver barrier, granting immunity to one attack." + ] + }, + { + "TYPE": "magic", + "ID": 412, + "UNK0": 9, + "GROUP": "EB", + "UNK1": "1e01000b640301820000001e19000000001e1e00ff2a0200", + "NAMEID": "AniBtlCraft02", + "STRINGS": [ + "Riot Beam", + "[Attack (Set) - Line (M) - STR-25%]\n(Class A) Airgetlam fires a beam of light." + ] + }, + { + "TYPE": "magic", + "ID": 413, + "UNK0": 9, + "GROUP": "EB", + "UNK1": "1e01001f6408dc8c0046001664002800001e28001e370300", + "NAMEID": "AniBtlCraft03", + "STRINGS": [ + "Megaton Press", + "[Attack - Area (L) - Faint (70%) - Delay+40]\n(Class S) Airgetlam crushes foes as a sphere. Unbalance+30%." + ] + }, + { + "TYPE": "magic", + "ID": 420, + "UNK0": 9, + "GROUP": "EBI", + "UNK1": "1f01000c64640190010000000000000000286400ff000400", + "NAMEID": "AniBtlSCraft00", + "STRINGS": [ + "Gigant Breaker", + "[Attack - All]\n(Class SSS) Turns Airgetlam into a hammer and strikes foes." + ] + }, + { + "TYPE": "magic", + "ID": 430, + "UNK0": 10, + "GROUP": "EBD", + "UNK1": "1e01000a0106016e0000001664000f00001e140000010000", + "NAMEID": "AniBtlCraft00", + "STRINGS": [ + "Rapid Volley", + "[Attack (Set) - Area (M) - Delay+15]\n(Class C) Fires a series of rapid shots. Can unbalance." + ] + }, + { + "TYPE": "magic", + "ID": 431, + "UNK0": 10, + "GROUP": "EBD", + "UNK1": "1e01000a0106026e0000001032000000001e1e00ff010100", + "NAMEID": "AniBtlCraft01", + "STRINGS": [ + "Freezing Bullet", + "[Magic Attack (Set) - Area (M) - Freeze (50%)]\n(Class C) Fires a magical bullet imbued with the power of ice." + ] + }, + { + "TYPE": "magic", + "ID": 432, + "UNK0": 10, + "GROUP": "PEB", + "UNK1": "1e02000c6464de000000000000000000001e0500ff2a0200", + "NAMEID": "AniBtlCraft02", + "STRINGS": [ + "Wild Card", + "[Support - One - Random effect on ally or enemy]\nDraws a card, leaving everything to chance. What will happen?" + ] + }, + { + "TYPE": "magic", + "ID": 433, + "UNK0": 10, + "GROUP": "EB", + "UNK1": "1e01000b6403df8c0032001332000000001e2d0000360300", + "NAMEID": "AniBtlCraft03", + "STRINGS": [ + "Chaos Trigger", + "[Attack (Set) - Line (M) - Confuse (50%) Nightmare (50%)]\n(Class S) Fires a bullet of pure insanity. Can unbalance." + ] + }, + { + "TYPE": "magic", + "ID": 440, + "UNK0": 10, + "GROUP": "EBI", + "UNK1": "1f010020640c0190010000000000000000286400ff000400", + "NAMEID": "AniBtlSCraft00", + "STRINGS": [ + "Cross Raven", + "[Attack (Set) - Area (XL)]\n(Class SSS) Wildly fires bullets which all hit at once." + ] + }, + { + "TYPE": "magic", + "ID": 450, + "UNK0": 11, + "GROUP": "EB", + "UNK1": "1e0100020508db78005a002219000000001e1e000a010000", + "NAMEID": "AniBtlCraft00", + "STRINGS": [ + "Thundering Roar", + "[Attack - Area (L) - Seal (90%) - SPD-25%]\n(Class B) Attacks with bullets and lightning. Unbalance+10%." + ] + }, + { + "TYPE": "magic", + "ID": 451, + "UNK0": 11, + "GROUP": "MBI", + "UNK1": "1e04001e000150320003004700000300001e1e00ff010100", + "NAMEID": "AniBtlCraft01", + "STRINGS": [ + "Lightning Charge", + "[Support - Self - STR/SPD+50% - Insight]\nRaises physical abilities with a war cry." + ] + }, + { + "TYPE": "magic", + "ID": 452, + "UNK0": 11, + "GROUP": "EB", + "UNK1": "1e01000a0306db8c001e001664001e00001e28001e010200", + "NAMEID": "AniBtlCraft02", + "STRINGS": [ + "Flash", + "[Attack (Set) - Area (M) - Seal (30%) - Delay+30]\n(Class S) Overtakes foes like a lightning bolt. Unbalance+30%. " + ] + }, + { + "TYPE": "magic", + "ID": 460, + "UNK0": 11, + "GROUP": "EBI", + "UNK1": "1f01000c646401f4010000126400000000286400ff000300", + "NAMEID": "AniBtlSCraft00", + "STRINGS": [ + "Plasma Storm", + "[Attack - All - Faint (100%)]\n(Class SSS+) Races across the battlefield, dominating foes." + ] + }, + { + "TYPE": "magic", + "ID": 470, + "UNK0": 12, + "GROUP": "EB", + "UNK1": "1e01000b6402d96e0064001664001400001e14000a010000", + "NAMEID": "AniBtlCraft00", + "STRINGS": [ + "Laser Bullet", + "[Attack (Set) - Line (S) - Impede - Delay+20]\n(Class C) A kick that releases a shock wave. Unbalance+10%." + ] + }, + { + "TYPE": "magic", + "ID": 471, + "UNK0": 12, + "GROUP": "EBD", + "UNK1": "1e0100010101018c000000125a000000001e1e0032010100", + "NAMEID": "AniBtlCraft01", + "STRINGS": [ + "Zero Impact", + "[Attack - One - Faint (90%)]\n(Class S) A blast of energy from close range. Unbalance+50%." + ] + }, + { + "TYPE": "magic", + "ID": 472, + "UNK0": 12, + "GROUP": "MBI", + "UNK1": "1e04001e000141320003004232000300001e1e00ff010200", + "NAMEID": "AniBtlCraft02", + "STRINGS": [ + "Dragon Boost", + "[Support - Self - STR/DEF+50%]\nStrengthens the body through an explosion of energy." + ] + }, + { + "TYPE": "magic", + "ID": 480, + "UNK0": 12, + "GROUP": "EBI", + "UNK1": "1f0100026408015e010000000000000000286400ff000300", + "NAMEID": "AniBtlSCraft00", + "STRINGS": [ + "Dragon Kick", + "[Attack - Area (L)]\n(Class SS+) An explosive dragon kick from above." + ] + }, + { + "TYPE": "magic", + "ID": 500, + "UNK0": 65533, + "GROUP": "EBI", + "UNK1": "0b01001e64010164000000000000000000000000ff000000", + "NAMEID": "AniBtlLinkChase", + "STRINGS": [ + "Assist", + "Assist" + ] + }, + { + "TYPE": "magic", + "ID": 501, + "UNK0": 65533, + "GROUP": "EBI", + "UNK1": "0b01001f64060164000000000000000000000000ff000100", + "NAMEID": "AniBtlLinkRush", + "STRINGS": [ + "Rush", + "Rush" + ] + }, + { + "TYPE": "magic", + "ID": 502, + "UNK0": 65533, + "GROUP": "EBI", + "UNK1": "0b01001f64060182000000000000000000000000ff000200", + "NAMEID": "AniBtlLinkRush", + "STRINGS": [ + "Rush 2", + "Increases the power of Rush." + ] + }, + { + "TYPE": "magic", + "ID": 503, + "UNK0": 65533, + "GROUP": "EBI", + "UNK1": "0b01000c64640164000000000000000000000000ff000300", + "NAMEID": "AniBtlLinkBurst", + "STRINGS": [ + "Burst", + "Burst" + ] + }, + { + "TYPE": "magic", + "ID": 510, + "UNK0": 65533, + "GROUP": "EBI", + "UNK1": "0b01001e64010164000000000000000000000000ff000400", + "NAMEID": "AniBtlLinkLastAttack", + "STRINGS": [ + "Finishing Blow", + "Finishing Blow" + ] + }, + { + "TYPE": "magic", + "ID": 520, + "UNK0": 65533, + "GROUP": "PBI", + "UNK1": "0a04000101010000000000000000000000000000ff000500", + "NAMEID": "AniBtlLinkProtect", + "STRINGS": [ + "Cover", + "Sometimes defends partner from an attack, halving damage." + ] + }, + { + "TYPE": "magic", + "ID": 521, + "UNK0": 65533, + "GROUP": "PBI", + "UNK1": "0a03001e64016714000000000000000000000000ff000600", + "NAMEID": "AniBtlLinkFirstAid", + "STRINGS": [ + "Auto-Tear", + "Sometimes heals partner's HP when they are attacked." + ] + }, + { + "TYPE": "magic", + "ID": 522, + "UNK0": 65533, + "GROUP": "EBI", + "UNK1": "0a01001e64010164000000000000000000000000ff000700", + "NAMEID": "AniBtlLinkCounter", + "STRINGS": [ + "Counterattack", + "Sometimes counterattacks foe when partner is attacked." + ] + }, + { + "TYPE": "magic", + "ID": 530, + "UNK0": 65533, + "GROUP": "EBI", + "UNK1": "0a01001e64010164000000000000000000000000ff000800", + "NAMEID": "AniBtlLinkUtmostAttack", + "STRINGS": [ + "Powerful Strike", + "Increases Finishing Blow's power and activation frequency." + ] + }, + { + "TYPE": "magic", + "ID": 531, + "UNK0": 65533, + "GROUP": "PBI", + "UNK1": "0a03001e64016719000000663200000000000000ff000900", + "NAMEID": "AniBtlLinkLivelyYell", + "STRINGS": [ + "Cheer", + "Sometimes encourages partner when they are attacked. CP+50." + ] + }, + { + "TYPE": "magic", + "ID": 532, + "UNK0": 65533, + "GROUP": "PBI", + "UNK1": "0a04001e64010000000000000000000000000000ff000a00", + "NAMEID": "AniBtlLinkBoostArts", + "STRINGS": [ + "Arts Support", + "Sometimes increases the power of partner's arts by 1.2x." + ] + }, + { + "TYPE": "magic", + "ID": 533, + "UNK0": 65533, + "GROUP": "EBI", + "UNK1": "0a01001e64010164000000000000000000000000ff000b00", + "NAMEID": "AniBtlLinkRageCounter", + "STRINGS": [ + "Vengeance", + "Sometimes counters with a critical when partner is attacked." + ] + }, + { + "TYPE": "magic", + "ID": 534, + "UNK0": 65533, + "GROUP": "PBI", + "UNK1": "0a03001e64016564000000000000000000000000ff000c00", + "NAMEID": "AniBtlLinkQuickCharge", + "STRINGS": [ + "Auto-Charge", + "Sometimes restores partner's EP after they use arts." + ] + }, + { + "TYPE": "magic", + "ID": 535, + "UNK0": 65533, + "GROUP": "PBI", + "UNK1": "0a03001e640167190000004a0000000000000000ff000d00", + "NAMEID": "AniBtlLinkQuickCure", + "STRINGS": [ + "Auto-Curia", + "Sometimes cures a partner's abnormal status or status down." + ] + }, + { + "TYPE": "magic", + "ID": 536, + "UNK0": 65533, + "GROUP": "EBI", + "UNK1": "0a01001e64010164000000166400140000000000ff000e00", + "NAMEID": "AniBtlLinkMomentChase", + "STRINGS": [ + "Deadly Assist", + "Assist attacks deal critical damage and cause delay+20." + ] + }, + { + "TYPE": "magic", + "ID": 537, + "UNK0": 65533, + "GROUP": "PBI", + "UNK1": "0a04000101010000000000000000000000000000ff000f00", + "NAMEID": "AniBtlLinkSolidGuard", + "STRINGS": [ + "Protective Wall", + "Sometimes protects partner, reducing incoming damage by 90%." + ] + }, + { + "TYPE": "magic", + "ID": 7, + "UNK0": 65533, + "GROUP": "EBI", + "UNK1": "0100001e6401016400000000000000000014000000000000", + "NAMEID": "AniBtlAttack", + "STRINGS": [ + "Attack", + "The Ashen Knight's basic attack." + ] + }, + { + "TYPE": "magic", + "ID": 8, + "UNK0": 65533, + "GROUP": "EBI", + "UNK1": "0200001e64010164000000000000000000000000ff000200", + "NAMEID": "AniBtlCounter", + "STRINGS": [ + "Counter", + "Counter" + ] + }, + { + "TYPE": "magic", + "ID": 550, + "UNK0": 65533, + "GROUP": "EBI", + "UNK1": "0b00001e64010178000000000000000000000000ff000200", + "NAMEID": "AniBtlLinkChase", + "STRINGS": [ + "Assist", + "Assist (1.2x damage)" + ] + }, + { + "TYPE": "magic", + "ID": 551, + "UNK0": 65533, + "GROUP": "PMBI", + "UNK1": "1e03001e000167320000006632000000001ef401ff050100", + "NAMEID": "AniBtlSinki", + "STRINGS": [ + "Spirit", + "[Support - Self - Consumes #4C500#0CEP, Heals 50% HP/CP+50]" + ] + }, + { + "TYPE": "magic", + "ID": 552, + "UNK0": 65533, + "GROUP": "PMBI", + "UNK1": "1e03001e00015019000300000000000000192800ff050100", + "NAMEID": "AniBtlCraft00", + "STRINGS": [ + "Qinggong", + "[Support - Self - STR/SPD+25%]\nFocuses energy, increasing physical capabilities." + ] + }, + { + "TYPE": "magic", + "ID": 553, + "UNK0": 65533, + "GROUP": "PMBI", + "UNK1": "1e00001e00010000000000000000000000465a00ff050100", + "NAMEID": "AniBtlCraft01", + "STRINGS": [ + "Morning Moon", + "[Support - Self - Halves damage - 50% chance to counter]\nCounters cause unbalance 100% of the time." + ] + }, + { + "TYPE": "magic", + "ID": 554, + "UNK0": 65533, + "GROUP": "EBI", + "UNK1": "1f01001e640101f0000000006400000000286400ff640500", + "NAMEID": "AniBtlSCraft00", + "STRINGS": [ + "Destructive Impact", + "Charge attack that uses a regular attack (weaponless version)" + ] + }, + { + "TYPE": "magic", + "ID": 563, + "UNK0": 65533, + "GROUP": "EBI", + "UNK1": "1e0000226401016e0000000000000000001414001e000000", + "NAMEID": "AniBtlCraft12", + "STRINGS": [ + "Lustrous Slash", + "[Attack - 30% chance to unbalance - Can't guard/counter]\nTwo slashes in quick succession." + ] + }, + { + "TYPE": "magic", + "ID": 564, + "UNK0": 65533, + "GROUP": "EBI", + "UNK1": "1e00002264010178000000000000000000143c0032000000", + "NAMEID": "AniBtlCraft13", + "STRINGS": [ + "Flame Impact", + "[Attack - 50% chance to unbalance - Can't guard/counter]\nA powerful downward slash." + ] + }, + { + "TYPE": "magic", + "ID": 565, + "UNK0": 65533, + "GROUP": "EBI", + "UNK1": "1f01001e640101fa000000006400000000286400ff640500", + "NAMEID": "AniBtlSCraft10", + "STRINGS": [ + "Enlightened Domination", + "--" + ] + }, + { + "TYPE": "magic", + "ID": 900, + "UNK0": 65533, + "GROUP": "EB", + "UNK1": "1e010001020101780000001664001e00001e1900ff000000", + "NAMEID": "AniBtlCraft00", + "STRINGS": [ + "Piercing Strike", + "[Attack - One - Delay+30]\n(Class B) Thrusts sword forwards, piercing a foe." + ] + }, + { + "TYPE": "magic", + "ID": 901, + "UNK0": 65533, + "GROUP": "EB", + "UNK1": "1e01000b6402016e000000221900000000191e00ff000100", + "NAMEID": "AniBtlCraft01", + "STRINGS": [ + "Soaring Bird", + "[Attack (Set) - Line (S) - SPD-25%]\n(Class C) Releases a bird-shaped shock wave." + ] + } +] \ No newline at end of file diff --git a/text/jsons/t_main.json b/text/jsons/t_main.json new file mode 100644 index 0000000..9498d46 --- /dev/null +++ b/text/jsons/t_main.json @@ -0,0 +1,3165 @@ +[ + { + "TYPE": "QSChapter", + "ID": 65535, + "STRING": "Overall Achievements" + }, + { + "TYPE": "QSChapter", + "ID": 0, + "STRING": "Prologue" + }, + { + "TYPE": "QSChapter", + "ID": 1, + "STRING": "Chapter 1" + }, + { + "TYPE": "QSChapter", + "ID": 2, + "STRING": "Chapter 2" + }, + { + "TYPE": "QSChapter", + "ID": 3, + "STRING": "Chapter 3" + }, + { + "TYPE": "QSChapter", + "ID": 4, + "STRING": "Chapter 4" + }, + { + "TYPE": "QSChapter", + "ID": 5, + "STRING": "Chapter 5" + }, + { + "TYPE": "QSChapter", + "ID": 6, + "STRING": "Chapter 6" + }, + { + "TYPE": "QSChapter", + "ID": 7, + "STRING": "Final Chapter" + }, + { + "TYPE": "QSTitle", + "ID": 91, + "UNK0": 0, + "STRING": "Thors Military Academy", + "CATEGORY": "NONE", + "UNK1": "000000000000000000" + }, + { + "TYPE": "QSText", + "ID": 91, + "UNK0": 0, + "STRING": "#006c3/31 (Wed) Entrance Ceremony\n・Today I arrived in Trista, a little town on the \noutskirts of Heimdallr.\n・While I was admiring the lino flowers blossoming\nall over the town, a girl walked right into me!\nShe was wearing the same color uniform as I was,\ntoo, so I wondered if we'd be in the same class.\n・Thors Military Academy is in the north part of\nthe town. Not wanting to be late for the entrance\nceremony, I decided to hurry over there.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 91, + "UNK0": 1, + "STRING": "・I spotted a strange girl sleeping on a bench\nin the park. She seemed like another new Thors\nstudent...and kind of reminded me of a cat, for\nsome reason.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 91, + "UNK0": 2, + "STRING": "・I crossed paths with a tall boy at the nearby\nSeptian Church. He was busy praying when I\narrived, but he seemed to be new to the academy,\ntoo. Don't think he was Erebonian, though...", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 91, + "UNK0": 3, + "STRING": "・I saw a female student who was accompanied by\nan elderly man who appeared to be a butler.\nJudging by how gracefully she conducted herself,\nshe had to be from some famous noble family.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 91, + "UNK0": 4, + "STRING": "・I finally reached Thors Military Academy, the\nfamed military academy established by the great\nEmperor Dreichels.\n・Just as I reached the gate, another student\narrived in an orbal limousine. Looks like Thors\nhas a number of major nobles among its students.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 91, + "UNK0": 5, + "STRING": "・Walking through the gate, I was greeted by two\nsecond-year students. I'm not sure how they\nknew my name, though...\n・After handing them the items I applied to bring\ninto the academy, it was time for the entrance\nceremony. My time at this academy begins today--\nI'll need to be ready for whatever academy life\nthrows at me.\n・During his speech, Principal Vandyck passed on\nthe words of Emperor Dreichels: 'Arise, O youth,\nand become the foundation of the world.' The\ntrue meaning of these words is something we'll\nhave to put a lot of thought into during our two\nyears at the academy.\n・I ended up talking to Elliot, the red-haired boy \nsitting next to me. He wore a red uniform, just\nlike me, and just unlike all of the other\nstudents... I knew something had to be up there.\n・Soon, the ceremony came to an end, and a female\ninstructor called out to us. Apparently, there was \ngoing to be a 'special orienteering exercise' for\nus students in red uniforms... I had no idea\nwhat I was in for.", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 92, + "UNK0": 0, + "STRING": "Old Schoolhouse Exploration", + "CATEGORY": "NONE", + "UNK1": "000000000000000000" + }, + { + "TYPE": "QSText", + "ID": 92, + "UNK0": 0, + "STRING": "#006c3/31 (Wed) Special Orienteering\n・We were led into an old schoolhouse behind the\nmain building of the academy.\n・As it turned out, we students in red uniforms were\npart of Class VII, a new class established this\nyear which contains students from different social \nclasses. The woman who led us into the old\nschoolhouse then introduced herself as our\nhomeroom teacher, Instructor Sara Valestein.\n・The first to raise an objection to this\narrangement was a glasses-wearing boy named\nMachias, but he was immediately chided by Jusis\nAlbarea, a son of one of the Four Great Houses.\nThey weren't the only ones with concerns, either.\n・Ignoring all the hubbub, Instructor Sara told us\nthat she'd arranged for all of us take a 'special \norienteering exercise.' A moment later, the floor\nopened up beneath us, causing us to fall into an\nunderground area below the building.\n・Fortunately, no one seemed to be hurt--\nalthough I did end up taking a slap to the face\nbecause I landed in an...unfortunate position\nbeneath one of the girls.\n・Instructor Sara then called us on the ARCUS\nbattle orbments Thors sent us before we arrived.\nShe asked us to collect our weapons from the\npedestals surrounding the room and set the\nquartz with them into our ARCUS units.\n...Not that we had much of a choice.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 92, + "UNK0": 1, + "STRING": "・I obtained a master quartz from on top of one\nof the pedestals. Apparently, setting this into\nmy ARCUS allows me to use certain types of magic\ncalled 'arts.'", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 92, + "UNK0": 2, + "STRING": "・With everyone's preparations complete, our\nspecial orienteering exercise began. We were\ntasked with getting through the underground\ndungeon and returning to the surface.\n・People set off one by one--first Machias,\nthen Jusis, and then the girls. ...That blond-haired\ngirl was REALLY not happy with me.\n・The only ones left--Elliot, the exchange\nstudent Gaius, and me--agreed to work together.\nThey have really cool weapons, too; I like them\nalready!\n・We then proceeded through the door to properly\nbegin our exploration. We definitely needed to\nget used to fighting alongside each other, though.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 92, + "UNK0": 3, + "STRING": "・Just as we thought we were used to fighting\nthe monsters in the area, one of them caught us\noff guard. Luckily for us, Machias appeared at\nthe last second and saved us from danger.\n・We took the chance to formally introduce\nourselves to one another and were reminded that\nMachias has a chip on his shoulder when it comes\nto the nobility.\n・...Either way, Machias agreed to come with us,\nso we four started working together, expecting\nthat we'd catch up with the girls any minute.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 92, + "UNK0": 4, + "STRING": "・Once we caught up with them, they told us that\nthey were doing just fine on their own.\n・We were introduced to Emma, who scored highest\non the entrance exam and came from a remote region\nof the Empire. She uses an orbal staff just like \nElliot, too.\n・The blond-haired girl's named Alisa and she hails\nfrom the city of Roer. ...And, as I figured, she's\nstill annoyed with me for what happened earlier.\nShe definitely doesn't want to talk to me,\nso I hope I can find some way to apologize...\n・The girl with the large sword is the daughter\nof Viscount Arseid, also known as the Radiant \nBlademaster. He's also the strongest swordsman\nin the Empire, so if his daughter takes after him\nat all, we'll be lucky to have her.\n・The girls went one way, and we went another--\nkeeping an eye out for Jusis and the\nsilver-haired girl as we looked for the exit.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 92, + "UNK0": 5, + "STRING": "・We were able to confirm that the silver-haired\ngirl, whose name is Fie, was safe. I've got a feeling\nwe never had any reason to worry to begin with.\n・She told us that we were over halfway through,\nso we kept moving.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 92, + "UNK0": 6, + "STRING": "・We found Jusis in the middle of a battle. He's a\nskilled swordsman who uses the traditional court\nfencing style favored by the nobility.\n・It seems that Machias is the son of Governor\nCarl Regnitz, who takes care of the capital,\nHeimdallr. Unfortunately, we learned this while\nJusis was mocking him for it ...These two\nreally aren't going to get along, are they?", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 92, + "UNK0": 7, + "STRING": "・I got between them and admonished Jusis, who\nadmitted that he was at fault surprisingly quickly\nand walked away.\n・After reflecting on the class issues that\nErebonia faces, we finally got moving again,\na now-calm Machias alongside us.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 92, + "UNK0": 8, + "STRING": "・I held back Machias before he tried to punch\nJusis, and he walked off on his own, saying he\nwanted to cool his head.\n・Jusis was more than willing to admit that he was\npartially at fault for what happened. He may be\nthe son of a prominent noble, but he doesn't\nthink he's Aidios' gift to mankind...which is kind\nof a pleasant surprise.\n・After reflecting on the class issues that\nErebonia faces, we finally got moving again,\nnow with Jusis in tow.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 92, + "UNK0": 9, + "STRING": "・We finally reached the end of the dungeon and\nfound a path leading up to the surface, but a\nstone gargoyle stood between us and freedom.\nThe only way out was straight through it.\n・We were able to defeat it by working together...\nor so we thought. The gargoyle quickly rebuilt\nitself and came at us again, not weakened in\nthe slightest. Fortunately, it was then that\nour classmates came to our aid. \n・Unleashing a barrage of powerful attacks on the \ngargoyle, we finally saw our chance for victory.\nAt that moment, our bodies were surrounded in a \npale light, allowing us to act together almost as\nif we were one. Finally, the gargoyle fell.\n・After defeating it, Instructor Sara arrived\nnonchalantly, and told us we had just experienced\nthe ARCUS' key innovation: combat links. She\nexplained that combat links have the potential\nto completely change how wars are fought, and that\nour high aptitude for them was one of the reasons\nwe were picked for Class VII.\n・After this lengthy explanation all of this, she\nasked us all once more whether we wanted to be a\npart of Class VII, knowing the sort of challenges\nwe'd have in store. ...I knew my answer.\n・All nine of us declared our intent to join the\nclass, one after another. Everyone's motivations\ndiffered, but from that moment on, we were united\nas members of Class VII.", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 94, + "UNK0": 0, + "STRING": "Academy Life - April", + "CATEGORY": "NONE", + "UNK1": "010000000000000000" + }, + { + "TYPE": "QSText", + "ID": 94, + "UNK0": 0, + "STRING": "#006c4/17 (Sat) After School", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 94, + "UNK0": 1, + "STRING": "・Today I was asked a question in Instructor\nThomas' class. Luckily, I was able to give him\nthe right answer. It looked like Alisa was\ntrying to help me out, though...", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 94, + "UNK0": 2, + "STRING": "・Today I was asked a question in Instructor\nThomas' class. Just as I was struggling for an\nanswer, Alisa wrote it on a piece of paper where\nI could see it. I've got to be sure to thank her.", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 94, + "UNK0": 3, + "STRING": "・During our final homeroom of the day, Instructor\nSara gave us a schedule rundown. She told us about\nour free days, which students can spend however\nthey see fit, and warned us about our 'practical\nexam' coming up on Wednesday, April 21st. After\nthat, she says, she'll tell us about one more\nunique part of our curriculum. ...I'll have to make\nthis free day tomorrow count.\n・After that, Instructor Sara asked me to go\ncollect something from the Student Council in\nthe Student Union building next to the main building.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 94, + "UNK0": 4, + "STRING": "・I was investigating the locked old schoolhouse\ndoor, when I was overcome by a strange sensation. \n...I think, anyway. Maybe I was just imagining it.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 94, + "UNK0": 5, + "STRING": "・In front of the Student Union building, I ran into a\nlaid-back second year. He said that he would show\nme a trick, but he ended up taking my 50 mira.\n・I wonder if all of the second years are that\nweird. Hopefully I don't turn weird after a year\nhere... Well, anyway, it was off to the\nStudent Union building after that.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 94, + "UNK0": 6, + "STRING": "・Inside the Student Council room was one of the \nsecond-year students that I met on the day of the \nwelcoming ceremony. It turns out she's the Student\nCouncil president! Her name's Towa, and she\nassured me that despite her small size, she really\nis a second year.\n・She gave me our class' student notebooks and\nasked me to hand them out to everyone.\n・...Of course, that wasn't all I was asked to do.\nInstructor Sara set me up, and now I have to use\ntomorrow's free day to help the Student Council by\nfulfilling various requests from other students\nand people from Trista. Gee, thanks, Instructor.\n・Instructor Sara claims that she's having me\nhelp the Student Council as a learning experience\nof sorts. Maybe it'll teach me something, too.\n・Apparently, the requests I need to fulfill will\nbe delivered straight to my mailbox. I'll have\nto check to see if they're there tomorrow morning.\n・But before I went to bed, I decided to deliver\nthe student notebooks.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 94, + "UNK0": 7, + "STRING": "・I delivered Alisa's student notebook to her.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 94, + "UNK0": 8, + "STRING": "・I delivered Elliot's student notebook to him.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 94, + "UNK0": 9, + "STRING": "・I delivered Laura's student notebook to her.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 94, + "UNK0": 10, + "STRING": "・I delivered Machias' student notebook to him.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 94, + "UNK0": 11, + "STRING": "・I delivered Emma's student notebook to her.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 94, + "UNK0": 12, + "STRING": "・I delivered Jusis' student notebook to him.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 94, + "UNK0": 13, + "STRING": "・I delivered Fie's student notebook to her.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 94, + "UNK0": 14, + "STRING": "・I delivered Gaius' student notebook to him.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 94, + "UNK0": 15, + "STRING": "・I've delivered all of the student notebooks now.\nI should go back to my room and get some sleep.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 94, + "UNK0": 16, + "STRING": "#666c     ◆    ◆    ◆\n#006c4/18 (Sun) Free Day\n・An envelope full of requests to fulfill arrived\nin the mail. I figured I should at least do the\nones for the principal and the Engineering Club.\n・All of my classmates had already left, but I\nfigured we could chat if I ran into them.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 94, + "UNK0": 17, + "STRING": "・Once I'd finished the Engineering Club's request,\nI got ready and set off for the old schoolhouse.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 94, + "UNK0": 18, + "STRING": "・We'd finished investigating the old schoolhouse,\nbut unanswered questions still remain. I want to\nget to the bottom of things, so it wouldn't hurt\nto explore every so often, especially now that I\nhave the key.\n・I parted ways with Elliot and Gaius, who had\nagreed to help me out. With the sun setting,\nI decided to head back to the dormitory myself.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 94, + "UNK0": 19, + "STRING": "・After finishing some sword practice, I decided\nto listen to Abend Time on the radio I received\nfrom George. I think I'll keep tuning in!\n#666c     ◆    ◆    ◆\n#006c4/21 (Wed) Practical Exam\n・We had our very first practical exam was on the\nacademy field. Elliot, Gaius, and I were asked to\nteam up and fight a strange object that Instructor\nSara called a 'combat shell.'", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 94, + "UNK0": 20, + "STRING": "・By making good use of our combat links and\nfighting as one, we earned a good score.", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 94, + "UNK0": 21, + "STRING": "・...Unfortunately, we didn't fight as well as we\nshould have done and didn't get a great score.", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 94, + "UNK0": 22, + "STRING": "・After that, we were given an explanation on\nanother part of our class' curriculum, which the\ninstructor referred to as 'field studies.' Looks\nlike we'll be split into two groups, A and B, each\nof which will be sent to a different region of the\nEmpire. There, each group will be given a number\nof tasks to complete.\n・Here's the plan for this month:\n\nGroup A: Rean, Alisa, Laura, Elliot\n(Study Location: Celdic, the Market Town)\n\nGroup B: Emma, Machias, Jusis, Fie, Gaius\n(Study Location: Parm, the Spinning Town)\n\n...Sounds tough, but we'll just have to work hard\nand hope for the best.\n・We'll be departing to our respective destinations\nby train this weekend. We'll have to make sure\nwe're ready whatever we're being pitted against.", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 95, + "UNK0": 0, + "STRING": "Our First Field Study", + "CATEGORY": "NONE", + "UNK1": "010000000000000000" + }, + { + "TYPE": "QSText", + "ID": 95, + "UNK0": 0, + "STRING": "#006c4/24 (Sat) Field Study at Celdic - Day 1\n・This morning, I was finally able to reconcile\nwith Alisa before setting off for our field study.\n・With that off my shoulders, it was time for us\nto leave. We got ready and headed for the station. ", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 95, + "UNK0": 1, + "STRING": "・We arrived at the station just as Group B were\nleaving for Parm. I was a little nervous about how\nMachias and Jusis will be together, but I had\nbigger things to be concerned about.\n・We bought our tickets to Celdic from the counter.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 95, + "UNK0": 2, + "STRING": "・We purchased our tickets and boarded a train\nbound for Crossbell. It seemed like the station\nstaff had been forewarned about our field study. \n・It's took us about an hour to reach our\ndestination. To pass the time, Alisa told us all\nabout Celdic and its market.\n・Just as we were wondering what Instructor Sara\nhad planned for us there, she appeared out of\nnowhere. While she claimed she'd come to answer\nour group's questions, she fell asleep the moment\nshe sat down in her seat... She's a special one.\n・When we finally reached Celdic, Instructor Sara\nguided to us to the inn where we'd be staying.\n・There, we found that we would all be staying in\none room, regardless of gender. Alisa didn't take\ntoo kindly to this, but after Laura admonished\nher, she reluctantly accepted the arrangement.\n・Afterwards, we received an envelope containing \ninformation on the tasks we would be completing\nfrom the inn's owner--all of which were menial\nto say the least, just helping people with one\nthing or another.\n・We decided to go and ask the instructor, who\nwas on the first floor of the inn, about them.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 95, + "UNK0": 3, + "STRING": "・It seems as though the aim of these field studies\nis somewhat related to the assistance I gave the \nStudent Council on my last free day... We can't be\nsure what exactly Instructor Sara is planning, but\nwe decided to get started on our tasks regardless.\nThis should be a good chance to learn more about\nCeldic, at the very least.\n・Two of the tasks are mandatory, but it's up to\nus whether we want to complete the others.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 95, + "UNK0": 4, + "STRING": "・We stepped into famous Celdic Grand Market and\nthought it wouldn't hurt to do a bit of shopping\nwhile we're working through our assignments.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 95, + "UNK0": 5, + "STRING": "・We ran into the Kreuzen Provincial Army while\nthey were patrolling the town. They warned us not\nto cause any trouble.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 95, + "UNK0": 6, + "STRING": "・Outside the Lunaria Nature Park, we encountered\na couple of park rangers. Apparently, the area is off\nlimits right now.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 95, + "UNK0": 7, + "STRING": "・We completed the mandatory request from the\norbal factory!", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 95, + "UNK0": 8, + "STRING": "・We exterminated a monster on the East Highway.\nMan, these combat links come in handy.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 95, + "UNK0": 9, + "STRING": "・We've finished all of the mandatory tasks and\nheaded back to the inn to talk to Instructor Sara.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 95, + "UNK0": 10, + "STRING": "・On our way back to the inn, we heard a commotion\ncoming from the Grand Market. We made a detour\nover there before we went back to the inn.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 95, + "UNK0": 11, + "STRING": "・We found two merchants arguing with each other.\nSupposedly, they'd both been assigned the same\nspot in the market.\n・Fortunately, the market manager arrived, and with\nhis help, we were able to calm them down before \nanyone got hurt. They were told to take take\nturns using the spot for the time being.\n・The market manager invited us to his house and\nrevealed that he was the one who chose the tasks\nfor our field study. Apparently, he's an old friend\nof Principal Vandyck's.\n・It seems the quarrel earlier may have come about\nas a result of a tax dispute between Jusis'\nfamily and the merchants of Celdic. The provincial\narmy, which serves Duke Albarea, refuses to help\nthe people of Celdic until the dispute's resolved.\n・None of us were happy to hear that, but with all\nthe work we have planned for tomorrow, all we\ncould do was go back to the inn and get some rest.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 95, + "UNK0": 12, + "STRING": "・We walked out of the market manager's house\nand right into Instructor Sara. She said she was off\nto sort things out over with Group B. Leaving the\nnext steps of our field study completely to us,\nshe departed for the station.\n・Deciding it would be best to have dinner early\nand start working on our report, we made a beeline\nfor the inn.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 95, + "UNK0": 13, + "STRING": "・We had a great chat over a dinner of freshly\ngrown local produce. Just as we were on our way\nback to our rooms, however, Laura called out to\nme. She figured out that I'm a practitioner of\nthe Eight Leaves One Blade school, but she\nexpected me to be stronger than I actually am.\n...I feel as though I've let her down.", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 96, + "UNK0": 0, + "STRING": "Theft at the Grand Market", + "CATEGORY": "NONE", + "UNK1": "010000000000000000" + }, + { + "TYPE": "QSText", + "ID": 96, + "UNK0": 0, + "STRING": "#006c4/25 (Sun) Field Study at Celdic - Day 2\n・We received our field study tasks for the day\nfrom the inn's owner. We were assigned fewer of\nthem than yesterday, which was kind of odd.\n・I apologized to Laura for what happened last\nnight. It looked like Alisa and Elliot were\nworried about us, too.\n・Just as we were about to launch into our field\nstudy tasks, a girl working at the inn arrived in\na panic. There had been a theft at the Grand\nMarket, so we needed to see what was going on.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 96, + "UNK0": 1, + "STRING": "・We heard the argument before we could see it. \nWorse yet, it was so fierce that even market\nmanager was powerless to stop it.\n・Once we got closer, we realized the fighting\nmerchants were the same ones from yesterday. They\nwere the victims of the theft we had heard about,\neach one having their goods taken and their stalls\ndestroyed. Each one insisted that the other was\nthe culprit, denying any other possibilities.\n・A platoon from the provincial army came to calm\nthe situation, but they did so heavy-handedly,\nshowing no interest in investigating the theft.\n・Afterwards, the market was able to open for\nbusiness for the day...but there was no way we\ncould let such an obvious injustice stand. So we\nsuggested that we investigate the theft ourselves\nas part of our field study.\n・Once we secured Otto's permission to do so,\nwe started investigating. We had until 9PM,\nwhen the last train left, to complete our task.\nWe started by gathering information in the most\nobvious place possible: the Grand Market.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 96, + "UNK0": 2, + "STRING": "・We spoke to one of the victims, Heinz, a merchant\nfrom Heimdallr. He says that he left the market as\nsoon as he'd finished setting up his stall, and\nthat the other merchants of the market would\nattest his to innocence.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 96, + "UNK0": 3, + "STRING": "・We spoke to one of the victims, Marco, a merchant\nfrom Celdic. He says that he spent last night\ndrinking with a fellow merchant, and that he\ndidn't witness anything that could help us\nsolve the crime.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 96, + "UNK0": 4, + "STRING": "・Once we'd spoken to both of the victims, we\ncouldn't believe that either of them could have\nbeen responsible for what happened.\n・The provincial army's behavior this morning\nseemed awfully suspicious, though. Thinking they\nmight provide us with answers, we took off in\nthe direction of their guardhouse.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 96, + "UNK0": 5, + "STRING": "・At the guardhouse, we were able to speak to the\ncommanding officer and essentially confirmed that\nthe tax dispute was the reason that they refused\nto get involved in matters at the Grand Market.\n・Not only that, Elliot's quick-wittedness allowed\nus to extract some key information from him. How\ncould the provincial army knew what goods the\nmerchants intended to sell if they refused to\nget involved? We knew then that the provincial\narmy had a hand in this crime, hoping to get the\nmarket manager to withdraw his petition against\nthe tax increase.\n・But having a hand in it doesn't mean the\nprovincial army committed the crime themselves.\nWe needed to find out who did. We continued our\nsearch by asking around on the main drag.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 96, + "UNK0": 6, + "STRING": "・We spoke to a young girl on the main street who\nmentioned seeing an unfamiliar man in town lately.\nShe said he's usually lying around drunk near the\nwest exit... It doesn't sound like a great lead in\nretrospect, but we followed up on it.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 96, + "UNK0": 7, + "STRING": "・We spoke to Johnson by the west exit. He used to\nbe a ranger at the Lunaria Nature Park, far down\nthe highway. Recently, however, his job was\ntaken from him by the Kreuzen province without\nwarning, and a group of young men took over.\n・He also said that he saw those young men hurrying\nout of town carrying wooden boxes last night. \n・Lunaria Nature Park seemed like the perfect\nplace to hide stolen goods--we decided to make\nour preparations and check it out.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 96, + "UNK0": 8, + "STRING": "・When we arrived at Lunaria Nature Park, we found \nwhat looked like some of the stolen goods lying \noutside. We'd found our culprits.\n・After using one of my Eight Leaves skills to\nbreak the lock, we entered to bring the criminals\nto justice.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 96, + "UNK0": 9, + "STRING": "・Inside the Nature Park, we found a mountain of \nstolen goods and a group of bandits disguised as\npark rangers. We were able to work together\nand defeat them in battle. \n・Just as we were pressing them on who hired them, \nElliot claimed to hear the sound of a flute-- \nmoments later, a large monster appeared to attack\nus. \n・We managed to fend it off, but just as we did,\nthe provincial army appeared.\n・It quickly became obvious that the bandits and\nthe provincial army were working together--and\nthe provincial army attempted to arrest us for a\ncompletely ridiculous crime that we didn't commit.\n・Before they could, however, a group of soldiers\nin gray uniforms appeared, led by a young female \nofficer. The Railway Military Police had saved us.\nThanks to Captain Claire's intervention, the\nprovincial army was forced to back down, and the\nbandits were arrested.\n・All of the stolen goods were returned to their\nrightful owners, and the incident was brought to\na successful conclusion. Surprisingly, Captain\nClaire knew a lot about us and our class...and she\nseemed to be acquainted with Instructor Sara, too.\n・The time soon came for us to leave Celdic behind\nand return to Trista. We'd finally figured out\nwhat we were going on these field studies to do:\nvisit places that we otherwise wouldn't, build up\nexperience and learn to think and act on our own.\nWe couldn't shake the feeling that we were being\ntrained like bracers, though.\n・I also took the opportunity to tell everyone \nsomething that I'd been keeping from them--that \nI'm the adopted son of Baron Schwarzer, and\ntherefore technically a noble. Considering we'll\nbe together for the next two years, I'll have to\nmake sure I tell the members of Group B, too.", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 97, + "UNK0": 0, + "STRING": "Academy Life - May", + "CATEGORY": "NONE", + "UNK1": "020000000000000000" + }, + { + "TYPE": "QSText", + "ID": 97, + "UNK0": 0, + "STRING": "#006c5/22 (Sat) After School", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 97, + "UNK0": 1, + "STRING": "・I was asked a very technical question during \nInstructor Neithardt's military science class,\nbut I managed to answer it correctly. I'll have to\nmake sure I stay on top of my studies.", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 97, + "UNK0": 2, + "STRING": "・I was asked a very technical question during \nInstructor Neithardt's military science class and\nI completely blew it. Guess I'll need to study\nharder.", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 97, + "UNK0": 3, + "STRING": "・While we were learning about computers, Patrick,\na son of Marquis Hyarms, came over to speak to\nus. Luckily, Jusis saved us from an uncomfortable\nsituation.\n・In our homeroom, we were told that we'd have\nmidterm exams next month. I'm going to need to do\na lot of studying to make sure I'm ready for those.\n・The whole noble thing has made things awkward\nbetween Machias and me. After he left, Emma tried\nto encourage me... She's probably right. I'll just\nhave to try to be honest with him.\n・I puttered around the academy for a while before\ngoing back to my dorm.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 97, + "UNK0": 4, + "STRING": "・Emma's waiting for Fie to show up in the library.\nIf I see Fie around, I should let her know.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 97, + "UNK0": 5, + "STRING": "・I found Fie napping outside the old schoolhouse.\nBefore she went off to meet Emma, she mentioned\nthat the inside of the building has changed a lot. ", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 97, + "UNK0": 6, + "STRING": "・Crow stopped me on my way through the main gate.\nHe asked me to tell him how he did that trick with\nmy 50 mira last month. I answered perfectly.", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 97, + "UNK0": 7, + "STRING": "・Crow stopped me on my way through the main gate.\nHe asked me to tell him how he did that trick with\nmy 50 mira last month, and I'd almost worked\nit out, but not quite.", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 97, + "UNK0": 8, + "STRING": "・While we were talking, Angelica, daughter of\nMarquis Rogner, head of one of the Four Great\nHouses, showed up. You'd never guess that she\ncame from nobility by talking to her, though.\nShe's very easy to get along with. \n・She rode off into the distance on something\ncalled an 'orbal bike.' ...I hope I'm as cool as she\nis next year.\n・It turns out those two are good friends with\nGeorge and Towa. The second years here are all\nreal characters in their own way...", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 97, + "UNK0": 9, + "STRING": "・I decided to walk around the dormitory\nfor a while before going to sleep.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 97, + "UNK0": 10, + "STRING": "#666c     ◆    ◆    ◆\n#006c5/23 (Sun) Free Day\n・I awoke to find an envelope containing a variety\nof requests for me to fulfill, just like last month.\n・Since I still had the key to the old schoolhouse,\nI felt obligated to explore it once I was done\nwith the other requests.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 97, + "UNK0": 11, + "STRING": "・We finished our investigation of the old \nschoolhouse and told the principal about the\nelevator.\n・He told us that the principals of the academy\nhad been tasked with preserving the building until\nthe 'Promised Day' arrives--though what exactly\nthat means is a mystery. Maybe it has something\nto do with St. Sandlot? ...Either way, it looks\nlike these investigations will be a regular thing.\nI'll be sure to bring all my friends with me.\n・By the time we were finished talking to the \nprincipal, evening had arrived and I headed\nback to the dormitory.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 97, + "UNK0": 12, + "STRING": "・I encountered a cat with beautiful black fur in\nTrista. I got a little carried away fussing over\nit, though, and it scratched the back of my hand.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 97, + "UNK0": 13, + "STRING": "・I got back to the dormitory just as Emma did,\nso I decided to tell her about the cat. That got\nher into a panic for some strange reason...\n・I decided to study with Abend Time on in the \nbackground today, too. I couldn't help but think \nabout Machias and Jusis, though--I wonder what's \nmaking them act like that towards each other...\nThere's got to be more to it than meets the eye.\n#666c     ◆    ◆    ◆\n#006c5/26 (Wed) Practical Exam\n・During today's practical exam, we fought the\ncombat shell again. This time, though, it looked\na bit different. How does it work? Anyway,\nAlisa, Laura, Gaius, and I fought it as a team.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 97, + "UNK0": 14, + "STRING": "・We brought everything we'd learned while\ninvestigating the old schoolhouse and during our\nfield study to the battle and got good marks\nfor our performance.", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 97, + "UNK0": 15, + "STRING": "・We tried to make use of everything we'd learned \nfrom our schoolhouse investigations and our field\nstudy but didn't quite do as well as we'd hoped.", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 97, + "UNK0": 16, + "STRING": "・Afterwards, the remaining five, including\nMachias and Jusis, challenged the combat shell.\nTheir battle was less than stellar. Instructor\nSara was quick to criticize their performance,\nwhich made the problem children even madder.\n・Moving on, we were told where we will be going\nfor this month's field study. The groups and their\ndestinations this month are as follows:\n\nGroup A: Rean, Emma, Machias, Jusis, Fie\n(Study Location: Bareahard, the Verdant City)\n\nGroup B: Alisa, Laura, Elliot, Gaius\n(Study Location: Saint-Arkh, the Old Capital)\n\n・Unsurprisingly, Machias and Jusis immediately\nbegan complaining at the instructor and demanding\nthe groups be changed. She agreed on the condition\nthat the two of her could beat her in battle.\n・She drew her weapons, and told me to fight\nalongside them. Despite her clearly holding back\nagainst us, we took us down like she was swatting\nflies.", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 98, + "UNK0": 0, + "STRING": "The Verdant City", + "CATEGORY": "NONE", + "UNK1": "020000000000000000" + }, + { + "TYPE": "QSText", + "ID": 98, + "UNK0": 0, + "STRING": "#006c5/29 (Sat) Field Study at Bareahard - Day 1\n・The first thing I did today was meet\neveryone downstairs as soon as I could.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 98, + "UNK0": 1, + "STRING": "・When I did, I found Jusis and Machias standing\napart from one another. Soon after, Fie and Emma\ncame down to join us. We decided it wouldn't\nhurt to be early for the train and headed off.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 98, + "UNK0": 2, + "STRING": "・When we arrived at the station, we found the\nmembers of Group B waiting for their train. They\ndeparted shortly after they arrived, but not\nbefore Gaius had a talk with me about dealing\nwith Machias and Jusis.\n・We bought our tickets and waited for the next\ntrain to Bareahard.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 98, + "UNK0": 3, + "STRING": "・No sooner had we settled in our seats than\nMachias and Jusis started fighting. ...I wasn't\ngoing to stand idly by as they dragged down my\nfield study grade, though. Fortunately, they\ndon't want to fail, either. They agreed to a\ntemporary truce, and while they weren't able to\nput aside their differences, they agreed to\ncooperate until our field study was over.\n・Jusis told us all about the city of Bareahard,\na city that developed with the nobility at its\ncenter... I had a feeling we were going to need\nto tread lightly.\n・We finally reached Bareahard, only to be greeted \nby none other than Jusis' older brother, Rufus.\nThis showed us a side of Jusis we'd never seen\nbefore, much to our great surprise.\n・He gave us a ride to our hotel in his limousine.\nI was surprised to discover that Rufus has gone\nhunting with my father and is even acquainted \nwith Machias' father, the governor of Heimdallr.\n・After we arrived at our hotel, Rufus left to\ntake an airship to Heimdallr. I guess he's not\ncalled the 'ace of the Noble Faction' for nothing.\n・While there were still signs of discontent\nbetween Machias and Jusis, we were able to unpack\nand get started on the field study tasks Rufus\ngave us largely without incident. \n・Rufus had prepared a wide variety of tasks for\nus, including requests nobles and artisans alike.\nWe decided to save exterminating the monster on\nthe canyon path for last.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 98, + "UNK0": 4, + "STRING": "・We completed the jeweler's request, even if it\nleft us feeling more than a little conflicted.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 98, + "UNK0": 5, + "STRING": "・Once we felt we were done with everything else,\nwe walked out onto the Aurochs Canyon Path. We\nneeded to exterminate the monster there, then go\nright to Aurochs Fort to report to the soldiers. ", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 98, + "UNK0": 6, + "STRING": "・We exterminated the monster on the canyon\npath, but Machias and Jusis failed to form\na proper combat link with one another.\n・They immediately started arguing over who was \nresponsible, which caused us all to let our guards \ndown. That was all the opportunity the monster we\nthought we'd defeated needed to lunge towards\nthem. I managed to get between the monster and\nMachias and Jusis, but I was hurt in the process. \n・Fie defeated the monster, and Emma performed\nfirst aid on me, so I was just fine. Machias and\nJusis seemed to feel responsible for what\nhappened, though.\n・I agreed to take it easy for a while to recover.\nWe did have to hurry to Aurochs Fort, though,\nsince we wanted to be back in Bareahard before it\ngot dark.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 98, + "UNK0": 7, + "STRING": "・As we walked, I checked up on my wound, which\nhad already mostly healed. Whatever Emma did, it\nworked wonders.\n・We couldn't help but notice that Fie seems \nsurprisingly used to battle for someone her age\n--just what kind of environment did she grow up\nin, anyway? We didn't really have time to ponder\nthat, but I'm still curious.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 98, + "UNK0": 8, + "STRING": "・We arrived at Aurochs Fort, one of the\nKreuzen Provincial Army's bases to report\nthe monster's extermination.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 98, + "UNK0": 9, + "STRING": "・We saw a freight train going past near the fort.\nIt seemed to be carrying a number of Reinford's\nlatest main battle tanks, called Achtzehns.\nJusis' reaction to them was somewhat curious,\nthough...", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 98, + "UNK0": 10, + "STRING": "・When we were finally able to give our report on\nthe monster's extermination. Unsurprisingly, the\nprovincial army was quick to recognize Jusis and \ntreated him with the utmost.\n・One of the soldiers said that the main battle\ntanks we saw earlier belong to the provincial\narmy and that the fort itself underwent some\nsignificant construction last month.\n・After hearing that, it was time to head back to\ntown.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 98, + "UNK0": 11, + "STRING": "・Machias pressed Jusis on the provincial army's \narmaments, saying that they were excessive. Jusis \nresponded that they were simply a result of the \nfactional conflict. It seems it's getting even\nmore serious than we thought.\n・Night was quickly approaching, so we decided\nto double-time it back to Bareahard.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 98, + "UNK0": 12, + "STRING": "・Our journey back wasn't quite as simple as we'd\nhoped, of course. We heard the wail of sirens\ncoming from the fort and saw a mysterious silver\nobject flying away. What's more, it looked like it\nhad a child riding on top of it.\n・Several soldiers gave chase, telling us that\nthere had been an intruder in Aurochs Fort.\nGiven how quickly it was flying, though, I'm not\nsurprised they couldn't catch it.\n・At this point, my injury from earlier had\ncompletely healed. Emma's grandmother's medicine\nhad really done the trick. Just like that, I was\nproperly combat-ready again.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 98, + "UNK0": 13, + "STRING": "・We finally reached Bareahard as the sun went\ndown and decided to go back to the hotel.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 98, + "UNK0": 14, + "STRING": "・In front of the hotel, we encountered a nobleman\nin a high-class limousine who turned out to be\nJusis' father, Duke Albarea. He didn't stop for\nlong, however, barely saying a word to Jusis \nbefore he departed.\n・Afterwards, we went to a restaurant in town for \ndinner, but Jusis seemed much quieter than usual.\n・We finished all of our tasks, but we all agreed\nthat we could have done better--at the rate\nwe were going, earning a lower grade than Group B\nwas all but inevitable. We need to turn things\naround tomorrow.\n・Reflecting on what we'd seen of the predicament \nErebonia was in and growing gloomier by the\nminute, we were surprised by the sudden appearance\nof Baron Bleublanc, who we met earlier that day.\nHe spoke to us for a while before leaving, but\nthere's just something mysterious about that guy.\n・That night, Jusis and I were having trouble \nsleeping, so we started talking to one another.\nHe revealed that he was born to a different mother\nthan Rufus, making them half-brothers. Those two\nget along, though, unlike Jusis and his father.\n・After telling me all of this, Jusis pointed out\nthe arrogance of some of my actions, echoing some\nof my master's criticisms... I guess I've got a lot\nof growing up to do.\n・Seems that's true for both of us, though. After \ntalking for a while, we decided to call it a night.\nWe wanted to be awake and alert for tomorrow.\n#666c     ◆    ◆    ◆\n#006c5/30 (Sun) Field Study at Bareahard - Day 2\n・We received our day's field study tasks from the \nhotel manager, which Rufus had kindly prepared\nin advance for us.\n・As we were about to get to work, Machias proposed\nto Jusis that they try to form a successful combat\nlink. He must've overheard our conversation last\nnight.\n・Just as we'd gotten our hopes up that day two of\nour field study was off to a good start, a butler\nunder the employ of Duke Albarea appeared and\nclaimed he'd been sent to pick Jusis up.\n・Jusis initially seemed hesitant, but was\neventually convinced, so we agreed to work through\nthe morning's tasks without him.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 98, + "UNK0": 15, + "STRING": "・We exterminated a monster on the north highway,\nand I was finally able to make up with Machias.\n・When it was about time for Jusis to come back\nto us, we went back to Bareahard to meet him.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 98, + "UNK0": 16, + "STRING": "・As we returned to the city, we were stopped by \nprovincial army soldiers--and, much to our surprise,\nMachias was arrested.\n・He was charged with trespassing into Aurochs\nFort. The provincial army ignored all of our\nevidence and testimonies to the contrary, and\ntook him away.", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 99, + "UNK0": 0, + "STRING": "Rescuing Machias", + "CATEGORY": "NONE", + "UNK1": "020000000000000000" + }, + { + "TYPE": "QSText", + "ID": 99, + "UNK0": 0, + "STRING": "#006c5/30 (Sun) Field Study at Bareahard - Day 2 (PM)\n・We went to the provincial army guardhouse to\nplead Machias' innocence, but they had no\ninterest in listening to us. Worse yet, they also\ngave us a message from the duke's household saying\nthat Jusis would be unable to rejoin us on our\nfield study.\n・On returning to the hotel, we found provincial\narmy soldiers investigating it, so we couldn't\nreturn to our rooms. We decided to regroup and\nconsider our next move at an inn on the Artisans'\nStreet.\n・It seemed most likely that Machias was captured\nbecause he's the son of Governor Regnitz, an\ninfluential figure in the Reformist Faction. We\nwere afraid they were going to use him for\nblackmail...or worse.\n・Still, with Jusis stuck at home and Rufus in\nHeimdallr, we felt alone and a little scared.\n・We figured that our chances of rescuing him\nwould decrease dramatically if he was moved from\nthe provincial army guardhouse, so we vowed to\nsneak in there and rescue him.\n・Just as we were wondering how to go about our\nlofty claim, we met a bracer named Toval. He works\nat a guildhouse in Legram to the south but often\ncomes to Bareahard on business.\n・After asking at the bar, we learned about a\nnetwork of waterways under the city--and that \nwe could use them to reach the guardhouse.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 99, + "UNK0": 1, + "STRING": "・Once we learned there was an entrance to the\nwaterways somewhere between the Noble District\nand the street in front of the station, we got\nstraight to looking.", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 99, + "UNK0": 2, + "STRING": "・We thought we found our entrance on the outer\nedge of the street the station was on.", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 99, + "UNK0": 3, + "STRING": "・But of course, it was locked. Didn't seem like a \ngood idea to cut it open with my sword, either...\n・Fortunately, Emma came to the rescue, picking the \nlock with a hairpin. She claimed to have learned\nhow from a mystery novel she read once... She's\npretty amazing, honestly.\n・Once we got the entrance unlocked, we headed in.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 99, + "UNK0": 4, + "STRING": "・For underground waterway, this was surprisingly\nclean and well kept. Well, aside from all the\nmonsters. We readied our weapons and headed west\ntowards the provincial army guardhouse.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 99, + "UNK0": 5, + "STRING": "・As we worked our way through the underground \nwaterway, we ran into Jusis. He seemed to have \nworked out what was going on and resolved to save\nMachias in what must be one of the most dramatic\nacts of teenage rebellion of all time.\n・We welcomed Jusis back into the fold and set\noff together to rescue Machias.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 99, + "UNK0": 6, + "STRING": "・The route to the guardhouse was blocked by a \nsturdy-looking door. To be honest, I thought it\nwas going to put an end to our rescue attempt...\n・...but just as we were wondering what to do,\nFie used a portable explosive to destroy the door.\nWe couldn't believe our eyes.\n・Fie explained that before enrolling at the academy,\nshe'd been a jaeger--a title given to only the\nstrongest mercenaries. Doesn't change the way we\nthink about her, though. She's still our friend.\n・With the door out of the way, we kept going.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 99, + "UNK0": 7, + "STRING": "・We eventually reached the underground prison\nwhere Machias was being held and successfully\nrescued him. Unfortunately, the provincial army\nrealized that we were there, and we were forced\nto fight them. But we won.\n・We thought that if we hurried, nobody would be\nable to catch up to us, and we'd get back safely.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 99, + "UNK0": 8, + "STRING": "・That confidence lasted until we heard roaring \ncoming from the direction of the underground\nprison. Still, we kept running and hoping.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 99, + "UNK0": 9, + "STRING": "・Before we could reach the exit, we were\nsurrounded by military monsters. We had no choice\nbut to fight them.\n・We were able to defeat the monsters, but our\nbattle gave the soldiers time to catch up to us.\n・When the soldiers came to arrest us, Jusis\nsharply rebuked them. The look on Machias' face\nwhen Jusis stood up for him was priceless.\n・The provincial army seemed determined to follow \nthrough on their threat, but from out of nowhere,\nRufus appeared. He talked down the provincial army,\nforcing them to withdraw.\n・Even more surprising was the fact that\nInstructor Sara was with him, but as it turns out,\nRufus is actually a member of the academy's\nboard of directors, so the two teamed up to\nrescue us. None of us saw that coming.\n・After a night of much-needed rest, we boarded\nthe train for Trista and left Bareahard behind.\n・On the train, Instructor Sara filled us in on a\nbunch of useful information, including the fact\nthat Group B was also caught up in the conflict\nbetween the two factions during their field study,\nand the fact that both factions were quietly\nexpanding their military capabilities. It makes\nme wonder what this means for us as military\nacademy students...\n・'Sometime, somehow, what you experience as part\nof Class VII will be an invaluable treasure to you.'\nInstructor Sara's words were quite unlike her,\nand more than a little cringeworthy, but it was\nclear that she genuinely meant them, which made\nthe moment...weirdly moving, in a way.\n・We'll just have to hold on to each other and\nsee what the future has in store.", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 100, + "UNK0": 0, + "STRING": "Academy Life - June", + "CATEGORY": "NONE", + "UNK1": "030000000000000000" + }, + { + "TYPE": "QSText", + "ID": 100, + "UNK0": 0, + "STRING": "#006c6/15 (Tue) After School\n・Tomorrow, the dreaded midterms will finally\nbegin. As icing on the cake, our individual\nscores, our ranking in our year, and even our class\naverages will be displayed for the world to see.\n・Once homeroom was over, everyone's stayed on\ncampus to study. I thought it wise to walk around\nand find someone to study with.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 100, + "UNK0": 1, + "STRING": "・I studied orbal science with Elliot and Machias.\nBattle orbments' key features are as follows:\n ・The orbal energy inside them replenishes over\n time.\n ・They synchronize with their user, strengthening\n their abilities and allowing them to use arts.\n ・Their capabilities change depending on what\n quartz are set inside them.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 100, + "UNK0": 2, + "STRING": "・I studied military science with Jusis and Gaius.\nI'm not used to all of these military symbols, but\nwe went over 'infantry,' 'headquarters,' 'armor,' and\n'engineer'... I'll have to make sure I've got them\nall down before the exams.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 100, + "UNK0": 3, + "STRING": "・I studied Erebonian history with Fie and Emma.\nThe War of the Lions concluded in year 952 of the\nSeptian Calendar. ...Questions involving years\nseem really likely to come up on the exam.\nHopefully Emma's method will work.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 100, + "UNK0": 4, + "STRING": "・I studied art with Alisa and Laura.\nWe asked each other questions on the following\ndrawing styles:\n ・Dessin - Using monochrome lines and differing \n brush techniques to draw an object and outline \n its tones.\n ・Sketch - Portraying a subject roughly, without \n much in the way of detail.\n ・Croquis - A faster, simpler form of sketching.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 100, + "UNK0": 5, + "STRING": "・Towa and Angelica taught me about political \neconomics. Apparently, the 'Financial Transactions\nAct,' 'Imperial Transportation Act' and\n'Provisional Taxation Act' are three recent and\nimportant laws. It might be good to note that the\n'Imperial Transportation Act' was enacted in\nHeimdallr before being introduced anywhere else.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 100, + "UNK0": 6, + "STRING": "・Crow and George helped me brush up on my\npractical skills. Apparently, the correct procedure\nto perform CPR is as follows:\n1) Check if the person is conscious.\n2) Call for help in a loud voice.\n3) Check if the person is breathing.\n4) Perform chest compressions and rescue breaths.\nThis is useful knowledge for more than just exams,\nso I'd better make sure I remember it.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 100, + "UNK0": 7, + "STRING": "・Instructor Makarov helped me review some\naspects of orbal science that I wasn't feeling\ngreat about.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 100, + "UNK0": 8, + "STRING": "・Instructor Mary helped me study some aspects\nof art that I wasn't feeling confident about.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 100, + "UNK0": 9, + "STRING": "・Instructor Thomas helped me study against my\nwill.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 100, + "UNK0": 10, + "STRING": "・Beryl prophesied what would come up on the orbal\nscience exam. She's definitely just guessing,\nI suppose it wouldn't hurt to keep it in mind.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 100, + "UNK0": 11, + "STRING": "・I studied with Linde and Vivi for a while.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 100, + "UNK0": 12, + "STRING": "・I learned a handy method of efficient\nmemorization by listening to Hugo and Becky argue.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 100, + "UNK0": 13, + "STRING": "・I read a book called 'Political Economics:\nA Primer' in the library.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 100, + "UNK0": 14, + "STRING": "・I read a book called 'Erebonian History in\nPictures' in the Literature Clubroom.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 100, + "UNK0": 15, + "STRING": "・I read a book called 'Erebonian Opera and\nPaintings' in the music room.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 100, + "UNK0": 16, + "STRING": "・I read a book called 'Military Science:\nA Primer' in the gymnasium.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 100, + "UNK0": 17, + "STRING": "・As I left the main building, I was greeted by a \nmysterious woman in a maid uniform. She seemed to\nknow my name, too...\n・I ran into Alisa, who was also on her way back to\nthe dormitory, so we decided to walk together. As\nwe walked, we talked about her family and Fie's\npast...but she seemed strangely interested in the\nwoman who greeted me earlier.\n#666c     ◆    ◆    ◆\n#006c6/16 (Wed) - 6/19 (Sat) Midterm Examinations\n・Our four days of midterm hell had finally\narrived. We were tested on all of our subjects:\nErebonian history, art, military science,\norbal science, political economics, and practical\nskills. Somehow, though, I managed to work my way\nthrough every the questions on every exam.\n・When we met for homeroom after it was all over,\neveryone was clearly exhausted. There was little\ntime for us to rest, though, since Instructor Sara\nhad already lined up a practical exam and field\nstudy for this month. I like to do a lot on my\nfree days, but tomorrow, I'm going to rest.\n・We were on our way back to the dormitory when,\nwe were greeted by the maid who spoke to me\nyesterday. Even more surprising, it turns out that\nshe's a servant of the Reinford family. As in,\nthe owners of Erebonia's largest heavy industry\ncompany. Who'd have thought Alisa would have\nall that clout?\n6/20 (Sun) Free Day\n・We began our free day by watching Alisa and\nSharon. I couldn't help but smile at how well\nthey got along (not that Alisa would ever\nadmit it).\n・I received a request from George and Angelica\nregarding the orbal bike. I decided to take care\nof that before going over to the schoolhouse.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 100, + "UNK0": 18, + "STRING": "・I finished the Engineering Club's request...\nOh, man... I really want to ride that bike again.\n・After that, I took care of my other tasks\nand made my way to the schoolhouse.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 100, + "UNK0": 19, + "STRING": "・This month's investigation confirmed that\nthe number of floors we can explore increases\nby one every month. It's almost as if someone\nor something is testing us...\n・It was so late by the time we were done that\ngoing to the dorm sounded very appealing.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 100, + "UNK0": 20, + "STRING": "・Instructor Sara and I both arrived back at the\ndorm around the same time. She seemed really\ntired, though. Where has she been, anyway?\n・Sharon met us with a warm welcome, but it\nhad the opposite effect on Instructor Sara\nthat it had on me. Do they know each other?\n・I checked my mailbox to find a letter from\nmy younger sister, Elise.\n・In her letter, she said she's having a great\ntime with school and is blessed with wonderful \nfriends. That's nice to hear. I'll have to write\nher a reply.\n・Tonight's Abend Time was focused on the various\nsummer festivals going on all over the country.\nIt sounds like the host, Misty, keeps herself busy.\n#666c     ◆    ◆    ◆\n#006c6/23 (Wed) AM - Midterm Exam Results Announcement\n・During our lunch break, the long-awaited,\nlong-feared midterm results were announced.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 100, + "UNK0": 21, + "STRING": "I scored 7th highest in the year.\nI don't think I could have done any better!", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 100, + "UNK0": 22, + "STRING": "I scored the 15th highest in the year.\nI'll take it--I'm happy with that!", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 100, + "UNK0": 23, + "STRING": "I scored the 35th highest in the year.\nCould've been worse, could've been better.", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 100, + "UNK0": 24, + "STRING": "I scored the 52nd highest in the year...\nI've got to rethink my study habits...", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 100, + "UNK0": 25, + "STRING": "・I was happy to see that Class VII had a higher \naverage score than Class I, making us the highest\nscoring first-year class. All that studying\neveryone did really paid off!\n#666c     ◆    ◆    ◆\n#006c6/23 (Wed) PM - Practical Exam\n・Our first practical exam after the midterms\npitted us once again against the readjusted combat\nshell. ...Looking at it reminded me of that silver \nobject we saw in the sky near Bareahard.\n・Before we could fight it, however, Patrick of \nClass I showed up challenged us to a battle in\nthe most irritating way possible.\n・Instructor Sara didn't skip a beat, though, and\ntold Elliot, Machias, Gaius, and me to fight Patrick\nand three of his friends four on four.", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 100, + "UNK0": 26, + "STRING": "・Patrick's a challenging opponent, but we took \nhim down with style, putting all of the skills\ndeveloped during our time at the academy to use.", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 100, + "UNK0": 29, + "STRING": "・It was a challenging fight, but we used of all\nthe skills we've developed during our time at\nthe academy to beat him fair and square.", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 100, + "UNK0": 27, + "STRING": "・It wasn't pretty, and you wouldn't think we\nwere military academy students if you saw it,\nbut we barely managed to squeak out a victory.", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 100, + "UNK0": 28, + "STRING": "・Patrick couldn't bring himself to accept his\ndefeat, though, and burst into an abusive tirade.\n・As he did so, Gaius pointed out a fundamental \nproblem in the Empire's class system, which made\nus all stop and think about what it means to be\na citizen of Erebonia.\n・Patrick eventually slunk off, looking thoroughly\nunsatisfied. Once he left, we were told where we\nwould be heading for our next field study.\n・The groups and their destinations this month\nare be as follows:\n\nGroup A: Rean, Alisa, Emma, Jusis, Gaius\n(Study Location: Nord Highlands)\n\nGroup B: Machias, Elliot, Laura, Fie\n(Study Location: Bryonia Island)\n\nLooks like I'll be going to the Nord\nHighlands, a foreign land to the northeast\nof the Empire, and Gaius' home.", + "UNK1": 1 + }, + { + "TYPE": "QSTitle", + "ID": 101, + "UNK0": 0, + "STRING": "Journey to a Foreign Land", + "CATEGORY": "NONE", + "UNK1": "030000000000000000" + }, + { + "TYPE": "QSText", + "ID": 101, + "UNK0": 0, + "STRING": "#006c6/26 (Sat) Field Study at Nord - Day 1\n・I woke up this morning dreading the eight-hour\ntrain ride ahead of me. The plan was to be in\nthe highlands by the evening, but getting there\nwasn't going to be easy.\n・Fortunately, when we were about to leave,\nSharon announced that she'd packed all of us very\ntasty-looking breakfasts. Alisa wasn't sure how\nto react, but knowing I had something to eat on the\nlong train ride ahead brightened my day. After\nthat, we went straight to the station.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 101, + "UNK0": 1, + "STRING": "・At the station, we met up with Group B and\nwe all bought our tickets.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 101, + "UNK0": 2, + "STRING": "・Both Group A and Group B boarded the train to\nHeimdallr and we all started into our breakfast.\nIt was interesting to have everyone on one train.\n・...Laura and Fie seemed to be more than a little\nuncomfortable in each other's presence, though. \nHopefully, that doesn't cause any problems for\nGroup B on this field study...\n・It wasn't long before we reached Heimdallr, and\nboth groups went their separate ways. As we\nboarded a second train to Roer, I hoped that\nGroup B would be able to handle what was going on\nbetween Laura and Fie.\n・On the train, Gaius told us everything there\nwas to know about the Nord Highlands. As the name\nimplies, the highlands are a vast, open area\nof...high land. So high, in fact, that we needed\nto cross the Eisengard Range to the north of Roer\nto reach them. The highlands are also known for\nbeing the source of the Imperial Army's war\nhorses, so Nord and Erebonia have historical ties.\n・Once we arrived at Roer, we needed to cross to\nplatform 4 to board yet another train.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 101, + "UNK0": 3, + "STRING": "・However, as we were changing platforms, we\nencountered none other than Sharon. Apparently,\nshe'd taken an airship here, which allowed her to\nget ahead of us. Not only that, she came with\npacked lunches in tow, which we gladly accepted.\n・It turns out she was in Roer on a request from \nIrina Reinford--her employer and Alisa's mother. \n・Irina revealed that she, like Rufus, is a member\nof the academy's board of directors, and that's\nshe also directly involved in the development of\nARCUS and the orbal staff. Alisa was clearly upset\nthat her mother had been one step ahead of her the\nwhole time, but Irina paid her no mind and walked\noff to resume her work.\n・We transferred to the train to Nord and started \neating the lunches that Sharon had prepared for\nus. I do feel for Alisa, but our field study\nneeds to be our main priority right now.\n・After traveling through a countless number of\ntunnels, we finally reached Zender Gate, a\nmilitary base at the southern edge of the Nord\nHighlands. \n・There we were greeted by a storied lieutenant\ngeneral known as One-Eyed Zechs. He was a\nVander, part of the family who personally guards\nthe Imperial family. His age didn't undermine his\nimpressiveness one bit.\n・He led us out of the fortress, and we were\ngreeted by a spectacle beyond our imagination.\n・After he gave us a map of the highlands and\nhorses to ride, we agreed to ride off for\nGaius' home to the northeast.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 101, + "UNK0": 4, + "STRING": "・We eventually came to a crossroads. We'd seen\na lot of curious landmarks on our way, but we\ndidn't have the time to admire them. We wanted\nto get to the settlement before sundown.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 101, + "UNK0": 5, + "STRING": "・We reached the settlement just as the sun set. \nThere, we received a warm welcome from Gaius'\nyounger brother, Thoma, his sisters, Lily and\nSheeda, and his father and mother, Lacan and Fatma.\n・They treated us to a nutritious dinner, and we\nfelt the exhaustion of our long journey begin to\nmelt away as we spent time with Gaius' wonderful\nfamily.\n・Apparently, this region isn't without its fair\nshare of political tensions, as Nord's positioned\nright between the Empire and the Calvard Republic.\nThey tried to tell us not to worry, though...\n・Lacan told us that he was the one responsible for\nchoosing our field study tasks, but that he would\ngive them to us tomorrow. Since it was getting late\nby then, we figured it was about time to turn in.", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 102, + "UNK0": 0, + "STRING": "Field Study at the Nord Highlands", + "CATEGORY": "NONE", + "UNK1": "030000000000000000" + }, + { + "TYPE": "QSText", + "ID": 102, + "UNK0": 0, + "STRING": "#006c6/27 (Sun) Field Study at Nord - Day 2\n・We woke up early, and, after enjoying a delicious \nbreakfast, received the envelope containing our\nfield study tasks. Our tasks for the morning are\nconcentrated around the southwest area of the\nhighlands. \n・The two mandatory tasks are the request from\nZender Gate and the request from the settlement's\ndoctor. We got started right away, putting the\nhorses we were borrowing to good use.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 102, + "UNK0": 1, + "STRING": "・We visited the stone circle in the southwest\npart of the highlands. Apparently, it's a relic of\nthe Neolithic civilization that lived here in the\nhighlands over a thousand years ago. I wonder\nhow they managed to build it...", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 102, + "UNK0": 2, + "STRING": "・We fulfilled the request from the settlement's\ndoctor!", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 102, + "UNK0": 3, + "STRING": "・We fulfilled the request from Zender Gate!", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 102, + "UNK0": 4, + "STRING": "・Once we'd finished all of the mandatory tasks\nfor the morning, we went back to Gaius' home to\nprepare for our afternoon tasks.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 102, + "UNK0": 5, + "STRING": "・After enjoying a fulfilling lunch together, Lacan\ngave us our tasks for the afternoon.\n・These requests had us going into the northern\npart of the highlands, significantly expanding the\narea we needed to cover. Our first order of\nbusiness: visiting the elder and helping him with\nhis request.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 102, + "UNK0": 6, + "STRING": "・Once we'd confirmed the particulars of the\nelder's request, we got to work on all of the\ntasks we'd been assigned that afternoon.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 102, + "UNK0": 7, + "STRING": "・We found ourselves before an ancient quarry.\nLegend says that there is an 'evil djinn' sealed\nthere--which is easy to believe given the\nforeboding atmosphere of the place.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 102, + "UNK0": 8, + "STRING": "・We couldn't go inside the quarry, but I'm pretty\nsure I felt a strange presence in there...", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 102, + "UNK0": 9, + "STRING": "・We arrived at Lake Lacrima. Home of...a hermit,\napparently.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 102, + "UNK0": 10, + "STRING": "・He wasn't in when we checked, though, so we got\nright back to work.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 102, + "UNK0": 11, + "STRING": "・We escorted Norton the cameraman back to the \nsettlement, only to learn that there had been a\ncar accident. \n・The man driving the car hadn't suffered any\nsignificant injuries, but it was still the only \norbal vehicle in the village, so it was a\nsignificant loss to have it out of commission.\nLuckily, Alisa took a look at it and deemed it\nreparable. \n・Lacan and Elder Ivan hurried to the scene and\nasked us to find someone who could repair it. We\ntook it in stride as yet another task on our field\nstudy.\n・They asked us to get in touch with an elderly\nhermit who knew his orbal technology. Apparently,\nhe's originally from the Empire, and now lives\nalongside Lake Lacrima.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 102, + "UNK0": 12, + "STRING": "We didn't see him there earlier, but he might be\nback. Doesn't hurt to make a return trip!", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 102, + "UNK0": 13, + "STRING": "Our next stop was Lake Lacrima, to the northwest\nof the statue of the Guardian. ", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 102, + "UNK0": 14, + "STRING": "・Once we'd arrived at the lake, we started\nlooking for the hermit.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 102, + "UNK0": 15, + "STRING": "・We arrived at the cabin, a carefree old man\nnamed Gwyn welcomed us inside. The cabin's\ninterior showed us that he was a man of his\nhobbies. Oh, but more importantly (and more\nshockingly), he's Alisa's grandfather!\n・We learned that Alisa's mother told him about\nhow we were going to be in Nord. Alisa's clearly\nhad something on her mind ever since then...\nCould it have something to do with Gwyn?\n・Gwyn left the cabin with Gaius, leaving the rest\nof us inside. We followed them out to the garage.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 102, + "UNK0": 16, + "STRING": "・Gwyn gathered his tools, and then we set off for\nthe settlement, with Gwyn riding with me.\n・On the way back, Gwyn told me that he thinks\nthe conflict between him and Irina is the reason\nAlisa tries to handle all of her problems herself.\nThat's why he never told her where he'd gone,\neither.\n・Gwyn was able to repair the orbal car, and the\nvillagers threw all of us a banquet. Partway\nthrough, Alisa stepped outside, and I followed\nafter her.\n・We lied on the grass and talked for a while,\nlooking up at the starry sky. We both have things\nwe need to get over, but at the same time, we're\nboth making progress and trying to moving forward.\nI'm glad I have someone to move forward with.", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 103, + "UNK0": 0, + "STRING": "Attack on the Watchtower", + "CATEGORY": "NONE", + "UNK1": "030000000000000000" + }, + { + "TYPE": "QSText", + "ID": 103, + "UNK0": 0, + "STRING": "#006c6/28 (Mon) Field Study at Nord - Day 3\n・Just as we were finishing our breakfast, Elder\nIvan hurried in with urgent news: the Imperial\nArmy watchtower had come under attack the night \nbefore. To make matters worse, the Republican\nArmy's base had been attacked as well.\n・Preparing for the worst, the people of Nord\nstarted getting ready to move the settlement. We\nknew we had to go and find out what we can about\nthe situation from Lieutenant General Vander.\nWe gathered our things and headed southwest to\nZender Gate.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 103, + "UNK0": 1, + "STRING": "・Even though we didn't have time for any detours,\nNorton tagged along with us.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 103, + "UNK0": 2, + "STRING": "・Once we arrived at Zender Gate, Norton left to\nstart gathering information, and we went to talk \nto Lieutenant General Vander. We were truly\nstanding on the brink of war with Calvard, and\nthe events of the following few hours would\ndetermine the course of history.\n・There was a lot about the situation that didn't\nadd up, especially the Republican Army's base was\nbeing attacked as well, but the lieutenant general\ntold us he was prepared for the possibility of\narmed conflict regardless. \n・Lieutenant General Vander asked us to leave\nNord, but we managed to persuade him to let us\nstay to investigate what happened.\n・As we rode to the watchtower, Gaius told us\nwhy he enrolled at Thors Military Academy. We\ncan't allow war to ravage his homeland. Not now,\nnot ever.\n・The watchtower was in a terrible state when we\narrived. We only had until just after noon to\nconduct our investigation, so we hit the ground\nrunning.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 103, + "UNK0": 3, + "STRING": "・The Republican base also took significant damage.\nIt's hard to believe that Calvard would really do\nthat just to deflect suspicion...", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 103, + "UNK0": 4, + "STRING": "・Most of the damage to the watchtower was on\nits south side...which meant the attack came\nfrom the highlands themselves.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 103, + "UNK0": 5, + "STRING": "・Alisa looked at a piece of scrap metal at the\nscene and concluded that it was a shell fired by\nan orbal mortar made by the Reinford Company.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 103, + "UNK0": 6, + "STRING": "・One of the soldiers mentioned that he saw\nfire coming from the Republican Army base at\nabout the same time the watchtower was attacked.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 103, + "UNK0": 7, + "STRING": "・Putting all of the information we've gathered \ntogether, it seemed unlikely that either the\nImperial or the Republican Army was responsible\nfor the attacks. Unfortunately, however, we had\nno solid evidence to back up that claim.\n・Emma proposed using Alisa's knowledge of\nReinford's weaponry and Gaius' knowledge of the\nregion to narrow down the area where the mortar\ncould have been fired, hoping we'd be able to\nfind evidence strong enough to prevent a war.\n・We left the watch tower and set about\nexploring the southwest area of the highlands.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 103, + "UNK0": 8, + "STRING": "・Emma narrowed down the area that the mortar\nmust have been fired from and we started\nlooking for anything suspicious around there.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 103, + "UNK0": 9, + "STRING": "・We discovered a rope ladder, clearly positioned\nso that people wouldn't notice it when going past. \nThat fit the suspicious bill, all right.\n・Emma proposed that Alisa try to use her bow to\nknock the ladder down. We didn't have the highest\nhopes, but she got it somehow, and we climbed up.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 103, + "UNK0": 10, + "STRING": "・There we discovered several Reinford orbal\nmortars. Alisa's analysis was right on the money.\n・It wasn't nearly enough evidence to stop a war,\nbut we thought it important enough to report to\nthe lieutenant general nonetheless.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 103, + "UNK0": 11, + "STRING": "・Once we'd climbed back down, we spotted the\nsilver object we'd seen near Bareahard go flying \npast. There was no way that could be a\ncoincidence, so we chased after it.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 103, + "UNK0": 19, + "STRING": "・We were able to pursue the flying object to the\nstone circle and climbed up the plateau for a\ncloser look...", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 103, + "UNK0": 20, + "STRING": "・We were finally able to catch up with it at the\nstone circle and climbed up the plateau for a\ncloser look...", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 103, + "UNK0": 12, + "STRING": "・That brought us face to face with the silver\nobject and the very young girl riding it. She\nseemed to know all about us, though, and asked\nfor our help with something.\n・Somehow controlling the silver object--\napparently called Airgetlam--Millium challenged\nus to a battle to test our strength.\n・We were able to withstand her onslaught, and \neventually she decided to accept that we were up\nto the task. Then she told us what the task WAS:\nassisting her with arresting an armed group of\njaeger dropouts who were responsible for the\nattacks on the military bases. She'd worked out\nthat they're currently located somewhere in the\nnorthern area of the highlands.\n・We accepted, and she joined our group. Before\nanything else happened, though, we wanted to go\nback to the settlement and contact Zender Gate.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 103, + "UNK0": 13, + "STRING": "・We saw a Republican Army airship flying over the\nsettlement. It felt like we were running out of time.\n・We updated Lieutenant General Vander on our\nprogress and received permission to attempt\nto arrest the jaeger dropouts.\n・We heard that they were hiding out in the ancient\nquarry behind the giant statue in the northern\npart of the highlands. We didn't waste a minute.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 103, + "UNK0": 14, + "STRING": "・When we arrived at the ancient quarry, our path\ninside was blocked by a heavy stone door. Millium\nseemed to have a plan...", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 103, + "UNK0": 15, + "STRING": "・...but it was just Airgetlam smashing the door\nto pieces in a single strike. Heck of a plan.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 103, + "UNK0": 16, + "STRING": "・There was something peculiar about the air in\nthe ancient quarry. Emma explained that it was due\nto the 'higher elements' being active there. We\nproceeded through the quarry with caution.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 103, + "UNK0": 17, + "STRING": "・As we got deeper in, we heard the sounds of an\nargument. We readied our weapons, just in case.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 103, + "UNK0": 18, + "STRING": "・In the depths of the ruin, we found our\nculprits and the bespectacled man who hired them.\n・The man's name was Gideon, or G as his comrades\napparently call him, and he was responsible for\nnot only the attacks on the military bases, but\nalso what happened back in Celdic.\n・He didn't intend to let us live after we learned\nthe truth, leaving us with no choice but to fight back.\n・We overpowered the armed thugs, but Gideon took\nour a strange flute and began to play an eerie\ntune. The next moment, the legendary evil djinn\n--a giant, ancient spider--appeared to answer the\nflute's call.\n・Gideon took the chance to escape, leaving us to\nfight off the spider. It was a grueling battle,\nbut we all survived.\n・We were able to capture the culprits...but we were\nstill too late. We were powerless to stop the\ninevitable conflict.\n・Just when we thought all hope was lost, Lechter,\na captain of the Imperial Army's Intelligence\nDivision, arrived to help.\n・Thanks to Lechter and Millium, who turned out\nto be Ironbloods bearing the names 'Scarecrow'\nand 'White Rabbit' respectively, war with Calvard\nwas successfully averted. \n・Our field study at the Nord Highlands came to\na peaceful end, and we bade farewell to Gaius'\nfamily, Gwyn, and Lieutenant General Vander,\nthanking them for all they had done for us.\n・We overcame all of our problems on this study by\nworking with people from all sorts of different\nhistories and beliefs... Maybe that's what these\nstudies are all about. Either way, we'll have to\nmake sure to keep learning and growing so that we\ncan make everyone here proud next time we meet.", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 104, + "UNK0": 0, + "STRING": "Academy Life - July", + "CATEGORY": "NONE", + "UNK1": "040000000000000000" + }, + { + "TYPE": "QSText", + "ID": 104, + "UNK0": 0, + "STRING": "#006c7/17 (Sat) After School\n・I raced Instructor Sara and Gaius during\ntoday's swimming lesson.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 104, + "UNK0": 1, + "STRING": "I put everything I had into both races and won!", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 104, + "UNK0": 2, + "STRING": "I swam as hard as I could and was able to beat\nGaius, but not Instructor Sara.", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 104, + "UNK0": 28, + "STRING": "I swam as hard as I could, but I still came in\ndead last during the second race...", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 104, + "UNK0": 3, + "STRING": "・After our race, we watched Laura and Fie race\neach other. Fie tore down the pool, but Laura\nmanaged to win by a nose. She still didn't seem\nsatisfied, however.\n・During homeroom after school, we discussed\nHeimdallr's Summer Festival. Apparently, it's held\nin July to commemorate the end of the War of\nthe Lions.\n・Everyone seemed to expect me to do something\nabout the tense situation between Laura and Fie...\nStill, there's not much that I can do about it.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 104, + "UNK0": 4, + "STRING": "・I thought I heard someone talking on the field...", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 104, + "UNK0": 5, + "STRING": "・Behind the storehouse, I found Emma looking after\nthe beautiful black cat that scratched my hand a\nwhile back. I learned her name is Celine.\n・I said goodbye to Emma, who was returning to\nTrista to give Celine back to her owners. I wish\nshe'd bond with me like that... Celine, not Emma.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 104, + "UNK0": 6, + "STRING": "・As I walked through the front gate, I was\nstopped by Instructor Neithardt, who gave me some\ncriticism about last month's field study. I can't\nlet myself get lazy--I need to work harder.\n・Just as he was about to tell me about Instructor\nSara's past, she came out of nowhere and started\narguing with him. Those two get along like cats\nand dogs...\n・Then came Instructor Thomas from out of nowhere,\nwho, completely unperturbed by their obvious\ndislike of his company, led them both off to\ndrink with him. ...He's much more formidable than\nI thought. I better not let my guard down around\nhim.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 104, + "UNK0": 7, + "STRING": "・I decided to walk around the dormitory for a\nwhile before going to sleep.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 104, + "UNK0": 8, + "STRING": "・That night, I heard the sound of something\ncrying inside the dormitory. It sounded like it\nwas coming from the third floor, so I went to\ntake a look.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 104, + "UNK0": 9, + "STRING": "・The source of the crying was a cat Emma was\ntaking care of in her room--the same cat that\nscratched me a while ago. I learned her name is\nCeline.\n・After a little chat, I left Celine to Emma and\nwent back to my room.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 104, + "UNK0": 10, + "STRING": "#666c     ◆    ◆    ◆\n#006c7/18 (Sun) Free Day\n・This morning, as usual, a number of requests\narrived for me to complete. The only mandatory one\nwas the exploration of the old schoolhouse, but\nI tried to do the others before I headed over.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 104, + "UNK0": 11, + "STRING": "・As I walked towards the old schoolhouse,\nPatrick came to stop me. He's still chewing over\nwhat happened during our practical exam last\nmonth... Maybe he's not as bad as I thought he was.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 104, + "UNK0": 12, + "STRING": "・We finished this month's exploration of the old\nschoolhouse. I'm curious about the red door that\nappeared on the fourth floor, but all I wanted\nto do then was go back to the dorms.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 104, + "UNK0": 13, + "STRING": "・As we approached the front gate of the academy,\nwe ran right into Elise.\n・She came all the way here from Heimdallr because\nshe objected to something I wrote to her in my\nlast letter.\n・When I told her that I wasn't going to change my\nmind about leaving home, she got really angry and\nran away. I even saw tears in her eyes.\n・We all agreed to split up and start looking for her.\nI needed to find her, no matter what.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 104, + "UNK0": 14, + "STRING": "・Towa and Angelica agreed to help search, too.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 104, + "UNK0": 15, + "STRING": "・I found Fie searching around the field for\nElise and left that area to her.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 104, + "UNK0": 16, + "STRING": "・I found Laura searching for her in the gymnasium. \nI stopped to talk to her for a few moments,\nand she made me realize an unpleasant truth.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 104, + "UNK0": 17, + "STRING": "・Unable to find her on campus, I tried to search\nfor her in town until Crow stopped me.\n・Crow saw Elise with Patrick on the path behind\nthe main building which leads to the old\nschoolhouse. He agreed to show me the way as I\nstarted getting overcome by dread. \n・We found Patrick standing alone in front of the\nold schoolhouse. Worse yet, we also found the door\nunlocked. Elise had gone inside.\n・The three of us raced in after her, and when we\nreached the fourth floor, we found Elise lying on\nthe ground in front of a giant suit of armor. Suddenly,\neverything went red.\n・Driven by an uncontrollable impulse, I started\nfighting the suit of armor--but I wasn't willing\nto let myself be consumed by my 'power,' so I did\nall that I could to suppress it.\n・Fortunately, Crow came to my aid. Leaving Patrick\nto take care of Elise, Crow and I fought the suit\nof armor together.\n・After a vicious battle, the armor finally fell.\nElise was unharmed, too. Thank goodness...\n・Afterwards, my classmates, George, Towa, and \nInstructor Sara arrived, and everything went back\nto normal.\n#666c     ◆    ◆    ◆\n#006c7/19 (Mon) AM - Trista Station\n・After a night of rest at our dormitory, the time\ncame for Elise to board the train to return to \nHeimdallr.\n・We couldn't help but ponder the meaning of the\nwords Elise heard when she stood in front of the\nred door and how the suit of armor worked...but no\nmatter how much we thought about it, it didn't\nbring us any closer to the truth.\n・Either way, there definitely seems to be\nsomething lurking within the old schoolhouse--\nand despite Instructor Sara's objections, we\nresolved to continue our investigation of it.\n・Everything that happened allowed me to realize\nthat, while I still have a long way to go, I'm\nslowly developing as a person during my time here. \nI'm still not sure what to do about taking after\nmy dad...but I hope to one day be able to give an\nanswer that will satisfy everyone.\n・We saw Elise off, promising to meet again in the\nnear future.\n#666c     ◆    ◆    ◆\n#006c7/21 (Wed) Practical Exam\n・Having completely recovered from the incident a\nfew days prior, I took part in this month's\npractical exam as I normally would.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 104, + "UNK0": 18, + "STRING": "I paired up with Alisa, and together, ", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 104, + "UNK0": 19, + "STRING": "I paired up with Elliot, and together, ", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 104, + "UNK0": 20, + "STRING": "I paired up with Machias, and together, ", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 104, + "UNK0": 21, + "STRING": "I paired up with Emma, and together, ", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 104, + "UNK0": 22, + "STRING": "I paired up with Jusis, and together, ", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 104, + "UNK0": 23, + "STRING": "I paired up with Gaius, and together, ", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 104, + "UNK0": 24, + "STRING": "we fought against Laura and Fie in a mock battle.", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 104, + "UNK0": 25, + "STRING": "・We fought well together, defeating Laura and\nFie with ease and earning a high grade.", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 104, + "UNK0": 28, + "STRING": "・We fought well together, successfully defeating\nLaura and Fie and earning a relatively high grade.", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 104, + "UNK0": 26, + "STRING": "・We barely defeated Laura and Fie, earning a\nrelatively mediocre grade for our efforts.", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 104, + "UNK0": 27, + "STRING": "They definitely didn't seem to be at their best,\nthough... I really wish we could do something to \nimprove their relationship with one another.\n・Afterwards, our groups and destinations for this\nmonth's field study were announced. They are:\n\nGroup A: Rean, Laura, Fie, Machias, Elliot\n(Study Location: Heimdallr, the Vermillion Capital)\n\nGroup B: Alisa, Emma, Jusis, Gaius\n(Study Location: Heimdallr, the Vermillion Capital)\n\nSurprisingly, this month all of us will be going\nto Heimdallr, where the Summer Festival will soon\nbe taking place.\n・It's becoming increasingly clear that I'm being\nused...", + "UNK1": 1 + }, + { + "TYPE": "QSTitle", + "ID": 105, + "UNK0": 0, + "STRING": "The Vermillion Capital", + "CATEGORY": "NONE", + "UNK1": "040000000000000000" + }, + { + "TYPE": "QSText", + "ID": 105, + "UNK0": 0, + "STRING": "#006c7/24 (Sat) Field Study at Heimdallr - Day 1\n・Elliot, Machias, and I decided to gather before\nLaura and Fie arrived to discuss what to do about\nthem, but we couldn't come up with any ideas.\n・The two of them seemed determined to sort out\ntheir issues during this field study on their own, \nthough.\n・With the Fie-Laura problem fresh in our minds,\nwe headed off to the station.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 105, + "UNK0": 1, + "STRING": "・We reunited with Group B at the station and\nheaded off to purchase our tickets.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 105, + "UNK0": 2, + "STRING": "・Both groups boarded the train together, and\nMachias and Elliot told us more about Heimdallr.\nIt's one of the largest cities on the continent,\nbut luckily for us, Instructor Sara arranged\nfor a guide to meet us when we arrived.\n・Before long, we reached Heimdallr, where we\nfound Captain Claire of the Railway Military\nPolice waiting for us and, in addition, Machias'\nfather, Governor Regnitz.\n・He told us that, like Rufus and Chairman Irina,\nhe is also a member of the academy's board of \ndirectors, so it fell to him to organize our field\nstudy tasks and arrange for a place for us to\nstay.\n・Our field study will take three days, with the\nthird coinciding with the first day of the Summer\nFestival. My group, Group A, will be focusing on\nthe area to the east of Vainqueur Street.\n・The governor gave us a piece of paper with an\naddress written on it, as well as a key, and\nasked us to find our lodgings ourselves. ...He's\npretty playful for a governor. \n・We parted ways with Group B, and boarded\nthe tram for Alto Street.\n・When we arrived, we visit Elliot's house before\nstarting to look for our lodgings. It was a\ntwo-story house facing out onto the road.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 105, + "UNK0": 3, + "STRING": "・Elliot's older sister, Fiona, welcomed us into\ntheir house with open arms, much to Elliot's\nembarrassment.\n・As it turns out, Elliot's father is the famous\nCraig the Red, commanding officer of the 4th \nArmored Division. That's how Elliot knew\nInstructor Neithardt before he attended the\nacademy.\n・We asked Fiona about the address we were given,\nand she told us that it's a former guild branch,\nwhere an old friend of hers used to work. \n・After promising that we would return for dinner \nthis evening, we left to find our lodgings.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 105, + "UNK0": 4, + "STRING": "・We used the key the governor had given us to\nenter the former Bracer Guild branch, and found\nthat it's currently owned by the local government.\n・We put our belongings in our rooms and set about\nreading the envelope containing our tasks that we\nwere given by the governor.\n・We should get started on our tasks right away.\nThere are three mandatory ones that we need to \ncomplete... We should try and tour all the districts\nwe've been assigned while working through them.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 105, + "UNK0": 5, + "STRING": "・We ran into Group B in Dreichels Plaza and\nexchanged information. Turns out they're in an\nold guild branch, too.\n・We agreed to call each other when we're at a\ngood point to stop for lunch, so we could eat\nand talk about what we've been up to.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 105, + "UNK0": 6, + "STRING": "・We fulfilled the request from Norton!", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 105, + "UNK0": 7, + "STRING": "・We fulfilled the request from Jasmine!", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 105, + "UNK0": 8, + "STRING": "・We had a request from the owner of a hotel in\nthe Garnier District, but he wasn't in when we\nchecked... We had to leave it until later.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 105, + "UNK0": 9, + "STRING": "・We met up with Group B at the department store\non Vainqueur Street, and had a great lunch\ntogether. Even though I felt like Laura and Fie\ncould work through their own issues, things\nweren't exactly comfortable between them...\n・We separated with Group B and got back to our\nrespective tasks. Hoping the hotel owner had\nreturned, we made our way back to the Garnier\nDistrict.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 105, + "UNK0": 10, + "STRING": "・As we were being informed of the details of our\ntask at the hotel, a woman in a beautiful dress\ncalled out to us. She was an opera singer by the\nname of Vita Clotilde, also known as the Azure\nDiva.\n・After giving us a little encouragement, she left\nfor a rehearsal. \n・After pacifying Elliot and Machias, who were more \nthan a little excited to have met her, we set off\nto exterminate the monster in the underground\npassage.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 105, + "UNK0": 11, + "STRING": "・We were able to exterminate the monster in the\nunderground passage, but Laura and Fie were\nunable to form a combat link.\n・This was getting on my nerves. They're not\nfundamentally incompatible--there just seems to\nbe something getting in the way of the two of them\nclicking with each other. I decided to withdraw\nfrom the front line so that they could work\ntogether and figure out what it was.\n・After that, we started heading back to the hotel.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 105, + "UNK0": 12, + "STRING": "・On the way back, Elliot heard the sound of a\nsonata in the distance. \n・Fie found the entrance to a hidden passage\nconnected to the surface. The only problem was\ngetting it open.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 105, + "UNK0": 13, + "STRING": "・We were able to open the entrance to the hidden\npassage and see where it led to.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 105, + "UNK0": 14, + "STRING": "・The passage led us right into Mater Park.\n・Conveniently enough, the people playing the\nsonata were actually old friends of Elliot's,\nso we decided to go introduce ourselves.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 105, + "UNK0": 15, + "STRING": "・Apparently, Elliot's friends all go to the Music\nAcademy here. He seemed kind of conflicted when\nhe ran into them, but since it was getting dark, our\nmeeting was cut a bit short as we wanted to\nreturn to the hotel. Once we reported our\nprogress, we headed over to Elliot's house.\n・After enjoying a delicious dinner prepared by\nFiona, we were shown up to Elliot's room, which\nwas full of instruments. There, he told us that\nhis mother was a pianist, and about how he had\noriginally wanted to attend the Music Academy, too.\nHe ultimately was forced to abandon that dream\nand come to Thors instead.\n・Despite all this, he said without the slightest\nhint of embarrassment that he was glad that he\nchose to come to Thors, because it allowed him\nto meet all of us.\n・While we were walking back to the guild, Laura\nand Fie came to the conclusion that the best way\nto work out their issues was with a duel against\none another, as soon as possible.\n・Dragging Machias and me along, they boarded a\ntram to Mater Park.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 105, + "UNK0": 16, + "STRING": "・We returned to Mater Park. Laura and Fie's\nbattleground: the gazebo we passed through earlier.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 105, + "UNK0": 17, + "STRING": "・Laura and Fie prepared to battle in a quiet area\nof the park. They revealed how they really felt\nabout one another and agreed that if Fie lost\nthe duel, she would tell Laura about her past.\n・The battle ended in a draw, but Fie declared that\nshe was at an advantage thanks to the cover of\nnight, and therefore, it should be counted as her\nloss. \n・Fie told us that as a child, she was part of the\nZephyr corps, and she lived on the battlefield\nas long as she could remember, earning the\nnickname 'Sylphid' for her work.\n・With Fie's past revealed, Laura and Fie finally\nfelt as though they could understand one another \nand wanted to test if they could form a combat\nlink right away...against Machias and me.\n・They were more than successful and destroyed\nthe two of us in battle. Unfortunately, the noise\nattracted a little unwanted attention from the\nHeimdallr Military Police... Still, it was worth\nit to see Laura and Fie finally link with one\nanother.", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 106, + "UNK0": 0, + "STRING": "The Vermillion Capital 2", + "CATEGORY": "NONE", + "UNK1": "040000000000000000" + }, + { + "TYPE": "QSText", + "ID": 106, + "UNK0": 0, + "STRING": "#006c7/25 (Sun) Field Study at Heimdallr - Day 2\n・The morning of the second day of our field study\ncame, and after eating breakfast at Elliot's\nhouse, we got working on our tasks.\n・We thought it'd be best to save the monster\nextermination at Heimdallr Port until last.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 106, + "UNK0": 1, + "STRING": "・We exterminated a monster in an underground \nwaterway under Heimdallr Port. Laura and Fie\nwere getting along perfectly now, too. Then\nwe went back to the port and gave our report.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 106, + "UNK0": 2, + "STRING": "・On our way back, we found the entrance to a\nhidden passage, just like one we explored\nyesterday. We decided to try to open it.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 106, + "UNK0": 3, + "STRING": "・Once we did, we went in to see where it led.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 106, + "UNK0": 4, + "STRING": "・We found ourselves in the Ost District, where \nMachias' house is. These underground passages\ncan really take you anywhere! \n・We heard a chime, indicating that it was noon, \nand decided to stop by Machias' house to have \nlunch.\n・After treating us to some fancy coffee, Machias\ntold us about the reason he came to hate the \nnobility: the death of his cousin.\n・It seems as though the time he's spent as part\nof our class has allowed him to start to change\nhis perspective on the nobility, however, even if\nhe's not going to get along with Jusis any time\nsoon. Still, we all appreciate him telling us all of\nthis.\n・As we left Machias' house, Governor Regnitz\ncalled and asked us to take on an extra request.\nThere had been a theft at a jewelers in the\nGarnier District. We reported on our monster \nextermination and hoofed it over there.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 106, + "UNK0": 5, + "STRING": "・We were able to recover the Crimson Tiara from \nPhantom Thief B. He still has plenty of mysteries\nsurrounding him, though, not least of which is why\nhe chose to specifically nominate us.\n・After returning the tiara, I received a call from\nInstructor Sara, telling us to go to St. Astraia\nGirls' School.\n・I had no idea what was waiting for us, but as\nsoon as we'd finished everything we needed to do,\nwe caught a tram to the Sankt District.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 106, + "UNK0": 6, + "STRING": "・While we were talking in front of the gate to St. \nAstraia, the members of Group B appeared. \n・As the chime to signal 5 o'clock rang, Elise\nwalked out to greet us. Apparently, she knew\nthe person who called us to the academy.\n・We were led to an indoor garden, where we found\nnone other than the princess of Erebonia, Princess\nAlfin, waiting for us.\n・It turns out that she, too, invited us on someone\nelse's behalf, however--Prince Olivert Reise Arnor,\nchairman of Thors' board of directors.\n・Apparently, Prince Olivert was the one responsible \nfor Class VII in the first place. He told us that\nour field studies were intended to allow us to see\nthe many obstacles and conflicts that exist in the\nEmpire and encourage us to face them head on,\nwithout looking away. His words cleared up some\nof the doubts in our minds.\n・We were also shocked to find out that our \ninstructor, who was chosen by the principal to\nsupport us, was once an A-rank bracer with the\nnickname 'Purple Lightning.'\n・Princess Alfin also invited me to dance with her\nat the garden party...but I'm pretty sure she was\njust teasing me. I didn't just lose my chance to\nmarry into the royal family, did I? No. Couldn't\nhave. Let's not be silly here.\n・After parting ways with Elise at the gate, we ran\ninto Instructor Sara and Captain Claire. Captain\nClaire told us that the Railway Military Police\nhas something they want us to help with in place\nof our field study tasks tomorrow.\n・We were informed that the terrorists, one of whom\nwe met in the Nord Highlands, are planning to do\nsomething during the Summer Festival. The captain\nproposed that we serve as a reserve force as part\nof the security measures. Naturally, we agreed.\n・We returned to the guild with Instructor Sara,\nwho told us about how the Bracer Guild stopped\noperating in the capital due to a brutal attack\nby the Jester jaeger corps.\n・After hearing her story, it was clear to us why\nshe doesn't think very highly of Chancellor \nOsborne and the Railway Military Police. \n・We finished writing our report and went to bed\nearly. Both groups have a long day tomorrow, and\nwe're going to need to contribute as much as\npossible to keeping this city safe.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 106, + "UNK0": 7, + "STRING": "・I awoke in the middle of the night to the sound\nof footsteps in the hallway. It sounded like\nsomeone went downstairs.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 106, + "UNK0": 8, + "STRING": "・I found Instructor Sara in front of the reception\ndesk downstairs, reminiscing about the past. It\nseems like the guild was really important to her.\n・We've got a busy day ahead of us tomorrow, so\nit's time for bed for real this time.", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 107, + "UNK0": 0, + "STRING": "Anti-Terrorist Measures at the Summer Festival", + "CATEGORY": "NONE", + "UNK1": "040000000000000000" + }, + { + "TYPE": "QSText", + "ID": 107, + "UNK0": 0, + "STRING": "#006c7/26 (Mon) Field Study at Heimdallr - Day 3\n・Today is the first day of the Summer Festival.\nWith Instructor Sara acting as our point of\ncontact, we began our anti-terrorist patrols.\nWe need to keep an eye out for anything\nsuspicious while we're walking around.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 107, + "UNK0": 1, + "STRING": "・Security at Valflame Palace is perfect.\nNothing to worry about there.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 107, + "UNK0": 2, + "STRING": "・Fie sensed something suspicious on Vainqueur\nStreet, so we kept that in the back of our minds.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 107, + "UNK0": 3, + "STRING": "・We ran into Crow at the department store. He\nwas all excited about some prize contest based\naround the Summer Races... What a surprise.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 107, + "UNK0": 4, + "STRING": "・We found something curious outside the\nunderground passage entrance in the Ost District.\nIt might not've been important, but we made note\nof it nonetheless.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 107, + "UNK0": 5, + "STRING": "・A resident of one of the apartments on Alto Street\nmoved out this morning. Moving out on the day of\nthe festival seemed strangely...off.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 107, + "UNK0": 6, + "STRING": "・We met Vita Clotilde a second time at the hotel\nin the Garnier District. She says that she saw\nsome suspicious people in an alley nearby.\n・She had to go to a banquet at the Imperial\npalace, though, so after wishing us luck with our\npatrols, she departed.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 107, + "UNK0": 7, + "STRING": "・We ran into Patrick at Mater Park. He'd been\ninvited to the garden party taking place there\nlater that day.\n・The Crystal Garden where it was taking place is\nbeing guarded by Imperial Guardsmen. It did feel\nlike we were overlooking something, though...", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 107, + "UNK0": 8, + "STRING": "・We informed the Imperial Guardsmen about a hole\nin their security--the passage under the hotel\nwhich leads to Mater Park. Once we had, we felt\nas though security there was perfect,", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 107, + "UNK0": 9, + "STRING": "・A number of laborers at Heimdallr Port quit all\nof a sudden. Considering the timing, it wasn't\nsomething we felt comfortable to ignore.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 107, + "UNK0": 10, + "STRING": "・We told Instructor Sara about our findings\nduring the morning's patrol.\n・We were then asked to watch over the limousine\ncarrying Princess Alfin to make sure she made it\nsafely to Mater Park.\n・We arrived at Vainqueur Street and prepared\nto board the tram to Mater Park.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 107, + "UNK0": 11, + "STRING": "・I noticed that Elise was with Princess Alfin in\nthe limousine. The princess must really trust her.\nKind of made me proud to be her big brother...\n・After watching to make sure they entered the\nCrystal Garden safely, we decided to get lunch\nand patrol our assigned districts again, finishing\nwith Dreichels Plaza.\n・The time seemed right for the terrorists to make\ntheir move, so we wanted to make sure that we\ndidn't miss a thing in Dreichels Plaza.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 107, + "UNK0": 12, + "STRING": "・We found Towa and Angelica visiting Heimdallr\nas well. They rode over here on the orbal bike...\nI'm actually kind of jealous.\n・As we were talking, Crow turned up. He was\ncrushed that Angelica won his much-desired prize.\n・All of a sudden, something caused the fountains in\nthe plaza to erupt. We assumed they were just a\ndiversion and ran straight to Mater Park.", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 108, + "UNK0": 0, + "STRING": "Pursuing the Terrorists", + "CATEGORY": "NONE", + "UNK1": "040000000000000000" + }, + { + "TYPE": "QSText", + "ID": 108, + "UNK0": 0, + "STRING": "#006c7/26 (Mon) Field Study at Heimdallr - Day 3\n・We arrived at Mater Park to find it teeming with\nmonsters. After making a dash to the Crystal \nGarden, we found Gideon leading a group of\nterrorists. \n・He used his mysterious flute to take control of\nthe monsters yet again, and used the chance to \ntake Elise and Princess Alfin away.\n・We cut down the monsters, but by then, the\nterrorists had already escaped into a\nnewly-revealed underground passage.\n・Leaving the Crystal Garden to Patrick, we took\noff after the terrorists.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 108, + "UNK0": 1, + "STRING": "・We found ourselves in one of the underground \npassages beneath the city. Instructor Sara hurried\nto the scene as we were following them, remaining\nwith us through our ARCUS units. We weren't going\nto let them get away!", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 108, + "UNK0": 2, + "STRING": "・We arrived in a Dark Ages catacomb underneath\nthe city, and we found evidence that the terrorists had\npassed through there. We knew it was only a matter\nof time before we met with them.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 108, + "UNK0": 3, + "STRING": "・We defeated a number of monsters ready to\nambush us. It seems as though Gideon was\ncontrolling them using his flute, which seems to\nbe an artifact. That was a problem we needed to\ndo something about.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 108, + "UNK0": 4, + "STRING": "・When we finally caught up to the terrorists,\nGideon ordered his men to put Elise and Princess\nAlfin to sleep before blowing the Demonic Flute\nyet again.\n・A gigantic skeletal dragon, a fiend from the Dark\nAges, answered its call and wasted no time in\nattacking us.\n・We destroyed it, though, and Gideon's disbelief\nover its defeat provided me with just the right\nopportunity to destroy his Demonic Flute.\n・Cornered, Gideon turned a blade on the princess.\nBefore he could make his move, though, three more\nterrorists appeared: a woman with an eyepatch \ncalled S, a scarred man called V, and a masked\nman called C.\n・C overwhelmed us with his skillful command of a \nweapon called a double saber--even three of us\ntogether didn't stand a chance against him.\n・They introduced themselves as the 'Imperial\nLiberation Front,' calling out their creed with\nan impassioned zeal: 'In our hearts, the flames\nof silent anger. In our hands, the hammer of\njudgment that shall topple the dictator.'\n・Just then, the Railway Military Police and \nInstructor Sara entered the scene, but the\nterrorists used an explosive to destroy the ruin\nwe were inside. While we were lucky enough to\nescape with the princess and Elise, we were\nunfortunately unable to capture the terrorists.\n#666c     ◆    ◆    ◆\n#006c7/29 (Thu) Valflame Palace\n・The Railway Military Police were able to quell\nthe confusion, and the rest of the three day\nSummer Festival was able to continue without\nincident. \n・When the morning came for us to depart, Elise\nand several members of the Imperial family came\nto see us off.\n・According to Prince Olivert, the Intelligence\nDivision is currently investigating the Imperial\nLiberation Front. Just who are they, I wonder?\n・As we were talking, Governor Regnitz and Princess\nAlfin's younger brother, Crown Prince Cedric,\narrived to wish us farewell, too.\n・And they weren't the only ones. Chancellor\nGiliath Osborne, the highest representative of\nthe Imperial government, came out to personally\ncongratulate all of us on our hard work.\n・The Chancellor had such a commanding presence,\nit was almost overwhelming. But it had to be more\nthan that--as he drew near, I felt the mark on my\nchest pulse in pain.", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 109, + "UNK0": 0, + "STRING": "Academy Life - August", + "CATEGORY": "NONE", + "UNK1": "050000000000000000" + }, + { + "TYPE": "QSText", + "ID": 109, + "UNK0": 0, + "STRING": "#006c8/18 (Wed) After School\n・We stood around talking about Chancellor Osborne,\nand the upcoming trade conference, the sweltering\nheat wearing us down all the while.\n・Eventually, Instructor Sara arrived and the \nmorning's homeroom began--with a surprise. We\nwere getting two new transfer students today.\n・The first was Crow. Apparently, he went crying to\nInstructor Sara about how he didn't have enough \ncredits to graduate, so that ended up getting him\nplaced in our class for the next three months.\n・The second was the girl who helped us at the Nord \nHighlands--the Intelligence Division agent\nMillium. As if this school couldn't get any weirder...\n#666c     ◆    ◆    ◆\n#006c8/21 (Sat) After School", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 109, + "UNK0": 1, + "STRING": "・I was asked a question on Erebonian history\nduring Instructor Thomas' class, and I was able\nto answer it correctly.", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 109, + "UNK0": 2, + "STRING": "・I was asked a question on Erebonian history\nduring Instructor Thomas' class, but I answered\nit completely wrong...", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 109, + "UNK0": 3, + "STRING": "・Both Crow and Millium seemed to have meshed\ninto our class without any problems, but it was plain\nto see that there was something behind their\naddition to our class. We wouldn't want to make\nthem feel unwelcome, but we should watch how\nthings develop very carefully.\n・After everyone else had left the classroom,\nI decided to get going.", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 109, + "UNK0": 4, + "STRING": "・As I did, I got a call from Towa. She asked me\nto collect Millium's student notebook from her, so\nI agreed to meet her in the Student Council room\non the second floor of the Student Union building.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 109, + "UNK0": 5, + "STRING": "・I dropped by the Student Council room and Towa\ngave me Millium's student notebook and some\nadditional information on how Crow and Millium\nended up in our class.\n・I was shocked to find out that Millium's transfer\nwas approved by His Majesty the Emperor himself.\n・Crow's transfer, on the other hand, was approved\nby the principal, who thought he would be able to\nprovide us with valuable support.\n・As we were talking, I received a call from \nInstructor Sara. She told me that Millium had gone\nmissing, and asked me to find her before she\ncaused any trouble.\n・I had my work cut out for me, so I called two\nof my classmates to help me find her.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 109, + "UNK0": 6, + "STRING": "・We found Millium at the stable on the academy \nfield. After riding a horse all over the place--\nwith Jusis still on it--she ran off somewhere...", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 109, + "UNK0": 7, + "STRING": "・We found Millium at the stable on the academy \nfield. After riding a horse all over the place--\nwith Paula still on it--she ran off somewhere...", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 109, + "UNK0": 8, + "STRING": "・Millium had run into the engineering building and \nwas looking at the bike with Angelica and George\nwhen we found her again.\n・She managed to get away from us, but George and\nAngelica seemed to have taken a liking to her.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 109, + "UNK0": 9, + "STRING": "・Next, we found Millium overlooking the pool in\nthe gymnasium. Without a moment's hesitation,\nshe dived over the railing of the second floor of the\nbuilding into the pool, giving us the slip as we\nran downstairs to catch her. Laura and Monica\ncouldn't believe their eyes, either.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 109, + "UNK0": 10, + "STRING": "・Next, we found Millium overlooking the pool in\nthe gymnasium. Without a moment's hesitation,\nshe dived over the railing of the second floor of the\nbuilding into the pool, giving us the slip as we\nran downstairs to catch her. Monica couldn't\nbelieve her eyes, either.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 109, + "UNK0": 11, + "STRING": "・Finally, we found Millium standing on the\nrooftop. She seemed all explored out for the day,\nso we escorted her back to the dorms before she\ncould get a second wind. Everything finally seemed\npeaceful...\n・...at least until she summoned Airgetlam out\nof thin air. It seems as though it's with her all\nthe time...\n・We arrived back at the dormitory to find Crow\nloafing around on the sofa. He said he's going\nto be living here with us from now on, and his\nroom will be the one across the hall from mine.\nI can see it getting really lively around here.\n・Both Crow and Millium seem excited to help with\nour exploration of the old schoolhouse tomorrow. \nI might just have to give them a ring.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 109, + "UNK0": 12, + "STRING": "・I decided to walk around the dormitory for a\nwhile before going to sleep.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 109, + "UNK0": 13, + "STRING": "#666c     ◆    ◆    ◆\n#006c8/22 (Sun) Free Day\n・Surprise, surprise, I awoke to another salvo of\nrequests. After Sharon saw me off, I got started.\n・I thought I should finish the Engineering Club's\nrequest before starting to explore the old\nschoolhouse, but other than that, I took the\nrequests in whatever order I pleased.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 109, + "UNK0": 14, + "STRING": "・Once I fulfilled the request from the\nEngineering Club, I moved on to the old\nschoolhouse.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 109, + "UNK0": 15, + "STRING": "・I fulfilled my promise to bring Crow and Millium\nalong for the investigation, but other than that,\nnot much happened this month.\n・Then came the rain. Lots and lots of it. We all\nran back to our dorm to take shelter.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 109, + "UNK0": 16, + "STRING": "・I returned to find Sharon preparing for dinner.\nShe needed some more ingredients, so I volunteered\nto go out and buy them for her.\n・After I finished buying everything I needed, a\nwoman called out to me. Much to my surprise, it\nturned out to be Misty, the host of Abend Time.\n・Her voice wasn't the only thing familiar to me,\nthough. She revealed that she's living a double\nlife as the opera singer Vita Clotilde, who we met\nback in Heimdallr. Turns out the radio host gig is\njust something she does for fun on the side. The\nrevelation left me speechless, but even more\nimpressed with her than I already was.\n・After parting ways with Misty, I returned to the\ndormitory and ran into Emma, who'd just returned\nherself.\n・A little bit of the lavender scent of Misty's\nperfume clung onto me, which led Emma to tease me\na little.\n・After Sharon finished preparing, we all enjoyed\na luxurious meal. Later, when I was reading the\nImperial Chronicle in my room, Abend Time came\non the air.\n・I didn't expect Misty to talk about our meeting\non the show, but she did, leaving me with a\nfeeling that I can't quite put into words here...\n#666c     ◆    ◆    ◆\n#006c8/25 (Wed) Practical Exam\n・This was our first practical exam with Millium\nand Crow in our class--as such, Instructor Sara\ncame up with the idea to dividing the whole class\ninto three teams and having us all fight one\nanother. ...Of course she did.\n・Crow, Millium, and I formed one team, the \nremaining boys a second, and the girls a third.\nWe were all pitted against each other, but only\none team would be declared the victor.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 109, + "UNK0": 17, + "STRING": "・In the end, Crow, Millium, and I were able to win\nboth of our matches. They weren't bad for new\nrecruits!", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 109, + "UNK0": 18, + "STRING": "・In the end, we won one of our matches but lost\nthe other. Everyone in the class fought really well,\nand it was good practice for all of us.", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 109, + "UNK0": 19, + "STRING": "・In the end, we lost both of our matches...\nI know Crow and Millium are new, but we\ndefinitely could have done better.", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 109, + "UNK0": 20, + "STRING": "・After the battles were over, Instructor Neithardt\nappeared. He's apparently involved in this month's\nfield study, too.\n・Instructor Sara announced our groupings and \ndestinations for this month's field study, which\nare as follows:\n\nGroup A: Rean, Laura, Emma, Jusis, Gaius, Millium\n(Study Location: Legram)\n\nGroup B: Alisa, Fie, Machias, Elliot, Crow\n(Study Location: Jurai Special Economic Zone)\n\nLegram, where myself and the other members of\nGroup A will be going, is Laura's hometown. It's\na castle town from the Middle Ages situated in\nthe southern part of the Kreuzen province.\n・Furthermore, after spending two days at our\nrespective destinations, we will meet at Garrelia\nFortress in the eastern part of the Empire, where\nwe will be given a new series of tasks tailored\nto the fortress itself.", + "UNK1": 1 + }, + { + "TYPE": "QSTitle", + "ID": 110, + "UNK0": 0, + "STRING": "Field Study at Legram", + "CATEGORY": "NONE", + "UNK1": "050000000000000000" + }, + { + "TYPE": "QSText", + "ID": 110, + "UNK0": 0, + "STRING": "#006c8/28 (Sat) Field Study at Legram - Day 1\n・I was given a rude awakening by a\nfar-too-energetic Millium, and shambled towards\nthe lobby where the others were gathering.\n...Jusis followed along shortly after, looking\nexhausted after presumably being woken up in\nthe same way as I was. \n・Once we'd pieced our tired brains back together,\nwe headed over to the station. ", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 110, + "UNK0": 1, + "STRING": "・We saw Group B off as they boarded their train\nto the Jurai SEZ and bought our tickets to Legram.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 110, + "UNK0": 2, + "STRING": "・As we approached the ticket gate, we were stopped\nby Lechter of the Intelligence Division. He said he'd\ncome to see Millium before he left for Crossbell, but\nhe's an intelligence agent--who knows what he was\nREALLY up to?\n・We bade farewell to him and boarded the train for\nLegram, where Laura gave gave us a regional\nrundown.\n・As part of the Kreuzen province, Legram has kind\nof an awkward relationship with Jusis' family.\n・It sounded as though Viscount Arseid would be\naway from town while we're there, which was\ndisappointing, as I really wanted to meet him.\n・We changed trains at Bareahard and started\nnoticing more and more mist outside the windows of\nthe train until we finally reached Legram itself.\n・We were greeted by the Arseid family's butler,\nKlaus, who guided us to Viscount Arseid's mansion,\nshowing us some of the town's sights in the\nprocess.\n・After marveling at the beautiful scenery, we were\ntold that we would need to go to the Bracer Guild\nin Legram to collect our field study tasks.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 110, + "UNK0": 3, + "STRING": "・Unlike the guild branches in Heimdallr, the\nLegram guild is still active.\n・When we arrived, were greeted by Toval, the\nbracer who we met during our field study in\nBareahard.\n・It turns out he was the one who chose our tasks\nfor this month. Once we had the list in our\nhands, we jumped in with both feet.\n・We needed to go to the training hall in town for\none of the mandatory tasks and exterminate a\nmonster for the other. We were just hoping we'd\nhave a chance to fulfill the townsfolk's requests\nin the middle of it all.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 110, + "UNK0": 4, + "STRING": "・The highway to the north of town was shrouded\nin mist, so had to be careful with our footing.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 110, + "UNK0": 5, + "STRING": "・Once we'd defeated the monster on the highway,\nwe went back to the guild and told Toval.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 110, + "UNK0": 6, + "STRING": "・We fulfilled the request at the training hall. \nKlaus saw right through me, too... Either way,\nit was good experience for all of us.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 110, + "UNK0": 7, + "STRING": "・We finished all of our requests just as the sun\nwent down and stopped in at the guild to report.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 110, + "UNK0": 8, + "STRING": "・When we returned to the guild, we found Laura's\nfather, Viscount Arseid, waiting there for us. It\nsounded as though he'd just gotten back to Legram.\n・That night, we were treated to dinner at\nViscount Arseid's mansion. During our dinner\nconversation, the viscount mentioned that\nsomething 'terrifies me so much that its mere\nshadow pins me in place'--a fact that I couldn't\ndeny.\n・I gathered my resolve and asked him for a duel. \nAt the time, I thought that being able to test my\nskills against the famous Radiant Blademaster\nmight give me a clue as to how to get over my\nfear and move forward with my life.\n・From the beginning, it was clear I didn't stand\na chance against him, and I was quickly knocked\nto the ground. Just as he was about to bring\nhis sword down upon me...the power that sleeps\nwithin me came roaring to the surface.\n・I charged him like a wild beast, but I was still\nno match against his skill and his overwhelming\npower.\n・Fighting him allowed me to realize something\nimportant--that I shouldn't deny the existence\nof any part of myself. Instead of being\nparalyzed, I should walk forward, overcoming\nmy fear every time it tries to stop me.", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 111, + "UNK0": 0, + "STRING": "Field Study at Legram 2", + "CATEGORY": "NONE", + "UNK1": "050000000000000000" + }, + { + "TYPE": "QSText", + "ID": 111, + "UNK0": 0, + "STRING": "#006c8/29 (Sun) Field Study at Legram - Day 2\n・We awoke to a beautiful blue sky, with no traces\nof the mist that filled the town the previous day.\nLohengrin Castle was easily visible from the\nshore, too.\n・I talked everyone about the beast-like power\nwithin me, and the way I'd feared it since I\nwas a child. Yesterday's duel allowed me to take\nthe first steps towards conquering that fear,\nand I feel like talking to everyone about it\nhelped.\n・We visited the guild to get a second salvo of\nrequests from Toval. He told us he'd have more\nwork for us in the afternoon, so we decided to\nknock out as many requests as we could, saving\nthe monster extermination for last.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 111, + "UNK0": 1, + "STRING": "・We fulfilled the monster extermination request...\nbut the mechanical monster that we defeated\nseemed a little off. We decided to ask Toval\nabout it.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 111, + "UNK0": 2, + "STRING": "・We returned to Legram, only to find it crawling\nwith soldiers from the Lamare Provincial Army.\nToval noticed us and informed us that a high-\nranking noble had come to visit Viscount Arseid.\n・While we had his ear, we told him about the\nmechanical monster we defeated. He said he'd \ncheck its remains personally, just to be safe,\nbut that we should go to the Arseid manor.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 111, + "UNK0": 3, + "STRING": "・The noble visiting Viscount Arseid turned out to\nbe Duke Cayenne, head of the foremost of the Four\nGreat Houses. Shortly after we arrived, he departed\nwith his bodyguards in tow.\n・According to Viscount Arseid, the Noble Faction\nhas been increasingly active behind closed doors\nin the last month, and the purpose of Duke\nCayenne's visit was to try to bring him into the\nfaction.\n・Not only that, but Jusis' brother, Rufus, was here\nin town to pick up the duke.\n・Viscount Arseid decided to reach out to all of\nthe nobles who chose to remain neutral in the \nconflict, and after hearing Toval's report, the\ntwo of them left the mansion together.\n・We received our work for the afternoon and were \nleft in charge of the guild for the rest of the day.\nBut with only half of the day left, we wanted to\nmake sure that we did everything right.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 111, + "UNK0": 4, + "STRING": "・We returned to the guild and started filing \neverything away. Gaius mentioned that he thought\nbracers were a necessary part of people's lives.\n・Jusis, however, disagreed, saying that the\nBracer Guild was far too idealistic for its own\ngood. I don't think things are as simple as\neither of their perspectives, though.\n・While we were talking, a girl from town rushed\nin, clearly in a panic. Two boys from Legram had\ngone into Lohengrin Castle and had yet to return.", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 112, + "UNK0": 0, + "STRING": "Search for the Children", + "CATEGORY": "NONE", + "UNK1": "050000000000000000" + }, + { + "TYPE": "QSText", + "ID": 112, + "UNK0": 0, + "STRING": "#006c8/29 (Sun) Field Study at Legram - Day 2 (Night)\n・We scoured the town but couldn't find the\nmissing boys anywhere.\n・All signs pointed to them going to Lohengrin\nCastle, so we decided to follow suit and look\nfor them ourselves.\n・Once we were ready, we boarded the orbal boat\nthey had prepared for us at the wharf and set off.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 112, + "UNK0": 1, + "STRING": "・As we were crossing Lake Ebel, we heard the\nstrange chime of a bell coming from the castle.\n・When we reached Lohengrin Castle, we found\nanother boat docked at the wharf, confirming our\nsuspicions that the children were there. Fearing\nfor their safety, we started climbing the hill\nthat led to the entrance.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 112, + "UNK0": 2, + "STRING": "・Lohengrin Castle was surrounded by a bluish-white \nlight... Something seemed to be writhing around\ninside, too. But we'd come so far, so there was no\nturning back. We just had to steel ourselves\nand enter the castle.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 112, + "UNK0": 3, + "STRING": "・The moment we did, the door closed itself behind\nus. Worse yet, it was protected by some kind of\nbarrier that not even Airgetlam could break.\n・The bell we heard earlier sounded again,\nsummoning a number of ghost-like fiends which \nproceeded to attack us.\n・We were able to defeat them, but it became\napparent during the battle that the higher\nelements were in effect there, too.\n・Emma seemed surprisingly knowledgeable about\nall of that stuff...but we didn't have time to ask\nher about it. We had children to save.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 112, + "UNK0": 4, + "STRING": "・In the underground area of the castle, we found\nan orb that allowed us to disable one of the \nbarriers blocking our path farther into the\ncastle, as well as a gigantic door.\n・The door looked just like the red door we found\nin the old schoolhouse and was sealed tightly\nshut. I was curious, but I couldn't believe\nthat children could have gotten through, so we\nkept searching for them.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 112, + "UNK0": 5, + "STRING": "・We used the orb we obtained to disable the\nbarrier blocking one of the doors in the castle,\nletting us go deeper inside.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 112, + "UNK0": 6, + "STRING": "・After passing through two barriers, we found\nthe children--right as they were about to be\nattacked by fiends.\n・We saved the kids...from the fiends, at least.\nLaura still gave them a good scolding, but at\nleast they obviously regretted what they'd done.\n・Our next task was getting out of there. Emma\nbelieved that we'd be able to disable the barrier\nthe front door from the top floor of the castle.\nSo away we went, making sure to keep the children\nsafe from harm.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 112, + "UNK0": 7, + "STRING": "・On the top floor of the castle, we found a\ngigantic orb. We thought the orb had to be behind\nof all the strange things happening here.\n・As she's wont to do, Millium tried getting\nAirgetlam to smash it, but another barrier\nappeared and repelled the attack.\n・The orb didn't seem very happy about that.\nIt started to glow violently, and a Nosferatu\nappeared.\n・After a tough battle, we somehow managed to\neke out a victory...but then the orb released\nan incredible surge of power, rendering us\nunable to move.\n・Suddenly, a gigantic lance flew from over by\nthe balcony, piercing the orb.\n・Before we could process what was happening,\nthe orb had shattered, and the castle returned\nto normal.\n・We caught a brief glimpse of a figure standing\non the balcony who looked just like the legendary\nLance Maiden. But it couldn't have been her...\ncould it?", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 113, + "UNK0": 0, + "STRING": "Tour of Garrelia Fortress", + "CATEGORY": "NONE", + "UNK1": "050000000000000000" + }, + { + "TYPE": "QSText", + "ID": 113, + "UNK0": 0, + "STRING": "#006c8/30 (Mon) Field Study at Garrelia Fortress - Day 1\n・The next morning, we were set to leave Legram.\nKlaus bade us farewell, and we set off for the\nstation to travel to Garrelia Fortress.\n・Before we boarded the train, though, we made\nsure to say goodbye to the locals.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 113, + "UNK0": 1, + "STRING": "・We boarded the train and departed Legram for \nGarrelia Fortress. \n・While we were changing trains at Celdic, we\nfound the station under heavy Railway Military\nPolice security...which made sense once we saw \nthe Eisengraf pass through.\n・We met up with Group B and our instructor, and \ntogether we boarded another train that took us\ndirectly to Garrelia Fortress.\n・The fortress was a mass of iron and concrete--\na unified, impenetrable structure that perfectly\nembodied the crushing might of the military.\n・Major Neithardt briefed us on what we'd be doing\nduring our time here. We'd been assigned to\nobserve a joint military exercise conducted by\nthe 4th and 5th Armored Divisions.\n・We ate...food, technically...in the mess hall,\nand learned about the Imperial Army's method of\nacting as though they're on a battlefield at\nall times.\n・We were then given the freedom to do whatever\nwe wanted until the military exercise. It was a true\nonce-in-a-lifetime opportunity to explore the\nfortress, so I decided to see all I could.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 113, + "UNK0": 2, + "STRING": "・After touring the fortress, we took an armored\ncar to the training grounds. There, we met the\ncommanding officer of the 4th Armored Division,\nLieutenant General Craig--Elliot's father.\n・After we greeted him, the exercise began. We\nwere overwhelmed as we watched Achtzehn main\nbattle tanks annihilating old model tanks with\nlive ammunition. It was nothing short of a pure\ndisplay of raw power.\n・As we were downheartedly working our way through\ndinner, Instructor Sara popped in to tell us that\nwe'll be taking look at the railway guns tomorrow.\n・We are students of a military academy, so we do\nhave a duty to understand of the kind of military\nstrength this country possesses...\n#666c     ◆    ◆    ◆\n#006c8/31 (Tue) Field Study at Garrelia Fortress - Day 2\n・We expected the keynote session of the trade\nconference to proceed as planned, but then we \nreceived word that the Imperial Liberation Front\nhad arrived in Crossbell.\n・I'm worried about Towa and Prince Olivert, but it\nseems as though the Intelligence Division has a\nplan to deal with the situation.\n・The Intelligence Division was able to ascertain\nthe identity of one of the terrorists: Gideon,\nor G, who we'd faced off with in the past.\n・The identities of S, V and C, meanwhile, are\nstill under investigation, the identity the masked\nC proving the most difficult to narrow down.\n・Our special lecture finished, we set off to tour\nthe railway guns, but on the way, Instructor\nNeithardt received a call informing him that\nthe trade conference had been attacked.\n・When we heard the news, a heavy tension filled\nthe air...but we had problems of our own at\nGarrelia Fortress: a number of Achtzehn tanks\nhad started to act on their own.\n・Taking advantage of the confusion, two of the\nImperial Liberation Front's airships invaded the\nfortress. It was clear what their target was,\ntoo: the two railway guns.", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 114, + "UNK0": 0, + "STRING": "Recovering the Railway Guns", + "CATEGORY": "NONE", + "UNK1": "050000000000000000" + }, + { + "TYPE": "QSText", + "ID": 114, + "UNK0": 0, + "STRING": "#006c8/31 (Tue) Field Study at Garrelia Fortress - Day 2\n・We quickly divided our main priorities between\nour two groups: Group A went with Instructor Sara\nto recover the railway gun in the right wing of\nthe fortress and Group B, led by Major Neithardt,\nmoved out to recover the left wing's.\n・Our mission was clear--and failure wasn't an\noption.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 114, + "UNK0": 1, + "STRING": "・The terrorists had released archaisms into the\nfortress. One wrong step could have been the end.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 114, + "UNK0": 2, + "STRING": "・We found one of the terrorists' airships at the\nairport. When we tried to approach it, though, it\nself-destructed. Could it have been a trap?", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 114, + "UNK0": 3, + "STRING": "・We reached an outdoor area looking out onto\nGarrelia Canyon, only to come face to face with\na large flying archaism, which we took down.\n・But we were too late. They fired the railway\nguns, and we were powerless to stop them...\nbut fortunately, they only fired blanks. \n・Grateful for our second chance, we ran\nas fast as we could toward the railway gun.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 114, + "UNK0": 4, + "STRING": "・We made it in time and managed to overpower\nthe terrorists controlling it.\n・But then S, or Scarlet, made her appearance.\n・She told that their operation in Crossbell had\nbeen unsuccessful and Gideon had died in the\nbattle.\n・As soon as Instructor Sara noticed that the\nrailway gun had been switched to automatic firing\nmode, Scarlet summoned two giant archaisms and\nattempted to keep us away.\n・By combining our efforts, we were able to defeat\nher and stop the railway gun from firing just\nin the nick of time.\n・Major Neithardt and Group B were able to stop the\nother railway gun just in time as well, meaning\nthat together we were able to successfully thwart\nthe terrorists' scheme. Unfortunately, however,\nScarlet managed to escape with the help of the\nother terrorists and flew away with C and V.\nMeanwhile, terrorists that remained in the\nfortress used poison to keep us from getting any\ninformation out of them.\n・What happened there never became public\nknowledge, but to us, it was a startling wake-up\ncall, showing us how dedicated the Imperial\nLiberation Front were to their cause...and\nhow serious Erebonia's predicament had become.", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 115, + "UNK0": 0, + "STRING": "Academy Life - September", + "CATEGORY": "NONE", + "UNK1": "060000000000000000" + }, + { + "TYPE": "QSText", + "ID": 115, + "UNK0": 0, + "STRING": "#006c9/15 (Wed) Special Homeroom\n・As we were discussing the academy festival, which\nwill be held next month, word reached us that the\nboard of directors had voted in favor of\ncontinuing our field studies, which came as quite\na relief.\n・Instructor Sara suggested that we go and speak\nwith them. When we did, we were lucky enough to\nrun into Prince Olivert and Major Vander, who \nthanked us for our work last month.\n#666c     ◆    ◆    ◆\n#006c9/18 (Sat) After School\n・We will be departing on our next field study\nnext weekend, but we still have no idea what\nour class is going to do for the academy festival.\nHopefully, we'll have something by the start of\nnext week.\n・After I'd finished my business on campus,\nI decided to head on back to my dorm.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 115, + "UNK0": 1, + "STRING": "・As I walked through the main gate, I was\nsurprised to run into Towa. She said she had some\nthings to buy, so I offered to carry them for her. \n・After she finished her shopping, we took a break\ntogether at the park, where I asked her about what\nshe did for the academy festival last year. She\ntold me kind of sheepishly that she, George,\nAngelica, and Crow held a small concert.\n・I didn't get all of the details, but she agreed to\ntell me more tomorrow evening. I think I might've\njust stumbled onto our inspiration.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 115, + "UNK0": 2, + "STRING": "・I decided to walk around the dorm for a\nwhile before hitting the hay.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 115, + "UNK0": 3, + "STRING": "#666c     ◆    ◆    ◆\n#006c9/19 (Sun) Free Day\n・I began the morning by checking my monthly list\nof tasks and getting to work.\n・One of them was a curious request from Angelica.\nThe old schoolhouse could wait. I had to go to\nthe training hall in the gym and speak to her.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 115, + "UNK0": 4, + "STRING": "・I fulfilled the request from Angelica! Once some\nof the swelling went down, I hobbled over to the\nold schoolhouse.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 115, + "UNK0": 5, + "STRING": "・As we left the old schoolhouse for the day, we\nran into Celine. She didn't stay around for long,\nbut she's a capable cat, so I wasn't worried\nabout her.\n・I had a bit more time before I was supposed to\nmeet Towa in the computer room, so I decided to\nfinish up some of the things I needed to do and\nwent to meet her.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 115, + "UNK0": 6, + "STRING": "・I arrived computer room only to find Towa was\nasleep. Once she woke up, I asked her to tell me\nmore about the concert last year.\n・She showed me a recording of the concert, made\nwith a device called an 'orbal video camera.' \nThe video showed Towa and the others performing\nand singing, and the audience loving every minute\nof it.\n・That night, while we were discussing our plans,\nI mentioned their concert to the others and\nagreed to show everyone the video during our\nlunch break tomorrow.\n・During tonight's Abend Time, Misty sang a song. \nIt's really obvious that she's a professional\nsinger when you already know...\n#666c     ◆    ◆    ◆\n#006c9/20 (Mon) Lunch Break\n・I showed the others the video I borrowed from\nTowa in the computer room. They had...mixed\nopinions on the outfits, but everyone loved the\nperformance itself. But with that, it was settled:\nwe'd be doing a concert for the academy festival.\n#666c     ◆    ◆    ◆\n#006c9/22 (Wed) Practical Exam\n・Since this would be our last practical exam\nthe foreseeable future, Instructor Sara decided\nthat she'd be our opponent. I was chosen to go\nfirst and was asked to choose two others to fight\nalongside me. I had to choose wisely, since the\ninstructor showed no intention of holding back.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 115, + "UNK0": 7, + "STRING": "・Together, the three of us were able to defeat\nInstructor Sara. We may have beaten her, but she\nseemed extremely happy about how we've developed.", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 115, + "UNK0": 8, + "STRING": "・Together, the three of us were able to defeat\nInstructor Sara. Although it was a struggle,\nshe seemed happy at how much we've developed.", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 115, + "UNK0": 10, + "STRING": "・Together, the three of us were barely able to\ndefeat Instructor Sara. It was still quite an\naccomplishment, though, so she seemed relatively\nhappy at how much we've developed.", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 115, + "UNK0": 9, + "STRING": "・After fighting against everyone, Instructor Sara\nseemed wiped out, but still had the energy to \nreveal our final field study destinations.\n・The groups and their destinations will be as \nfollows:\n\nGroup A: Rean, Alisa, Fie, Machias, Elliot, Crow\n(Study Location: Roer, the Industrial Metropolis)\n\nGroup B: Emma, Laura, Jusis, Gaius, Millium\n(Study Location: Ordis, the Port City)\n\nRoer is Alisa's hometown, while Ordis is the most\nimportant stronghold of the Noble Faction... In\nother words, both groups will be going to cities\nunder the control of the Four Great Houses.\n・Considering the tensions in the Empire at the\nmoment, we're all a little apprehensive, but this\nis our chance to put all we've learned in our\nprevious field studies to the test, and we need\nto make the best of it.", + "UNK1": 1 + }, + { + "TYPE": "QSTitle", + "ID": 116, + "UNK0": 0, + "STRING": "The Industrial Metropolis", + "CATEGORY": "NONE", + "UNK1": "060000000000000000" + }, + { + "TYPE": "QSText", + "ID": 116, + "UNK0": 0, + "STRING": "#006c9/25 (Sat) Field Study at Roer - Day 1\n・We gathered in the main lobby of the dormitory\nand set off once everyone had arrived.\n・Instead of going straight to the station, \nInstructor Sara told us to gather at the field.\nAfter a little shopping in town, we made our way\nthere.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 116, + "UNK0": 1, + "STRING": "・When we arrived at the academy ground, we found\nnot only Instructor Sara, but also Sharon waiting\nfor us. It seemed that Sharon was going to serve\nas Group A's guide...\n・Just then, we heard the sound of something cutting\nthrough the wind...and looked up to see a crimson\ncolored high-speed cruiser in the sky above us--\nthe Courageous.\n・On board, we found Prince Olivert, Major Vander\n...and Viscount Arseid.\n・They planned to show the airship off across the\nnation, taking groups A and B to their\ndestinations in the process.\n・Apparently the Courageous was built as a joint\neffort between the Reinford Group, ZCF, and\nthe Epstein Foundation, and is regarded as\nproperty the Imperial family--NOT any of the\nprovincial armies. Asking Viscount Arseid to act\nas the ship's captain was a measured political\nmove meant to deter both the Noble and Reformist\nfactions, not to mention the Imperial Liberation Front.\n・The Courageous flew through the skies over\nHeimdallr and then turned towards Nortia province.\nWe were given permission to walk around the ship\nuntil it reached Roer, so I took the chance to\nexplore and talk to the others.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 116, + "UNK0": 2, + "STRING": "・Before long, the Courageous reached Roer. We\nsaid farewell to Prince Olivert, the ship's crew,\nthe members of Group B, and our instructor, and\nthen disembarked with Sharon.\n・First, we need to head for the Reinford corporate\nheadquarters on the upper level of the city.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 116, + "UNK0": 3, + "STRING": "・We rode the escalator up to the entrance of the\nReinford corporate headquarters and walked right\nin.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 116, + "UNK0": 4, + "STRING": "・Sharon guided us to the chairman's room on the\n23rd floor, where we found Chairman Irina hard at\nwork.\n・She handed us an envelope containing our field\nstudy tasks, and after promising to dine with us\nthis evening, she warned us to stay away from the\nprovincial army, the Railway Military Police, and\nthe marquis' mansion. With that lengthy warning\nout of the way, she left the room.\n・We left our belongings with Sharon and set about\nworking through our field study tasks. This could\nvery well be our last field study, so we wanted\nto make sure we did it justice. The mandatory\nrequest from the Roer Institute of Technology\nwas our top priority.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 116, + "UNK0": 5, + "STRING": "・No sooner had we finished the request from the\nInstitute of Technology than evening arrived.\nSuddenly, we heard the sounds of an argument\ncoming from the plaza on the lower level of the\ncity.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 116, + "UNK0": 6, + "STRING": "・We looked down to see the provincial army and \nRailway Military Police being openly hostile\ntowards one another. With a sinking feeling in\nour stomachs, we descended to the lower level\nto get a closer look.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 116, + "UNK0": 7, + "STRING": "・The provincial army and Railway Military Police\nare arguing over who has the right to maintain\norder in Roer City... It was essentially a\nstick-waving competition.\n・After a while, the provincial army lost their\ncool and ordered armored cars onto onto the\nstreets of the city, pushing the tension\nbetween the two to its breaking point.\n・However, both Captain Claire and Rufus appeared\non the scene and calmed things down by\nclarifying their respective positions.\n・Both the provincial army and Railway Military\nPolice stood down, and Rufus, who had apparently\ncome to speak with the marquis, gave us a stern\nwarning before leaving the city.\n・The whole situation left us feeling that\nsomething was definitely amiss in Roer. With the\nconflict on our minds, we decided to return to\nReinford corporate headquarters.\n・Sharon welcomed us back before informing us\nthat Chairman Irina would be unable to dine with\nus that evening, leaving us to finish dinner\nby ourselves and start writing our report early.\n・Left with some free time at night, we agreed to\nspend the remainder of the evening however we saw\nfit. It gave me a chance to walk around the house\nand talk with my classmates.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 116, + "UNK0": 8, + "STRING": "・I noticed Sharon heading towards the laundry\nroom, so I followed her.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 116, + "UNK0": 9, + "STRING": "・I tried asking Sharon about Irina, and it reaffirmed\nmy belief that the reason she couldn't dine with\nus was somehow related to the disagreement between\nthe provincial army and Railway Military Police.\n・She insists that there's no reason to worry about\nthe chairman, though. I could tell that was as\nmuch information as I was going to get out of her,\nthough, so I kept walking around.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 116, + "UNK0": 10, + "STRING": "・I noticed Alisa walking out onto the balcony,\nso I decided to join her.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 116, + "UNK0": 11, + "STRING": "・Alisa told me more about the Reinford family,\nsaying that her father's death was the catalyst\nfor Irina to losing herself in her work.\n・It's become clear to me that Alisa is someone who\nalways thinks about other people, even when she's\nannoyed with them... Deep down, she's one of the\nkindest people I know. I want to get to the\nbottom of what's going on here in Roer so I can\nrepay her.\n・I just hope I can... I don't even know where to\nstart. I thought things over for a while after Alisa\nleft, then got going myself. ", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 116, + "UNK0": 12, + "STRING": "・All of a sudden, I got a call from Captain\nClaire, who had something she wanted to tell me.\nShe asked if we can meet somewhere in the city to\ntalk.\n・She suggested a bar in the southern area of the\nupper level called 'F.' I felt kind of guilty\nsneaking out to a bar on my own, but considering\nthe circumstances, my options were limited.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 116, + "UNK0": 13, + "STRING": "・As I went to leave through the front entrance, \nSharon intercepted me, saying that she wouldn't\ntell anyone that I was gone. She locked the door\nbehind me as I stepped out to enter the elevator.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 116, + "UNK0": 14, + "STRING": "・I rode the elevator down to the first for\nand planned on heading straight to the bar.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 116, + "UNK0": 15, + "STRING": "・It turns out, Fie was unsuccessfully trying to\nstealthily follow me. I told her what I was doing,\nand we decided to go and meet Captain Claire\ntogether.\n・She wanted to walk around the town at night\nbefore we did, though, so I obliged her as we\nmade our way to the bar.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 116, + "UNK0": 16, + "STRING": "・We entered the bar and spotted Captain Claire,\nwho was dressed to the nines. Gulping down my\nnervousness, we went over to talk to her.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 116, + "UNK0": 17, + "STRING": "・We sat down to talk to Captain Claire, and she \nhinted that the terrorists and the Noble Faction\nwere in some way connected with one another. At\nthe very least, there's no doubt that Duke\nCayenne, head of the foremost of the Four Great\nHouses, is providing them with support.\n・Furthermore, it seems that the Railway Military\nPolice is considering an investigation into the\nNoble Faction-controlled Reinford 1st Factory,\nand that was what led to the conflict earlier\nthis evening.\n・After explaining the situation in Roer, Captain\nClaire advised that we stay back and to try to\nbroaden our understanding of things instead of\nbutting in ourselves, and then left the bar.\n・Shortly after she left, I received a call from \nAlisa. It seems as though everyone was worried\nabout me. Fie and I went straight back.\n#666c     ◆    ◆    ◆    \n#006c9/26 (Sun) Field Study at Roer - Day 2\n・As the second day of our field study began, we \nagreed to focus on information-gathering,\nstarting with what Captain Claire told us as a\nbase.\n・The only mandatory task was to be the monster\nextermination, so we assumed we'd be able to\ngather information on the Reinford 1st Factory\nand the other Reinford divisions from the people\nof Roer and various Reinford affiliates while\nwe were working through our tasks.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 116, + "UNK0": 18, + "STRING": "・We exterminated the monster on the highway\nand decided to go back to town.\"", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 117, + "UNK0": 0, + "STRING": "Assault on the Iron Mine", + "CATEGORY": "NONE", + "UNK1": "060000000000000000" + }, + { + "TYPE": "QSText", + "ID": 117, + "UNK0": 0, + "STRING": "#006c9/26 (Sun) Field Study at Roer - Day 2 (PM)\n・We returned to a city in chaos. Sirens were\nwailing and smoke was billowing from a nearby\nmilitary factory. We ran over there to see what\nwas going on.\n・The workers fleeing the building told us that\nmechanical monsters had suddenly appeared inside.\n・There were still people in there, and with all\nthe fire and explosions, we didn't really fancy\ntheir chances. We left evacuating the workers\nwho had already escaped to the soldiers near the\nentrance and hurried inside to rescue the others.\n・Inside the building, we found one of the\nsociety's giant archaisms. After a battle in\nthe roaring flames, it fell before us.\n・Soon after, the Railway Military Police hurried\ninto the building, resolving the crisis and\nreturning everything to normality. \n・Captain Claire sternly reprimanded us for acting\nso rashly, but did thank us for contributing to\nthe crisis' resolution.\n・We were shocked to find out that everything that\nhappened at the factory had been planned more\nthan three months ago, most likely by the\nterrorists' leader, C.\n・While we were talking, one of the Railway\nMilitary Policemen relayed an urgent message was\nto Captain Claire: the terrorists had attacked\nthe Sachsen Iron Mine.\n・Captain Claire and her men jumped into the\narmored car and took off toward the mine.\nWe decided to follow suit on foot.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 117, + "UNK0": 1, + "STRING": "・When we arrived at the iron mine, we found smoke\npouring out of the building. It seemed as though\nthe fire had already been extinguished.\n・The provincial army and Railway Military Police\nhad gotten into yet another argument in front of\nthe mine's entrance. Perverse curiosity inspired\nus to take a closer look.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 117, + "UNK0": 2, + "STRING": "・It seems as though the provincial army got to\nthe scene first and sealed off the entrance to the\nmine.\n・That struck us as more than a little suspicious.\nIt was highly likely that they were working in\nconcert with the terrorists, trying to destroy\nevidence connected to the Reinford 1st Factory.\n・We returned to the city, but while we were\ntalking things over, Angelica and George arrived.\n・Angelica revealed what had been troubling her--\nthe fact that the director of the 1st Factory, her\nuncle, has been putting iron ore onto the black\nmarket--enough of it to make two thousand \nAchtzehn battle tanks.\n・She seemed determined to to take this crisis into\nher own hands, but we volunteered to assist her.\n・Alisa proposed that ask her mother for some way\nto sneak into the mine. That sounded like a good\nidea to us, so we left for Reinford's corporate\nheadquarters.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 117, + "UNK0": 3, + "STRING": "・We spoke to the receptionist and had her ask\nthe chairman to meet with us. She agreed and asked\nus to meet her in her office on the 23rd floor.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 117, + "UNK0": 4, + "STRING": "・When we reached 23F, we were welcomed by Sharon,\nwho guided us into the chairman's office. She\ndidn't intend to do anything to resolve the\nsituation herself, but was considering plans\nfor all potential contingencies. Even in the\nface of serious human danger, she was thinking\nabout the future of the Reinford Group.\n・Alisa confronted her mother directly, telling her \nthat she was running the company the wrong way.\n・After hearing that, Irina gave us a card key that\nwould allow us to access an emergency underground\npassage connecting the city and the iron mine.\n・Card key in hand, we called Angelica and set off\nfor the entrance to the underground passage.\nGeorge volunteered to stay behind and support\nus, and stay in contact with Towa, who would also\nbe assisting us.\n・Our plan in place, we made our way to the\nSachsen Iron Mine.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 117, + "UNK0": 5, + "STRING": "・We finally reached the end of the long\nunderground passage and climbed the ladder\nleading up to the iron mine.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 117, + "UNK0": 6, + "STRING": "・We made it to the sealed mine shaft that we\nvisited yesterday and got a call from George.\n・He told us that the Railway Military Police is\ngathering forces in Roer and in Ordis to prepare\nto take action. Time was definitely not on our\nside. We needed to hurry.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 117, + "UNK0": 7, + "STRING": "・We made it to the surface, successfully reaching\nthe other side of the provincial army's blockade,\nand continued deeper into the mine.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 117, + "UNK0": 8, + "STRING": "・We defeated two more large archaisms that tried\nto stop us, eventually coming to a door.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 117, + "UNK0": 9, + "STRING": "・We rescued a number of miners who were being held\nhostage, but other hostages, including the chief,\nwere taken to the central control room further in.\n・Crow volunteered to take the miners we rescued\nback to the city on his own, so we accepted his\noffer and moved on without him.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 117, + "UNK0": 10, + "STRING": "・We heard a tremor, and soon after received a call\nfrom Crow. Apparently there was a cave-in, making\nit difficult for him to meet back up with us.\nWe were down a teammate, but we kept going.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 117, + "UNK0": 11, + "STRING": "・When we reached the entrance to the central\ncontrol room, George gave us another call to tell\nus that Towa wanted to speak with us.\n・He put her through and she told us that His\nMajesty the Emperor had given the Railway Military\nPolice official permission to investigate the\nmine--meaning that it wouldn't be long before\nCaptain Claire and her men forced their way\ninside.\n・We knew we were running out of time to save the\nremaining hostages, so we took a deep breath and\nmoved into the central control room ahead of us.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 117, + "UNK0": 12, + "STRING": "・Inside the control room, we found Vulcan, one of\nthe key members of the Imperial Liberation Front.\n・Talking with him, it became clear that his hatred\nfor the chancellor ran deeper than we could have\npossibly imagined. After announcing his desire\nto create a flame hot enough to burn through\nblood and iron, he charged at us, ready for\nbattle. We had no choice but to fight back with\neverything we had.\n・We managed to repel him, but he must have been \nholding back against us. Just before he could\nreveal his true power, though, C appeared and\nfought us alongside two archaisms to buy his\nallies time to escape.\n・We were able to defeat them, but C caused the two\narchaisms to self-destruct and was gone in a\nflash.\n・Moments later, an Imperial Liberation Front\nairship appeared from below us. The Railway\nMilitary Police hurried in and started firing\nat it, but their bullets did nothing to stop\nits ascent towards the ceiling.\n・Suddenly, it exploded...with the Imperial\nLiberation Front members still on it. We watched\nin stunned silence as pieces of it fell into the\nground.\n・Shortly afterward, Prince Olivert arrived and\ntook control of the scene.", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 118, + "UNK0": 0, + "STRING": "October - Preparing for the Academy Festival", + "CATEGORY": "NONE", + "UNK1": "070000000000000000" + }, + { + "TYPE": "QSText", + "ID": 118, + "UNK0": 0, + "STRING": "#006c10/21 (Thu) Preparing for the Academy Festival\n・With only two days to go until the academy\nfestival, we're really running out of time to\nprepare. Or class had decided to conduct our\nfinal rehearsals in the old schoolhouse, which\nwas kind of surreal, to be honest.\n・I'd agreed to help the Student Council with their\nwork today, so after talking with the others,\nI went to collect my tasks from Towa.\n・I was determined to help everyone out as much\nas I possibly could, but I made doubly sure to\nfulfill the request from Instructor Beatrix.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 118, + "UNK0": 1, + "STRING": "・Crow called me and told me there was a problem\nwith our stage outfits; they weren't going to make\nit in time.\n・He asked me to ride Angelica's orbal bike to\nHeimdallr and pick them up in person as soon as\nthey were done. Not wanting to let down my\nclassmates, I agreed.\n・Once I was ready to go, I went to talk to George\nabout the bike.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 118, + "UNK0": 2, + "STRING": "・George gave me the go-ahead to borrow the bike.\nIt seemed as though he'd finished all the\nnecessary maintenance on it quite a while ago. \nI got it out of the garage and climbed aboard.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 118, + "UNK0": 3, + "STRING": "・I called Alisa to ask her to come with me, and", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 118, + "UNK0": 4, + "STRING": "・I called Elliot to ask him to come with me, and", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 118, + "UNK0": 5, + "STRING": "・I called Laura to ask her to come with me, and", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 118, + "UNK0": 6, + "STRING": "・I called Machias to ask him to come with me, and", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 118, + "UNK0": 7, + "STRING": "・I called Emma to ask her to come with me, and", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 118, + "UNK0": 8, + "STRING": "・I called Jusis to ask him to come with me, and", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 118, + "UNK0": 9, + "STRING": "・I called Fie to ask her to come with me, and", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 118, + "UNK0": 10, + "STRING": "・I called Gaius to ask him to come with me, and", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 118, + "UNK0": 11, + "STRING": "・I called Millium to ask her to come with me, and", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 118, + "UNK0": 12, + "STRING": "・I was going to go alone, but Crow came along, and ", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 118, + "UNK0": 13, + "STRING": "together we set off for the boutique in Heimdallr.\n・We collected our outfits from the boutique's\nowner, but when I started putting our outfits into\nthe sidecar, an unusual blue bird caught my eye.", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 118, + "UNK0": 14, + "STRING": "・When I mentioned it to Emma, she chased after it.\nBut right as she left, Misty appeared. I told her\nabout our concert tomorrow, and she honestly\nseemed interested. I hope she can make it...\n・After parting ways with Misty, Emma finally \nreturned, and we set off back to Trista together.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 118, + "UNK0": 15, + "STRING": "As watched it fly off, Misty appeared. I told her\nabout our concert tomorrow, and she honestly\nseemed interested. I hope she can make it...\n・After parting ways with Misty, we set off back to\nTrista.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 118, + "UNK0": 16, + "STRING": "・Once we returned, all of us tried on our outfits\nat the old schoolhouse for the first time.\nEveryone had a few comments to make about their\nown personal outfits, but as a whole, I think they\ncame together really well.\n・After trying our outfits on, we started to\nrehearse with only a day and a half remaining.\n#666c     ◆    ◆    ◆\n#006c10/22 (Fri) Final Concert Rehearsals \n・We continued our rehearsals, and despite Crow\nspringing a surprise on us partway through, we\nwere able to make it through to the end.\n・Before we knew it, it was pitch black outside.\nWe went out to find all of the decorations already\nin place, and the academy looking fully prepared\nfor the festival.\n・Our concert will take place two days from now--\nnow that our rehearsals are done, we decided that\nthe most important thing to do tomorrow was to\nhave a great time!", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 118, + "UNK0": 17, + "STRING": "・I walked around my dormitory for a while\nbefore I turned in for the night.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 118, + "UNK0": 18, + "STRING": "・When I turned the radio on, I was surprised to\nhear Misty delivering a breaking news broadcast.\n・In it, she stated that, this afternoon,\nCrossbell State had declared its independence.", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 119, + "UNK0": 0, + "STRING": "Academy Festival - Day 1", + "CATEGORY": "NONE", + "UNK1": "070000000000000000" + }, + { + "TYPE": "QSText", + "ID": 119, + "UNK0": 0, + "STRING": "#006c10/23 (Sat) Academy Festival - Day 1\n・Towa announced the beginning of the academy \nfestival, and the festivities finally began.\n・I volunteered to assist the Student Council with\ntheir work, patrolling the campus and seeing if \nanyone needed any assistance during my free time.\n・Towa, however, gave me six tickets that I could\nuse on the various attractions at the festival,\njust to make sure that I enjoyed myself.\n・I explored the festival to see what it had on offer,\ninviting people to various events as the impulse\nstruck me.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 119, + "UNK0": 1, + "STRING": "・Before I knew it, the morning was over. With more\nand more visitors rolling in, I made it a point not to\nget swept up in the crowds.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 119, + "UNK0": 2, + "STRING": "・The day flew by, and evening came. I only had\none ticket left, and I had to choose what to use it\non very carefully.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 119, + "UNK0": 3, + "STRING": "・I used my final ticket, and the first day of the\nfestival came to an end.\n・I reunited with the others. We went back to the\ndormitory together to make the final preparations\nfor our big concert tomorrow.\n・On the way back, I heard a strange voice...or\nat least I think I did. Maybe I was imagining it?\n・That night, we were sitting around the table\ndiscussing the situation in Crossbell and our\nfamilies, when we heard a strange bell ringing.\n・It sounded just like the one we heard back at\nLohengrin Castle during our field study, too...\nWe decided to go look into it.", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 120, + "UNK0": 0, + "STRING": "Incident at the Old Schoolhouse", + "CATEGORY": "NONE", + "UNK1": "070000000000000000" + }, + { + "TYPE": "QSText", + "ID": 120, + "UNK0": 0, + "STRING": "#006c10/23 (Sat) Old Schoolhouse (Night)\n・We reached the source of the sound: the old\nschoolhouse. The building was emitting a strange\nbluish-white glow, while a transparent barrier \nprevented anyone from entering,\n・After seeing all of this, the principal seemed\nready to make the difficult decision of canceling\nthe second day of the festival to avoid exposing\nvisitors to any potential danger.\n・In order to prevent him from doing so, we\nvolunteered to go in and try to fix things ourselves.\n・As we resolved to do this, our ARCUS units began\nto resonate with the old schoolhouse itself,\nallowing us to pass through the barrier.\n・The principal gave us permission to go inside,\nand with Towa and the others supporting us, we\nstepped inside the building.\n・We used the elevator to descend to the seventh\nand final floor.\n・The time had come to demonstrate what our class\nwas really capable of and bring this to an end!", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 120, + "UNK0": 1, + "STRING": "・We finally reached the depths of the seventh\nfloor. We swallowed our fear and proceeded toward\nwhatever lay in wait.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 120, + "UNK0": 2, + "STRING": "・Before us stood a gigantic door, embedded with\nan orb like the ones we saw in Lohengrin Castle.\n・We heard a voice intone, 'Commencing the Final\nTrial,' and we were drawn from the old schoolhouse\ninto...somewhere else.\n・We found ourselves on an otherworldly battlefield,\nstrewn with weapons as far as the eye could see.\n・As we stood in the eerie quiet, a giant suddenly\nrose before us--a monstrous, flickering shadow.\nWe had no choice but to stand our ground and fight\nfor our lives. After a grueling battle, we finally\nemerged victorious.\n・We found ourselves back in the old schoolhouse.\nWe were told that the bell had stopped ringing\nand the barrier surrounding the building had\ndisappeared...meaning that things had finally\nreturned to normal.\n・It was then that we noticed that the orb had gone\nfrom the door in front of us, a door which slowly\nopened before our very eyes. Inside it was\nenshrined a giant ash-colored knight.", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 121, + "UNK0": 0, + "STRING": "Academy Festival - Day 2", + "CATEGORY": "NONE", + "UNK1": "070000000000000000" + }, + { + "TYPE": "QSText", + "ID": 121, + "UNK0": 0, + "STRING": "#006c 10/24 (Sunday) Academy Festival - Day 2\n・The second day of the festival went ahead as \nplanned, and it was even livelier than the first.\n・I couldn't get everything that happened the\nnight before out of my head, but I tried to push\nit aside to focus on the concert.\n・Many of us in Class VII had family members\ncoming to visit, my sister among them.\n・I had a bit of time before she arrived, though,\nso I decided to bring George a pie to eat while\nhe was tinkering away over in the old schoolhouse.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 121, + "UNK0": 1, + "STRING": "・I bought a pie for George and brought it down to\nthe seventh floor of the old schoolhouse.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 121, + "UNK0": 2, + "STRING": "・I found George and Crow in front of the\nknight-like humanoid.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 121, + "UNK0": 3, + "STRING": "George really lit up when I gave him the pie.", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 121, + "UNK0": 4, + "STRING": "George was appreciative when I gave him the pie.", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 121, + "UNK0": 5, + "STRING": "・He said that the knight-like humanoid doesn't\nappear to be an artifact, as there's evidence that \nit was made by skilled craftsmen and technicians\nwho used an unknown metal of some kind in its\ncreation.\n・Weirder still, it seems that there's space inside\nfor a person to get in. Every time I think we\nsolve one mystery, five more spring up in its place...\n・I felt like I was wearing out my welcome,\nso I got out of there.", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 121, + "UNK0": 6, + "STRING": "・I went to the front gate to greet Elise, knowing\nthat she could arrive at any moment.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 121, + "UNK0": 7, + "STRING": "・Turns out, I'd underestimated her. Elise was\nalready there waiting for me. She seemed worried\nabout me, but I needed to be a good older brother\nand show her around.\n・We walked around all of the attractions together, \nand before we knew it, the morning was almost\nover. ...Which meant it was time for me to start\nthinking about going to the auditorium and\nhelp prepare for the concert.\n・Not long after the bell rang to signal it was\nnoon, Prince Olivert and Princess Alfin arrived\nwith Captain Claire as their escort. Apparently,\nthey'd all come just to see our concert.\n・Prince Olivert gave me an update on Crossbell.\nAt least it doesn't seem like there's any\nchance of a war breaking out...for now, anyway.\n・I left Elise with Prince Olivert and Princess \nAlfin, then headed over to the auditorium to help\nprepare for the concert. \n・Eventually, the time came for the events at the\nauditorium to begin. Class I's operetta was \nexceptional, which only made us more nervous\nabout having to follow them.\n・Just as we were getting ready to go out on stage,\nTowa, George and--most shockingly of all--Angelica\nshowed up to talk to us.\n・Angelica seemed the same as ever, but between the\nthree of them, they really motivated us to deliver\nan unforgettable performance.\n・And with that, our concert finally began.\n・The first song was a duet sung by Machias and\nJusis, who worked so well together that it was\nlike they were different people on stage. Thanks\nto their brilliant performance (and Gaius and my\nsupport, probably), the auditorium was filled with\nthe delighted squeals of the female students.\n・Our second song was a trio between Emma, Millium,\nand Fie, who used their performance to draw\nattention to Alisa and Laura's as well, leading\nto enthusiastic cheers from the boys.\n・After both songs were finished, the audience\ncried out for an encore, and with the addition\nof Crow, we were ready to oblige with our third\nand final song. We encouraged the audience to\nsing along, and they did, making it feel as though \nevery person in the auditorium were united as one.\n・Afterwards, we found out that we had been voted \nthe best attraction at the festival--although as\nfar as we were concerned, the festival was a\nvictory for all of the students. With a feeling\nof unity in our heads, we made our way to the\nfinal event of the festival, the afterparty.\n・I thanked Elliot and Crow for all they'd done to\nmake our performance and the festival a success.\n・Crow told me that he'd be in our class until the\nend of the month and he finally returned the 50\nmira that he borrowed--okay, stole--from me\nmonths ago.\n・Eventually, the dancing began, and Elise asked\nif I had anyone I wanted to dance with.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 121, + "UNK0": 8, + "STRING": "The first person I thought about was Alisa.\n・After I asked Alisa to dance, we sat and talked\nwhile watching the flickering bonfire.\n...I hope that together, we'll be able to find\nthe paths we're meant to take through life.", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 121, + "UNK0": 9, + "STRING": "The first person I thought about was Elliot.\n・I invited Elliot to come and talk with me\nwhile watching the flickering bonfire.\n...I hope we'll get to hold another concert like\nthat next year.", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 121, + "UNK0": 10, + "STRING": "The first person I thought about was Laura.\n・After I asked Laura to dance, we sat and talked\nwhile watching the flickering bonfire.\n...Here's hoping we can keep pushing each other\nto improve during the rest of our time here.", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 121, + "UNK0": 11, + "STRING": "The first person I thought about was Machias.\n・I invited Machias to come and talk with me while\nwatching the flickering bonfire.\n...I'm glad that he's opened up his mind... Makes\nme wonder where we'll be this time next year.", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 121, + "UNK0": 12, + "STRING": "The first person I thought about was Emma.\n・After I asked Emma to dance, we sat and talked\nwhile watching the flickering bonfire.\n...I'll just have to keep waiting until the day\nEmma feels comfortable telling us what she's\nkeeping secret.", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 121, + "UNK0": 13, + "STRING": "The first person I thought about was Jusis.\n・I invited Jusis to come and talk with me while\nwatching the flickering bonfire.\n...I'm glad Jusis has come into his own.", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 121, + "UNK0": 14, + "STRING": "The first person I thought about was Fie.\n・After I asked Fie to dance, we sat and talked\nwhile watching the flickering bonfire.\n...I hope Fie gets the chance to see her 'family'\nagain one day.", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 121, + "UNK0": 15, + "STRING": "The first person I thought about was Gaius.\n・I invited Gaius to come and talk with me while\nwatching the flickering bonfire.\n...We'll both have to keep doing what we can to\nmake this a country we can be proud of.", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 121, + "UNK0": 16, + "STRING": "The first person I thought about was Millium.\n・After I asked Millium to dance, we sat and\ntalked while watching the flickering bonfire.\n...I don't know which Millium she wants to be, but\nno matter who she is, she's still our friend.", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 121, + "UNK0": 17, + "STRING": "The first person I thought about was Crow.\n・I invited Crow to come and talk with me while\nwatching the flickering bonfire.\n...We don't have much time left together, but\nI want to make the most of it.", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 121, + "UNK0": 18, + "STRING": "The first person I thought about was Instructor Sara.\n・After I asked her to dance, we sat and talked\nwhile watching the flickering bonfire.\n...I'm looking forward to being able to drink\nwith her someday.", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 121, + "UNK0": 19, + "STRING": "The first person I thought about was Towa.\n・After I asked Towa to dance, we sat and talked\nwhile watching the flickering bonfire.\n...We'll have to make this academy the best one\nit can be.", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 121, + "UNK0": 20, + "STRING": "...I guessed that everyone was tired, though,\nso I chose to dance with Elise and Princess Alfin\ninstead.", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 121, + "UNK0": 21, + "STRING": "・Afterwards, Captain Claire called me over and\nrevealed that she was a Thors alumnus as well.\n・While we were talking, though, she got a call\nand suddenly walked away.\n・A visibly-panicked Prince Olivert and Princess\nAlfin stopped by shortly after, and offered to\ntake Elise back to Heimdallr with them. All of\nthe other important guests seemed shaken as well,\nleaving one after another.\n・We could all sense something was amiss, and it \ndidn't take long before we found out what it was\n--Garrelia Fortress on the eastern border of\nthe Empire had been annihilated.", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 122, + "UNK0": 0, + "STRING": "Upheaval in the Empire", + "CATEGORY": "NONE", + "UNK1": "070000000000000000" + }, + { + "TYPE": "QSText", + "ID": 122, + "UNK0": 0, + "STRING": "#006c10/30 (Sat) Thors Military Academy\n・The annihilation of Garrelia Fortress resulted\nin tensions across the Empire growing worse\nthan ever before, and when they were at their\npeak, we heard that Chancellor Osborne would be\ngiving an address at noon in Heimdallr.\n・We were also informed that the day's lessons\nhad all been canceled, so we decided to listen\nto the statement together on the radio in the\nclassroom.\n・We had some free time, however, so we decided\nto go our separate ways until then. I'd better\nsee if I can find Millium and Crow. I decided\nto ask people on campus if they'd seen them.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 122, + "UNK0": 1, + "STRING": "・Towa said that she met Crow yesterday but had\nno idea where he could be.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 122, + "UNK0": 2, + "STRING": "・George didn't know where Crow was, either.\nApparently, Crow talked to him yesterday to return\na number of things he'd borrowed from him.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 122, + "UNK0": 3, + "STRING": "・I noticed that the old schoolhouse door was\nunlocked and decided to check inside.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 122, + "UNK0": 4, + "STRING": "・I found Millium on the seventh floor. She wanted\nto take another look at the ashen knight.\n・She told me investigating the old schoolhouse was\none of her designated tasks. I wonder\nwhat Chancellor Osborne knows about this place...\n・After we talked for a while, she agreed to come\nback to the classroom with me.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 122, + "UNK0": 5, + "STRING": "・I couldn't find Crow on campus, so I'd assumed\nhe'd gone into town.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 122, + "UNK0": 6, + "STRING": "・I went into Trista to look for Crow. Asking\nSharon if she knew anything seemed like as good\na place to start as any.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 122, + "UNK0": 7, + "STRING": "・We asked Sharon about Crow, and she told us that\nhe returned to the dormitory very briefly before going\nout again.\n・I thought I'd check his room, just in case.\nIt's right across from my own.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 122, + "UNK0": 8, + "STRING": "・It looked like Crow was gone.\n・I tried to think if there was anything I'd\noverlooked as I walked back to the academy. ", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 122, + "UNK0": 9, + "STRING": "・It suddenly hit me that I hadn't checked the \nstation. I ran over to take a quick look.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 122, + "UNK0": 10, + "STRING": "・One of the station employees told me that she\nthought she saw Crow about an hour ago, but she\nwasn't completely sure.\n・At that point, I had to abandon my search for\nCrow so I could get back in time to hear the\nchancellor's address.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 122, + "UNK0": 11, + "STRING": "・On my way back to the academy, I ran into\nPatrick.\n・He told me that he saw Crow earlier, and that he\nmentioned that he was heading to Heimdallr to hear\nthe chancellor's address in person.\n・At noon, the chancellor prepared to speak, with\nMisty providing commentary. Emma seemed shocked to\nhear her voice for some reason...\n・Chancellor Osborne began his address, discussing\nthe tensions with Crossbell over the past few\ndays. It was all going the way that we'd expected it to.\n・During the statement, Millium revealed that one\nof the reasons she was sent to the academy was to \ninvestigate C, who we all believed to be dead. \n・Thinking over all that had happened over the\npast few months, however, it started to seem\nmore and more horrifically plausible that C\ntruly was Crow.\n・As the chancellor's speech reached its climax,\nthe sound of a single gunshot filled the air--\na sniper had shot Chancellor Osborne.\n・We could hear the confused cries of the people\nof Heimdallr through the radio, and then in the\nmidst of it all, Misty--Vita Clotilde--began\nto sing. As she did, a strange image appeared\nbefore us, showing Dreichels Plaza in Heimdallr.\n・Before our eyes, a giant battleship belonging to\nthe Noble Faction soared through the skies of\nHeimdallr and dropped 'Panzer Soldats' to the\nground, which overtook the streets of the capital\nand the Imperial palace in the blink of an eye.\nWe were almost even more surprised to see members\nof Zephyr, which Fie used to be a part of, there, too.\n・Then we saw Captain Claire hold Crow at gunpoint,\nbut he escaped by boarding what looked like a blue\nmachine of some kind.\n・The reason we were able to see the events\nhappening in Heimdallr was a strange spell of\nVita's called 'Phantasmagoria.' Even more\nsurprising was the revelation that she was\nrelated to Emma somehow, and was feared as the\nWitch of the Abyss.\n・After telling us all to stay in the building, \nInstructor Sara left the classroom.\n・It turned out Heimdallr wasn't the only place\nbeing targeted by the Soldats--a number of them\nwere approaching Trista as well, accompanied by\na fleet of armored cars.\n・We reached the front gate only to find crowds of \npeople from Trista flooding into the academy for\nsafety.\n・We received permission from Towa and George\nto go and help the instructors...so we started to\ndo exactly that.\n・As soon as we've finished our preparations,\nwe're heading straight through that gate toward\nwhatever fate awaits us out there. We're not\ngoing to back down, no matter what. I don't care\nif I have to fight till my last breath--no one's\ngoing to lay so much as a finger on our academy!", + "UNK1": 0 + } +] \ No newline at end of file diff --git a/text/jsons/t_mg02.json b/text/jsons/t_mg02.json new file mode 100644 index 0000000..92b1e1e --- /dev/null +++ b/text/jsons/t_mg02.json @@ -0,0 +1,1234 @@ +[ + { + "TYPE": "MG02Title", + "UNK": "01003200000001000000010000003D0AD73E" + }, + { + "TYPE": "MG02Text", + "UNK0": 1, + "ID": 0, + "UNK1": 1, + "STRING": "#E0#M4Let's get started!", + "UNK2": 2085, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 1, + "ID": 1, + "UNK1": 1, + "STRING": "#E4#M4Go on, draw a card.", + "UNK2": 2086, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 1, + "ID": 3, + "UNK1": 1, + "STRING": "#E[5]#M4Looks like I'm going first!", + "UNK2": 2087, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 1, + "ID": 2, + "UNK1": 1, + "STRING": "#E4#M9After you, then.", + "UNK2": 2088, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 1, + "ID": 4, + "UNK1": 1, + "STRING": "#E0#M0Oh, same score? We better draw again.", + "UNK2": 2089, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 1, + "ID": 5, + "UNK1": 1, + "STRING": "#E2#MAOh, now you've done it!", + "UNK2": 2090, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 1, + "ID": 6, + "UNK1": 1, + "STRING": "#E6#M0Bolt!", + "UNK2": 2091, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 1, + "ID": 7, + "UNK1": 1, + "STRING": "#E[C]#M0What?! You can't do that!", + "UNK2": 2092, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 1, + "ID": 8, + "UNK1": 1, + "STRING": "#E4#M9Mirror!", + "UNK2": 2093, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 1, + "ID": 10, + "UNK1": 1, + "STRING": "#E[5]#M4Hehe. I won!", + "UNK2": 2094, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 1, + "ID": 9, + "UNK1": 1, + "STRING": "#E[H]#MABah... One more game!", + "UNK2": 2095, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 1, + "ID": 11, + "UNK1": 1, + "STRING": "#E[C]#MAOh, a tie? You played pretty well.", + "UNK2": 2096, + "UNK3": -1 + }, + { + "TYPE": "MG02Title", + "UNK": "0200320000000100000001000000E17AD43E" + }, + { + "TYPE": "MG02Text", + "UNK0": 2, + "ID": 0, + "UNK1": 2, + "STRING": "#E0#M4Ahaha. Go easy on me, okay?", + "UNK2": 7083, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 2, + "ID": 1, + "UNK1": 2, + "STRING": "#E4#M0Okay then, let's draw!", + "UNK2": 7084, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 2, + "ID": 3, + "UNK1": 2, + "STRING": "#EI#M0Well, looks like I'm up first.", + "UNK2": 7085, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 2, + "ID": 2, + "UNK1": 2, + "STRING": "#E[1]#M9Looks like you're up first.", + "UNK2": 7086, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 2, + "ID": 4, + "UNK1": 2, + "STRING": "#E0#M0The same score means we draw again, right?", + "UNK2": 7087, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 2, + "ID": 5, + "UNK1": 2, + "STRING": "#E2#MAI didn't see that coming.", + "UNK2": 7088, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 2, + "ID": 6, + "UNK1": 2, + "STRING": "#E6#M0Bolt!", + "UNK2": 7089, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 2, + "ID": 7, + "UNK1": 2, + "STRING": "#E[C]#MAReally, you're playing that now?!", + "UNK2": 7090, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 2, + "ID": 8, + "UNK1": 2, + "STRING": "#E4#M0Mirror!", + "UNK2": 7091, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 2, + "ID": 10, + "UNK1": 2, + "STRING": "#E[5]#M4Ehehe. I win!", + "UNK2": 7092, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 2, + "ID": 9, + "UNK1": 2, + "STRING": "#E8#MAAww... I lost.", + "UNK2": 7093, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 2, + "ID": 11, + "UNK1": 2, + "STRING": "#E4#M4Aww, a tie? Good game, though.", + "UNK2": 7094, + "UNK3": -1 + }, + { + "TYPE": "MG02Title", + "UNK": "03003200000001000000010000008FC2F53E" + }, + { + "TYPE": "MG02Text", + "UNK0": 3, + "ID": 0, + "UNK1": 3, + "STRING": "#E2#M9Then let us begin our duel.", + "UNK2": 3083, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 3, + "ID": 1, + "UNK1": 3, + "STRING": "#E[1]#M9Please draw a card.", + "UNK2": 3084, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 3, + "ID": 3, + "UNK1": 3, + "STRING": "#EI#M0Hmm... Then I'll make the first move.", + "UNK2": 3085, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 3, + "ID": 2, + "UNK1": 3, + "STRING": "#E2#M4The first move is yours.", + "UNK2": 3086, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 3, + "ID": 4, + "UNK1": 3, + "STRING": "#E0#M0We're evenly matched. Let's redraw.", + "UNK2": 3087, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 3, + "ID": 5, + "UNK1": 3, + "STRING": "#E[3]#M4Hehe. Well played.", + "UNK2": 3088, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 3, + "ID": 6, + "UNK1": 3, + "STRING": "#E2#M0Divine Bolt!", + "UNK2": 3089, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 3, + "ID": 7, + "UNK1": 3, + "STRING": "#E[C]#M0I didn't expect that...", + "UNK2": 3090, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 3, + "ID": 8, + "UNK1": 3, + "STRING": "#E2#M0Mirror!", + "UNK2": 3091, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 3, + "ID": 10, + "UNK1": 3, + "STRING": "#E[1]#M4An excellent duel.", + "UNK2": 3092, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 3, + "ID": 9, + "UNK1": 3, + "STRING": "#E8#M9I admit defeat. Well done.", + "UNK2": 3093, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 3, + "ID": 11, + "UNK1": 3, + "STRING": "#E4#M9Haha. We'll have to settle this another day.", + "UNK2": 3094, + "UNK3": -1 + }, + { + "TYPE": "MG02Title", + "UNK": "04003200000001000000010000001F85EB3E" + }, + { + "TYPE": "MG02Text", + "UNK0": 4, + "ID": 0, + "UNK1": 4, + "STRING": "#E2#M0I'm not going to hold back!", + "UNK2": 8084, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 4, + "ID": 1, + "UNK1": 4, + "STRING": "#E[1]#M0Well then, go ahead and draw.", + "UNK2": 8085, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 4, + "ID": 3, + "UNK1": 4, + "STRING": "#E4#M0I'll go first, then.", + "UNK2": 8086, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 4, + "ID": 2, + "UNK1": 4, + "STRING": "#E2#M9It looks like you're up first.", + "UNK2": 8087, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 4, + "ID": 4, + "UNK1": 4, + "STRING": "#E0#M0We're even. We'll have to redraw.", + "UNK2": 8088, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 4, + "ID": 5, + "UNK1": 4, + "STRING": "#E2#MAUgh... Now you've done it.", + "UNK2": 8089, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 4, + "ID": 6, + "UNK1": 4, + "STRING": "#E6#M9Bolt!", + "UNK2": 8090, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 4, + "ID": 7, + "UNK1": 4, + "STRING": "#E2#M0Aww, crap...!", + "UNK2": 8091, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 4, + "ID": 8, + "UNK1": 4, + "STRING": "#E[3]#MAMirror!", + "UNK2": 8092, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 4, + "ID": 10, + "UNK1": 4, + "STRING": "#E[1]#M4Hah. It looks like I win this time.", + "UNK2": 8093, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 4, + "ID": 9, + "UNK1": 4, + "STRING": "#E[H]#MAIt's mostly luck, anyway...", + "UNK2": 8094, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 4, + "ID": 11, + "UNK1": 4, + "STRING": "#EI#M0A tie? There's more to this than I thought.", + "UNK2": 8095, + "UNK3": -1 + }, + { + "TYPE": "MG02Title", + "UNK": "05003200000001000000010000003333F33E" + }, + { + "TYPE": "MG02Text", + "UNK0": 5, + "ID": 0, + "UNK1": 5, + "STRING": "#E[5]#M9Hehe. Please go easy on me.", + "UNK2": 4084, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 5, + "ID": 1, + "UNK1": 5, + "STRING": "#E4#M9Shall we draw, then?", + "UNK2": 4085, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 5, + "ID": 3, + "UNK1": 5, + "STRING": "#E4#M0Allow me to play first, then.", + "UNK2": 4086, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 5, + "ID": 2, + "UNK1": 5, + "STRING": "#E[5]#M9Oh, it looks as though the first move is yours.", + "UNK2": 4087, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 5, + "ID": 4, + "UNK1": 5, + "STRING": "#EI#M0Ah, we have the same score. Let's draw again.", + "UNK2": 4088, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 5, + "ID": 5, + "UNK1": 5, + "STRING": "#E2#MAOuch... I wasn't expecting that.", + "UNK2": 4089, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 5, + "ID": 6, + "UNK1": 5, + "STRING": "#EE#M0I'm going to use a bolt card.", + "UNK2": 4090, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 5, + "ID": 7, + "UNK1": 5, + "STRING": "#E[9]#MAOh no! This could be trouble...", + "UNK2": 4091, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 5, + "ID": 8, + "UNK1": 5, + "STRING": "#E8#M0My apologies, I'm going to use a Mirror.", + "UNK2": 4092, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 5, + "ID": 10, + "UNK1": 5, + "STRING": "#E[5]#M4It looks as though I win this time.", + "UNK2": 4093, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 5, + "ID": 9, + "UNK1": 5, + "STRING": "#E[9]#MAOh no... You beat me.", + "UNK2": 4094, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 5, + "ID": 11, + "UNK1": 5, + "STRING": "#E[C]#MAOh my, a tie. This is a complicated game.", + "UNK2": 4095, + "UNK3": -1 + }, + { + "TYPE": "MG02Title", + "UNK": "060032000000010000000100000048E1FA3E" + }, + { + "TYPE": "MG02Text", + "UNK0": 6, + "ID": 0, + "UNK1": 6, + "STRING": "#E[1]#M9If we have to...", + "UNK2": 9085, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 6, + "ID": 1, + "UNK1": 6, + "STRING": "#E0#MADraw a card.", + "UNK2": 9086, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 6, + "ID": 3, + "UNK1": 6, + "STRING": "#E2#M9I'll be going first.", + "UNK2": 9087, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 6, + "ID": 2, + "UNK1": 6, + "STRING": "#E[1]#M0Hmph. Go ahead, then.", + "UNK2": 9088, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 6, + "ID": 4, + "UNK1": 6, + "STRING": "#E0#M0We have the same score. Let's redraw.", + "UNK2": 9089, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 6, + "ID": 5, + "UNK1": 6, + "STRING": "#E2#M4Hmph. Now you've done it.", + "UNK2": 9090, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 6, + "ID": 6, + "UNK1": 6, + "STRING": "#E6#M9Take this!", + "UNK2": 9091, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 6, + "ID": 7, + "UNK1": 6, + "STRING": "#E[1]#M0You impertinent little...", + "UNK2": 9092, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 6, + "ID": 8, + "UNK1": 6, + "STRING": "#E2#M9How about this?", + "UNK2": 9093, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 6, + "ID": 10, + "UNK1": 6, + "STRING": "#E[1]#M9My victory was assured from the start.", + "UNK2": 9094, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 6, + "ID": 9, + "UNK1": 6, + "STRING": "#EI#MAAt least it wasn't a complete waste of time.", + "UNK2": 9095, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 6, + "ID": 11, + "UNK1": 6, + "STRING": "#E[1]#M0A tie? I suppose that's acceptable.", + "UNK2": 9096, + "UNK3": -1 + }, + { + "TYPE": "MG02Title", + "UNK": "07000A0001000000000000000000E17AD43E" + }, + { + "TYPE": "MG02Text", + "UNK0": 7, + "ID": 0, + "UNK1": 7, + "STRING": "#E0#M9Let the battle begin.", + "UNK2": 5082, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 7, + "ID": 1, + "UNK1": 7, + "STRING": "#EI#M0We draw here, right?", + "UNK2": 5083, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 7, + "ID": 3, + "UNK1": 7, + "STRING": "#E0#M0I'm first.", + "UNK2": 5084, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 7, + "ID": 2, + "UNK1": 7, + "STRING": "#E0#M9You're first, I guess.", + "UNK2": 5085, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 7, + "ID": 4, + "UNK1": 7, + "STRING": "#E[1]#M0Guess we'd better draw again.", + "UNK2": 5086, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 7, + "ID": 5, + "UNK1": 7, + "STRING": "#E[9]#MAOuch...", + "UNK2": 5087, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 7, + "ID": 6, + "UNK1": 7, + "STRING": "#E2#M4Take this!", + "UNK2": 5088, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 7, + "ID": 7, + "UNK1": 7, + "STRING": "#E[A]#M0Crap...", + "UNK2": 5089, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 7, + "ID": 8, + "UNK1": 7, + "STRING": "#E4#M0Mirror.", + "UNK2": 5090, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 7, + "ID": 10, + "UNK1": 7, + "STRING": "#E4#M4Looks like I win.", + "UNK2": 5091, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 7, + "ID": 9, + "UNK1": 7, + "STRING": "#E8#M0Oh... Guess I lost.", + "UNK2": 5092, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 7, + "ID": 11, + "UNK1": 7, + "STRING": "#E[C]#M0Oh, I didn't know we could tie.", + "UNK2": 5093, + "UNK3": -1 + }, + { + "TYPE": "MG02Title", + "UNK": "080032000000010000000100000048E1FA3E" + }, + { + "TYPE": "MG02Text", + "UNK0": 8, + "ID": 0, + "UNK1": 8, + "STRING": "#E[1]#M4Shall we begin?", + "UNK2": 10081, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 8, + "ID": 1, + "UNK1": 8, + "STRING": "#E0#M0Go ahead and draw.", + "UNK2": 10082, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 8, + "ID": 3, + "UNK1": 8, + "STRING": "#E[1]#M9I'll go first, then.", + "UNK2": 10083, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 8, + "ID": 2, + "UNK1": 8, + "STRING": "#EI#M9You should go first, then.", + "UNK2": 10084, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 8, + "ID": 4, + "UNK1": 8, + "STRING": "#E[1]#M0Hmm... It seems we need to draw again.", + "UNK2": 10085, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 8, + "ID": 5, + "UNK1": 8, + "STRING": "#E2#M9Haha. Well done.", + "UNK2": 10086, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 8, + "ID": 6, + "UNK1": 8, + "STRING": "#E0#MAI'll use a Bolt.", + "UNK2": 10087, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 8, + "ID": 7, + "UNK1": 8, + "STRING": "#E[C]#M0Hmm... Well played.", + "UNK2": 10088, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 8, + "ID": 8, + "UNK1": 8, + "STRING": "#E4#M9I hate to do this, but...", + "UNK2": 10089, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 8, + "ID": 10, + "UNK1": 8, + "STRING": "#E4#M4Haha. It seems the winds were on my side.", + "UNK2": 10090, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 8, + "ID": 9, + "UNK1": 8, + "STRING": "#E[1]#M4I lost... But I had a lot of fun.", + "UNK2": 10091, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 8, + "ID": 11, + "UNK1": 8, + "STRING": "#E[1]#M0Hmm... It looks like this ends in a tie.", + "UNK2": 10092, + "UNK3": -1 + }, + { + "TYPE": "MG02Title", + "UNK": "09000A00010000000000000000006666A63E" + }, + { + "TYPE": "MG02Text", + "UNK0": 9, + "ID": 0, + "UNK1": 9, + "STRING": "#E4#M0It's time to duel!", + "UNK2": 6084, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 9, + "ID": 1, + "UNK1": 9, + "STRING": "#E[5]#M0C'mon, draw a card!", + "UNK2": 6085, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 9, + "ID": 3, + "UNK1": 9, + "STRING": "#E[5]#M0I'm going first!", + "UNK2": 6086, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 9, + "ID": 2, + "UNK1": 9, + "STRING": "#E0#M0You're up first, I guess...", + "UNK2": 6087, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 9, + "ID": 4, + "UNK1": 9, + "STRING": "#E0#M0C'mon, draw another one!", + "UNK2": 6088, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 9, + "ID": 5, + "UNK1": 9, + "STRING": "#E[C]#M[3]Gah!", + "UNK2": 6089, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 9, + "ID": 6, + "UNK1": 9, + "STRING": "#E6#M0Take this!", + "UNK2": 6090, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 9, + "ID": 7, + "UNK1": 9, + "STRING": "#E6#MAWhat was that for?!", + "UNK2": 6091, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 9, + "ID": 8, + "UNK1": 9, + "STRING": "#E2#M[1323E#2x]Heeheehee. Sorry about that!", + "UNK2": 6092, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 9, + "ID": 10, + "UNK1": 9, + "STRING": "#E[K]#M[1323C#3x]Yeeeah, I win!", + "UNK2": 6093, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 9, + "ID": 9, + "UNK1": 9, + "STRING": "#E[9]#MABoooo, I wanted to win!", + "UNK2": 6094, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 9, + "ID": 11, + "UNK1": 9, + "STRING": "#E8#MAA tie? Aww, come on!", + "UNK2": 6095, + "UNK3": -1 + }, + { + "TYPE": "MG02Title", + "UNK": "0A0046000100010000000100010048E1FA3E" + }, + { + "TYPE": "MG02Text", + "UNK0": 10, + "ID": 0, + "UNK1": 10, + "STRING": "#E[A]#M0Heh. All right, let's get started!", + "UNK2": 11080, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 10, + "ID": 1, + "UNK1": 10, + "STRING": "#E0#M0Go on, draw a card.", + "UNK2": 11081, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 10, + "ID": 3, + "UNK1": 10, + "STRING": "#E2#M0I'm up first.", + "UNK2": 11082, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 10, + "ID": 2, + "UNK1": 10, + "STRING": "#E4#M0You're first!", + "UNK2": 11083, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 10, + "ID": 4, + "UNK1": 10, + "STRING": "#E[9]#MASame score? Gotta redraw.", + "UNK2": 11084, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 10, + "ID": 5, + "UNK1": 10, + "STRING": "#E2#MAHeheh. Not bad!", + "UNK2": 11085, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 10, + "ID": 6, + "UNK1": 10, + "STRING": "#E6#M0Take this!", + "UNK2": 11086, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 10, + "ID": 7, + "UNK1": 10, + "STRING": "#E8#MAGah, seriously?! ", + "UNK2": 11087, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 10, + "ID": 8, + "UNK1": 10, + "STRING": "#E2#M0Haha! You fell for it!", + "UNK2": 11088, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 10, + "ID": 10, + "UNK1": 10, + "STRING": "#E[H]#M0Heh. You're gonna have to do better than that!", + "UNK2": 11089, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 10, + "ID": 9, + "UNK1": 10, + "STRING": "#E[8]#M0Aww man, I lost?", + "UNK2": 11090, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 10, + "ID": 11, + "UNK1": 10, + "STRING": "#EI#M0Well, ties happen, I guess.", + "UNK2": 11091, + "UNK3": -1 + }, + { + "TYPE": "MG02Title", + "UNK": "3500640001000100010002000100E17AD43F" + }, + { + "TYPE": "MG02Text", + "UNK0": 53, + "ID": 0, + "UNK1": 53, + "STRING": "#E[5]#M4Hehe. Well, shall we begin?", + "UNK2": 16000, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 53, + "ID": 1, + "UNK1": 53, + "STRING": "#E0#M0Please draw a card.", + "UNK2": 16001, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 53, + "ID": 3, + "UNK1": 53, + "STRING": "#E[1]#M0Looks like I go first.", + "UNK2": 16002, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 53, + "ID": 2, + "UNK1": 53, + "STRING": "#E8#M0After you, Master Rean.", + "UNK2": 16003, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 53, + "ID": 4, + "UNK1": 53, + "STRING": "#E[5]#M0Well then, we have to draw again.", + "UNK2": 16004, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 53, + "ID": 5, + "UNK1": 53, + "STRING": "#E[9]#M0Hehe. So that's how you want to play.", + "UNK2": 16005, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 53, + "ID": 6, + "UNK1": 53, + "STRING": "#E[A]#M0I'm using a Bolt.", + "UNK2": 16006, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 53, + "ID": 7, + "UNK1": 53, + "STRING": "#E8#M0Oh my, I should have been more careful.", + "UNK2": 16007, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 53, + "ID": 8, + "UNK1": 53, + "STRING": "#E2#M0Now then, how will you react to this?", + "UNK2": 16008, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 53, + "ID": 10, + "UNK1": 53, + "STRING": "#E[5]#M4*giggle* That was a wonderful match.", + "UNK2": 16009, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 53, + "ID": 9, + "UNK1": 53, + "STRING": "#E8#M0Splendid! A well-deserved victory.", + "UNK2": 16010, + "UNK3": -1 + }, + { + "TYPE": "MG02Text", + "UNK0": 53, + "ID": 11, + "UNK1": 53, + "STRING": "#E[1]#M0A tie? Hehe, that was a delightful.", + "UNK2": 16011, + "UNK3": -1 + } +] \ No newline at end of file diff --git a/text/jsons/t_mons.json b/text/jsons/t_mons.json new file mode 100644 index 0000000..2668f2f --- /dev/null +++ b/text/jsons/t_mons.json @@ -0,0 +1,3642 @@ +[ + { + "TYPE": "status", + "STRING1": "mon000", + "STRING2": "C_MON000", + "STRING3": "mon000", + "UNK0": [ + 0.800000011920929, + 1.8799999952316284, + 0.9399999976158142 + ], + "UNK1": "000000000000404002000100000438010000380100009b009b00000000005b003b01370000001a0000003100030023006e649b50646464323232641464963232326414646496c8000a000a000a0001030003000301030e000f4f060f0000803f0000803f4d00", + "STRINGS": [ + "Grass Drome", + "A kind of spongy mollusk that\nlikes areas with high humidity.\nProduces orbal energy in its\nbody and uses wind arts." + ] + }, + { + "TYPE": "status", + "STRING1": "mon000_c00", + "STRING2": "C_MON000_C00", + "STRING3": "mon000", + "UNK0": [ + 0.800000011920929, + 1.8799999952316284, + 0.9399999976158142 + ], + "UNK1": "00000000000040400200010000132305000023050000ff00ff0000000000510117020f0130001f0000003a00030056009b00009b646464323232641400003232326414646496c8000a000a000a0000060201030303064b060f4f060fcdcc4c3f9a99993f4d00", + "STRINGS": [ + "Ice Drome", + "An icy cold mollusk that \nbreeds in areas with lots of \nwater. Creates orbal energy in \nits body and uses water arts." + ] + }, + { + "TYPE": "status", + "STRING1": "mon000_c01", + "STRING2": "C_MON000_C01", + "STRING3": "mon000", + "UNK0": [ + 0.800000011920929, + 1.8799999952316284, + 0.9399999976158142 + ], + "UNK1": "0000000000004040020001000022ff0a0000ff0a0000630163010000000006029402440160002e0000003f0003008b00009b9b00646464323232641464963232326414646496c8000a000a000a0003030504050204094b060f4f060fcdcc4c3f9a99993f4d00", + "STRINGS": [ + "Black Drome", + "A mollusk as dark as the\nabyss. Produces orbal \nenergy in its body and \nuses time arts." + ] + }, + { + "TYPE": "status", + "STRING1": "mon000_c02", + "STRING2": "C_MON000_C02", + "STRING3": "mon000", + "UNK0": [ + 0.800000011920929, + 1.8799999952316284, + 0.9399999976158142 + ], + "UNK1": "0000000000004040020001000025f30c0000f30c0000c701c701000000003602c1027501900030000000440003009300af50647d646464323232641464963232326414646496c8000a000a000a00040303020208020a48060f4f060fcdcc4c3f9a99993f4d00", + "STRINGS": [ + "Flash Drome", + "Mollusk that gives off light \nand stores it as a nutrient. \nCreates orbal energy in its \nbody and uses space arts." + ] + }, + { + "TYPE": "status", + "STRING1": "mon000_c03", + "STRING2": "C_MON000_C03", + "STRING3": "mon000", + "UNK0": [ + 0.800000011920929, + 1.8799999952316284, + 0.9399999976158142 + ], + "UNK1": "0000000000004040020001000039e70e0000e70e00002b022b02000000007a036f04a701c000400000004800030006019b000064646464323232641400963232326414646496c8000a000a000a00030208050304060f4f061432000acdcc4c3f9a99993f4d00", + "STRINGS": [ + "Magma Drome", + "A mollusk which draws in \nheat as a nutrient. Creates \norbal energy in its body \nand uses fire arts." + ] + }, + { + "TYPE": "status", + "STRING1": "mon000_c04", + "STRING2": "C_MON000", + "STRING3": "mon000_c04", + "UNK0": [ + 3.0, + 1.8799999952316284, + 0.9399999976158142 + ], + "UNK1": "000000000000404004000100002496af000096af0000b315b3150000000022036c03a701d8003c0000005200030040066e649b41646464323232641464140032320014140064c8000a000a000a001519181613161541a908640f27000000803f0000803f4d4700", + "STRINGS": [ + "Giant Drome", + "A giant mollusk which inhabits\nHeimdallr's underground. \nAttacks all by causing the\nsurrounding space to vibrate." + ] + }, + { + "TYPE": "status", + "STRING1": "mon001", + "STRING2": "C_MON001", + "STRING3": "mon001", + "UNK0": [ + 0.75, + 1.3300000429153442, + 0.6700000166893005 + ], + "UNK1": "000000000000804001000100001000050000000500000000000000000000330196010000c700240004003b0004004b0064be64a5646464006464646464c800646464646464643200c8003200640004020502020102064f061450060a6666663fcdcc8c3f4d00", + "STRINGS": [ + "Egg Snake", + "A reptilian monster that has\ntaken up living in the egg of\na large bird. Its fangs have\ndeadly poison inside them." + ] + }, + { + "TYPE": "status", + "STRING1": "mon001_c00", + "STRING2": "C_MON001_C00", + "STRING3": "mon001", + "UNK0": [ + 1.0, + 1.5, + 0.800000011920929 + ], + "UNK1": "0000000000008040020001000035ac0d0000ac0d000000000000000000004d03c3040000c8014500040057000400eb0064be64a5646464006464646464c800646464646464643200c80032006400040304020504040f4f06144e060a6666663fcdcc8c3f4d00", + "STRINGS": [ + "Rock Serpent", + "A serpent monster that lives\nin an exceptionally hard egg\nof a large bird. Its fangs can\npetrify enemies." + ] + }, + { + "TYPE": "status", + "STRING1": "mon002", + "STRING2": "C_MON002", + "STRING3": "mon002", + "UNK0": [ + 1.5, + 3.0, + 2.5 + ], + "UNK1": "0000a0400000a04003000100001a70170000701700000000000000000000df029d0200002f023000010045000500d7005a6e6478646464646464969632326496643296646464320032003200640006050406040404103200503d08280000803f0000803f4d4700", + "STRINGS": [ + "Rhinocider", + "A monster covered by \nhardened skin. Its powerful \ncharge attacks are strong \nenough to topple orbal cars." + ] + }, + { + "TYPE": "status", + "STRING1": "mon002_c00", + "STRING2": "C_MON002_C00", + "STRING3": "mon002", + "UNK0": [ + 0.75, + 2.5, + 1.75 + ], + "UNK1": "0000a0400000a04002000100002e6022000060220000000000000000000065033b0300001b023d0001003d000500d7005a6e6478646464646464969632326496643296646464320032003200640006020603050a03104e063c32001e0000803f0000803f4d4700", + "STRINGS": [ + "Goldcider", + "A monster covered in a golden,\narmor-like shell. Its immense\nweight gives its charge\nattacks incredible power." + ] + }, + { + "TYPE": "status", + "STRING1": "mon004", + "STRING2": "C_MON004", + "STRING3": "mon004", + "UNK0": [ + 1.0, + 1.25, + 0.5 + ], + "UNK1": "000000000000804001000100000828030000280300000000000000000000c200c10000005c00190003003a000400310064787864646464646464329696326496646464646496c800c800c800c80003010400010203040e00144c060acdcc4c3f9a99993f4d00", + "STRINGS": [ + "Crop Muncher", + "A small monster that attacks\ngranaries. Be cautious of its\nblinding sand attacks." + ] + }, + { + "TYPE": "status", + "STRING1": "mon004_c00", + "STRING2": "C_MON004_C00", + "STRING3": "mon004", + "UNK0": [ + 1.0, + 1.25, + 0.5 + ], + "UNK1": "0000000000008040010001000018dd070000dd0700000000000000000000b201da010000bc0130000a003d000400660064787864646464646464329696326496646464646496c800c800c800c80004040305020102074a060a4c060acdcc4c3f9a99993f4d00", + "STRINGS": [ + "Grass Hopper", + "A relatively docile monster\nthat subsists off grass.\n...Or so you think, until it\nkicks sand in your face." + ] + }, + { + "TYPE": "status", + "STRING1": "mon005", + "STRING2": "C_MON005", + "STRING3": "mon005", + "UNK0": [ + 1.0, + 1.0, + 0.5 + ], + "UNK1": "0000000000008040010001000006d7020000d70200000000000000000000aa00b00000007800210003004200040027007864b4646464646464646496966464646464646464963200c800c8003200010201020102020317001451060acdcc4c3f9a99993f4d00", + "STRINGS": [ + "Pom", + "A dastardly fluff. Steals \nEP and CP from those \nwho dare touch it." + ] + }, + { + "TYPE": "status", + "STRING1": "mon005_c00", + "STRING2": "C_MON005_C00", + "STRING3": "mon005", + "UNK0": [ + 1.0, + 1.0, + 0.5 + ], + "UNK1": "000000000000804001000100002c7b0900007b090000c8000000c8000000b7028002000063014b0022003e000400b20078648c646464646464646464646464646464646464963200c800c8003200040503050304010b430614510614cdcc4c3f9a99993f4d00", + "STRINGS": [ + "Grass Pom", + "A subspecies of Pom that \nsmells of fresh flowers. \nAbsorbs CP and EP." + ] + }, + { + "TYPE": "status", + "STRING1": "mon006", + "STRING2": "C_MON006", + "STRING3": "mon006", + "UNK0": [ + 1.5, + 1.0, + 0.5 + ], + "UNK1": "000000000000a04001000100000a800c0000800c0000c8000000c80000007800af005a00060023000a003c0008000000c8c8c8c8c8c8c80a0a0a0a0a0a0a0a0a0a190a0a000ac800c800c800c8000c0c0c0c0c0c0c420a00640f27000000803f0000803f4d475300", + "STRINGS": [ + "Shining Pom", + "A shining, dastardly fluff \nthat absorbs CP and EP. \nBewitches its foes using \nthe bright light it emits." + ] + }, + { + "TYPE": "status", + "STRING1": "mon006_c00", + "STRING2": "C_MON006", + "STRING3": "mon006", + "UNK0": [ + 1.5, + 1.0, + 0.5 + ], + "UNK1": "000000000000a0400100010000120816000008160000c8000000c8000000220117010a01dd002d000b00460008000000c8c8c8c8c8c8c80a0a0a0a0a0a0a0a0a0a190a0a000ac800c800c800c800101010101010104d0a00640f27000000803f0000803f4d475300", + "STRINGS": [ + "Shining Pom", + "A shining, dastardly fluff \nthat absorbs CP and EP. \nBewitches its foes using \nthe bright light it emits." + ] + }, + { + "TYPE": "status", + "STRING1": "mon006_c01", + "STRING2": "C_MON006", + "STRING3": "mon006", + "UNK0": [ + 1.5, + 1.0, + 0.5 + ], + "UNK1": "000000000000a040010001000019b9220000b9220000c8000000c8000000c001e1013601500137000c00500008000000c8c8c8c8c8c8c80a0a0a0a0a0a0a0a0a0a190a0a000ac800c800c800c80014141414141414580a00640f27000000803f0000803f4d475300", + "STRINGS": [ + "Shining Pom", + "A shining, dastardly fluff \nthat absorbs CP and EP. \nBewitches its foes using \nthe bright light it emits." + ] + }, + { + "TYPE": "status", + "STRING1": "mon006_c02", + "STRING2": "C_MON006", + "STRING3": "mon006", + "UNK0": [ + 1.5, + 1.0, + 0.5 + ], + "UNK1": "000000000000a0400100010000248d2700008d270000c8000000c8000000220235029d01880141000d005a0008000000c8c8c8c8c8c8c80a0a0a0a0a0a0a0a0a0a190a0a000ac800c800c800c80018181818181818630a00640f27000000803f0000803f4d475300", + "STRINGS": [ + "Shining Pom", + "A shining, dastardly fluff \nthat absorbs CP and EP. \nBewitches its foes using \nthe bright light it emits." + ] + }, + { + "TYPE": "status", + "STRING1": "mon006_c03", + "STRING2": "C_MON006", + "STRING3": "mon006", + "UNK0": [ + 1.5, + 1.0, + 0.5 + ], + "UNK1": "000000000000a04001000100002e4448000044480000c8000000c800000069027602eb01e0014b000e00690008000000c8c8c8c8c8c8c80a0a0a0a0a0a0a0a0a0a190a0a000ac800c800c800c8001c1c1c1c1c1c1c6f0a00640f27000000803f0000803f4d475300", + "STRINGS": [ + "Shining Pom", + "A shining, dastardly fluff \nthat absorbs CP and EP. \nBewitches its foes using \nthe bright light it emits." + ] + }, + { + "TYPE": "status", + "STRING1": "mon006_c04", + "STRING2": "C_MON006", + "STRING3": "mon006", + "UNK0": [ + 1.5, + 1.0, + 0.5 + ], + "UNK1": "000000000000a0400100010000387c5f00007c5f0000c8000000c8000000bb02cc022f02300255000f00780008000000c8c8c8c8c8c8c80a0a0a0a0a0a0a0a0a0a190a0a000ac800c800c800c800202020202020207a0a00640f27000000803f0000803f4d475300", + "STRINGS": [ + "Shining Pom", + "A shining, dastardly fluff \nthat absorbs CP and EP. \nBewitches its foes using \nthe bright light it emits." + ] + }, + { + "TYPE": "status", + "STRING1": "mon006_c05", + "STRING2": "C_MON006", + "STRING3": "mon006", + "UNK0": [ + 1.5, + 1.0, + 0.5 + ], + "UNK1": "000000000000a04001000100003f0c9400000c940000c8000000c800000012038003760278025f001000870008000000c8c8c8c8c8c8c80a0a0a0a0a0a0a0a0a0a190a0a000ac800c800c800c80024242424242424850a00640f27000000803f0000803f4d475300", + "STRINGS": [ + "Shining Pom", + "A shining, dastardly fluff \nthat absorbs CP and EP. \nBewitches its foes using \nthe bright light it emits." + ] + }, + { + "TYPE": "status", + "STRING1": "mon006a", + "STRING2": "C_MON006", + "STRING3": "mon006", + "UNK0": [ + 0.8999999761581421, + 1.0, + 0.5 + ], + "UNK1": "000000000000a040010001000009000a0000000a0000c8000000c80000006e00a500500002001e000800370008000000c8c8c8c8c8c8c80a0a0a0a0a0a0a0a0a0a320a0a000ac800c800c800c80008080808080808210f27000f27000000803f0000803f4d475300", + "STRINGS": [ + "Shining Pom", + "A shining, dastardly fluff \nthat absorbs CP and EP. \nBewitches its foes using \nthe bright light it emits." + ] + }, + { + "TYPE": "status", + "STRING1": "mon006_c00a", + "STRING2": "C_MON006", + "STRING3": "mon006", + "UNK0": [ + 0.8999999761581421, + 1.0, + 0.5 + ], + "UNK1": "000000000000a040010001000011a0110000a0110000c8000000c800000012010a01e700cb0028000900410008000000c8c8c8c8c8c8c80a0a0a0a0a0a0a0a0a0a320a0a000ac800c800c800c8000c0c0c0c0c0c0c2c0f27000f27000000803f0000803f4d475300", + "STRINGS": [ + "Shining Pom", + "A shining, dastardly fluff \nthat absorbs CP and EP. \nBewitches its foes using \nthe bright light it emits." + ] + }, + { + "TYPE": "status", + "STRING1": "mon006_c01a", + "STRING2": "C_MON006", + "STRING3": "mon006", + "UNK0": [ + 0.8999999761581421, + 1.0, + 0.5 + ], + "UNK1": "000000000000a040010001000018851a0000851a0000c8000000c8000000ac01c9012201330132000a004b0008000000c8c8c8c8c8c8c80a0a0a0a0a0a0a0a0a0a320a0a000ac800c800c800c80010101010101010370f27000f27000000803f0000803f4d475300", + "STRINGS": [ + "Shining Pom", + "A shining, dastardly fluff \nthat absorbs CP and EP. \nBewitches its foes using \nthe bright light it emits." + ] + }, + { + "TYPE": "status", + "STRING1": "mon006_c02a", + "STRING2": "C_MON006", + "STRING3": "mon006", + "UNK0": [ + 0.8999999761581421, + 1.0, + 0.5 + ], + "UNK1": "000000000000a040010001000023a5230000a5230000c8000000c8000000ff011f02880181013c000b00550008000000c8c8c8c8c8c8c80a0a0a0a0a0a0a0a0a0a320a0a000ac800c800c800c80014141414141414420f27000f27000000803f0000803f4d475300", + "STRINGS": [ + "Shining Pom", + "A shining, dastardly fluff \nthat absorbs CP and EP. \nBewitches its foes using \nthe bright light it emits." + ] + }, + { + "TYPE": "status", + "STRING1": "mon006_c03a", + "STRING2": "C_MON006", + "STRING3": "mon006", + "UNK0": [ + 0.8999999761581421, + 1.0, + 0.5 + ], + "UNK1": "000000000000a04001000100002d9e3900009e390000c8000000c800000053026802d501ce0146000c005f0008000000c8c8c8c8c8c8c80a0a0a0a0a0a0a0a0a0a320a0a000ac800c800c800c800181818181818184d0f27000f27000000803f0000803f4d475300", + "STRINGS": [ + "Shining Pom", + "A shining, dastardly fluff \nthat absorbs CP and EP. \nBewitches its foes using \nthe bright light it emits." + ] + }, + { + "TYPE": "status", + "STRING1": "mon006_c04a", + "STRING2": "C_MON006", + "STRING3": "mon006", + "UNK0": [ + 0.8999999761581421, + 1.0, + 0.5 + ], + "UNK1": "000000000000a0400100010000370852000008520000c8000000c8000000a402bb0214021b0250000d00690008000000c8c8c8c8c8c8c80a0a0a0a0a0a0a0a0a0a320a0a000ac800c800c800c8001c1c1c1c1c1c1c580f27000f27000000803f0000803f4d475300", + "STRINGS": [ + "Shining Pom", + "A shining, dastardly fluff \nthat absorbs CP and EP. \nBewitches its foes using \nthe bright light it emits." + ] + }, + { + "TYPE": "status", + "STRING1": "mon006_c05a", + "STRING2": "C_MON006", + "STRING3": "mon006", + "UNK0": [ + 0.8999999761581421, + 1.0, + 0.5 + ], + "UNK1": "000000000000a04001000100003e6874000068740000c8000000c8000000fe026b03690264025a000e00730008000000c8c8c8c8c8c8c80a0a0a0a0a0a0a0a0a0a320a0a000ac800c800c800c80020202020202020630f27000f27000000803f0000803f4d475300", + "STRINGS": [ + "Shining Pom", + "A shining, dastardly fluff \nthat absorbs CP and EP. \nBewitches its foes using \nthe bright light it emits." + ] + }, + { + "TYPE": "status", + "STRING1": "mon007", + "STRING2": "C_MON007", + "STRING3": "mon007", + "UNK0": [ + 0.4000000059604645, + 1.75, + 1.25 + ], + "UNK1": "0000000000008040030001000036b60b0000b60b0000e703e70300000000570371059f01160042001c0063000400d600a00000646464646464646464320064646464646464643200c800c8003200060703030203040f51061432000a6666663fcdcc8c3f4d00", + "STRINGS": [ + "Cryon Bit", + "A rare infant monster. Has the\nunusual habit of freezing its\nprey before consuming it." + ] + }, + { + "TYPE": "status", + "STRING1": "mon008", + "STRING2": "C_MON008", + "STRING3": "mon008", + "UNK0": [ + 1.0, + 1.7999999523162842, + 0.30000001192092896 + ], + "UNK1": "000000000000a04001000100002fc6070000c6070000e703e70300000000ec02a8024801cd013a001c0058000500b90064a550645a9b6414141414141414141414140014143232003200c8000a00020307030403040d16001e030014cdcc4c3f9a99993f4d5300", + "STRINGS": [ + "Shadow Spirit", + "An eerie spirit that lacks\na solid body. Gives those who\nhear it nightmares, causing\nthem to lose their sanity." + ] + }, + { + "TYPE": "status", + "STRING1": "mon008_c00", + "STRING2": "C_MON008_C00", + "STRING3": "mon008", + "UNK0": [ + 1.0, + 1.7999999523162842, + 0.30000001192092896 + ], + "UNK1": "000000000000a0400100010000337e1300007e130000cf07cf0700000000ec024003af0131023f0012005d000500be0064a550645a9b6414141414141414141414140014143232003200c8000a00030407030205030e51061432000acdcc4c3f9a99993f4d5300", + "STRINGS": [ + "Ghost Soul", + "A spirit formed from grudges.\nIts ominous voice beckons all\nhumans who hear it to an\neternal slumber." + ] + }, + { + "TYPE": "status", + "STRING1": "mon009", + "STRING2": "C_MON009", + "STRING3": "mon009", + "UNK0": [ + 1.0, + 1.0, + 0.5 + ], + "UNK1": "00000000000080400100010000227b0900007b0900000000000000000000c30108020000950150000c004a000500900064647864646464326464326496966496969696326496640032003200c80004040703010403094a06144e060acdcc4c3f9a99993f4d00", + "STRINGS": [ + "Dirty Rat", + "A rat monster which lives in\ndark underground areas. \nPounces on enemies unnoticed,\ndelaying their movement." + ] + }, + { + "TYPE": "status", + "STRING1": "mon009_c00", + "STRING2": "C_MON009_C00", + "STRING3": "mon009", + "UNK0": [ + 1.0, + 1.0, + 0.5 + ], + "UNK1": "00000000000080400100010000134b0600004b06000000000000000000007701bf01000077012d000a00400005004f0064647896646464326464326496966496969696326496640032003200c80004010302020302064e060a320005cdcc4c3f9a99993f4d00", + "STRINGS": [ + "Jewel Rat", + "A quick-witted rat monster\nwith horns as hard as jewels. \nBeware its pounce attack." + ] + }, + { + "TYPE": "status", + "STRING1": "mon012", + "STRING2": "C_MON012", + "STRING3": "mon012", + "UNK0": [ + 0.800000011920929, + 1.25, + 0.800000011920929 + ], + "UNK1": "000000000000a04001000100002d30080000300800000000000000000000e602a2020000a90134000e004e000500be00a0288c646464643264646496c832649696c8966464963200320032003200010504060504040e32003cdc00146666663f9a99993f4d00", + "STRINGS": [ + "Coco Panda", + "An intelligent, bipedal \nmonster. Beats humans who \npass by with a stick it made \nfrom a tree branch." + ] + }, + { + "TYPE": "status", + "STRING1": "mon013", + "STRING2": "C_MON013", + "STRING3": "mon013", + "UNK0": [ + 0.800000011920929, + 1.25, + 0.800000011920929 + ], + "UNK1": "000000000000a04001000100000c100500001005000000000000000000002701fe00000063001f000c00330005004e006478a0966464643264646496c832649696c8966464963200320032003200030602020404030c4c063c3200146666663f9a99993f4d00", + "STRINGS": [ + "Sasa Panda", + "A surprisingly ferocious panda\nmonster. Wields a piece of\nbamboo like a weapon to fight\noff its enemies." + ] + }, + { + "TYPE": "status", + "STRING1": "mon014", + "STRING2": "C_MON014", + "STRING3": "mon014", + "UNK0": [ + 0.800000011920929, + 1.25, + 0.800000011920929 + ], + "UNK1": "000000000000a0400100010000120805000008050000000000000000000093016e010000c700220010004e00050054006450b4af6464643264646496c832649696c8966464963200320032003200020603060203040f4c063c3200146666663f9a99993f4d00", + "STRINGS": [ + "Green Raccoon", + "A small and extremely \ncautious raccoon. The stick it\nalways carries around was\ntaken from a poisonous plant." + ] + }, + { + "TYPE": "status", + "STRING1": "mon015", + "STRING2": "C_MON015", + "STRING3": "mon015", + "UNK0": [ + 1.0, + 2.75, + 0.5 + ], + "UNK1": "0000000000008040010001000015c4050000c40500001202120200000000b0018801c500bb002c0018004a0004005a0064646464646464326464643264646432646432646432320032006400c800020101030404050751061432000a0000803f0000803f4d00", + "STRINGS": [ + "Orderbelisk", + "A mysterious, floating pillar.\nUses powerful space arts to \nerase intruders from existence." + ] + }, + { + "TYPE": "status", + "STRING1": "mon015_c01", + "STRING2": "C_MON015_C01", + "STRING3": "mon015", + "UNK0": [ + 1.0, + 2.75, + 0.5 + ], + "UNK1": "000000000000804001000100003f280a0000280a00000f270f2700000000ee0315078401fd014b00190068000400120164646464647d64326464643264643232646464646464320032006400c800040405060606051432001405000a0000803f0000803f4d5300", + "STRINGS": [ + "Judge Pillar", + "A heavenly pillar which acts\nas a judge. Stops those who \ntouch it from moving, and \nuses healing arts." + ] + }, + { + "TYPE": "status", + "STRING1": "mon016", + "STRING2": "C_MON016", + "STRING3": "mon016", + "UNK0": [ + 1.0, + 2.0, + 0.5 + ], + "UNK1": "0000000000008040020001000025ac0d0000ac0d0000000000000000000075020a020000e20132000400480004009a008c5a7d646464646464646464329664649632646464963200c80032003200010506030404030a4d060f4e06056666663fcdcc8c3f4d00", + "STRINGS": [ + "Sharkodile", + "An aquatic monster that lives\nin underground waterways. \nHas a giant mouth that \nlets it tear through prey." + ] + }, + { + "TYPE": "status", + "STRING1": "mon017", + "STRING2": "C_MON017", + "STRING3": "mon017", + "UNK0": [ + 1.0, + 2.0, + 1.75 + ], + "UNK1": "00000000000080400200010000277c9200007c9200000000000000000000ce04820300008e013b0001005000040090067d5073646464646414646464643200646400641400646400c8003200c800161c1619171614413200647108500000803f0000803f4d4700", + "STRINGS": [ + "Great Sharkodile", + "An aquatic monster that rules\nthe capital's underground\nwaterways. Its jaw is strong\nenough to grind bone to dust." + ] + }, + { + "TYPE": "status", + "STRING1": "mon018", + "STRING2": "C_MON018", + "STRING3": "mon018", + "UNK0": [ + 1.0, + 2.0, + 0.75 + ], + "UNK1": "000000000000804001000100001b87050000870500000000000000000000bc01a001000000003a002600420005006c00501ec8466464646464646464646464646464646464643200c8003200320002030203030303070f00144c060a6666663fcdcc8c3f4d00", + "STRINGS": [ + "Creepy Sheep", + "A dynamic sheep monster. \nCapable of using an unusual\nboxing style that lets it put\nits foes to sleep." + ] + }, + { + "TYPE": "status", + "STRING1": "mon019", + "STRING2": "C_MON019", + "STRING3": "mon019", + "UNK0": [ + 1.0, + 2.5, + 0.75 + ], + "UNK1": "000040400000a04001000100000f481d0000481d00000000000000000000430132010000bc002c0000003f000500560191645a6496646432146464643264003264000a6400320a000a000a0032000a0b090c0e0e0e23320064a8083c0000803f0000803f4d4700", + "STRINGS": [ + "Cherubic Gate", + "A floor guardian that has \nmerged with a door. Fires\nlight rays from the jewel at \nits center to confuse foes. " + ] + }, + { + "TYPE": "status", + "STRING1": "mon019_c00", + "STRING2": "C_MON019_C00", + "STRING3": "mon019", + "UNK0": [ + 1.0, + 2.5, + 0.75 + ], + "UNK1": "000040400000a040010001000021d0300000d03000000f270f27000000005702cf0700004d013b000000490005009a0291645a6496646432146464643264003264000a6400320a000a000a003200101312140a0a0a3232006404093c0000803f0000803f4d475300", + "STRINGS": [ + "Seraphic Gate", + "A glistening floor guardian.\nUnleashes rays of light and\nlowers foes' mobility with a\ncursed roar." + ] + }, + { + "TYPE": "status", + "STRING1": "mon020", + "STRING2": "C_MON020", + "STRING3": "mon020", + "UNK0": [ + 1.0, + 1.5, + 1.25 + ], + "UNK1": "000000000000804001000100000dc0090000c0090000000000000000000042013f010000a8001b000100380005004e00646487646464643264646432963264326464966464646400320032003200050205020303040c4c06283200140000803f0000a03f4d00", + "STRINGS": [ + "Gordi Chief", + "A primate that dwells in\nthe forest. Its blows are so\npowerful that they knock \nthe recipient unconscious." + ] + }, + { + "TYPE": "status", + "STRING1": "mon020_c00", + "STRING2": "C_MON020_C00", + "STRING3": "mon020", + "UNK0": [ + 1.0, + 1.5, + 1.25 + ], + "UNK1": "000000000000804001000100002e90110000901100000000000000000000cc02cf020000e9012d00020042000500c700646487646464643264646432963264326464966464646400320032003200060404050404030d4c06503200140000803f0000a03f4d00", + "STRINGS": [ + "Gordi Schnarr", + "A large monkey monster \nthat lives deep in the forest. \nIts powerful arms are capable \nof dealing devastating blows." + ] + }, + { + "TYPE": "status", + "STRING1": "mon021", + "STRING2": "C_MON021", + "STRING3": "mon021", + "UNK0": [ + 1.0, + 2.0, + 0.8999999761581421 + ], + "UNK1": "0000000000008040010001000011bc040000bc0400000000000000000000910185010000b40023000300500003004a0064aa7d646464646464646464646464646464646464646400c80064006400010502050002030506000f4e060f6666663fcdcc8c3f4d00", + "STRINGS": [ + "War Mantis", + "A large mantis monster. \nWields an incredibly sharp\nscythe capable of decapitating\nits prey in a single strike." + ] + }, + { + "TYPE": "status", + "STRING1": "mon021_c00", + "STRING2": "C_MON021_C00", + "STRING3": "mon021", + "UNK0": [ + 1.0, + 2.0, + 0.8999999761581421 + ], + "UNK1": "000000000000804001000100003694110000941100000000000000000000f8036a030000a1013c00040058000500f80064aa7d646464646464646464969664646464646464646400c80064006400040108020503050f0600144e06146666663fcdcc8c3f4d00", + "STRINGS": [ + "Death Sickle", + "A bipedal mantis monster. Has\nsharp sickles on its forelegs\nand attacks humans' necks on\nsight." + ] + }, + { + "TYPE": "status", + "STRING1": "mon022", + "STRING2": "C_MON022", + "STRING3": "mon022", + "UNK0": [ + 1.0, + 1.0, + 1.0 + ], + "UNK1": "000000000000a040020001000008b0030000b00300000000000000000000d6009c00000058001f0003003c0005003b00646487646464646432649664963264326464646464643200900132003200040205030000000400000a4c060a0000803f9a99993f4d00", + "STRINGS": [ + "Fanged Wolf", + "A wolf monster that moves in\npacks. Attacks prey with its\npowerful fangs." + ] + }, + { + "TYPE": "status", + "STRING1": "mon022_c00", + "STRING2": "C_MON022_C00", + "STRING3": "mon022", + "UNK0": [ + 1.0, + 1.0, + 1.0 + ], + "UNK1": "000000000000a0400200010000359011000090110000000000000000000019046603000043014100090062000500eb00646487646464646432649664963264326464646464643200900132003200040306030603020f4c060f50060f0000803f9a99993f4d00", + "STRINGS": [ + "Greedy Wolf", + "A greedy wolf that came from\nthe mountains in search of \nfood. Pursues prey endlessly,\nattacking its windpipe first." + ] + }, + { + "TYPE": "status", + "STRING1": "mon022_c01", + "STRING2": "C_MON022_C01", + "STRING3": "mon022", + "UNK0": [ + 1.0, + 1.0, + 1.0 + ], + "UNK1": "000000000000a04002000100001ba40b0000a40b00000000000000000000e901d70100000000300006004e0005007500646487646464646432649664963264326464646464643200900132003200020605060101010800000a4c060a0000803f9a99993f4d00", + "STRINGS": [ + "White Fang", + "A wolf monster with white\nfur. Roams the highlands\nand always hunts together\nwith its pack." + ] + }, + { + "TYPE": "status", + "STRING1": "mon023", + "STRING2": "C_MON023", + "STRING3": "mon023", + "UNK0": [ + 1.0, + 1.0, + 0.75 + ], + "UNK1": "000000000000a040020001000035b3150000b315000000000000000000004503120300004d0139000b0058000500ef00323287966464646464646464646464969664646464646400c80064006400030707040202020f4d0614dc0005cdcc4c3f9a99993f4d00", + "STRINGS": [ + "Mad Penguin", + "An avian monster that lives in\nbogs and throws small fish.\nIt can't fly, but it doesn't\ncare, either." + ] + }, + { + "TYPE": "status", + "STRING1": "mon024", + "STRING2": "C_MON024", + "STRING3": "mon024", + "UNK0": [ + 0.75, + 2.6700000762939453, + 0.6700000166893005 + ], + "UNK1": "0000000000008040030001000022ac0d0000ac0d000000000000000000001e0227020000000035001000480004008d0082648c6464646464646464329664646464646464646432003200c8003200040305060203040a4c060f50060fcdcc4c3f9a99993f4d00", + "STRINGS": [ + "Ball Bat", + "An exceptionally heavy bat\nmonster. Tackles enemies from\nthe air with incredible force,\nknocking them back." + ] + }, + { + "TYPE": "status", + "STRING1": "mon024_c00", + "STRING2": "C_MON024_C00", + "STRING3": "mon024", + "UNK0": [ + 0.75, + 2.6700000762939453, + 0.6700000166893005 + ], + "UNK1": "0000000000008040030001000036021700000217000000000000000000009003cc0300009c0243000a0048000400fd0082648c6464646464646464329664646464646464646432003200c8003200030603060304040f50061432000acdcc4c3f9a99993f4d00", + "STRINGS": [ + "Metal Bat", + "A large bat monster. A steady \ndiet of ore has made its fur \nas hard as steel." + ] + }, + { + "TYPE": "status", + "STRING1": "mon025", + "STRING2": "C_MON025", + "STRING3": "mon025", + "UNK0": [ + 0.800000011920929, + 2.5, + 0.9399999976158142 + ], + "UNK1": "000000000000804008000100002f551300005513000000000000000000006e03ec0200009a024500040050000400c8006e6464649bc3693232323200323264320032006464643200640032006400060306030504040e4e06143200146666663fcdcc8c3f4d5300", + "STRINGS": [ + "Death Slugger", + "A purgatorial tank that mows\ndown sinners in its wake. \nMoves ceaselessly, firing its\ncannon with reckless abandon." + ] + }, + { + "TYPE": "status", + "STRING1": "mon025_c00", + "STRING2": "C_MON025_C00", + "STRING3": "mon025", + "UNK0": [ + 0.800000011920929, + 2.5, + 0.9399999976158142 + ], + "UNK1": "000000000000804001000100002f551300005513000000000000000000004202560200009a023100040050000400c2006e6464649bc369323232320032326432003200646464320064003200640004010405080101050f27000f27006666663fcdcc8c3f4d5300", + "STRINGS": [ + "Demon Rider", + "Tank made by alchemy, it\ncan pulverize anything with\nits cannon. Its charge attack\nslays warriors in one strike." + ] + }, + { + "TYPE": "status", + "STRING1": "mon026", + "STRING2": "C_MON026", + "STRING3": "mon026", + "UNK0": [ + 1.0, + 2.0, + 1.0 + ], + "UNK1": "000000000000804001000100002e444800004448000000000000000000005703140300005802400002005a000400a00564646464646464006464640064640064640000640064640064006400c8001616161614141441e008640f27000000803f0000803f4d4700", + "STRINGS": [ + "Phalanx J9", + "A mechanical monster. Has\nimmense firepower, but all\nelse about it is unknown." + ] + }, + { + "TYPE": "status", + "STRING1": "mon026_c00", + "STRING2": "C_MON026", + "STRING3": "mon026", + "UNK0": [ + 1.0, + 2.0, + 1.0 + ], + "UNK1": "0000000000008040010001000032ae150000ae1500000000000000000000360348030000bc02400002004f000300d70064646464646464006464640064640064640000646464640064006400c800060606060404040e07000a32000a0000803f0000803f4d4700", + "STRINGS": [ + "Phalanx J9", + "An archaism designed to aid in\nconquering enemy strongholds.\nFires small missiles effective\nagainst bunched-up foes." + ] + }, + { + "TYPE": "status", + "STRING1": "mon026_c01", + "STRING2": "C_MON026", + "STRING3": "mon026", + "UNK0": [ + 1.0, + 2.0, + 1.0 + ], + "UNK1": "000000000000804001000100003a2e2200002e22000000000000000000000d04f203000020034000020059000300070164646464646464006464640064640064640000646464640064006400c800060606060505051207000a32000a0000803f0000803f4d4700", + "STRINGS": [ + "Phalanx J9", + "An archaism designed to aid in\nconquering enemy strongholds.\nFires small missiles effective\nagainst bunched-up foes." + ] + }, + { + "TYPE": "status", + "STRING1": "mon026_c02", + "STRING2": "C_MON026", + "STRING3": "mon026", + "UNK0": [ + 1.0, + 2.0, + 1.0 + ], + "UNK1": "0000000000008040010001000032ae150000ae1500000000000000000000730216030000bc021e00020055000300e10064646464646464006464640064640064640000646464640064006400c800050505050404040d0f27000f27000000803f0000803f4d4700", + "STRINGS": [ + "Phalanx J9", + "An archaism designed to aid in\nconquering enemy strongholds.\nFires small missiles effective\nagainst bunched-up foes." + ] + }, + { + "TYPE": "status", + "STRING1": "mon027", + "STRING2": "C_MON027", + "STRING3": "mon027", + "UNK0": [ + 1.0, + 2.0, + 1.0 + ], + "UNK1": "000000000000804001000100001254380000543800000000000000000000e3010e02000000002b0005004e000500cc046482506e646464323232643264640a64320032320032320032000a0032001309110d100e0f2dd608640f27000000803f0000803f4d4700", + "STRINGS": [ + "Fate Spinner", + "A menacing monster with two\nsharp claws. Attacks with a\npoisonous liquid that causes \nfires and hallucinations." + ] + }, + { + "TYPE": "status", + "STRING1": "mon027_c00", + "STRING2": "C_MON027", + "STRING3": "mon027", + "UNK0": [ + 1.0, + 2.0, + 1.0 + ], + "UNK1": "000000000000804001000100002742180000421800000000000000000000b202e0020000f2013c000a003e0005009f006482506e646464323232643264640a64320032320032320032000a003200040206020604050f4e061432000a6666663fcdcc8c3f4d4700", + "STRINGS": [ + "Fate Spinner", + "A menacing monster with two\nsharp claws. Attacks with a\npoisonous liquid that causes \nfires and hallucinations." + ] + }, + { + "TYPE": "status", + "STRING1": "mon028", + "STRING2": "C_MON028", + "STRING3": "mon028", + "UNK0": [ + 0.25, + 4.0, + 1.600000023841858 + ], + "UNK1": "000000000000a040040001000009e2000000e200000000000000000000008a001300000000001b006300580006004700a56ec8c8646464323264646400c86464006432643232c800320032006400060902000302000a4706643200326666663fcdcc8c3f4d00", + "STRINGS": [ + "Acerbic Tomartian", + "A living acerbic tomato, born\nfrom a sudden mutation. Its\njuices are bitter enough to\nmake you go insane." + ] + }, + { + "TYPE": "status", + "STRING1": "mon028_c00", + "STRING2": "C_MON028_C00", + "STRING3": "mon028", + "UNK0": [ + 0.25, + 4.0, + 1.600000023841858 + ], + "UNK1": "000000000000a040040001000038d4080000d40800000000000000000000c0031d000000000046006c006c000600f000a56ec8c8646464323264646400c86464006432643232c8003200320064000a100400070502184706643200326666663fcdcc8c3f4d00", + "STRINGS": [ + "Hellish Tomartian", + "A mutation of a mutation,\nwith an obscenely hellish\nlevel of bitterness." + ] + }, + { + "TYPE": "status", + "STRING1": "mon029", + "STRING2": "C_MON029", + "STRING3": "mon029", + "UNK0": [ + 1.0, + 2.0, + 2.5 + ], + "UNK1": "000000000000a04003000100001a384a0000384a00000000000000000000490210025e0100003b000200460003008e03a06464006464646414646464646400646400641400643200c80032000a000c130f1913141037ea08640f27000000803f0000803f4d4700", + "STRINGS": [ + "Thunder Quaker", + "An ancient fish capable of\nproducing electricity in its\nbody. Can char foes within\na wide area." + ] + }, + { + "TYPE": "status", + "STRING1": "mon030", + "STRING2": "C_MON030", + "STRING3": "mon030", + "UNK0": [ + 1.0, + 2.0, + 0.75 + ], + "UNK1": "000000000000804001000100002f82140000821400002c012c0100000000e7027203bd01bf013c0000004b000400c4007d646464af3c50006400000032329632003200646464320032003200c800030202020407060d00000f32000a6666663fcdcc8c3f4d5300", + "STRINGS": [ + "Wandering Armor", + "A suit of armor from the\nMiddle Ages that gained the\nability to move in a strange\nenvironment. Very sturdy." + ] + }, + { + "TYPE": "status", + "STRING1": "mon032", + "STRING2": "C_MON032", + "STRING3": "mon032", + "UNK0": [ + 1.0, + 2.25, + 0.25 + ], + "UNK1": "000000000000804001000100002f08070000080700000000000000000000fd021b020000a501450010005b000400be0082646464be5f640064000000323296320032006464643200320032009001030403070502020d06000f32000a6666663fcdcc8c3f4d5300", + "STRINGS": [ + "Wandering Sword", + "A sword from the Middle Ages\ncapable of fighting by itself.\nCan take the life of an\nintruder in a single blow." + ] + }, + { + "TYPE": "status", + "STRING1": "mon037", + "STRING2": "C_MON037", + "STRING3": "mon037", + "UNK0": [ + 1.0, + 5.349999904632568, + 1.5 + ], + "UNK1": "000000000000a04003000100003152c1000052c1000000000000c800000094037403000091024700080063000300480d8764503269967d0014640000141400141400001400323200320032000a0027241e1e2a1e21780a00640f27000000803f0000803f4d475300", + "STRINGS": [ + "Nosferatu", + "An immortal king from ancient\nlegends with authority over\nsouls. Takes the souls of the\ninnocent and devours them." + ] + }, + { + "TYPE": "status", + "STRING1": "mon038", + "STRING2": "C_MON038", + "STRING3": "mon038", + "UNK0": [ + 1.0, + 1.75, + 0.25 + ], + "UNK1": "000000000000000000000000003ce8030000e80300000000000000000000e803c8000000000000000000000000000000646464646464640000000000000000000000000000000a000a000a000a0000000000000000000f27000f27000000803f0000803f4d00", + "STRINGS": [ + "NT-I", + "A self-detonating mine set \nby C. Causes a large-scale\nexplosion." + ] + }, + { + "TYPE": "status", + "STRING1": "mon039", + "STRING2": "C_MON039", + "STRING3": "mon039", + "UNK0": [ + 1.0, + 2.5, + 1.0 + ], + "UNK1": "00000040000080400100010000287e2200007e22000000000000c80032004503f90200009401410014005500050000056464285064916464326464323232001432003232006464006400c800c800040504040706071602006408003c0000803f0000803f4d475300", + "STRINGS": [ + "Cursed Sculpture", + "A devil said to have existed\nsince the Dark Ages. With its\nspread wings, it is a symbol\nof fear." + ] + }, + { + "TYPE": "status", + "STRING1": "mon039_c00", + "STRING2": "C_MON039_C00", + "STRING3": "mon039", + "UNK0": [ + 1.0, + 2.5, + 1.5 + ], + "UNK1": "0000004000008040020001000017003200000032000000000000c8003200b10188010000bb0036000a004a0005002b026464285064916464326464323232001432003232006464006400c800c800100c10120d0c0d2d320064c8083c0000803f0000803f4d4700", + "STRINGS": [ + "Pit Demon", + "A devil's minion, mentioned in\nthe Testaments. Charms foes\nwith waves, luring them into\nan eternal slumber." + ] + }, + { + "TYPE": "status", + "STRING1": "mon040", + "STRING2": "C_MON040", + "STRING3": "mon040", + "UNK0": [ + 1.0, + 2.0, + 0.75 + ], + "UNK1": "000000000000a040010001000004ff010000ff010000000000000000000062009a00000052002100040038000500220064648c6464646464646464c89696646464646464646464006400c800640002010303010000034c061432000a0000803f0000803f4d00", + "STRINGS": [ + "Flying Feline", + "A winged feline monster. \nRelentlessly pursues its\nprey, attacking with kicks\nfrom above." + ] + }, + { + "TYPE": "status", + "STRING1": "mon040_c00", + "STRING2": "C_MON040_C00", + "STRING3": "mon040", + "UNK0": [ + 1.0, + 2.0, + 0.75 + ], + "UNK1": "000000000000a0400100010000139905000099050000000000000000000068018701000069012200160042000500540064a08c6464646464326400c89696643264646432646464006400c800640003020305020102064c061406000acdcc4c3fcdcc8c3f4d00", + "STRINGS": [ + "White Feline", + "A subspecies of flying feline\nwith white fur. Once raised \nas a pet by a noble, but was\nabandoned and turned feral." + ] + }, + { + "TYPE": "status", + "STRING1": "mon041", + "STRING2": "C_MON041", + "STRING3": "mon041", + "UNK0": [ + 1.0, + 1.5, + 0.75 + ], + "UNK1": "000000000000804001000100000653030000530300000000000000000000c6002c01000055001c0001003c0005002300646464966464646464646464646464646464646464646400c8006400900104020202010001034906144f060acdcc4c3f0000803f4d00", + "STRINGS": [ + "Dastardly Amalgam", + "A mollusk monster that covers\nitself with broken stones and\nrocks for protection." + ] + }, + { + "TYPE": "status", + "STRING1": "mon041_c00", + "STRING2": "C_MON041_C00", + "STRING3": "mon041", + "UNK0": [ + 1.0, + 1.5, + 0.75 + ], + "UNK1": "0000000000008040010001000029230b0000230b00000000000000000000b102830300002c013700010049000500ae00646464966464646464646464000064646464646464646400c80064009001050600000306050b4f061e32000acdcc4c3f0000803f4d5300", + "STRINGS": [ + "Frost Biter", + "A mollusk monster covered\nwith very cold minerals. All\nwho touch it turn to ice." + ] + }, + { + "TYPE": "status", + "STRING1": "mon042", + "STRING2": "C_MON042", + "STRING3": "mon042", + "UNK0": [ + 1.0, + 1.0, + 0.75 + ], + "UNK1": "0000000000008040010001000004d1010000d101000000000000000000006f00e10000003300260004003d00050021006464aa646464643264646464649664646464646464643200c8003200c800020203010100010315000a4e060a0000803f0000803f4d00", + "STRINGS": [ + "Coin Beetle", + "A golden-colored beetle. Its \ncarapace is hard like a coin." + ] + }, + { + "TYPE": "status", + "STRING1": "mon042_c00", + "STRING2": "C_MON042_C00", + "STRING3": "mon042", + "UNK0": [ + 1.0, + 1.0, + 0.75 + ], + "UNK1": "00000000000080400100010000396a0c00006a0c0000000000000000000085031705000096022c0002005f000500f00064828c7d6464643264646464329632646464646464643200c8003200c80005040505030303104e060a32000acdcc4c3fcdcc8c3f4d00", + "STRINGS": [ + "Metal Beetle", + "A beetle with a metallic\nshell. Was once frequently\ndug up when people mistook \nthem for actual ore." + ] + }, + { + "TYPE": "status", + "STRING1": "mon043", + "STRING2": "C_MON043", + "STRING3": "mon043", + "UNK0": [ + 0.800000011920929, + 1.25, + 1.25 + ], + "UNK1": "000000000000a040020001000010420500004205000000000000000000006f013a0100009c0031000800570006005200af6487646464643264646496963264326464326464646400c80064006400030406050000000500000a4c060a6666663fcdcc8c3f4d00", + "STRINGS": [ + "Attack Dog", + "A canine monster with a \nviolent temperament. Known\nfor the spines covering much\nof its body." + ] + }, + { + "TYPE": "status", + "STRING1": "mon043_c00", + "STRING2": "C_MON043_C00", + "STRING3": "mon043_c00", + "UNK0": [ + 0.800000011920929, + 1.25, + 1.25 + ], + "UNK1": "000000000000a04002000100002f1b0e00001b0e000000000000000000005303fc02000081024a000a0058000600c400af6487646478b93264646496963264326464326464646400c80064006400040604060302020d0b00144c06146666663fcdcc8c3f4d5300", + "STRINGS": [ + "Dark Canine", + "A nocturnal canine monster\nthat made its way into the\ncastle. Aggressive, with\npoison in its claws." + ] + }, + { + "TYPE": "status", + "STRING1": "mon043_c01", + "STRING2": "C_MON043", + "STRING3": "mon043", + "UNK0": [ + 1.25, + 1.600000023841858, + 1.399999976158142 + ], + "UNK1": "000000000000a0400200010000390c1e00000c1e000000000000000000002104a50300006d024a000c00590006000e01af6487646464643264646496963264326464326464646400c8006400640004080805030303124c061e01000a0000803fcdcc8c3f4d00", + "STRINGS": [ + "Attack Dog G", + "The name given to especially\nlarge attack dogs. They are\neven more dangerous than\nthe regular kind." + ] + }, + { + "TYPE": "status", + "STRING1": "mon044", + "STRING2": "C_MON044", + "STRING3": "mon044", + "UNK0": [ + 1.0, + 2.0, + 0.75 + ], + "UNK1": "000000000000804002000100000bcc040000cc0400000000000000000000d5001601000069001e0004002d00050042007d648c50646464966464329696c8963264643264646464006400c8006400020004040202020451060a4e060acdcc4c3f9a99993f4d00", + "STRINGS": [ + "Blade Horn", + "A large insect monster with a\nhorn resembling a blade. Uses\nit to forcefully shatter foes." + ] + }, + { + "TYPE": "status", + "STRING1": "mon044_c00", + "STRING2": "C_MON044_C00", + "STRING3": "mon044", + "UNK0": [ + 1.0, + 2.0, + 0.75 + ], + "UNK1": "0000000000008040020001000035a4130000a413000000000000000000008c03ea030000ef01380023005b000500e9007d648c50646464966464329696c8963264643264646464006400c8006400030707070403040f13001451060fcdcc4c3f9a99993f4d00", + "STRINGS": [ + "Blue Horn", + "A beetle covered with a hard\nshell. Knocks prey unconscious\nwith its powerful horn." + ] + }, + { + "TYPE": "status", + "STRING1": "mon044_c01", + "STRING2": "C_MON044_C01", + "STRING3": "mon044_c01", + "UNK0": [ + 1.0, + 2.0, + 0.75 + ], + "UNK1": "000000000000804002000100000bb7040000b70400000000000000000000d7001301000000001e0004003900050043007d648c50646464966464329696c8963264643264646464006400c8006400030005050101010451060a4e060acdcc4c3f9a99993f4d00", + "STRINGS": [ + "Blade Pincer", + "An arthropod monster with a \npair of sharp pincers and a \nhard shell. Loathed by people\nfor munching on crops." + ] + }, + { + "TYPE": "status", + "STRING1": "mon044_c02", + "STRING2": "C_MON044_C02", + "STRING3": "mon044_c01", + "UNK0": [ + 1.0, + 2.0, + 0.75 + ], + "UNK1": "0000000000008040020001000035b10f0000b10f00000000000000000000ca03010400008e014500230058000500e5007d648c50646464966464329696c8963264643264646464006400c8006400050208030301050f51060f4e060acdcc4c3f9a99993f4d00", + "STRINGS": [ + "Steel Ladybug", + "A beetle monster with a shell\nof steel. Its sharp claws can\nsnap trees in half." + ] + }, + { + "TYPE": "status", + "STRING1": "mon045", + "STRING2": "C_MON045", + "STRING3": "mon045", + "UNK0": [ + 0.75, + 4.0, + 1.3300000429153442 + ], + "UNK1": "0000c03f0000804003000100000dd1070000d1070000000000000000000057014501000088002b000c00400005004500507850646464643264646432326464646464646464643200320064006400020204040302030500000f32000f6666663fcdcc8c3f4d00", + "STRINGS": [ + "Claydoll", + "An ancient humanoid that\nroams the old schoolhouse's\nunderground area, repelling\nintruders." + ] + }, + { + "TYPE": "status", + "STRING1": "mon046", + "STRING2": "C_MON046", + "STRING3": "mon046", + "UNK0": [ + 1.0, + 5.0, + 1.5 + ], + "UNK1": "00000000000080400300010000054e2000004e2000002c102c1000000000210187006d00c700180002004800040000027d64786464646464146464326464000032001432003232003200320064000c070a0d050a0c284008640f27000000803f0000803f4d454700", + "STRINGS": [ + "Iglute Garmr", + "A stone gargoyle spoken of in\nErebonian legends. Repels\nintruders with powerful\ngusts of wind." + ] + }, + { + "TYPE": "status", + "STRING1": "mon046_c00", + "STRING2": "C_MON046_C00", + "STRING3": "mon046_c00", + "UNK0": [ + 1.0, + 3.0, + 1.5 + ], + "UNK1": "00000000000080400300010000054e2000004e2000002c102c10000000007300cd006d000000180000004500040000027878787864646464146464326464000032001414003232003200320064000c070a0d050a0c284008640f27000000803f0000803f4d475500", + "STRINGS": [ + "Iglute Garmr", + "A stone gargoyle spoken of in\nErebonian legends. Its sturdy\nbody repels physical attacks." + ] + }, + { + "TYPE": "status", + "STRING1": "mon046_c03", + "STRING2": "C_MON046", + "STRING3": "mon046", + "UNK0": [ + 1.0, + 5.0, + 1.5 + ], + "UNK1": "0000000000008040020001000005010000000100000000000a000000000000000000000000000000000000000000000064647864646464646464646464646464646464646464640064006400640000000000000000000f27000f27000000803f0000803f4d4700", + "STRINGS": [ + "Iglute GarmrEVNeck", + "Guardian of the ruins, \ndesigned to repel intruders.\nPhysical attacks aren't very\neffective against it." + ] + }, + { + "TYPE": "status", + "STRING1": "mon046_c04", + "STRING2": "C_MON046_C00", + "STRING3": "mon046_c00", + "UNK0": [ + 1.0, + 3.0, + 1.5 + ], + "UNK1": "000000000000804002000100003bbe370000be370000282328230000000091057d069602580347000000550004004f0100646496c8786432326432323264006464003232003232003200320064000b0a090808090a234e063c3200146666663fcdcc8c3f4d475300", + "STRINGS": [ + "Obsidian Garmr", + "A jet-black stone guardian.\nIts powerful tail strikes are\ncapable of forcing anything\naside." + ] + }, + { + "TYPE": "status", + "STRING1": "mon048", + "STRING2": "C_MON048", + "STRING3": "mon048", + "UNK0": [ + 1.0, + 1.2000000476837158, + 0.75 + ], + "UNK1": "0000000000004040010001000010d8050000d8050000000000000000000043013f010000950021000200420005004900642887506464640064643264c8646464646400646464c800640064006400030403040102010643061e5006146666663fcdcc8c3f4d00", + "STRINGS": [ + "Mantrap", + "A plant-like monster that\nroams highways. Draws \nimpurities from below the\nground and attacks with them." + ] + }, + { + "TYPE": "status", + "STRING1": "mon048_c00", + "STRING2": "C_MON048_C00", + "STRING3": "mon048", + "UNK0": [ + 1.0, + 1.2000000476837158, + 0.75 + ], + "UNK1": "000000000000404001000100001fc0090000c009000000000000000000002902de010000210135000200450005007f00642887506464af0064643264c8646464646400646464c80064006400640003040303020103084406145006146666663fcdcc8c3f4d5300", + "STRINGS": [ + "Mad Weed", + "A mysterious plant said to\nbloom in the abyss. Produces\na miasma that lowers foes'\nvitality significantly." + ] + }, + { + "TYPE": "status", + "STRING1": "mon049", + "STRING2": "C_MON049", + "STRING3": "mon049", + "UNK0": [ + 1.0, + 2.0, + 1.7999999523162842 + ], + "UNK1": "0000c03f0000804003000100001210310000103100000000000000000000db0109020000fb002a00010060000500c802641e7d46646464003264323296640064640032320064c80032000a0032000f120e140a0d0928ad08640f27000000803f0000803f4d4700", + "STRINGS": [ + "Venus Mantrap", + "A three-headed plant monster.\nStores impurities within its\nbody, which it sprays at its\nenemies." + ] + }, + { + "TYPE": "status", + "STRING1": "mon049_c00", + "STRING2": "C_MON049_C00", + "STRING3": "mon049", + "UNK0": [ + 1.0, + 2.0, + 1.7999999523162842 + ], + "UNK1": "0000c03f0000804003000100001f320f0000320f000000000000000000004602fd0100003601390001004a0005008c00641e7d466464af003264323296640064640032646464c80032000a003200040604050302020950061932000a0000803f0000803f4d475300", + "STRINGS": [ + "Pit Cerberus", + "A plant-like monster that\nroams the darkness. Blows a\ndeadly miasma that instantly\ntakes away foes' vision." + ] + }, + { + "TYPE": "status", + "STRING1": "mon050", + "STRING2": "C_MON050", + "STRING3": "mon050", + "UNK0": [ + 1.0, + 4.800000190734863, + 2.0 + ], + "UNK1": "0000000000008040060001000021a08c0000a08c00000000000000000000c1020703000077014b00000044000500d00764646478af6464001464000064640032640032140064320032000a006400161516151e1e1e553c08640f27000000803f0000803f4d47595300", + "STRINGS": [ + "Ol-Gadia", + "A headless knight that \nemerged from within the \nred door. It seems to be \ndesigned to serve as a 'trial.'" + ] + }, + { + "TYPE": "status", + "STRING1": "mon050_c00", + "STRING2": "C_MON050", + "STRING3": "mon050", + "UNK0": [ + 1.0, + 4.800000190734863, + 2.0 + ], + "UNK1": "0000000000008040060001000021a08c0000504600000000000000000000c1020703000077014b00000044000500d00764646478af6464001464000064640032640032140064320032000a006400161516151e1e1e553c08640f27000000803f0000803f4d45475300", + "STRINGS": [ + "Ol-Gadia", + "A headless knight that \nemerged from within the \nred door. It seems to be \ndesigned to serve as a 'trial.'" + ] + }, + { + "TYPE": "status", + "STRING1": "mon050_c01", + "STRING2": "C_MON050", + "STRING3": "mon050_c01", + "UNK0": [ + 1.0, + 4.800000190734863, + 2.0 + ], + "UNK1": "000000000000804003000100003fb6490000b649000000000000000000007805fa050000ee024e0000005a000500770164646478af6464001464000064640064640032320064320032000a0064000c0b0c0b0d0d0d2832003c0200056666663fcdcc8c3f4d475300", + "STRINGS": [ + "Og-Jior", + "Keeper of an ancient ruin,\nit forcibly repels intruders. \nUses its giant iron sword \nto pulverize its foes." + ] + }, + { + "TYPE": "status", + "STRING1": "mon070", + "STRING2": "C_MON070", + "STRING3": "mon070", + "UNK0": [ + 0.8999999761581421, + 2.2200000286102295, + 1.1100000143051147 + ], + "UNK1": "0000000000004040010001000010eb050000eb050000000000000000000083014b020000b600350000003300030051006491647d646464326464969632c86464969632646496320032003200900102050203030201064d06144e060a6666663fcdcc8c3f4d00", + "STRINGS": [ + "Stealth Turtle", + "A ferocious turtle monster.\nHides itself in the shadows\nof bushes, attacking prey \nas it passes by." + ] + }, + { + "TYPE": "status", + "STRING1": "mon070_c00", + "STRING2": "C_MON070_C00", + "STRING3": "mon070", + "UNK0": [ + 0.8999999761581421, + 2.2200000286102295, + 1.1100000143051147 + ], + "UNK1": "000000000000404001000100001bac080000ac0800000000000000000000be01ab020000000031000000370003006b006491647d646464326464969632c86464969632646496320032003200900102040302040403084d06144e060a6666663fcdcc8c3f4d00", + "STRINGS": [ + "Zaurtoise", + "A turtle monster with a hard\nshell. It being on the slow\nside hasn't stopped it from\nprospering in the highlands." + ] + }, + { + "TYPE": "status", + "STRING1": "mon071", + "STRING2": "C_MON071", + "STRING3": "mon071", + "UNK0": [ + 0.6499999761581421, + 3.5, + 1.5399999618530273 + ], + "UNK1": "00000000000080400500010000355c8f00005c8f00000000000000000000be03aa0300008a024d00020058000300800796646400824b8232141464326464006464003232003232003200320032001e202123231e205f320064b808640000803f0000803f4d475300", + "STRINGS": [ + "Elvavria", + "An archaism from the Middle\nAges, armed with numerous\nweapons. Paralyzes foes with\nwide-reaching beams." + ] + }, + { + "TYPE": "status", + "STRING1": "mon073", + "STRING2": "C_MON073", + "STRING3": "mon073", + "UNK0": [ + 1.25, + 2.0, + 1.600000023841858 + ], + "UNK1": "000000000000a04002000100001550460000504600000000000000000000d801ce01000095013600060048000500d002505050506464643264646464646400646400643200323200c80032003200180a0a1800001e326208640f27000000803f0000803f4d4700", + "STRINGS": [ + "Kazakh Doven B", + "A military monster trained \nby the provincial army. \nCoordinates with allies to be\nsure their prey can't escape." + ] + }, + { + "TYPE": "status", + "STRING1": "mon073_c00", + "STRING2": "C_MON073_C00", + "STRING3": "mon073_c00", + "UNK0": [ + 1.25, + 2.0, + 1.600000023841858 + ], + "UNK1": "000000000000c04002000100001550460000504600000000000000000000d801ce01000095013600060048000500d00250505050646464326464646464640064640064320032320032003200c800061414061e1e0032e808640f27000000803f0000803f4d4700", + "STRINGS": [ + "Kazakh Doven R", + "A military monster used by the\nprovincial army. Rouses allies\nwith a howl, working with\nthem to deal great damage." + ] + }, + { + "TYPE": "status", + "STRING1": "mon073_c01", + "STRING2": "C_MON073_C01", + "STRING3": "mon073_c00", + "UNK0": [ + 1.25, + 2.0, + 1.600000023841858 + ], + "UNK1": "000000000000c04002000100003a562200005622000000000000000000007c048804000058024f00060053000500180150505050646464326464646464640064640064640032320032003200c8000a070906020202124c061e3200140000803f0000803f4d4700", + "STRINGS": [ + "Kazakh Doven G", + "A military monster released by\nthe Imperial Liberation Front.\nPowerful enough to break \nthrough thick armor." + ] + }, + { + "TYPE": "status", + "STRING1": "mon075", + "STRING2": "C_MON075", + "STRING3": "mon075", + "UNK0": [ + 1.0, + 1.0, + 1.0 + ], + "UNK1": "000000000000a04002000100001dd8050000d805000000000000000000009b01c2010000f20036001d004e00050061005f5f87326e327d006464006464646464646464646464320090010a003200030303030202030800000a16000acdcc4c3fcdcc8c3f4d5300", + "STRINGS": [ + "Zesvia", + "A spider monster that has\nexisted since antiquity. \nFeared as the cause of \ninnumerable plagues." + ] + }, + { + "TYPE": "status", + "STRING1": "mon076", + "STRING2": "C_MON076", + "STRING3": "mon076", + "UNK0": [ + 1.0, + 1.0, + 3.0 + ], + "UNK1": "000000000000804004000100001fac8a0000ac8a00000000000000000000c0029502000056014200000048000500c6075f5f87326e327d003264006464640064640064140032320064000a0032001c1e1b1f1616165a0209640f27000000803f0000803f4d475300", + "STRINGS": [ + "Ginosha-Zanak", + "Sealed away as an 'evil djinn'\nin ancient times. Binds prey \nwith very hard threads for its\nchildren to devour." + ] + }, + { + "TYPE": "status", + "STRING1": "mon081", + "STRING2": "C_MON081", + "STRING3": "mon081", + "UNK0": [ + 1.0, + 1.0, + 0.75 + ], + "UNK1": "000000000000004001000100000916030000160300003c003c0000000000ba00b501940008001e000000290004003600b4504b876464643264646464329632646464646464646400c8006400c80002050201020202044f06144e060acdcc4c3f0000803f4d00", + "STRINGS": [ + "Deathcargot", + "A land-dwelling mollusk \nmonster with a hard shell. \nSteals life from its prey then\nfinishes it with water arts." + ] + }, + { + "TYPE": "status", + "STRING1": "mon081_c00", + "STRING2": "C_MON081_C00", + "STRING3": "mon081", + "UNK0": [ + 1.0, + 1.0, + 0.75 + ], + "UNK1": "0000000000000040010001000015c2090000c2090000f401f40100000000c7018702c600be001e000000400004005c00b4504b876464643264646464329632646464646464646400c8006400c80003040303020203074f06144e060acdcc4c3f0000803f4d00", + "STRINGS": [ + "Time Snail", + "A mollusk monster with a\nhard shell. Stops prey in \nits tracks with time arts \nand slowly absorbs nutrients." + ] + }, + { + "TYPE": "status", + "STRING1": "mon082", + "STRING2": "C_MON082", + "STRING3": "mon082", + "UNK0": [ + 0.75, + 3.0, + 0.6700000166893005 + ], + "UNK1": "00000000000080400100010000080e0300000e03000000000000000000009c00d100000057001c0008003400050030007d64736464646464646432329664646496646464646464006400c8003200010203050200010440061451060a6666663fcdcc8c3f4d00", + "STRINGS": [ + "Evil Crow", + "An unpleasant bird with a \ndistinctive large beak. Has a\nferocious appetite, swallowing\nsmall creatures whole." + ] + }, + { + "TYPE": "status", + "STRING1": "mon082_c00", + "STRING2": "C_MON082_C00", + "STRING3": "mon082", + "UNK0": [ + 0.75, + 3.0, + 0.6700000166893005 + ], + "UNK1": "00000000000080400100010000259a0d00009a0d000000000000000000002e023f020000c80130000a004400050096007d64736464646464646432329664646496646464646464006400c8003200020302060403040a40061450060acdcc4c3f9a99993f4d00", + "STRINGS": [ + "Scavenger Crow", + "A strange kind of bird that\nlives underground. Spends \nmuch of its time scouring \nwaterways for food." + ] + }, + { + "TYPE": "status", + "STRING1": "mon083", + "STRING2": "C_MON083", + "STRING3": "mon083", + "UNK0": [ + 0.800000011920929, + 1.25, + 0.6299999952316284 + ], + "UNK1": "000000000000804001000100000831030000310300000000000000000000ae00d300000068001a000200340004002c008c64aa64646464646464969696326464646464646464640064006400c80002020302020102041300144c060acdcc4c3f9a99993f4d00", + "STRINGS": [ + "Ripper Squirrel", + "An adorable but deadly \nmonster with a sharp tail. \nIts spin attack is incredibly \ndangerous." + ] + }, + { + "TYPE": "status", + "STRING1": "mon085", + "STRING2": "C_MON085", + "STRING3": "mon085", + "UNK0": [ + 1.0, + 2.0, + 0.5 + ], + "UNK1": "00000000000080400100010000081b0300001b0300000000000000000000c700bf0000005b00210004003900050032007864b464646464326464646496c86464646432646464640032009001320000020404020200040b001451060a6666663f6666a63f4d00", + "STRINGS": [ + "King Dragonfly", + "A large dragonfly monster \nthat flies around near fields. \nExpels poisonous liquids \nfrom an organ in its body." + ] + }, + { + "TYPE": "status", + "STRING1": "mon085_c00", + "STRING2": "C_MON085_C00", + "STRING3": "mon085", + "UNK0": [ + 1.0, + 2.0, + 0.5 + ], + "UNK1": "0000000000008040010001000035420e0000420e000000000000000000005c038703000065013a0024005a000500ee007864b464646464326464646496c864646464326464646400320090013200010307070203040f1600145106146666663f6666a63f4d00", + "STRINGS": [ + "Crimson Dragonfly", + "A large, red dragonfly \nmonster. Sprays lethal \npoison, mandating \ncaution when fighting one." + ] + }, + { + "TYPE": "status", + "STRING1": "mon088", + "STRING2": "C_MON088", + "STRING3": "mon088", + "UNK0": [ + 1.5, + 2.0, + 0.6700000166893005 + ], + "UNK1": "000000000000a04001000100000ac6250000c625000000000000c8000a002801f900000000002a0002003f000600d80264c8647d64646464646464323296646464646464006432000a000a0064000e0c0e02070500236408640f27000000803f0000803f4d4700", + "STRINGS": [ + "Scary Dinosaur", + "A ferocious lizard monster.\nReleases sound waves by\nvibrating its dorsal fin, then\ncrushes prey with its teeth." + ] + }, + { + "TYPE": "status", + "STRING1": "mon090", + "STRING2": "C_MON090", + "STRING3": "mon090", + "UNK0": [ + 1.0, + 0.30000001192092896, + 0.5 + ], + "UNK1": "00000000000000400100010000367a0800007a08000000000000000000004303240400008c02370013005a000400fa0064647d646464643264643232c896646496c8323264966400c8003200c800050303040405040f4e061432000a6666663fcdcc8c3f4d00", + "STRINGS": [ + "Turtle Bug", + "An arthropod monster with a \nhard shell. Stores high\npressure gas in its body, \nwhich it uses to attack foes." + ] + }, + { + "TYPE": "status", + "STRING1": "mon090_c00", + "STRING2": "C_MON090_C00", + "STRING3": "mon090", + "UNK0": [ + 1.0, + 0.30000001192092896, + 0.5 + ], + "UNK1": "000000000000a040010001000013f4060000f406000000000000000000006401f20100004101270009003c0005004f0064c8af646464643264643232c896969696c8323264966400c8003200c80002020303020303064906144e060a6666663fcdcc8c3f4d00", + "STRINGS": [ + "Platinum Bug", + "An arthropod with a carapace \nas hard as stone. Secretes a\nhighly unpleasant smelling\nfluid, making enemies faint." + ] + }, + { + "TYPE": "status", + "STRING1": "mon091", + "STRING2": "C_MON091", + "STRING3": "mon091", + "UNK0": [ + 1.0, + 2.0, + 1.5 + ], + "UNK1": "000000000000a040030001000010cc060000cc0600000000000000000000b60178010000bc002a0005003a0004005c0064736e646464646464649696323264646464966464643200c8003200320006020503020202074e061432000a6666663fcdcc8c3f4d00", + "STRINGS": [ + "Hornteater", + "A monster with a hard carapace\nover its back. Impales prey\nwith its horns, then slowly \neats it with its long tongue." + ] + }, + { + "TYPE": "status", + "STRING1": "mon091_c00", + "STRING2": "C_MON091_C00", + "STRING3": "mon091", + "UNK0": [ + 1.25, + 1.0, + 2.0 + ], + "UNK1": "000000000000a04003000100001980110000801100000000000000000000780217020000c1013000050044000400840064736e646464646464649696323264646464966464643200c8003200320004020202050505094206324e06326666663fcdcc8c3f4d00", + "STRINGS": [ + "Brutal Buffa", + "A buffalo monster that is\nalways on the move across \nthe highlands. Mostly docile,\nbut fiercely territorial." + ] + }, + { + "TYPE": "status", + "STRING1": "mon092", + "STRING2": "C_MON092", + "STRING3": "mon092", + "UNK0": [ + 1.0, + 1.0, + 0.75 + ], + "UNK1": "000000000000b04001000100000f7d0300007d0300000000000000000000310145010000700018000900390004004000648c7d64646464646464c8c8646464649696966464963200c80032003200040103020101010400000a4c060a6666663fcdcc8c3f4d00", + "STRINGS": [ + "Anteater", + "An infant Hornteater. When it\nbecomes older, it grows horns\nand a hard carapace over its\nback." + ] + }, + { + "TYPE": "status", + "STRING1": "mon092_c00", + "STRING2": "C_MON092_C00", + "STRING3": "mon092", + "UNK0": [ + 1.0, + 1.0, + 0.75 + ], + "UNK1": "000000000000b040010001000017650700006507000000000000000000009f01b401000088011d000900390004005700648c7d64646464646464c8c8646464649696966464963200c8003200320004020302020202074106144c060a6666663fcdcc8c3f4d00", + "STRINGS": [ + "Brutal Infant", + "An infant buffalo monster. \nGains the ability to move\nfreely within hours of birth,\njoining the herd on its own." + ] + }, + { + "TYPE": "status", + "STRING1": "mon093", + "STRING2": "C_MON093", + "STRING3": "mon093", + "UNK0": [ + 1.0, + 1.0, + 0.75 + ], + "UNK1": "000000000000804006000100001bfa020000fa02000000000000000000005f012e01000000002d000c00570004005800a5b47d64646464646464646464646464646464646464c80064006400640002020602020402071000144c060a6666663fcdcc8c3f4d00", + "STRINGS": [ + "Infant Drango", + "A monster that resembles the\ndragons in legend. Small in\nsize, but capable of turning\na wide area to ash." + ] + }, + { + "TYPE": "status", + "STRING1": "mon095", + "STRING2": "C_MON095", + "STRING3": "mon095", + "UNK0": [ + 1.0, + 4.0, + 5.0 + ], + "UNK1": "00000000000080400600010000294fc300004fc300000f270f2700000000e70492034d0194014e0002004f000400e40c6487916464877832143232006432003232000014003232000a000a0032002018181b221a2064d708640f27000000803f0000803f4d45475300", + "STRINGS": [ + "Zoro-Agruga", + "A dragon-like fiend from the\nDark Ages made of bone. Sprays\ndark breath and has the power\nto shake space itself." + ] + }, + { + "TYPE": "status", + "STRING1": "mon096", + "STRING2": "C_MON096", + "STRING3": "mon096", + "UNK0": [ + 2.0, + 2.0, + 0.5 + ], + "UNK1": "000000000000804001000100000ac4260000c42600009a029a02000000004701d6009b00dd00310006004d0003000c03a564aa1e64646464646464646464646464646464326432000a00c8000a00060a051203050a23a208640f27000000803f0000803f4d4700", + "STRINGS": [ + "Zwordar", + "A ferocious bird of prey.\nPulls prey upwards with a\nwhirlwind, and then catches\nit with its sharp talons." + ] + }, + { + "TYPE": "status", + "STRING1": "mon096_c00", + "STRING2": "C_MON096_C00", + "STRING3": "mon096", + "UNK0": [ + 2.0, + 2.0, + 0.5 + ], + "UNK1": "00000000000080400100010000368020000080200000e703e703000000004204900388019f012600100055000400f400a564aa1e64646464649664969632646464646464326432000a00c8000a000204030b030504105106143200146666663fcdcc8c3f4d4700", + "STRINGS": [ + "Great Grouse", + "A giant avian monster that\nlives in mountainous regions.\nCreates whirlwinds which tear\nliving things to shreds." + ] + }, + { + "TYPE": "status", + "STRING1": "mon096_c01", + "STRING2": "C_MON096", + "STRING3": "mon096", + "UNK0": [ + 2.0, + 2.0, + 0.5 + ], + "UNK1": "00000000000080400100010000120c1b00000c1b00009a029a0200000000c4019101d700b2004a000c004d0003006300a564aa1e64646464646464646464646464646464326432000a00c8000a000204030a0204060f320050a508140000803f0000803f4d4700", + "STRINGS": [ + "Zwordar", + "A ferocious bird of prey.\nPulls prey upwards with a\nwhirlwind, and then catches\nit with its sharp talons." + ] + }, + { + "TYPE": "status", + "STRING1": "mon097", + "STRING2": "C_MON097", + "STRING3": "mon097", + "UNK0": [ + 1.0, + 2.5, + 0.5 + ], + "UNK1": "000000000000804001000100001dc6070000c60700000000000000000000c1015c01000000003b0004003b000300780064a078be6e7dc8326464000032649664643214326432c8003200320032000204040402030208460614500614cdcc4c3f9a99993f4d5300", + "STRINGS": [ + "Vampiric Thorn", + "A strange plant monster. \nUsually lurks underground,\ndraining its prey of every\nlast drop of blood." + ] + }, + { + "TYPE": "status", + "STRING1": "mon097_c00", + "STRING2": "C_MON097_C00", + "STRING3": "mon097_c00", + "UNK0": [ + 1.0, + 2.5, + 0.5 + ], + "UNK1": "000000000000804001000100002c790d0000790d00000000000000000000f702b20200007a013f00040045000300bc0064a078be6e7dc8326464000032649664643214326432c800320032003200050305040303020c450614500614cdcc4c3f9a99993f4d00", + "STRINGS": [ + "Greedy Reaper", + "A worm monster that lurks\nunderground. Its body is\ncovered in tough armor, and\nit drains HP from its prey." + ] + }, + { + "TYPE": "status", + "STRING1": "mon098", + "STRING2": "C_MON098", + "STRING3": "mon098", + "UNK0": [ + 1.0, + 2.799999952316284, + 2.5 + ], + "UNK1": "0000000000000040030001000039c8e10000c8e10000000000000000000019044e040000f60250000200660004003c0564786464646464326464646464640032640064320064c800320032000000181c1c182424245a320064bb083c0000803f0000803f4d4700", + "STRINGS": [ + "Hydra", + "A serpent monster with many\nheads, each acting separately.\nEach head competes to feast on\nprey, eating even the bones." + ] + }, + { + "TYPE": "status", + "STRING1": "mon098_c00", + "STRING2": "C_MON098_C00", + "STRING3": "mon098", + "UNK0": [ + 1.0, + 2.799999952316284, + 2.5 + ], + "UNK1": "000000000000004003000100003d07210000072100000000000000000000ec04830400002f025000020055000400210164646400646e82326464646464640032640064320064c80032003200000006040507050405144d06284f06286666663fcdcc8c3f4d5300", + "STRINGS": [ + "Thunder Hydra", + "A serpent fiend with many\nheads. Sprays lightning \nbreath by generating \nelectricity in its body." + ] + }, + { + "TYPE": "status", + "STRING1": "mon099", + "STRING2": "C_MON099", + "STRING3": "mon099", + "UNK0": [ + 1.0, + 1.0, + 1.0 + ], + "UNK1": "000000000000a04002000100001883050000830500000000000000000000ac01780193008f0134001300440003006200a06464006464646432326464646432649664323264643200c800c800320001040206020402074d061432000a6666663fcdcc8c3f4d00", + "STRINGS": [ + "Thunder Loach", + "An infant fish capable of\nproducing electricity with its\nfeelers. It may be young, but\nit is still deadly." + ] + }, + { + "TYPE": "status", + "STRING1": "mon101", + "STRING2": "C_MON101", + "STRING3": "mon101", + "UNK0": [ + 1.5, + 2.0799999237060547, + 1.6699999570846558 + ], + "UNK1": "000000000000804002000100000d285500002855000000000000c80064009001590100009200450001004e00050070036464787d6464646432326464643200646400643200646400320032006400190f1e0c090f0c3c8508640f27000000803f0000803f4d4700", + "STRINGS": [ + "Grunoja", + "Ruler of Lunaria Nature Park,\nit attacks those who enter\nits territory. Smashes all \nwho oppose it to pieces." + ] + }, + { + "TYPE": "status", + "STRING1": "mon102", + "STRING2": "C_MON102", + "STRING3": "mon102", + "UNK0": [ + 1.0, + 1.7999999523162842, + 2.299999952316284 + ], + "UNK1": "000000000000004003000100002ecc600000cc60000000000000000000009804c5020000eb014400000058000400f406649664916464646414646464329600646400641414643200c8000a003200161a1e10160e1341320064da08640000803f0000803f4d4700", + "STRINGS": [ + "Crocodark", + "An amphibian monster that \nlives near water. Its appetite\nis ferocious, and its jaw is\nstrong enough to pierce steel." + ] + }, + { + "TYPE": "status", + "STRING1": "mon103", + "STRING2": "C_MON103", + "STRING3": "mon103", + "UNK0": [ + 1.75, + 4.5, + 1.0 + ], + "UNK1": "000000000000804003000100001eba220000ba22000000000000000000000e03c4020000cb013a0012004a000500ee009664781e64646464646464643232326464006464646432003200c80032000204080a0605061632001e84081e0000803f0000803f4d4700", + "STRINGS": [ + "Hippogriff", + "A large bird that hunts on\nthe highlands. Its talons\ncontain deadly poison, and it\ncan spew burning-hot breath." + ] + }, + { + "TYPE": "status", + "STRING1": "mon103_c00", + "STRING2": "C_MON103_C00", + "STRING3": "mon103_c00", + "UNK0": [ + 1.0, + 4.0, + 1.0 + ], + "UNK1": "0000000000008040020001000038d4300000d430000000000000000000003a04b1030000c7024c00150058000500ff009664641e64646464646464649664146464326464646432003200c80032000204030c0a05071951061e32001e6666663fcdcc8c3f4d4700", + "STRINGS": [ + "Roc", + "A cunning, ferocious bird \nthat hunts on the mountain\npath. Freezes its prey before \ncarrying it back to its nest." + ] + }, + { + "TYPE": "status", + "STRING1": "mon104", + "STRING2": "C_MON104", + "STRING3": "mon104", + "UNK0": [ + 0.75, + 2.3299999237060547, + 1.0 + ], + "UNK1": "0000000000008040010001000031680c0000680c00000000000000000000f002db020000a9023400040051000400cd0050785a64646464006464640032326464646400646464320032003200c800040404040303030d01000532000a0000803f0000803f4d00", + "STRINGS": [ + "Tri-Attacker R2", + "A patrol archaism released by\nthe Imperial Liberation Front.\nVery mobile, and capable of\nmachine gun and missile fire." + ] + }, + { + "TYPE": "status", + "STRING1": "mon104_c00", + "STRING2": "C_MON104_C00", + "STRING3": "mon104_c00", + "UNK0": [ + 0.75, + 2.3299999237060547, + 1.0 + ], + "UNK1": "0000000000008040010001000031680c0000680c00000000000000000000f002db020000a9023400040051000400cd0050785a64646464006464640032326464646400646464320032003200c800030303030404040d04000532000a0000803f0000803f4d00", + "STRINGS": [ + "Tri-Attacker HG", + "A patrol archaism released by\nthe Imperial Liberation Front.\nReduces foes' movement and\ndefense with electromagnetism." + ] + }, + { + "TYPE": "status", + "STRING1": "mon104_c01", + "STRING2": "C_MON104", + "STRING3": "mon104", + "UNK0": [ + 0.75, + 2.3299999237060547, + 1.0 + ], + "UNK1": "0000000000008040010001000039501000005010000000000000000000005e03850300000d033d0005005b000400eb0050785a64646464006464640032326464646400646464320032003200c800050505050303031001000a32000a0000803f0000803f4d00", + "STRINGS": [ + "Tri-Attacker R2", + "A patrol archaism released by\nthe Imperial Liberation Front.\nVery mobile, and capable of\nmachine gun and missile fire." + ] + }, + { + "TYPE": "status", + "STRING1": "mon104_c02", + "STRING2": "C_MON104_C00", + "STRING3": "mon104_c00", + "UNK0": [ + 0.75, + 2.3299999237060547, + 1.0 + ], + "UNK1": "0000000000008040010001000039501000005010000000000000000000005e03850300000d033d0005005b000400eb0050785a64646464006464640032326464646400646464320032003200c800030303030606061004000a32000a0000803f0000803f4d00", + "STRINGS": [ + "Tri-Attacker HG", + "A patrol archaism released by\nthe Imperial Liberation Front.\nReduces foes' movement and\ndefense with electromagnetism." + ] + }, + { + "TYPE": "status", + "STRING1": "mon104_c03", + "STRING2": "C_MON104", + "STRING3": "mon104", + "UNK0": [ + 0.75, + 2.3299999237060547, + 1.0 + ], + "UNK1": "0000000000008040010001000031680c0000680c000000000000000000005002a9020000a902200004004c000400ff0050785a64646464006464640032326464646400646464640064006400c800050505050303030c0f27000f27000000803f0000803f4d00", + "STRINGS": [ + "Tri-Attacker R2", + "A patrol archaism released by\nthe Imperial Liberation Front.\nVery mobile, and capable of\nmachine gun and missile fire." + ] + }, + { + "TYPE": "status", + "STRING1": "mon104_c04", + "STRING2": "C_MON104_C00", + "STRING3": "mon104_c00", + "UNK0": [ + 0.75, + 2.3299999237060547, + 1.0 + ], + "UNK1": "0000000000008040010001000031680c0000680c000000000000000000005002a9020000a902200004004c000400ff0050785a64646464006464640032326464646400646464640064006400c800040404040505050c0f27000f27000000803f0000803f4d00", + "STRINGS": [ + "Tri-Attacker HG", + "A patrol archaism released by\nthe Imperial Liberation Front.\nReduces foes' movement and\ndefense with electromagnetism." + ] + }, + { + "TYPE": "status", + "STRING1": "mon108", + "STRING2": "C_MON108", + "STRING3": "mon108", + "UNK0": [ + 1.0, + 3.0, + 2.5 + ], + "UNK1": "000000000000804003000100002b90b0000090b000000f270f27000000001305ec04d101b00240000600800004004e0c640000646478643214146432000000321400641400143200320032003200132510141a1a1a5a8608640f27000000803f0000803f4d475300", + "STRINGS": [ + "Unsurtr", + "A giant beast with a body\ncovered in ice. Freezes\nall with frigid blizzards." + ] + }, + { + "TYPE": "status", + "STRING1": "mon108_c00", + "STRING2": "C_MON108_C00", + "STRING3": "mon108_c00", + "UNK0": [ + 1.0, + 3.0, + 2.5 + ], + "UNK1": "000000000000804003000100003f409c0000409c00000f270f27000000001405e2049f01b0025000060076000400890164647864647864321414643200000032140064140014320032003200320015171a151617183232003c08001e0000803f0000803f4d475300", + "STRINGS": [ + "Durgnessa", + "A massive, mountain-like\nfiend. Being trampled by\nits immense weight is enough\nto crush anything." + ] + }, + { + "TYPE": "status", + "STRING1": "mon109", + "STRING2": "C_MON109", + "STRING3": "mon109", + "UNK0": [ + 1.0, + 1.7999999523162842, + 0.5 + ], + "UNK1": "000000000000804001000100003662130000621300000000000000000000d003a4030000950141000e0057000400f3009164784b64646464646432329664646464646464646432003200c8003200030504060303040f4006141600146666663fcdcc8c3f4d00", + "STRINGS": [ + "Dancing Owl", + "Avian monster with beautiful\nwings. Those who witness its\nstrange dance suffer various\nstatus abnormalities." + ] + }, + { + "TYPE": "status", + "STRING1": "mon110", + "STRING2": "C_MON110", + "STRING3": "mon110", + "UNK0": [ + 1.0, + 3.25, + 3.0 + ], + "UNK1": "0000c04000008040040001000033504600005046000000000000c80064000004000500000000320000005a00040000049664646464646400141464006464000014000014003232006400320064000f0b090808090a343200320f27000000803f0000803f4d4700", + "STRINGS": [ + "Gespard", + "An assault archaism. Can deal\nwith foes in a wide area due\nto its elastic arms and \ndevastating main cannon." + ] + }, + { + "TYPE": "status", + "STRING1": "mon110_c00", + "STRING2": "C_MON110_C00", + "STRING3": "mon110", + "UNK0": [ + 1.0, + 3.25, + 3.0 + ], + "UNK1": "0000c0400000804004000100003ab4590100b459010000000000c800640046055e060000c1025500070069000400b20c6464646464646400141464006464000014000014003232006400320064002826222426282a64f508640f27000000803f0000803f4d4700", + "STRINGS": [ + "Gespard G", + "An assault archaism made \nby Ouroboros. Charges \nits enemies and unleashes \nwide reaching destruction." + ] + }, + { + "TYPE": "status", + "STRING1": "mon115", + "STRING2": "C_MON115", + "STRING3": "mon115", + "UNK0": [ + 1.0, + 1.25, + 0.75 + ], + "UNK1": "0000000000008040010001000039fc0c0000fc0c000000000000000000008503ab030000c3013c00020055000500ec002d64649b646464966464646464643264646464646464c800c8003200640005050303040305104c06145006146666663fcdcc8c3f4d00", + "STRINGS": [ + "Moon Mole", + "A mole monster that lives \nin the sealed mine shaft. \nIts claws are ideal both for \ndigging and cutting prey." + ] + }, + { + "TYPE": "status", + "STRING1": "mon116", + "STRING2": "C_MON116", + "STRING3": "mon116", + "UNK0": [ + 1.0, + 0.949999988079071, + 0.5 + ], + "UNK1": "000000000000404002000100000b5404000054040000c800c80000000000ee0003015c006c001d00000030000400410050288264646464646464646464646464646464646464c800320032000a0003050101010203044f060f51060f6666663f9a99993f4d00", + "STRINGS": [ + "Jelly Shroom", + "A massively swollen fungus.\nParalyzes organisms that\napproach it and slowly feeds\non their nutrients." + ] + }, + { + "TYPE": "status", + "STRING1": "mon116_c00", + "STRING2": "C_MON116_C00", + "STRING3": "mon116", + "UNK0": [ + 1.0, + 0.949999988079071, + 0.5 + ], + "UNK1": "000000000000404002000100002c6a0c00006a0c0000c800c80000000000c0029c02b8004c013b0001003a000400ba0050288264646464646464320032966432640064646432c800320032000a00040206020303050c4406144f06146666663f9a99993f4d00", + "STRINGS": [ + "Rose Shroom", + "A mollusk formed from several\npink spores. Possesses a \npowerful neurotoxin. Touching\nit causes paralysis." + ] + }, + { + "TYPE": "status", + "STRING1": "mon116_c01", + "STRING2": "C_MON116_C01", + "STRING3": "mon116_c01", + "UNK0": [ + 7.25, + 0.949999988079071, + 0.5099999904632568 + ], + "UNK1": "0000004100004040010001000038d8590000d859000000000000000000003d045f0400001503480000005a00040060095a507864646464643232001432640014140014320032c800320032000a0019121b15121212550900640f27000000803f0000803f4d4700", + "STRINGS": [ + "Gold Fungus", + "A spore monster that became \nmassively enlarged due to \neating high-quality ore. The \nreason the shaft was closed." + ] + }, + { + "TYPE": "status", + "STRING1": "mon117", + "STRING2": "C_MON117", + "STRING3": "mon117", + "UNK0": [ + 1.0, + 1.7300000190734863, + 0.800000011920929 + ], + "UNK1": "00000000000080400100010000363e0f00003e0f00000000000000000000c4039c0300009f014400020056000400f100649164646464646464646464646496966464646464646400c80032003200050406040205020f0b00144f06146666663fcdcc8c3f4d00", + "STRINGS": [ + "Bomb Spider", + "An arthropod monster that eats\nwreckage left by explosions. \nDetonates the poison sac on \nits back if it senses danger." + ] + }, + { + "TYPE": "status", + "STRING1": "mon117_c00", + "STRING2": "C_MON117_C00", + "STRING3": "mon117", + "UNK0": [ + 1.0, + 1.7300000190734863, + 0.800000011920929 + ], + "UNK1": "000000000000804001000100000dea030000ea030000000000000000000014011e010000900027000200480004004600649164646464646464646464646496966464646464646400c8003200320001030203010303050b00144f06146666663fcdcc8c3f4d00", + "STRINGS": [ + "Lantern Spider", + "An arthropod monster with an\nair sac that gives off a pale\nlight on its back. This sac\ncontains a poisonous liquid." + ] + }, + { + "TYPE": "status", + "STRING1": "mon118_c00", + "STRING2": "C_MON118_C00", + "STRING3": "mon118", + "UNK0": [ + 1.5, + 2.0, + 1.0 + ], + "UNK1": "000000000000c040010001000019a90f0000a90f000000000000000000002802300200001402360006004000060080001964643c646464646464c896966400969664326464643200c8006400320000050500020502084c06145006140000803f0000803f4d00", + "STRINGS": [ + "Ostrich", + "A strange bird that races\naround on non-paved \nplains. Its breath allows \nit to petrify its prey." + ] + }, + { + "TYPE": "status", + "STRING1": "mon119", + "STRING2": "C_MON119", + "STRING3": "mon119", + "UNK0": [ + 1.0, + 2.0, + 1.0 + ], + "UNK1": "000000000000404002000100001b6a0c00006a0c00000000000000000000b9012e02000000002700000038000500720050b94b78646464646464646464643264646464646464320032000a00c80006050202030301084d06144e06146666663fcdcc8c3f4d00", + "STRINGS": [ + "Stony Croaker", + "A large, frog-like monster with\nskin like rock. Draws in prey\nwith its long tongue and \nrestrains it with mucus." + ] + }, + { + "TYPE": "status", + "STRING1": "mon119_c00", + "STRING2": "C_MON119_C00", + "STRING3": "mon119", + "UNK0": [ + 1.0, + 3.5, + 2.75 + ], + "UNK1": "0000000000004040040001000038f6d10000f6d100000000000000000000b1043906000014033c0000005d0004003a0750a0646e646464641414646432640064320064320032320032000a00c800281928192121215a32006442083c0000803f0000803f4d4700", + "STRINGS": [ + "Rocky Croaker", + "A large, frog-like monster. \nIts skin is as hard as iron,\ndue to all the stones it eats." + ] + }, + { + "TYPE": "status", + "STRING1": "mon120", + "STRING2": "C_MON120", + "STRING3": "mon120", + "UNK0": [ + 1.0, + 2.0, + 1.5 + ], + "UNK1": "000000000000804014000100003304a6000004a60000e803e803c80000003804320586012b023c0000004d000400d4039664646464646400143264006464001432000064006432003200320032001e1e1e1e1e1e1e4b3200640500640000803f0000803f4d4700", + "STRINGS": [ + "Zephyranthes", + "A large archaism designed for\ndefending strongholds. Reduces\nenemy numbers with lasers and\nimmense firepower." + ] + }, + { + "TYPE": "status", + "STRING1": "mon120_c00", + "STRING2": "C_MON120_C00", + "STRING3": "mon120", + "UNK0": [ + 1.0, + 2.0, + 1.5 + ], + "UNK1": "000000000000804014000100003ba4b50000a4b50000e803e803c8000000b004aa05c2016b034b00040053000400a005646464646464640014326400646400143200006400640a00320032000a00222222222222225a0500640800320000803f0000803f4d4700", + "STRINGS": [ + "G-Zephyranthes", + "A large, golden archaism. \nSupports C with powerful \nlaser beams and wide-range\nshockwaves." + ] + }, + { + "TYPE": "status", + "STRING1": "mon120_c01", + "STRING2": "C_MON120_C01", + "STRING3": "mon120", + "UNK0": [ + 1.0, + 2.0, + 1.5 + ], + "UNK1": "000000000000804014000100003abcb10000bcb10000e803e803c80000007e0482059f014e0346000400510004000005646464646464640014326400646400143200006400643200320032000a00202020202020205a0500640800320000803f0000803f4d4700", + "STRINGS": [ + "B-Zephyranthes", + "A large archaism designed \nfor defending strongholds. \nThis improved blue model \nhas incredible firepower." + ] + }, + { + "TYPE": "status", + "STRING1": "mon120_c02", + "STRING2": "C_MON120_C02", + "STRING3": "mon120", + "UNK0": [ + 1.0, + 2.0, + 1.5 + ], + "UNK1": "0000000000008040140001000033d4ad0000d4ad0000e803e803c800000065045a0595014902410004004f0004000004646464646464640014326400646400143200006400640a0032003200320020202020202020503200640500640000803f0000803f4d4700", + "STRINGS": [ + "R-Zephyranthes", + "A red archaism strengthened\nto support the ILF's leaders.\nEven more powerful and deadly\nthan standard models." + ] + }, + { + "TYPE": "status", + "STRING1": "mon120_c03", + "STRING2": "C_MON120", + "STRING3": "mon120", + "UNK0": [ + 1.0, + 2.0, + 1.5 + ], + "UNK1": "0000000000008040140001000032846700008467000058025802c8000000bc028903dc00bd01370000004b000400000296646464646464000000640064640014320000640064640064006400640014141414141414250f27000f27000000803f0000803f4d4700", + "STRINGS": [ + "Zephyranthes", + "A large archaism designed for\ndefending strongholds. Reduces\nenemy numbers with lasers and\nimmense firepower." + ] + }, + { + "TYPE": "status", + "STRING1": "mon130", + "STRING2": "C_MON130", + "STRING3": "mon130", + "UNK0": [ + 1.0, + 1.5, + 0.8999999761581421 + ], + "UNK1": "0000000000008040020001000001f4010000f401000000000000000000004b003c0000000000370007001f000400000064646464646464003232323232320032320000140064c800c800c800c80008040201000102050000140f27000000803f0000803f4d4700", + "STRINGS": [ + "Combat Shell", + "A combat dummy that didn't \nget used in the game.\nPoor Combat Shell-kun...\nyour day will come, eventually." + ] + }, + { + "TYPE": "status", + "STRING1": "mon130_c00", + "STRING2": "C_MON130_C00", + "STRING3": "mon130_c00", + "UNK0": [ + 1.0, + 2.0, + 0.8999999761581421 + ], + "UNK1": "0000000000008040020001000007201c0000201c0000e001e001c8001e00e4009600a00000001e0004003e000400760064646464646464003232323232320032320000140064c800c800c800c800090909090505050c3200640f27000000803f0000803f4d4700", + "STRINGS": [ + "Combat Shell α", + "A combat dummy set up \nfor practical exams. Feels \nstrange to the touch, and \nfights as programmed." + ] + }, + { + "TYPE": "status", + "STRING1": "mon130_c01", + "STRING2": "C_MON130_C01", + "STRING3": "mon130_c01", + "UNK0": [ + 1.0, + 2.0, + 0.8999999761581421 + ], + "UNK1": "000000000000804002000100000f403800004038000058025802c8001e00c8014f01680100002300060043000400bc0064646464646464003232323232320032320000140064c800c800c800c8000c0c0c0c080808103200640f27000000803f0000803f4d4700", + "STRINGS": [ + "Combat Shell β", + "A combat dummy that operates\nby some unknown means. Its\nchange of form allows it to\nuse more powerful attacks." + ] + }, + { + "TYPE": "status", + "STRING1": "mon130_c02", + "STRING2": "C_MON130_C02", + "STRING3": "mon130_c02", + "UNK0": [ + 1.0, + 2.0, + 0.8999999761581421 + ], + "UNK1": "0000000000008040020001000021744000007440000058025802c8001e00bb02b3015e01000028000600430004002c0164646464646464003232323232320032320000140064c800c800c800c80000000000000000000f27000f27000000803f0000803f4d4700", + "STRINGS": [ + "Combat Shell γ", + "A combat dummy made of a \nmysterious metal. Has high\nattack and defense power \nto simulate real battle." + ] + }, + { + "TYPE": "status", + "STRING1": "mon130_c03", + "STRING2": "C_MON130_C01", + "STRING3": "mon130_c01", + "UNK0": [ + 1.0, + 2.0, + 0.8999999761581421 + ], + "UNK1": "0000000000008040020001000021744000007440000058025802c8001e00bb02b3015e01000028000600430004002c0164646464646464003232323232320032320000140064320032003200320000000000000000000f27000f27000000803f0000803f4d4700", + "STRINGS": [ + "Combat Shell β", + "A combat dummy that operates\nby some unknown means. Its\nchange of form allows it to\nuse more powerful attacks." + ] + }, + { + "TYPE": "status", + "STRING1": "mon137", + "STRING2": "C_MON137", + "STRING3": "mon137", + "UNK0": [ + 1.0, + 1.0, + 1.0 + ], + "UNK1": "0000000000008040010001000018790a0000790a00000000000000000000bd01c101000090012300110044000400670064be964b646464646464646432c83296329632326464320032009001320002040206030202074d060f50060f6666663fcdcc8c3f4d00", + "STRINGS": [ + "Winged Snake", + "A winged snake that flies\naround on the Nord Highlands.\nThe people of Nord fear the\npoison in its fangs." + ] + }, + { + "TYPE": "status", + "STRING1": "mon137_c00", + "STRING2": "C_MON137_C00", + "STRING3": "mon137_c00", + "UNK0": [ + 1.0, + 1.0, + 1.0 + ], + "UNK1": "0000000000008040010001000027d80e0000d80e000000000000000000001f03dc02000000022c00150049000400a30064be964b64a064646464646432c832963296323264643200320090013200040202060403030b0b00145006146666663fcdcc8c3f4d5300", + "STRINGS": [ + "Diving Ananta", + "A serpent monster containing\ndeadly poison. Plunges its\nfangs into its prey from the\nair using its bat-like wings." + ] + }, + { + "TYPE": "status", + "STRING1": "mon139", + "STRING2": "C_MON139", + "STRING3": "mon139", + "UNK0": [ + 1.0, + 5.0, + 2.0 + ], + "UNK1": "0000c0400000004003000100001e247c0000247c0000000000000000000021038d0300009a022a000000500004009006325a4164c864640000001400003200001400141400320a000a000a00c8001810130f1a1414414c08640f27000000803f0000803f4d4700", + "STRINGS": [ + "Stone Golem", + "A golem created from stone\nwhich appears in Erebonian\nlegends. Can cause earthquakes\nby stamping on the ground." + ] + }, + { + "TYPE": "status", + "STRING1": "mon139_c00", + "STRING2": "C_MON139_C00", + "STRING3": "mon139_c00", + "UNK0": [ + 1.25, + 5.0, + 2.0 + ], + "UNK1": "000000410000004003000100003db8880000b88800000000000000000000ee062e060000000045000000500004005b0132004164c864640000001400003200001400141400320a000a000a00c8001211100f1c19192d5106503200286666663fcdcc8c3f4d5300", + "STRINGS": [ + "Steel Golem", + "A magical golem born by\ngiving life to steel. Causes \npowerful earthquakes at will." + ] + }, + { + "TYPE": "status", + "STRING1": "mon140", + "STRING2": "C_MON140", + "STRING3": "mon140", + "UNK0": [ + 1.0, + 1.3799999952316284, + 0.75 + ], + "UNK1": "00000000000000400200010000069a0400009a0400000000000000000000c800d40000005a001e000000370004002500644b78b46464646464646496646464966464646464649001c8006400320001020301020301034806144f060a6666663fcdcc8c3f4d00", + "STRINGS": [ + "Dissolution Slug", + "A mollusk monster with\ncountless feelers. Uses \nacid stored in its body to \ndissolve and devour its prey." + ] + }, + { + "TYPE": "status", + "STRING1": "mon141", + "STRING2": "C_MON141", + "STRING3": "mon141", + "UNK0": [ + 1.0, + 2.950000047683716, + 1.0 + ], + "UNK1": "000000000000004001000100001d160d0000160d0000000000000000000008025d02270100003d00000037000400870000646478c86450646464640000640064646464646464320032003200c800030102020505040903001e32000f6666663fcdcc8c3f4d5300", + "STRINGS": [ + "Diglem", + "A stone statue allowed to move\nbecause of the strange force\nactive in the quarry. Lowers\nfoes' abilities with beams." + ] + }, + { + "TYPE": "status", + "STRING1": "mon141_c00", + "STRING2": "C_MON141_C00", + "STRING3": "mon141", + "UNK0": [ + 1.0, + 2.950000047683716, + 1.0 + ], + "UNK1": "00000000000000400100010000333e1700003e17000000000000000000006803cc038f0100004a00000058000400dc0000646478c86450646464640000640064646464646464320032003200c800050404050502020e03001e32000f6666663fcdcc8c3f4d5300", + "STRINGS": [ + "Star Lambda", + "A stone statue granted life by\na mysterious power. Lowers \nthe abilities of its foes with\ncursed beams of light." + ] + }, + { + "TYPE": "status", + "STRING1": "mon142", + "STRING2": "C_MON142", + "STRING3": "mon142", + "UNK0": [ + 1.0, + 0.9200000166893005, + 0.5 + ], + "UNK1": "000000000000004001000100000de2040000e20400000000000000000000fa00660100008000270002004500040045001e646455646464326464646464643264646464646464320064003200c80004020301030201054906145106146666663fcdcc8c3f4d00", + "STRINGS": [ + "Stone Stalker", + "A four-legged stone creature.\nWhen it sees an enemy, it\napproaches them, then attacks\nwith its weight from above." + ] + }, + { + "TYPE": "status", + "STRING1": "mon143", + "STRING2": "C_MON143", + "STRING3": "mon143", + "UNK0": [ + 1.0, + 1.0, + 0.800000011920929 + ], + "UNK1": "00000000000000400200010000225a0e00005a0e000000000000000000003902370200000000360002004200040089005a325a91646464646464646464646464646464646464c800320032003200030303010705050a16001432000a6666663fcdcc8c3f4d00", + "STRINGS": [ + "Ghoul Frog", + "A mass of dead monsters. \nHas exceptional regenerative\nabilities." + ] + }, + { + "TYPE": "status", + "STRING1": "mon144", + "STRING2": "C_MON144", + "STRING3": "mon144", + "UNK0": [ + 1.0, + 1.659999966621399, + 0.75 + ], + "UNK1": "00000000000040400100010000293a0a00003a0a00000000000000000000cd02a90200003a01380013004e000400af005a2d37506464be326432643264640064646432646464c8003200c8003200010205060304040b1200145106146666663fcdcc8c3f4d5300", + "STRINGS": [ + "Polyjelly", + "A floating spore creature from\nanother world. Those who touch\nit turn to stone." + ] + }, + { + "TYPE": "status", + "STRING1": "mon145", + "STRING2": "C_MON145", + "STRING3": "mon145", + "UNK0": [ + 1.0, + 1.2999999523162842, + 1.0 + ], + "UNK1": "0000000000008040020001000015870b0000870b00000000000000000000e301ba010000cd0028000400460005006000647887646464646464646464643232646432646464326400320064006400030405020202020750060f4c060f6666663fcdcc8c3f4d00", + "STRINGS": [ + "Hell Rabbit", + "A monster said to have come\nfrom the underworld. Those\npierced by its spines are \nbelieved to lose their souls." + ] + }, + { + "TYPE": "status", + "STRING1": "mon145_c00", + "STRING2": "C_MON145_C00", + "STRING3": "mon145", + "UNK0": [ + 1.0, + 1.2999999523162842, + 1.0 + ], + "UNK1": "000000000000804002000100003d9e1200009e12000000000000000000004104d10300002402490008005d0005001801647887646464af646464646464323264646464646432640032006400640005040504040304125006144c06146666663fcdcc8c3f4d5300", + "STRINGS": [ + "Ramon", + "A fiend with black fur, said\nto be a servant of Gehenna.\nAppears before those who have\nlittle time left to live." + ] + }, + { + "TYPE": "status", + "STRING1": "mon146_c00", + "STRING2": "C_MON146_C00", + "STRING3": "mon146_c00", + "UNK0": [ + 1.0, + 1.8899999856948853, + 2.0999999046325684 + ], + "UNK1": "0000000000000040040001000029741400007414000000000000000000003303780300009e01350000004b000400b6001eaf64646478646464646496649664646464646464640a00c8000a00c800050306030403040c4d061e4e061e6666663fcdcc8c3f4d5300", + "STRINGS": [ + "Glaceron", + "A large turtle with a stone-\nlike carapace. Sprays rocks\nfrom its back to repel foes." + ] + }, + { + "TYPE": "status", + "STRING1": "mon147", + "STRING2": "C_MON147", + "STRING3": "mon147", + "UNK0": [ + 1.0, + 2.200000047683716, + 0.5 + ], + "UNK1": "000000000000804001000100003b0a0b00000a0b00000000000000000000e003a1030000a501490019005a000500ff005a73646464878700646464329664646464646464646432003200c800320002030406040305115106144e06146666663fcdcc8c3f4d5300", + "STRINGS": [ + "Lunar Bee", + "A bee-like fiend capable\nof crossing dimensions. Its\nhighly lethal poison makes it\nincredibly dangerous." + ] + }, + { + "TYPE": "status", + "STRING1": "mon148", + "STRING2": "C_MON148", + "STRING3": "mon148", + "UNK0": [ + 1.0, + 1.5, + 1.0 + ], + "UNK1": "0000000000000040020001000033711900007119000000000000000000005a033b0300007a014000010053000400d9006464786464649b646464326464643200646432646464c800640032003200050504020303050e4f06145006146666663fcdcc8c3f4d5300", + "STRINGS": [ + "Purple Ooze", + "A strange lifeform from\nanother world. Can drain large\namounts of HP, EP, and CP,\nmaking it a difficult foe." + ] + }, + { + "TYPE": "status", + "STRING1": "mon157", + "STRING2": "C_MON157", + "STRING3": "mon157", + "UNK0": [ + 1.0, + 1.899999976158142, + 1.2999999523162842 + ], + "UNK1": "000000000000804002000100001f221000002210000012021202000000003f020b0218012e0128000400490004008400640000646450786464646464000064646464646464643200c8003200320002020503030503094c061432000a6666663fcdcc8c3f4d5300", + "STRINGS": [ + "Hinomikoto", + "A beast with boiling hot \nblood. Deified by some.\nCharges foes with its burning\nhorns and uses fire arts." + ] + }, + { + "TYPE": "status", + "STRING1": "mon157_c00", + "STRING2": "C_MON157_C00", + "STRING3": "mon157_c00", + "UNK0": [ + 1.0, + 1.899999976158142, + 1.2999999523162842 + ], + "UNK1": "000000000000804002000100003d0014000000140000240424040000000043040004d201c8024b000400580004001901640000646450786464646464000064646464646464643200c8003200320003070305040403124c06145006146666663fcdcc8c3f4d5300", + "STRINGS": [ + "Rup Kamuy", + "A beast that roams places\nthat are extremely cold. Said\nto rule over ice and snow. Its\nantlers freeze foes on contact." + ] + }, + { + "TYPE": "status", + "STRING1": "mon159", + "STRING2": "C_MON159", + "STRING3": "mon159", + "UNK0": [ + 1.5, + 1.3300000429153442, + 0.6700000166893005 + ], + "UNK1": "000000000000804001000100003b8d1400008d14000000000000000000005a04150400002c024600020055000400050164644b7d646e91641464646432960064320064320064c800c8000a000a0006040504040505124c061e32000f6666663fcdcc8c3f4d5300", + "STRINGS": [ + "Minos Demon", + "A powerful, two-horned, evil\ncreature. Obscures foes' \nvision with dark breath and\nthen pulverizes them." + ] + }, + { + "TYPE": "status", + "STRING1": "mon159_c00", + "STRING2": "C_MON159", + "STRING3": "mon159_c00", + "UNK0": [ + 1.5, + 1.3300000429153442, + 0.6700000166893005 + ], + "UNK1": "000000000000804001000100000745200000452000000000000000000000f800c300000063002600020042000400800264644b7d646e91641464646432960064320064320064c800c8000a000a000c080a0906060923d508640f27000000803f0000803f4d4700", + "STRINGS": [ + "Minos Demon", + "A powerful, two-horned, evil\ncreature. Obscures foes' \nvision with dark breath and\nthen pulverizes them." + ] + }, + { + "TYPE": "status", + "STRING1": "mon164", + "STRING2": "C_MON164", + "STRING3": "mon164", + "UNK0": [ + 1.0, + 3.799999952316284, + 1.9500000476837158 + ], + "UNK1": "000000000000804003000100003b102200001022000000000000000000009104430400007e024a00010059000400150164000064966e64646464646400640064646464646464320064003200640005050805040404144f06283200146666663fcdcc8c3f4d5300", + "STRINGS": [ + "Surtr", + "A demi-human fiend that\ngoverns fire. Its sword is\nmade of fire so hot, it can\nboil steel." + ] + }, + { + "TYPE": "status", + "STRING1": "mon165", + "STRING2": "C_MON165", + "STRING3": "mon165", + "UNK0": [ + 1.0, + 2.130000114440918, + 1.0 + ], + "UNK1": "000000000000804002000100003fb70b0000b70b0000e703e70300000000ea03bf03f301fa014a0010006c0004001d0164646464646478323232323232323232323232323232320032006400320003030303080808143200140500056666663fcdcc8c3f4d5300", + "STRINGS": [ + "Ashen Fragment", + "Fragment of the Ashen Power.\nLulls would-be intruders of\nthe realm to sleep, where they\nexperience nightmares." + ] + }, + { + "TYPE": "status", + "STRING1": "mon169", + "STRING2": "C_MON169", + "STRING3": "mon169", + "UNK0": [ + 1.0, + 9.75, + 2.6500000953674316 + ], + "UNK1": "0000000000008040060001000046400d0300400d0300e703e703c800640094066b053702db0363000a0078000500000064646464646464140000141414140014000000140032320032003200320000000000000000000f27000f27000000803f0000803f4d45475300", + "STRINGS": [ + "Loa Erebonius", + "A shadow of the Great Power\nwhich appeared on the \nOtherworldly Battlefield.\nCarries out the Final Trial." + ] + }, + { + "TYPE": "status", + "STRING1": "npc005", + "STRING2": "C_NPC005", + "STRING3": "npc005", + "UNK0": [ + 1.0, + 1.7999999523162842, + 0.5 + ], + "UNK1": "000000000000c040020001000017a4380000983a0000f401f401c8003200d201b601e1001801630008004d0006004001646464646464646464646464646414646414643200643200320032003200090909090707071e0500640f27000000803f0000803f4d454700", + "STRINGS": [ + "Patrick", + "Third son of Marquis Hyarms.\nExceptionally skilled with a\nsword thanks to his high-\nquality education." + ] + }, + { + "TYPE": "status", + "STRING1": "npc018", + "STRING2": "C_NPC018", + "STRING3": "npc018", + "UNK0": [ + 1.0, + 1.7999999523162842, + 0.5 + ], + "UNK1": "000000000000c04002000100003cd8530100d8530100f401f401c8006400a00556040002800263001e006c00060000006464646464646432000000003232003232003200003232000a000a00320000000000000000000f27000f27000000803f0000803f4d45475500", + "STRINGS": [ + "C", + "A mysterious masked man who\nleads the terrorists. Wields\na double saber with immense\nskill, using varied attacks." + ] + }, + { + "TYPE": "status", + "STRING1": "npc018_c00", + "STRING2": "C_NPC018", + "STRING3": "npc018", + "UNK0": [ + 1.0, + 1.7999999523162842, + 0.5 + ], + "UNK1": "000000000000c04002000100003da0860100a0860100e703e703c8006400a5055b040502850263001e006c00060030116464646464646432000000003232003232003200003232000a000a0032003c3c3c3c323232960f27000f27000000803f0000803f4d454700", + "STRINGS": [ + "C", + "A mysterious masked man who \nleads the Imperial Liberation\nFront. Wields a double saber\nwith immense skill." + ] + }, + { + "TYPE": "status", + "STRING1": "npc019", + "STRING2": "C_NPC019", + "STRING3": "npc019", + "UNK0": [ + 1.0, + 1.7999999523162842, + 0.5 + ], + "UNK1": "000000000000c04006000100001e7850000078500000e703e703c80032003102df01e3001b014b000700540006002003646464646464646464646464646400643200640000643200320032003200121212120f0f0f3c0f27000f27000000803f0000803f4d45475300", + "STRINGS": [ + "G (Gideon)", + "A man belonging to an unknown\norganization who hired the\njaeger dropouts. Supports\nallies with high-level arts." + ] + }, + { + "TYPE": "status", + "STRING1": "npc020", + "STRING2": "C_NPC020", + "STRING3": "npc020", + "UNK0": [ + 1.0, + 1.7999999523162842, + 0.5 + ], + "UNK1": "9a99993f0000c0400200010000342048010020480100e703e703c800640089038303ae01fe015e0007005a0006009006646464646464646464646464646400640000641400323200320032000a0032323232282828820f27000f27000000803f0000803f4d454700", + "STRINGS": [ + "S (Scarlet)", + "A bewitching Imperial \nLiberation Front executive.\nTorments and slaughters \nfoes with a templar sword." + ] + }, + { + "TYPE": "status", + "STRING1": "npc021", + "STRING2": "C_NPC021", + "STRING3": "npc021", + "UNK0": [ + 1.0, + 1.7999999523162842, + 0.5 + ], + "UNK1": "000000000000c04006000300003c18fa010018fa01008a028a02c80064002005e803950237034f00080063000600f00a646464646464646400646432323200000000000a006432000a000a006400373737372d2d2d8c0f27000f27000000803f0000803f4d454700", + "STRINGS": [ + "V (Vulcan)", + "One of the Imperial Liberation\nFront's executives. Consumed\nby hatred as he slaughters\nfoes with a huge gatling gun. " + ] + }, + { + "TYPE": "status", + "STRING1": "npc029", + "STRING2": "C_NPC029", + "STRING3": "npc029", + "UNK0": [ + 1.0, + 1.7999999523162842, + 0.5 + ], + "UNK1": "000000000000c04002000100005050c3000050c30000f401f401c800c8000e063504af03f70363000f006e0006000000646464646464640000000000000000000000000000000a000a000a000a0000000000000000000f27000f27000000803f0000803f4d45475900", + "STRINGS": [ + "Viscount Arseid", + "The Arseid school's foremost\npractitioner known as the\nRadiant Blademaster. Wields a\nsword with inhuman strength." + ] + }, + { + "TYPE": "status", + "STRING1": "npc030", + "STRING2": "C_NPC030", + "STRING3": "npc030", + "UNK0": [ + 1.0, + 1.7999999523162842, + 0.5 + ], + "UNK1": "000000000000c040020001000032ecc20000ecc20000f401f401c80064003204c603b201f6013c0020005e00060014056464646464646432000032003232000000003200003232000a000a003200191919191616164b0f27000f27000000803f0000803f4d454700", + "STRINGS": [ + "Butler Klaus", + "An elderly butler who serves\nViscount Arseid. Serves as \nacting master of the Arseid\nschool." + ] + }, + { + "TYPE": "status", + "STRING1": "npc054", + "STRING2": "C_NPC054", + "STRING3": "npc054", + "UNK0": [ + 1.0, + 1.7999999523162842, + 0.5 + ], + "UNK1": "000000000000c04005000100000c7f0600007f06000000000000c8000000ef00ba0000007500260002003c000600370064646464646464646464646464646464646464640064320032003200320003030303020202040100320300320000803f0000803f4d4500", + "STRINGS": [ + "Fake Park Ranger", + "A fake park ranger at Lunaria\nNature Park, responsible for\nthe burglary at the market.\nEquipped with a rifle." + ] + }, + { + "TYPE": "status", + "STRING1": "npc056", + "STRING2": "C_NPC056", + "STRING3": "npc056", + "UNK0": [ + 1.0, + 1.7999999523162842, + 0.5 + ], + "UNK1": "000000000000c040020001000016f82a0000f82a0000f401f401c8003200b1019b019d00f7004e00070046000600500064646464646464646464646464643264643264640064640064006400640008080808050505140100640f27000000803f0000803f4d454700", + "STRINGS": [ + "Noble Student", + "A member of Class I who spends\ntime around Patrick. Seeks to\ndemonstrate the spirit and\ndignity of the nobility." + ] + }, + { + "TYPE": "status", + "STRING1": "npc057", + "STRING2": "C_NPC057", + "STRING3": "npc056", + "UNK0": [ + 1.0, + 1.7999999523162842, + 0.5 + ], + "UNK1": "000000000000c040020001000016f82a0000f82a0000f401f401c8003200b1019b019d00f7004e00070046000600500064646464646464646464646464643264643264640064640064006400640008080808050505140700640f27000000803f0000803f4d454700", + "STRINGS": [ + "Noble Student", + "A member of Class I who spends\ntime around Patrick. Seeks to\ndemonstrate the spirit and\ndignity of the nobility." + ] + }, + { + "TYPE": "status", + "STRING1": "npc058", + "STRING2": "C_NPC058", + "STRING3": "npc056", + "UNK0": [ + 1.0, + 1.7999999523162842, + 0.5 + ], + "UNK1": "000000000000c040020001000016f82a0000f82a0000f401f401c8003200b1019b019d00f7004e00070046000600500064646464646464646464646464643264643264640064640064006400640008080808050505141600640f27000000803f0000803f4d454700", + "STRINGS": [ + "Noble Student", + "A member of Class I who spends\ntime around Patrick. Seeks to\ndemonstrate the spirit and\ndignity of the nobility." + ] + }, + { + "TYPE": "status", + "STRING1": "npc170", + "STRING2": "C_NPC170_C99", + "STRING3": "npc170", + "UNK0": [ + 1.0, + 1.7999999523162842, + 0.5 + ], + "UNK1": "000000000000c04002000100001f490f0000490f000000000000c80032008f019f0100004a01240016004a000700000064646464646464646464646464646464646464646464640064006400640000000000000000000f27000f27000000803f0000803f454300", + "STRINGS": [ + "Alan", + "A first-year student belonging\nto the Fencing Club. What he\nlacks in skill he makes up for\nwith determination." + ] + }, + { + "TYPE": "status", + "STRING1": "npc350", + "STRING2": "C_NPC350", + "STRING3": "npc350", + "UNK0": [ + 1.0, + 1.7999999523162842, + 0.5 + ], + "UNK1": "000000000000c040050001000014c0120000c012000000000000c8006400b301db010000db002b000700460006005800646464646464646464646464646464646432646400643200320032003200040404040303030801001e04001e0000803f0000803f4d454700", + "STRINGS": [ + "P. Army Soldier", + "An elite soldier belonging to\nthe Kreuzen Provincial Army.\nWell trained and proud." + ] + }, + { + "TYPE": "status", + "STRING1": "npc350_c00", + "STRING2": "C_NPC350_C00", + "STRING3": "npc350", + "UNK0": [ + 1.0, + 1.7999999523162842, + 0.5 + ], + "UNK1": "000000000000c040050001000014ac0d0000ac0d000000000000c8006400a4015e010000b4002b00070046000600580064646464646464646464646464646464643264640064320032003200320000000000000000000400140f27000000803f0000803f4d454700", + "STRINGS": [ + "P. Army Soldier", + "An elite soldier belonging to\nthe Kreuzen Provincial Army.\nWell trained and proud." + ] + }, + { + "TYPE": "status", + "STRING1": "npc370", + "STRING2": "C_NPC370", + "STRING3": "npc370", + "UNK0": [ + 1.0, + 1.7999999523162842, + 0.5 + ], + "UNK1": "000000000000c040050001000032803e0000803e000070037003c80032003903cf026d019a013900070053000600e20064646464646464646464646464641464641464640064320032003200320009090909080808201600320700320000803f0000803f4d454700", + "STRINGS": [ + "Terrorist - Gun", + "An Imperial Liberation Front\nmember equipped with a small\nautomatic rifle. Believes that\nthe end justifies the means." + ] + }, + { + "TYPE": "status", + "STRING1": "npc370_c00", + "STRING2": "C_NPC370_C00", + "STRING3": "npc370_c00", + "UNK0": [ + 1.0, + 1.7999999523162842, + 0.5 + ], + "UNK1": "000000000000c040020001000032803e0000803e000070037003c80032005703cf026d019a013900070053000600e2006464646464646464646464646464146464146464006432003200320032000a0a0a0a070707200100320400320000803f0000803f4d454700", + "STRINGS": [ + "Terrorist - Sword", + "An Imperial Liberation Front\nmember. Driven by loathing for\nChancellor Osborne, and fights\nusing a sword." + ] + }, + { + "TYPE": "status", + "STRING1": "npc370_c01", + "STRING2": "C_NPC370", + "STRING3": "npc370", + "UNK0": [ + 1.0, + 1.7999999523162842, + 0.5 + ], + "UNK1": "000000000000c04005000100003be0600000e0600000de03de03c8003200a3034903c301f301400007005d0006003b016464646464646464646464646464146464146464006432003200320032000b0b0b0b0a0a0a320200320700320000803f0000803f4d454700", + "STRINGS": [ + "Terrorist - Gun", + "An Imperial Liberation Front\nmember equipped with a small\nautomatic rifle. Believes that\nthe end justifies the means." + ] + }, + { + "TYPE": "status", + "STRING1": "npc370_c02", + "STRING2": "C_NPC370_C00", + "STRING3": "npc370_c00", + "UNK0": [ + 1.0, + 1.7999999523162842, + 0.5 + ], + "UNK1": "000000000000c04002000100003be0600000e0600000de03de03c8003200c2034903c301f301400007005d0006003b016464646464646464646464646464146464146464006432003200320032000c0c0c0c090909320100320400320000803f0000803f4d454700", + "STRINGS": [ + "Terrorist - Sword", + "An Imperial Liberation Front\nmember. Driven by loathing for\nChancellor Osborne, and fights\nusing a sword." + ] + }, + { + "TYPE": "status", + "STRING1": "npc389", + "STRING2": "C_NPC389", + "STRING3": "npc389", + "UNK0": [ + 1.0, + 1.7999999523162842, + 0.5 + ], + "UNK1": "000000000000c04005000100001d00320000003200002c012c01c80032000c02b201be00ff0028000300490006007400646464646464646464646464646432646432646400643200320032003200080808080606061401001e04001e0000803f0000803f4d45475300", + "STRINGS": [ + "Jaeger Dropout", + "An armed former jaeger hired\nby Gideon. Lives the lifestyle\nof a mercenary, risking his\nlife for mira." + ] + }, + { + "TYPE": "status", + "STRING1": "npc600", + "STRING2": "C_NPC600", + "STRING3": "npc600", + "UNK0": [ + 1.0, + 7.0, + 3.0 + ], + "UNK1": "0000000000008040010001000050f4010000f401000000000000000000003700640000000000370000001e000300000064646464646464646464646464646464646464646464640064006400640000000000000000000f27000f27000000803f0000803f4d4500", + "STRINGS": [ + "Ashen Knight", + "Ashen Knight" + ] + }, + { + "TYPE": "status", + "STRING1": "npc601", + "STRING2": "C_NPC601", + "STRING3": "npc601", + "UNK0": [ + 1.0, + 7.0, + 2.0 + ], + "UNK1": "0000204100008040010001000050400d0300400d03000000000000000000ec13102700000000630000006e000000000064646464646464000000000000000000000000000000320032003200320000000000000000000f27000f27000000803f0000803f4d455400", + "STRINGS": [ + "Azure Knight", + "Knight by the name of Ordine, \nwith Crow as its Awakener. \nFights with a double saber,\ncompletely free of hesitation." + ] + }, + { + "TYPE": "status", + "STRING1": "npc607", + "STRING2": "C_NPC607", + "STRING3": "npc607", + "UNK0": [ + 1.0, + 5.0, + 3.0 + ], + "UNK1": "0000000000008040070001000041c0d40100c0d401000000000000000000ef06850700000e06500000006e000300000064646464646464000000000000000000000000000000320032003200320000000000000000000f27000f27000000803f0000803f4d454700", + "STRINGS": [ + "Drakkhen", + "A giant humanoid weapon made\nby Reinford's 5th Development\nDivision. Mobile and strong,\nit revolutionizes warfare." + ] + }, + { + "TYPE": "status", + "STRING1": "npc607_c00", + "STRING2": "C_NPC607_C00", + "STRING3": "npc607_c00", + "UNK0": [ + 1.0, + 5.0, + 3.0 + ], + "UNK1": "0000000000008040010001000041c0d40100c0d4010000000000000000003700640000000000370005001e000300000064646464646464646464646464646464646464646464640064006400640000000000000000000f27000f27000000803f0000803f4d4500", + "STRINGS": [ + "Drakkhen", + "A giant humanoid weapon made\nby Reinford's 5th Development\nDivision. Mobile and strong,\nit revolutionizes warfare." + ] + }, + { + "TYPE": "status", + "STRING1": "npc607_c01", + "STRING2": "C_NPC607_C01", + "STRING3": "npc607_c01", + "UNK0": [ + 1.0, + 5.0, + 3.0 + ], + "UNK1": "0000000000008040010001000041c0d40100c0d4010000000000000000003700640000000000370005001e000300000064646464646464646464646464646464646464646464640064006400640000000000000000000f27000f27000000803f0000803f4d4500", + "STRINGS": [ + "Drakkhen", + "A giant humanoid weapon made\nby Reinford's 5th Development\nDivision. Mobile and strong,\nit revolutionizes warfare." + ] + }, + { + "TYPE": "status", + "STRING1": "npc608", + "STRING2": "C_NPC608", + "STRING3": "npc608", + "UNK0": [ + 1.0, + 5.0, + 3.0 + ], + "UNK1": "0000000000008040070001000046d0fb0100d0fb01000000000000000000d0079e0700000e066300050078000300000064646464646464000000000000000000000000000000320032003200320000000000000000000f27000f27000000803f0000803f4d45475500", + "STRINGS": [ + "Spiegel", + "A special Soldat operated by\nScarlet. Uses reactive armor\nto nullify enemy attacks." + ] + }, + { + "TYPE": "status", + "STRING1": "npc608_c00", + "STRING2": "C_NPC608_C00", + "STRING3": "npc608_c00", + "UNK0": [ + 1.0, + 5.0, + 3.0 + ], + "UNK1": "0000000000008040010001000041f4010000f401000000000000000000003700640000000000370005001e000300000064646464646464646464646464646464646464646464640064006400640000000000000000000f27000f27000000803f0000803f4d4500", + "STRINGS": [ + "Spiegel", + "A special Soldat operated by\nScarlet. Equipped with heavy\nweaponry designed to be able\nto destroy tanks." + ] + }, + { + "TYPE": "status", + "STRING1": "npc608_c01", + "STRING2": "C_NPC608_C01", + "STRING3": "npc608_c01", + "UNK0": [ + 1.0, + 5.0, + 3.0 + ], + "UNK1": "0000000000008040010001000041f4010000f401000000000000000000003700640000000000370005001e000300000064646464646464646464646464646464646464646464640064006400640000000000000000000f27000f27000000803f0000803f4d4500", + "STRINGS": [ + "Spiegel", + "A special Soldat operated by\nScarlet. Equipped with heavy\nweaponry designed to be able\nto destroy tanks." + ] + }, + { + "TYPE": "status", + "STRING1": "npc608_c02", + "STRING2": "C_NPC608", + "STRING3": "npc608_c02", + "UNK0": [ + 1.0, + 5.0, + 2.0 + ], + "UNK1": "0000000000008040010001000046d0fb0100d0fb010000000000000000008813401f000000006300000064000000000064646464646464000000000000000000000000000000640064006400640000000000000000000f27000f27000000803f0000803f4d455400", + "STRINGS": [ + "Spiegel", + "A special Soldat operated by\nScarlet. Uses reactive armor\nto nullify enemy attacks." + ] + }, + { + "TYPE": "status", + "STRING1": "npc608_p00", + "STRING2": "0", + "STRING3": "0", + "UNK0": [ + 1.0, + 1.5, + 1.0 + ], + "UNK1": "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f27000f270000000000000000004d584100", + "STRINGS": [ + "Arm", + "--" + ] + }, + { + "TYPE": "status", + "STRING1": "npc608_p01", + "STRING2": "0", + "STRING3": "0", + "UNK0": [ + 1.0, + 1.5, + 1.0 + ], + "UNK1": "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f27000f270000000000000000004d584100", + "STRINGS": [ + "Body", + "--" + ] + }, + { + "TYPE": "status", + "STRING1": "npc608_p02", + "STRING2": "0", + "STRING3": "0", + "UNK0": [ + 1.0, + 1.5, + 1.0 + ], + "UNK1": "00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f27000f270000000000000000004d584100", + "STRINGS": [ + "Head", + "--" + ] + }, + { + "TYPE": "status", + "STRING1": "mon988", + "STRING2": "C_MON004", + "STRING3": "mon988", + "UNK0": [ + 1.0, + 1.100000023841858, + 0.5 + ], + "UNK1": "00000000000080400100010000630004000000040000f401f401c800640061004e006400320037000700310004000f27326496c89664326496c89664326496c89664326496c89001c80064003200080402010001020000001e01000a6666663f6666a63f4d00", + "STRINGS": [ + "Enemy", + "A generic enemy for debug\npurposes. Completely average." + ] + }, + { + "TYPE": "status", + "STRING1": "mon989", + "STRING2": "C_MON091", + "STRING3": "mon989", + "UNK0": [ + 1.0, + 2.0, + 2.0 + ], + "UNK1": "00000000000080400600010000630008000000080000f401f401c80064008000800064003200370006002f0006000f273278649664646464646464646464646464646464646432009001c8000a000c0c0c0c0c0c0c0f00001e01000a6666663fcdcc8c3f4d00", + "STRINGS": [ + "Strong Enemy", + "A generic strong enemy for\ndebug purposes. Reckless type." + ] + }, + { + "TYPE": "status", + "STRING1": "mon990", + "STRING2": "C_MON095", + "STRING3": "mon990", + "UNK0": [ + 1.0, + 7.5, + 5.0 + ], + "UNK1": "000000000000803f6400010000630b1300000b130000f401f401c8006400b4009600640096003c0005002d0000000f27199619326464646464646464646464646464646464640a000a000a000a001e1e1e1e1e1e1e1e00001e01000a0000803f0000803f4d00", + "STRINGS": [ + "Boss", + "A generic boss enemy for debug\npurposes. A mass of bones that\nwould make dogs happy." + ] + }, + { + "TYPE": "status", + "STRING1": "mon991", + "STRING2": "C_MON991", + "STRING3": "mon991", + "UNK0": [ + 1.0, + 1.0, + 1.0 + ], + "UNK1": "000000000000803f010001000008000200000002000000000000000000003700290000000a00060006001e000400800064646464646464646464646464646464646464646464640064006400640000000000000000000000000000000000803f0000803f4d00", + "STRINGS": [ + "0", + "0" + ] + }, + { + "TYPE": "status", + "STRING1": "mon992", + "STRING2": "C_MON992", + "STRING3": "mon992", + "UNK0": [ + 1.0, + 1.0, + 1.0 + ], + "UNK1": "000000000000803f010001000008000200000002000000000000000000003700290000000a00060006001e000400800064646464646464646464646464646464646464646464640064006400640000000000000000000000000000000000803f0000803f4d00", + "STRINGS": [ + "0", + "0" + ] + }, + { + "TYPE": "status", + "STRING1": "mon994", + "STRING2": "C_MON994", + "STRING3": "mon994", + "UNK0": [ + 1.0, + 1.0, + 1.0 + ], + "UNK1": "000000000000803f0300010000012c0100002c01000000000000000000000000000000000a000000000000000300000064646464646464646464646464646464646464646464640064006400640000000000000000000000000000000000803f0000803f4d00", + "STRINGS": [ + "0", + "0" + ] + }, + { + "TYPE": "status", + "STRING1": "mon995", + "STRING2": "C_NPC608", + "STRING3": "npc608", + "UNK0": [ + 1.0, + 7.0, + 3.0 + ], + "UNK1": "0000000000006040020001000007e0090000e0090000640064006400640037002900370014001e0000001400030064009bc8af91646464505050505050505050505050505064640064006400640007070707090909000000640000000000803f0000803f4d00", + "STRINGS": [ + "Parts Test (Body)", + "Body parts test character\n(body)" + ] + }, + { + "TYPE": "status", + "STRING1": "mon995_p00", + "STRING2": "0", + "STRING3": "0", + "UNK0": [ + 1.0, + 1.5, + 1.0 + ], + "UNK1": "000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004d584100", + "STRINGS": [ + "Parts Test (Part)", + "Body parts test character\n(part)" + ] + }, + { + "TYPE": "status", + "STRING1": "mon996", + "STRING2": "C_MON996", + "STRING3": "mon996", + "UNK0": [ + 1.0, + 1.5, + 0.5 + ], + "UNK1": "000000000000c03f0100010000033b0100003b01000034003400640064001e003c0028000a001a000400080003001f009b64af64646464646464646464646464646464646464640064006400640001040002000201000000280000050000803f0000803f4d00", + "STRINGS": [ + "Drome", + "A mollusk known for its cold\nbody. Freezes small animals\nwith cold air before feeding\non them." + ] + }, + { + "TYPE": "status", + "STRING1": "mon997", + "STRING2": "C_MON004", + "STRING3": "mon004", + "UNK0": [ + 1.0, + 1.25, + 0.5 + ], + "UNK1": "00000000000080400100010000072b0200002b020000000000000000000061004e000000000037000700310004008813646478646464646464646464646464646464646464649001000000000000080402010001020000001e67001e6666663f6666a63f4d00", + "STRINGS": [ + "Crop Muncher", + "A monster that devours \ncrops in large groups." + ] + }, + { + "TYPE": "status", + "STRING1": "mon998", + "STRING2": "C_MON998", + "STRING3": "mon998", + "UNK0": [ + 0.75, + 4.0, + 1.6699999570846558 + ], + "UNK1": "000000000000604003000100000316020000160200003400340064006400230050000000000016000200140003001500505078c80a6464646464646464646464646464646464640064006400640003010200010201000000320000320000803f0000803f4d00", + "STRINGS": [ + "Aldovoss", + "A hard-shelled fiend that\nappeared from deep in a mine.\nPulverizes all those who come\nnear with its powerful arms." + ] + }, + { + "TYPE": "status", + "STRING1": "mon999", + "STRING2": "C_MON999", + "STRING3": "mon999", + "UNK0": [ + 0.5, + 3.5, + 1.0 + ], + "UNK1": "00000000000060400200010000032c0100002c0100003400340064006400320032003200320014000a00320005001e00646464646464640a0a0a1e1e1e0a0a1e3246646464646400640064006400020003020100020000004b0000050000003f0000c03f4d00", + "STRINGS": [ + "Bozuonga", + "Leader of a group of primates.\nSwings its axe with incredible\nforce, summoning minions by \nroaring." + ] + }, + { + "TYPE": "char_revise", + "UNK": "6E706336303100460046004600640064004600" + }, + { + "TYPE": "char_revise", + "UNK": "6E70633630385F63303200460046004600640064004600" + } +] \ No newline at end of file diff --git a/text/jsons/t_mstqrt.json b/text/jsons/t_mstqrt.json new file mode 100644 index 0000000..c7b3b41 --- /dev/null +++ b/text/jsons/t_mstqrt.json @@ -0,0 +1,1790 @@ +[ + { + "TYPE": "MasterQuartzBase", + "UNK": "D00700000100" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "D00701002C011400190005000A00050002000000A040000080BF000080BF000080BF000080BF000080BF3200FFFF00000100FFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "D007020090011E0023000A000F000A00030000002041000080BF000080BF000080BF000080BF000080BF3800FFFF00000100FFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "D0070300F40128002D000F0014000F00040000007041000080BF00004842000080BF000080BF000080BFFFFFFFFF00000100FFFF020003000400FFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "D0070400BC0232003C0014001900140005000000A041000080BF0000C842000080BF000080BF000080BF3B00FFFF00000100FFFF020003000400FFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "D007050084034600500019002300190007000000C841000080BF00004843000080BF0000A0400000C841FFFFFFFF00000100FFFF020003000400050006000700" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2000, + "ID": 0, + "STRING": "★Killing enemies restores CP\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2000, + "ID": 1, + "STRING": "CP+%g per enemy killed" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2000, + "ID": 2, + "STRING": "★Restores CP when HP is low\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2000, + "ID": 3, + "STRING": "CP+%g\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2000, + "ID": 4, + "STRING": "Once per fight when below 20%% HP" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2000, + "ID": 5, + "STRING": "★Raises STR when HP is low\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2000, + "ID": 6, + "STRING": "%g turns of STR+%g%\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2000, + "ID": 7, + "STRING": "Once per fight when below 20%% HP" + }, + { + "TYPE": "MasterQuartzBase", + "UNK": "D10701000100" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "D1070100C80028000A000A001900140001000000A03F000080BF000080BF000080BF000080BF000080BF2800230000000100FFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "D10702002C0132000F000F002300190002000000C03F000080BF000080BF000080BF000080BF000080BF2900FFFF00000100FFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "D107030090014600140014002D00230003000000E03F000080BF00004040000080BF000080BF000080BF2500FFFF00000100FFFF02000300FFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "D1070400F4016400190019003C003200040000000040000080BF00008040000080BF000080BF000080BF2A00FFFF00000100FFFF02000300FFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "D1070500BC0278002300230050003C00050000004040000080BF0000A040000080BF0000A040000080BF2C00FFFF00000100FFFF02000300FFFF040005000600" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2001, + "ID": 0, + "STRING": "★Increases potency of healing arts\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2001, + "ID": 1, + "STRING": "Amount healed multiplied by %g" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2001, + "ID": 2, + "STRING": "★Begin battle with gradual HP regen\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2001, + "ID": 3, + "STRING": "Recover 30%% of max HP for %g turns" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2001, + "ID": 4, + "STRING": "★Gradual HP regen when HP is low\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2001, + "ID": 5, + "STRING": "Recover 30%% of max HP for %g turns\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2001, + "ID": 6, + "STRING": "Once per fight when below 20%% HP" + }, + { + "TYPE": "MasterQuartzBase", + "UNK": "D20702000100" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "D20701009001140019000A0005000A00040000000040000080BF000080BF000080BF000080BF000080BF4100FFFF00000100FFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "D2070200F4011E0023000F000A000F00050000004040000080BF000080BF000080BF000080BF000080BF6400FFFF00000100FFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "D2070300BC0228002D0014000F001400070000008040000080BF00004040000080BF000080BF000080BFFFFFFFFF00000100FFFF02000300FFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "D2070400E80332003C001900140019000A000000A040000080BF0000C040000080BF000080BF000080BF4800FFFF00000100FFFF02000300FFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "D2070500B004460050002300190023000C000000C040000080BF00001041000080BF0000A040000080BFFFFFFFFF00000100FFFF02000300FFFF04000500FFFF" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2002, + "ID": 0, + "STRING": "★Begin battle with insight status\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2002, + "ID": 1, + "STRING": "Lasts for %g turns" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2002, + "ID": 2, + "STRING": "★Evasion up\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2002, + "ID": 3, + "STRING": "Evasion+%g%" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2002, + "ID": 4, + "STRING": "★Attacks/crafts deal critical damage\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2002, + "ID": 5, + "STRING": "%g% chance" + }, + { + "TYPE": "MasterQuartzBase", + "UNK": "D30703000100" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "D3070100C80014000A000A0019000F0003000000204100002041000080BF000080BF000080BF000080BF2B005F00000001000200FFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "D30702002C011E000F000F002300140004000000C8410000C841000080BF000080BF000080BF000080BF6300FFFF000001000200FFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "D307030090012800140014002D0019000500000048420000484200004040000080BF000080BF000080BF6400FFFF000001000200050006000700FFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "D3070400F4013200190019003C00230007000000C8420000C84200008040000080BF000080BF000080BF6100FFFF000001000200050006000700FFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "D3070500BC0246002300230050002D0009000000C842000048430000A040000080BF00004842000080BF6200FFFF00000300040005000600070008000900FFFF" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2003, + "ID": 0, + "STRING": "★Automatically recover from K.O.\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2003, + "ID": 1, + "STRING": "Recover %g% HP, CP+%g\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2003, + "ID": 2, + "STRING": "Activates once per battle" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2003, + "ID": 3, + "STRING": "Recover %g% HP/EP, CP+%g\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2003, + "ID": 4, + "STRING": "Activates twice per battle" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2003, + "ID": 5, + "STRING": "★Gradual HP regen when HP is low\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2003, + "ID": 6, + "STRING": "Lasts for %g turns\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2003, + "ID": 7, + "STRING": "Once per fight when under 20%% HP" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2003, + "ID": 8, + "STRING": "★Delay after space arts reduced\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2003, + "ID": 9, + "STRING": "Delay reduced by %g%" + }, + { + "TYPE": "MasterQuartzBase", + "UNK": "D40704000100" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "D4070100C8000A001E000A0005000A0001000000803F0000C841000080BF000080BF000080BF000080BF3200FFFF00000100FFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "D40702002C0114002D000F000A000F000200000000400000C841000080BF000080BF000080BF000080BF3900FFFF00000100FFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "D407030090011E003C0014000F0014000300000040400000C841000040400000C841000080BF000080BFFFFFFFFF00000100FFFF020003000400FFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "D4070400F401280050001900140019000400000080400000C841000080400000C841000080BF000080BF3A00FFFF00000100FFFF020003000400FFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "D4070500BC023200640023001900230005000000A040000048420000A040000048420000A040000080BFFFFFFFFF00000100FFFF02000300040005000600FFFF" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2004, + "ID": 0, + "STRING": "★Begin battle with STR raised\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2004, + "ID": 1, + "STRING": "%g turns of STR+%g%" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2004, + "ID": 2, + "STRING": "★Raises STR when HP is low\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2004, + "ID": 3, + "STRING": "%g turns of STR+%g%\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2004, + "ID": 4, + "STRING": "Once per fight when below 20%% HP" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2004, + "ID": 5, + "STRING": "★Attacks/crafts deal critical damage\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2004, + "ID": 6, + "STRING": "%g% chance" + }, + { + "TYPE": "MasterQuartzBase", + "UNK": "D50705000100" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "D507010064001400140005001400050001000000F041000080BF000080BF000080BF000080BF000080BF2300FFFF00000100FFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "D5070200C8001E0019000A0019000A00020000002042000080BF000080BF000080BF000080BF000080BF2400FFFF00000100FFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "D50703002C01280023000F0023000F00030000004842000080BF0000F041000080BF000080BF000080BFFFFFFFFF00000100FFFF02000300FFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "D5070400900132003200140032001400040000007042000080BF00002042000080BF000080BF000080BF2500FFFF00000100FFFF02000300FFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "D5070500F40146003C0019003C00190005000000B442000080BF00004842000080BF0000A03F000080BF2600FFFF00000100FFFF02000300FFFF04000500FFFF" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2005, + "ID": 0, + "STRING": "★Obtain sepith from attacks/crafts\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2005, + "ID": 1, + "STRING": "%g% chance" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2005, + "ID": 2, + "STRING": "★Obtain sepith from offensive arts\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2005, + "ID": 3, + "STRING": "%g% chance" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2005, + "ID": 4, + "STRING": "★Increases obtained EXP\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2005, + "ID": 5, + "STRING": "Obtained EXP multiplied by %g" + }, + { + "TYPE": "MasterQuartzBase", + "UNK": "D60706000100" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "D60701002C0114000F001E000A00190001000000803F0000C841000080BF000080BF000080BF000080BF1400FFFF00000100FFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "D607020090011E0014002D000F0023000200000000400000C841000080BF000080BF000080BF000080BF1A00FFFF00000100FFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "D6070300F401280019003C0014002D000300000040400000C841000040400000C841000080BF000080BFFFFFFFFF00000100FFFF02000300FFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "D6070400BC0232002300500019003C000400000080400000C841000080400000C841000080BF000080BF1B00FFFF00000100FFFF02000300FFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "D6070500840346002D0064002300500005000000A040000048420000A040000048420000204100002041FFFFFFFF00000100FFFF02000300FFFF04000500FFFF" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2006, + "ID": 0, + "STRING": "★Begin battle with DEF/ADF raised\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2006, + "ID": 1, + "STRING": "%g turns of DEF/ADF+%g%" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2006, + "ID": 2, + "STRING": "★Raises DEF/ADF when HP is low\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2006, + "ID": 3, + "STRING": "%g turns of DEF/ADF+%g%\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2006, + "ID": 3, + "STRING": "Once per fight when below 20%% HP" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2006, + "ID": 4, + "STRING": "★Automatically recover from K.O.\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2006, + "ID": 5, + "STRING": "Recover %g% HP, CP+%g\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2006, + "ID": 5, + "STRING": "Activates once per battle" + }, + { + "TYPE": "MasterQuartzBase", + "UNK": "D70707000100" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "D707010064001400190005001900050002000000803F0000C841000080BF000080BF000080BF000080BF4100FFFF00000100FFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "D7070200C8001E0023000A0023000A000300000000400000C841000080BF000080BF000080BF000080BFFFFFFFFF00000100FFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "D70703002C0128002D000F002D000F000400000040400000C841000040400000C841000080BF000080BF4300FFFF00000100FFFF020003000400FFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "D7070400900132003C0014003C0014000500000080400000C841000080400000C841000080BF000080BFFFFFFFFF00000100FFFF020003000400FFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "D7070500F4014600500019005000190007000000A040000048420000A040000048420000F041000080BF4400FFFF00000100FFFF02000300040005000600FFFF" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2007, + "ID": 0, + "STRING": "★Begin battle with ATS raised\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2007, + "ID": 1, + "STRING": "%g turns of ATS+%g%" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2007, + "ID": 2, + "STRING": "★Raises ATS when HP is low\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2007, + "ID": 3, + "STRING": "%g turns of ATS+%g%\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2007, + "ID": 4, + "STRING": "Once per fight when below 20%% HP" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2007, + "ID": 5, + "STRING": "★Offensive arts deal critical damage\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2007, + "ID": 6, + "STRING": "%g% chance" + }, + { + "TYPE": "MasterQuartzBase", + "UNK": "D80708000200" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "D807010064000A0019000500050005000600000080BF000080BF000080BF000080BF000080BF000080BFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "D8070200C800140023000A000A000A000900000000400000C841000080BF000080BF000080BF000080BF5400FFFF00000100FFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "D80703002C011E002D000F000F000F000C00000040400000C841000040400000C841000080BF000080BF5100FFFF00000100FFFF020003000400FFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "D8070400900128003C001400140014001000000080400000C841000080400000C841000080BF000080BFFFFFFFFF00000100FFFF020003000400FFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "D8070500F4013200500019001900190014000000A040000048420000A0400000484200002041000080BF5600FFFF00000100FFFF02000300040005000600FFFF" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2008, + "ID": 0, + "STRING": "★Begin battle with SPD raised\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2008, + "ID": 1, + "STRING": "%g turns of SPD+%g%" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2008, + "ID": 2, + "STRING": "★Raises SPD when HP is low\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2008, + "ID": 3, + "STRING": "Once per fight when below 20%% HP\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2008, + "ID": 4, + "STRING": "%g turns of SPD+%g%" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2008, + "ID": 5, + "STRING": "★Evasion up\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2008, + "ID": 6, + "STRING": "Evasion+%g%" + }, + { + "TYPE": "MasterQuartzBase", + "UNK": "D90709000200" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "D907010064003200050005001E0005000100000080BF000080BF000080BF000080BF000080BF000080BFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "D9070200C80046000A000A002D000A00020000002041000080BF000080BF000080BF000080BF000080BF72006E0000000100FFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "D90703002C015A000F000F003C000F00030000007041000080BF0000C841000080BF000080BF000080BF6F00FFFF00000100FFFF020003000400FFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "D907040090017800140014005000140004000000A041000080BF00004842000080BF000080BF000080BF7400FFFF00000100FFFF020003000400FFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "D9070500F401A000190019006400190005000000C841000080BF00009642000080BF0000A0400000C8417000FFFF00000100FFFF020003000400050006000700" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2009, + "ID": 0, + "STRING": "★Killing enemies restores EP\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2009, + "ID": 1, + "STRING": "EP+%g per enemy killed" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2009, + "ID": 2, + "STRING": "★Evades magic attacks\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2009, + "ID": 3, + "STRING": "%g% chance\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2009, + "ID": 4, + "STRING": "※Can counter evaded magic" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2009, + "ID": 5, + "STRING": "★Raises ATS when HP is low\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2009, + "ID": 6, + "STRING": "%g turns of ATS+%g%\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2009, + "ID": 7, + "STRING": "Once per fight when below 20%% HP" + }, + { + "TYPE": "MasterQuartzBase", + "UNK": "DA070A000200" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "DA070100900128000F000F00140014000400000080BF000080BF000080BF000080BF000080BF000080BFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "DA070200F4013200140014001900190005000000C841000080BF000080BF000080BF000080BF000080BF4100460000000100FFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "DA070300BC0246001900190023002300070000004842000080BF00004040000080BF000080BF000080BF4800FFFF00000100FFFF02000300FFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "DA070400E803640023002300320032000A0000009642000080BF0000C040000080BF000080BF000080BF4700FFFF00000100FFFF02000300FFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "DA070500B00478002D002D003C003C000C000000C842000080BF00001041000080BF00004842000080BF4500FFFF00000100FFFF02000300FFFF04000500FFFF" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2010, + "ID": 0, + "STRING": "★Prevents abnormal status/stat down\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2010, + "ID": 1, + "STRING": "%g% chance" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2010, + "ID": 2, + "STRING": "★Evasion up\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2010, + "ID": 3, + "STRING": "Evasion+%g%" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2010, + "ID": 4, + "STRING": "★Reduced AT Delay after wind arts\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2010, + "ID": 5, + "STRING": "AT Delay reduced by %g%" + }, + { + "TYPE": "MasterQuartzBase", + "UNK": "DB070B000300" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "DB0701002C011E001400190014001E000300000080BF000080BF000080BF000080BF000080BF000080BF1400FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "DB070200900128001900230019002D000400000080BF000080BF000080BF000080BF000080BF000080BF1900FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "DB070300F401320023002D0023003C000500000080BF000080BF000080BF000080BF000080BF000080BF1B00FFFF0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "DB070400BC02460032003C00320050000700000080BF000080BF000080BF000080BF000080BF000080BF1C00FFFF0000FFFFFFFF01000200FFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "DB07050084035A003C0050003C0064000900000080BF000080BF000080BF000080BF00004842000080BF1800FFFF0000FFFFFFFF01000200FFFF03000400FFFF" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2011, + "ID": 0, + "STRING": "★Begin battle with Immunity/Reflect" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2011, + "ID": 1, + "STRING": "★Immunity/Reflect when HP is low\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2011, + "ID": 2, + "STRING": "Once per fight when below 20%% HP" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2011, + "ID": 3, + "STRING": "★Reduced AT Delay after earth arts\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2011, + "ID": 4, + "STRING": "AT Delay reduced by %g%" + }, + { + "TYPE": "MasterQuartzBase", + "UNK": "DC070C000300" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "DC0701002C01320005000F0019000F000300000080BF000080BF000080BF000080BF000080BF000080BF2300FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "DC070200900146000A001400230014000400000080BF000080BF000080BF000080BF000080BF000080BF2400FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "DC070300F4015A000F0019002D001900050000002041000080BF000080BF000080BF000080BF000080BF2500FFFF00000100FFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "DC070400BC027800140023003C002300070000007041000080BF0000803F000080BF000080BF000080BF2600FFFF00000100FFFF02000300FFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "DC0705008403A00019002D0050002D0009000000A041000080BF00000040000080BF00004842000080BF2700FFFF00000100FFFF02000300FFFF04000500FFFF" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2012, + "ID": 0, + "STRING": "★Recover HP through offensive arts\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2012, + "ID": 1, + "STRING": "Recover %g% of damage as HP" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2012, + "ID": 2, + "STRING": "★Recover EP through offensive arts\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2012, + "ID": 3, + "STRING": "Recover %g% of damage as EP" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2012, + "ID": 4, + "STRING": "★Reduced AT Delay after water arts\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2012, + "ID": 5, + "STRING": "AT Delay reduced by %g%" + }, + { + "TYPE": "MasterQuartzBase", + "UNK": "DD070D000300" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "DD0701002C011E00140014000F000F000300000080BF000080BF000080BF000080BF000080BF000080BF5F00FFFFFFFF0100FFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "DD0702009001280019001900140014000400000080BF000080BF000080BF000080BF000080BF000080BF6000FFFFFFFF0100FFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "DD070300F4013200230023001900190005000000A03F000080BF000080BF000080BF000080BF000080BF4600FFFF00000100FFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "DD070400BC024600320032002300230007000000C03F000080BF00008040000080BF000080BF000080BF2C00FFFF00000100FFFF02000300FFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "DD07050084035A003C003C002D002D00090000000040000080BF00000041000080BF0000C040000080BF4700FFFF00000100FFFF02000300FFFF04000500FFFF" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2013, + "ID": 0, + "STRING": "★Increases potency of healing items\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2013, + "ID": 1, + "STRING": "Multiplied by %g (HP/EP/battle only)" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2013, + "ID": 2, + "STRING": "★Increases item range\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2013, + "ID": 3, + "STRING": "RNG+%g" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2013, + "ID": 4, + "STRING": "★Healing items affect a wider area\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2013, + "ID": 5, + "STRING": "Area: M" + }, + { + "TYPE": "MasterQuartzBase", + "UNK": "DE070E000300" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "DE07010090010A0019000F000F000F000100000080BF000080BF000080BF000080BF000080BF000080BF1B00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "DE070200F401140023001400140014000200000080BF000080BF000080BF000080BF000080BF000080BF3A00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "DE070300BC021E002D0019001900190003000000C03F00000040000080BF000080BF000080BF000080BF1500FFFF000001000200FFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "DE070400E80328003C002300230023000400000000400000004000009642000080BF000080BF000080BF1600FFFF00000100020003000400FFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "DE070500B004320050002D002D002D00050000002040000000400000C842000080BF0000A040000080BF1700FFFF00000100020003000400FFFF05000600FFFF" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2014, + "ID": 0, + "STRING": "★Damage of regular attacks raised\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2014, + "ID": 1, + "STRING": "Damage multiplied by %g\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2014, + "ID": 2, + "STRING": "Delay after attack multiplied by %g" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2014, + "ID": 3, + "STRING": "★Accuracy up\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2014, + "ID": 4, + "STRING": "Accuracy+%g%" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2014, + "ID": 5, + "STRING": "★Attacks/crafts deal critical damage\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2014, + "ID": 6, + "STRING": "%g% chance" + }, + { + "TYPE": "MasterQuartzBase", + "UNK": "DF070F000300" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "DF070100C8001E000A000A0019000F000200000080BF000080BF000080BF000080BF000080BF000080BF3200FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "DF0702002C0128000F000F00230014000300000080BF000080BF000080BF000080BF000080BF000080BF3300FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "DF07030090013200140014002D00190004000000F041000080BF000080BF000080BF000080BF000080BF3400350000000100FFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "DF070400F4014600190019003C002300050000007042000080BF00002041000080BF000080BF000080BF3600FFFF00000100FFFF020003000400FFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "DF070500BC025A002300230050002D0007000000B442000080BF0000A041000080BF00004842000080BF3700FFFF00000100FFFF02000300040005000600FFFF" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2015, + "ID": 0, + "STRING": "★Offensive arts deal critical damage\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2015, + "ID": 1, + "STRING": "%g% chance" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2015, + "ID": 2, + "STRING": "★Restores EP when HP is low\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2015, + "ID": 3, + "STRING": "EP+%g%%\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2015, + "ID": 4, + "STRING": "Once per fight when below 20%% HP" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2015, + "ID": 5, + "STRING": "★Reduced AT Delay after fire arts\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2015, + "ID": 6, + "STRING": "AT Delay reduced by %g%" + }, + { + "TYPE": "MasterQuartzBase", + "UNK": "E00710000400" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "E007010064000A0014000F0014000F000100000080BF000080BF000080BF000080BF000080BF000080BF7400FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "E0070200C800140019001400190014000200000080BF000080BF000080BF000080BF000080BF000080BF6E00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "E00703002C011E00230019002300190003000000F041000080BF000080BF000080BF000080BF000080BF6F00FFFF00000100FFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "E0070400900128003200230032002300040000007042000080BF00002041000080BF000080BF000080BF1C00FFFF00000100FFFF02000300FFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "E0070500F40132003C002D003C002D0005000000B442000080BF0000A041000080BF00004842000080BF7000FFFF00000100FFFF02000300FFFF04000500FFFF" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2016, + "ID": 0, + "STRING": "★Attacks/crafts inflict abnormalities\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2016, + "ID": 1, + "STRING": "%g% chance (random abnormality)" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2016, + "ID": 2, + "STRING": "★Offensive arts inflict abnormalities\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2016, + "ID": 3, + "STRING": "%g% chance (random abnormality)" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2016, + "ID": 4, + "STRING": "★Attacks/crafts inflict nightmare\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2016, + "ID": 5, + "STRING": "%g% chance" + }, + { + "TYPE": "MasterQuartzBase", + "UNK": "E10711000300" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "E1070100C8001E0019000A0014000A000500000080BF000080BF000080BF000080BF000080BF000080BFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "E10702002C01280023000F0019000F000700000080BF000080BF000080BF000080BF000080BF000080BFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "E1070300900132002D0014002300140009000000F041000080BF000080BF000080BF000080BF000080BF5000510000000100FFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "E1070400F40146003C001900320019000C0000007042000080BF00002041000080BF000080BF000080BF5500FFFF00000100FFFF02000300FFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "E1070500BC025A00500023003C00230010000000B442000080BF0000A041000080BF0000A041000080BF5200FFFF00000100FFFF02000300FFFF04000500FFFF" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2017, + "ID": 0, + "STRING": "★Attacks/crafts cause status down\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2017, + "ID": 1, + "STRING": "%g% chance (effect is random)" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2017, + "ID": 2, + "STRING": "★Offensive arts cause status down\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2017, + "ID": 3, + "STRING": "%g% chance (effect is random)" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2017, + "ID": 4, + "STRING": "★Attacks/crafts kill enemy\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2017, + "ID": 5, + "STRING": "%g% chance" + }, + { + "TYPE": "MasterQuartzBase", + "UNK": "E20712000300" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "E207010064001E000500050019000F000300000080BF000080BF000080BF000080BF000080BF000080BF6F00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "E2070200C80028000A000A00230014000400000080BF000080BF000080BF000080BF000080BF000080BF1600FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "E20703002C0132000F000F002D00190005009A99993F0000C03F000080BF000080BF000080BF000080BF2500FFFF000001000200FFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "E207040090014600140014003C00230007000000C03F0000C03F0000803F000080BF000080BF000080BF6400FFFF00000100020003000400FFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "E2070500F4015A001900190050002D000900000000400000C03F00000040000080BF00004842000080BF7100FFFF00000100020003000400FFFF05000600FFFF" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2018, + "ID": 0, + "STRING": "★Damage of offensive arts raised\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2018, + "ID": 1, + "STRING": "Multiplied by a maximum of %g\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2018, + "ID": 2, + "STRING": "Consumed EP multiplied by %g" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2018, + "ID": 3, + "STRING": "★Arts affect a wider area\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2018, + "ID": 4, + "STRING": "Area+%g" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2018, + "ID": 5, + "STRING": "★Reduced AT Delay after mirage arts\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2018, + "ID": 6, + "STRING": "AT Delay reduced by %g%" + }, + { + "TYPE": "MasterQuartzBase", + "UNK": "E30713000300" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "E30701009001280014001400190014000400000080BF000080BF000080BF000080BF000080BF000080BFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "E3070200F401320019001900230019000500000080BF000080BF000080BF000080BF000080BF000080BFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "E3070300BC024600230023002D002300070000004842000080BF000080BF000080BF000080BF000080BF5000510000000100FFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "E3070400E8036400320032003C0032000A0000009642000080BF00002041000080BF000080BF000080BF5200FFFF00000100FFFF02000300FFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "E3070500B00478003C003C0050003C000C000000C842000080BF0000A041000080BF00004842000080BF5300FFFF00000100FFFF02000300FFFF04000500FFFF" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2019, + "ID": 0, + "STRING": "★Absorb magic attacks\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2019, + "ID": 1, + "STRING": "%g% chance" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2019, + "ID": 2, + "STRING": "★Restores EP at start of battle\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2019, + "ID": 3, + "STRING": "%g% restored." + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2019, + "ID": 4, + "STRING": "★Reduced AT Delay after time arts\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2019, + "ID": 5, + "STRING": "AT Delay reduced by %g%" + }, + { + "TYPE": "MasterQuartzBase", + "UNK": "E40714000400" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "E40701005802280019001900140014000400000080BF000080BF000080BF000080BF000080BF000080BF1B00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "E40702008403320023002300190019000500000080BF000080BF000080BF000080BF000080BF000080BF3A00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "E4070300B00446002D002D00230023000700000080BF000080BF000080BF000080BF000080BF000080BF6400FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "E4070400400664003C003C00320032000A000000C03F000080BF0000F041000080BF000080BF000080BF3B00FFFF00000100FFFF02000300FFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "E4070500D0077800500050003C003C000C0000000040000080BF0000B442000080BF0000A0400000C8416500FFFF00000100FFFF02000300FFFF040005000600" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2020, + "ID": 0, + "STRING": "★Physical damage up as HP drops\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2020, + "ID": 1, + "STRING": "Multiplied by a maximum of %g" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2020, + "ID": 2, + "STRING": "★Attracts enemies' attention\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2020, + "ID": 3, + "STRING": "%g% chance of activating in battle" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2020, + "ID": 4, + "STRING": "★Raises STR/DEF when HP is low\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2020, + "ID": 5, + "STRING": "%g turns of STR/DEF+%g%\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2020, + "ID": 6, + "STRING": "Once per fight when below 20%% HP" + }, + { + "TYPE": "MasterQuartzBase", + "UNK": "E50715000400" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "E507010090013C0014001400190019000400000080BF000080BF000080BF000080BF000080BF000080BF6E00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "E5070200F4015A0019001900230023000500000080BF000080BF000080BF000080BF000080BF000080BF6F00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "E5070300BC027800230023002D002D000700000080BF000080BF000080BF000080BF000080BF000080BF7000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "E5070400E803A000320032003C003C000A000000C03F000080BF0000803F000080BF000080BF000080BF5200610000000100FFFF02000300FFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "E5070500B004C8003C003C00500050000C0000000040000080BF00000040000080BF0000A0400000C8417100FFFF00000100FFFF02000300FFFF040005000600" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2021, + "ID": 0, + "STRING": "★Arts damage up as HP drops\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2021, + "ID": 1, + "STRING": "Multiplied by a maximum of %g" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2021, + "ID": 2, + "STRING": "★Arts affect a wider area\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2021, + "ID": 3, + "STRING": "Area+%g" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2021, + "ID": 4, + "STRING": "★Raises ATS/ADF when HP is low\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2021, + "ID": 5, + "STRING": "%g turns of ATS/ADF+%g%\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2021, + "ID": 6, + "STRING": "Once per fight when under 20%% HP" + }, + { + "TYPE": "MasterQuartzBase", + "UNK": "E60716000400" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "E6070100F401320005001400050014000100000080BF000080BF000080BF000080BF000080BF000080BF1500FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "E6070200BC0246000A0019000A0019000200000080BF000080BF000080BF000080BF000080BF000080BF1600FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "E607030084035A000F0023000F0023000300000080BF000080BF000080BF000080BF000080BF000080BF1900FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "E6070400B0047800140032001400320004000000A03F000080BF000080BF000080BF000080BF000080BF1B00FFFF00000100FFFF02000300FFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "E60705004006A00019003C0019003C0005000000C03F000080BF000080BF000080BF000080BF000080BF1C00FFFF00000100FFFF02000400FFFF0500FFFFFFFF" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2022, + "ID": 0, + "STRING": "★Increases obtained EXP\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2022, + "ID": 1, + "STRING": "Obtained EXP multiplied by %g" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2022, + "ID": 2, + "STRING": "★HP/EP/CP regenerate on field\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2022, + "ID": 3, + "STRING": "Effect - Small" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2022, + "ID": 4, + "STRING": "Effect - Large" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2022, + "ID": 5, + "STRING": "★Enemies less likely to notice you" + }, + { + "TYPE": "MasterQuartzBase", + "UNK": "E70717000400" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "E70701009001280014001400140014000100000080BF000080BF000080BF000080BF000080BF000080BFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "E7070200F401320019001900190019000200000080BF000080BF000080BF000080BF000080BF000080BFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "E7070300BC02460023002300230023000300000080BF000080BF000080BF000080BF000080BF000080BFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "E7070400E8036400320032003200320004006666E63F000080BF0000C03F000080BF000080BF000080BFFFFFFFFF00000100FFFF02000300FFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "E7070500B00478003C003C003C003C00050000002040000080BF6666E63F000080BF00004842000080BFFFFFFFFF00000100FFFF02000300FFFF04000500FFFF" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2023, + "ID": 0, + "STRING": "★Randomly increases physical damage\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2023, + "ID": 1, + "STRING": "Multiplied by a maximum of %g" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2023, + "ID": 2, + "STRING": "★Randomly increases magic damage\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2023, + "ID": 3, + "STRING": "Multiplied by a maximum of %g" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2023, + "ID": 4, + "STRING": "★Attacks/crafts inflict poison\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2023, + "ID": 5, + "STRING": "%g% chance" + }, + { + "TYPE": "MasterQuartzBase", + "UNK": "E80718000400" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "E8070100F4011400190014000A0014000200000080BF000080BF000080BF000080BF000080BF000080BFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "E8070200BC021E00230019000F0019000300000080BF000080BF000080BF000080BF000080BF000080BFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "E8070300840328002D002300140023000400000080BF000080BF000080BF000080BF000080BF000080BFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "E8070400B00432003C0032001900320005000000C03F000080BF0000FA43000080BF000080BF000080BFFFFFFFFF00000100FFFF02000300FFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "E80705004006460050003C0023003C00070000000040000080BF00007A44000080BF00004842000080BFFFFFFFFF00000100FFFF02000300FFFF04000500FFFF" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2024, + "ID": 0, + "STRING": "★High HP increases physical damage\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2024, + "ID": 1, + "STRING": "Multiplied by a maximum of %g" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2024, + "ID": 2, + "STRING": "★Killing enemies recovers HP\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2024, + "ID": 3, + "STRING": "HP+%g per enemy killed" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2024, + "ID": 4, + "STRING": "★Attacks/crafts inflict burn\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2024, + "ID": 5, + "STRING": "%g% chance" + }, + { + "TYPE": "MasterQuartzBase", + "UNK": "E90719000400" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "E90701002C011E0019000F000F000F000500000080BF000080BF000080BF000080BF000080BF000080BFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "E90702009001280023001400140014000700000080BF000080BF000080BF000080BF000080BF000080BFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "E9070300F40132002D001900190019000900000080BF000080BF000080BF000080BF000080BF000080BFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "E9070400BC0246003C002300230023000C0000002041000080BF00009642000080BF000080BF000080BFFFFFFFFF00000100FFFF02000300FFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "E907050084035A0050002D002D002D0010000000A041000080BF0000C842000080BF00000040000080BFFFFFFFFF00000100FFFF02000300FFFF04000500FFFF" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2025, + "ID": 0, + "STRING": "★Attacks/crafts deal critical damage\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2025, + "ID": 1, + "STRING": "%g% chance" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2025, + "ID": 2, + "STRING": "★Accuracy up\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2025, + "ID": 3, + "STRING": "Accuracy+%g%" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2025, + "ID": 4, + "STRING": "★Increases damage dealt by criticals\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2025, + "ID": 5, + "STRING": "Multiplied by %g (usually 1.5)" + }, + { + "TYPE": "MasterQuartzBase", + "UNK": "EA071A000400" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "EA070100F401320014001900140019000500000080BF000080BF000080BF000080BF000080BF000080BF5F00FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "EA070200BC02460019002300190023000700000080BF000080BF000080BF000080BF000080BF000080BF6000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "EA07030084035A0023002D0023002D000900000080BF000080BF000080BF000080BF000080BF000080BF6300FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "EA070400B004780032003C0032003C000C000000F041000080BF0000F041000080BF000080BF000080BF6400FFFF00000100FFFF02000300FFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "EA0705004006A0003C0050003C005000100000007042000080BF0000C842000080BF00000040000080BF6200FFFF00000100FFFF02000300FFFF04000500FFFF" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2026, + "ID": 0, + "STRING": "★Low HP decreases received damage\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2026, + "ID": 1, + "STRING": "Reduced by a maximum of %g%" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2026, + "ID": 2, + "STRING": "★Increases item drop rate\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2026, + "ID": 3, + "STRING": "Drop rate+%g%" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2026, + "ID": 4, + "STRING": "★Increases number of dropped items\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2026, + "ID": 5, + "STRING": "Number multiplied by %g" + }, + { + "TYPE": "MasterQuartzBase", + "UNK": "EB071B000400" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "EB070100F401320019000500190005000500000080BF000080BF000080BF000080BF000080BF000080BFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "EB070200BC02460023000A0023000A000700000080BF000080BF000080BF000080BF000080BF000080BFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "EB07030084035A002D000F002D000F000900000080BF000080BF000080BF000080BF000080BF000080BFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "EB070400B00478003C0014003C0014000C000000A041000080BF0000803F000080BF000080BF000080BF4200440000000100FFFF02000300FFFFFFFFFFFFFFFF" + }, + { + "TYPE": "MasterQuartzData", + "UNK": "EB0705004006A000500019005000190010000000F041000080BF00000040000080BF00002041000080BF4500FFFF00000100FFFF02000300FFFF04000500FFFF" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2027, + "ID": 0, + "STRING": "★Recover HP through attacks/crafts\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2027, + "ID": 1, + "STRING": "Recover %g% of damage as HP" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2027, + "ID": 2, + "STRING": "★Recover EP through attacks/crafts\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2027, + "ID": 3, + "STRING": "Recover %g% of damage as EP" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2027, + "ID": 4, + "STRING": "★Evasion up\n" + }, + { + "TYPE": "MasterQuartzMemo", + "UNK0": 2027, + "ID": 5, + "STRING": "Evasion+%g%" + } +] \ No newline at end of file diff --git a/text/jsons/t_name.json b/text/jsons/t_name.json new file mode 100644 index 0000000..eb1777c --- /dev/null +++ b/text/jsons/t_name.json @@ -0,0 +1,4070 @@ +[ + { + "TYPE": "NameTableData", + "ID": 0, + "STRING1": "Rean", + "STRING2": [ + "C_PLY000", + "C_PLY000_DF1", + "ply000", + "FC_PLY000", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 1, + "STRING1": "Alisa", + "STRING2": [ + "C_PLY001", + "C_PLY001_DF1", + "ply001", + "FC_PLY001", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 2, + "STRING1": "Elliot", + "STRING2": [ + "C_PLY002", + "C_PLY002_DF1", + "ply002", + "FC_PLY002", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 3, + "STRING1": "Laura", + "STRING2": [ + "C_PLY003", + "C_PLY003_DF1", + "ply003", + "FC_PLY003", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 4, + "STRING1": "Machias", + "STRING2": [ + "C_PLY004", + "C_PLY004_DF1", + "ply004", + "FC_PLY004", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 5, + "STRING1": "Emma", + "STRING2": [ + "C_PLY005", + "C_PLY005_DF1", + "ply005", + "FC_PLY005", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 6, + "STRING1": "Jusis", + "STRING2": [ + "C_PLY006", + "C_PLY006_DF1", + "ply006", + "FC_PLY006", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 7, + "STRING1": "Fie", + "STRING2": [ + "C_PLY007", + "C_PLY007_DF1", + "ply007", + "FC_PLY007", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 8, + "STRING1": "Gaius", + "STRING2": [ + "C_PLY008", + "C_PLY008_DF1", + "ply008", + "FC_PLY008", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 9, + "STRING1": "Millium", + "STRING2": [ + "C_PLY009", + "C_PLY009_DF1", + "ply009", + "FC_PLY009", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 10, + "STRING1": "Crow", + "STRING2": [ + "C_PLY010", + "C_PLY010_DF1", + "ply010", + "FC_PLY010", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 11, + "STRING1": "Instructor Sara", + "STRING2": [ + "C_NPC000", + "C_NPC000_DF1", + "npc000", + "FC_NPC000", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 12, + "STRING1": "Angelica", + "STRING2": [ + "C_NPC002", + "C_NPC002_DF1", + "npc002", + "FC_NPC002", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 14, + "STRING1": "Rean 2 (Silver hair test)", + "STRING2": [ + "C_PLY000_C05", + "C_PLY000_DF1", + "ply000", + "FC_PLY000_C05", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 15, + "STRING1": "Angelica Dress", + "STRING2": [ + "C_NPC002_C00", + "C_NPC002_DF1", + "npc002", + "FC_NPC002", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 16, + "STRING1": "Claire Casual Clothes Test", + "STRING2": [ + "C_NPC009_C00", + "C_NPC009_DF1", + "npc009", + "FC_NPC009", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 999, + "STRING1": "Rean", + "STRING2": [ + "C_PLY000", + "C_PLY000_DF1", + "ply000", + "FC_PLY000", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 53, + "STRING1": "Sharon", + "STRING2": [ + "C_NPC001", + "C_NPC001_DF1", + "npc001", + "FC_NPC001", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 52, + "STRING1": "Towa", + "STRING2": [ + "C_NPC003", + "C_NPC003_DF1", + "npc003", + "FC_NPC003", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 56, + "STRING1": "George", + "STRING2": [ + "C_NPC004", + "C_NPC004_DF1", + "npc004", + "FC_NPC004", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 57, + "STRING1": "Patrick", + "STRING2": [ + "C_NPC005", + "C_NPC005_DF1", + "npc005", + "FC_NPC005", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 57, + "STRING1": "Patrick - Stage Outfit", + "STRING2": [ + "C_NPC005_C00", + "C_NPC005_DF1", + "npc005", + "FC_NPC005", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 58, + "STRING1": "Principal Vandyck", + "STRING2": [ + "C_NPC006", + "C_NPC006_DF1", + "npc006", + "FC_NPC006", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 59, + "STRING1": "Instructor Neithardt", + "STRING2": [ + "C_NPC007", + "C_NPC007_DF1", + "npc007", + "FC_NPC007", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 60, + "STRING1": "Instructor Thomas", + "STRING2": [ + "C_NPC008", + "C_NPC008_DF1", + "npc008", + "FC_NPC008", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Claire", + "STRING2": [ + "C_NPC009", + "C_NPC009_DF1", + "npc009", + "FC_NPC009", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Rufus", + "STRING2": [ + "C_NPC010", + "C_NPC010_DF1", + "npc010", + "FC_NPC010", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Elise (Casual Clothes)", + "STRING2": [ + "C_NPC011", + "C_NPC011_DF1", + "npc011", + "FC_NPC011", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Elise (School Uniform)", + "STRING2": [ + "C_NPC011_C00", + "C_NPC011_DF1", + "npc011", + "FC_NPC011", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Alfin (Casual Clothes)", + "STRING2": [ + "C_NPC012", + "C_NPC012_DF1", + "npc012", + "FC_NPC012", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Alfin (School Uniform)", + "STRING2": [ + "C_NPC012_C00", + "C_NPC012_DF1", + "npc012", + "FC_NPC012", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Cedric", + "STRING2": [ + "C_NPC013", + "C_NPC013_DF1", + "npc013", + "FC_NPC013", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Eugent III", + "STRING2": [ + "C_NPC014", + "C_NPC014_DF1", + "npc014", + "FC_NPC014", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Empress Priscilla", + "STRING2": [ + "C_NPC015", + "C_NPC015_DF1", + "npc015", + "FC_NPC015", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Clotilde (Dress)", + "STRING2": [ + "C_NPC016", + "C_NPC016_DF1", + "npc016", + "FC_NPC016", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Clotilde (Radio)", + "STRING2": [ + "C_NPC017", + "C_NPC017_DF1", + "npc017", + "FC_NPC016", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "C (Masked)", + "STRING2": [ + "C_NPC018", + "C_NPC018_DF1", + "npc018", + "FC_PLY010", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Gideon", + "STRING2": [ + "C_NPC019", + "C_NPC019_DF1", + "npc019", + "FC_NPC019", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Scarlet", + "STRING2": [ + "C_NPC020", + "C_NPC020_DF1", + "npc020", + "FC_NPC020", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Vulcan", + "STRING2": [ + "C_NPC021", + "C_NPC021_DF1", + "npc021", + "FC_NPC021", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Duke Cayenne", + "STRING2": [ + "C_NPC022", + "C_NPC022_DF1", + "npc022", + "FC_NPC022", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Hazel Hair (Zephyr)", + "STRING2": [ + "C_NPC023", + "C_NPC023_DF1", + "npc023", + "FC_NPC023", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Dreadlocks (Zephyr)", + "STRING2": [ + "C_NPC024", + "C_NPC024_DF1", + "npc024", + "FC_NPC024", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Teo", + "STRING2": [ + "C_NPC025", + "null", + "npc025", + "null", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Lucia", + "STRING2": [ + "C_NPC026", + "null", + "npccom", + "null", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Irina", + "STRING2": [ + "C_NPC027", + "C_NPC027_DF1", + "npc027", + "FC_NPC027", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Gwyn", + "STRING2": [ + "C_NPC028", + "C_NPC028_DF1", + "npc028", + "FC_NPC028", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Arseid", + "STRING2": [ + "C_NPC029", + "C_NPC029_DF1", + "npc029", + "FC_NPC029", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Captain Arseid", + "STRING2": [ + "C_NPC029_C00", + "C_NPC029_DF1", + "npc029", + "FC_NPC029", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Butler Helmer", + "STRING2": [ + "C_NPC030", + "C_NPC030_DF1", + "npc030", + "FC_NPC030", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Regnitz", + "STRING2": [ + "C_NPC031", + "C_NPC031_DF1", + "npc031", + "FC_NPC031", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Lieutenant General Craig", + "STRING2": [ + "C_NPC032", + "C_NPC032_DF1", + "npc032", + "FC_NPC032", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Fiona", + "STRING2": [ + "C_NPC033", + "C_NPC033_DF1", + "npc033", + "FC_NPC033", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Duke Albarea", + "STRING2": [ + "C_NPC034", + "C_NPC034_DF1", + "npc034", + "FC_NPC034", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Marquis Rogner", + "STRING2": [ + "C_NPC035", + "null", + "npccom", + "null", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Marquis Hyarms", + "STRING2": [ + "C_NPC036", + "null", + "npccom", + "FC_NPC036", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Gaius' Dad", + "STRING2": [ + "C_NPC037", + "C_NPC037_DF1", + "npc037", + "FC_NPC037", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Gaius' Mom", + "STRING2": [ + "C_NPC038", + "C_NPC038_DF1", + "npc038", + "FC_NPC038", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Thoma", + "STRING2": [ + "C_NPC039", + "C_NPC039_DF1", + "npc039", + "FC_NPC039", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Gaius' Sister 1 - Sheeda", + "STRING2": [ + "C_NPC040", + "C_NPC040_DF1", + "npc040", + "FC_NPC040", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Gaius' Sister 2 - Lily", + "STRING2": [ + "C_NPC041", + "C_NPC041_DF1", + "npc041", + "FC_NPC040", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Osborne", + "STRING2": [ + "C_NPC042", + "C_NPC042_DF1", + "npc042", + "FC_NPC042", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Olivier (Red)", + "STRING2": [ + "C_NPC043", + "C_NPC043_DF1", + "npc043", + "FC_NPC043", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Mueller", + "STRING2": [ + "C_NPC044", + "C_NPC044_DF1", + "npc044", + "FC_NPC044", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Zechs", + "STRING2": [ + "C_NPC045", + "C_NPC045_DF1", + "npc045", + "FC_NPC045", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Lechter", + "STRING2": [ + "C_NPC046", + "C_NPC046_DF1", + "npc046", + "FC_NPC046", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Bleublanc Noble", + "STRING2": [ + "C_NPC047", + "C_NPC047_DF1", + "npc047", + "FC_NPC047", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Bleublanc Masked", + "STRING2": [ + "C_NPC048", + "C_NPC047_DF1", + "npc048", + "FC_NPC047", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Arianrhod", + "STRING2": [ + "C_NPC049", + "C_NPC049_DF1", + "npc049", + "null", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Toval", + "STRING2": [ + "C_NPC050", + "C_NPC050_DF1", + "npc050", + "FC_NPC050", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Airgetlam", + "STRING2": [ + "C_NPC051", + "C_NPC051", + "npc051", + "null", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Celine", + "STRING2": [ + "C_NPC052", + "C_NPC052_DF1", + "npc052", + "FC_NPC052", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Grianos", + "STRING2": [ + "C_NPC053", + "C_NPC053_DF1", + "npc053", + "null", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Burglar NPC", + "STRING2": [ + "C_NPC054", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX34E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC055", + "null", + "npccom", + "null", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC056", + "C_NPC005_DF1", + "npc056", + "FC_NPCX30E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC057", + "C_NPC005_DF1", + "npc056", + "FC_NPCX32E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC058", + "C_NPC005_DF1", + "npc056", + "FC_NPCX32E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC059", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX30E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC060", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX31E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC061", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX00E", + "FC_NPCX40M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC062", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX32E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC062_C00", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX30E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC062_C01", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX53E", + "FC_NPCX50M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC062_C02", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX32E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 67, + "STRING1": "Alan", + "STRING2": [ + "C_NPC170", + "C_NPCX00_DF1", + "npcx00", + "FC_NPC170", + "FC_NPC170M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 68, + "STRING1": "Hugo", + "STRING2": [ + "C_NPC171", + "C_NPCX00_DF1", + "npcx00", + "FC_NPC171", + "FC_NPC180M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 69, + "STRING1": "Hibelle", + "STRING2": [ + "C_NPC172", + "C_NPCX00_DF1", + "npcx00", + "FC_NPC172", + "FC_NPC180M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 69, + "STRING1": "Hibelle (arm in cast)", + "STRING2": [ + "C_NPC172_C05", + "C_NPCX00_DF1", + "npcx00", + "FC_NPC172", + "FC_NPC180M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 70, + "STRING1": "Casper", + "STRING2": [ + "C_NPC173", + "C_NPCX00_DF1", + "npcx00", + "FC_NPC173", + "FC_NPC180M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 71, + "STRING1": "Klein", + "STRING2": [ + "C_NPC174", + "C_NPCX00_DF1", + "npcx00", + "FC_NPC174", + "FC_NPC180M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 72, + "STRING1": "Loggins", + "STRING2": [ + "C_NPC175", + "C_NPCX00_DF1", + "npcx00", + "FC_NPC175", + "FC_NPC180M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 73, + "STRING1": "Rex", + "STRING2": [ + "C_NPC176", + "C_NPCX00_DF1", + "npcx00", + "FC_NPC176", + "FC_NPC180M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 74, + "STRING1": "Munk", + "STRING2": [ + "C_NPC177", + "C_NPCX00_DF1", + "npcx00", + "FC_NPC177", + "FC_NPC180M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 75, + "STRING1": "Nicholas", + "STRING2": [ + "C_NPC178", + "C_NPCX00_DF1", + "npcx00", + "FC_NPC178", + "FC_NPC180M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 76, + "STRING1": "Stefan", + "STRING2": [ + "C_NPC179", + "C_NPCX00_DF1", + "npcx00", + "FC_NPC179", + "FC_NPC180M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 77, + "STRING1": "Vincent", + "STRING2": [ + "C_NPC180", + "C_NPCX00_DF1", + "npcx00", + "FC_NPC180", + "FC_NPC180M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 78, + "STRING1": "Lambert", + "STRING2": [ + "C_NPC181", + "C_NPCX00_DF1", + "npcx00", + "FC_NPC181", + "FC_NPC180M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 79, + "STRING1": "Fidelio", + "STRING2": [ + "C_NPC182", + "C_NPCX00_DF1", + "npcx00", + "FC_NPC182", + "FC_NPC180M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 80, + "STRING1": "Kenneth", + "STRING2": [ + "C_NPC183", + "C_NPCX00_DF1", + "npcx00", + "FC_NPC183", + "FC_NPC180M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 81, + "STRING1": "Colette", + "STRING2": [ + "C_NPC184", + "C_NPCX02_DF1", + "npcx02", + "FC_NPC184", + "FC_NPC192M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 82, + "STRING1": "Monica", + "STRING2": [ + "C_NPC185", + "C_NPCX02_DF1", + "npcx02", + "FC_NPC185", + "FC_NPC192M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 83, + "STRING1": "Mint", + "STRING2": [ + "C_NPC186", + "C_NPCX02_DF1", + "npcx02", + "FC_NPC186", + "FC_NPC186M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 84, + "STRING1": "Linde", + "STRING2": [ + "C_NPC187", + "C_NPCX02_DF1", + "npcx02", + "FC_NPC187", + "FC_NPC192M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Linde (Apron)", + "STRING2": [ + "C_NPC187_C05", + "C_NPCX02_DF1", + "npcx02", + "FC_NPC187", + "FC_NPC192M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 85, + "STRING1": "Vivi", + "STRING2": [ + "C_NPC188", + "C_NPCX02_DF1", + "npcx02", + "FC_NPC188", + "FC_NPC192M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Vivi (Apron)", + "STRING2": [ + "C_NPC188_C05", + "C_NPCX02_DF1", + "npcx02", + "FC_NPC188", + "FC_NPC192M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 86, + "STRING1": "Becky", + "STRING2": [ + "C_NPC189", + "C_NPCX02_DF1", + "npcx02", + "FC_NPC189", + "FC_NPC186M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 87, + "STRING1": "Emily", + "STRING2": [ + "C_NPC190", + "C_NPCX02_DF1", + "npcx02", + "FC_NPC190", + "FC_NPC192M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 88, + "STRING1": "Paula", + "STRING2": [ + "C_NPC191", + "C_NPCX02_DF1", + "npcx02", + "FC_NPC191", + "FC_NPC192M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 89, + "STRING1": "Rosine", + "STRING2": [ + "C_NPC192", + "C_NPCX02_DF1", + "npcx02", + "FC_NPC192", + "FC_NPC192M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Rosine (Sister)", + "STRING2": [ + "C_NPC192_C04", + "C_NPCX02_DF1", + "npcx02", + "FC_NPC192", + "FC_NPC192M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 90, + "STRING1": "Dorothee", + "STRING2": [ + "C_NPC193", + "C_NPCX02_DF1", + "npcx02", + "FC_NPC193", + "FC_NPC192M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 91, + "STRING1": "Beryl", + "STRING2": [ + "C_NPC194", + "C_NPCX02_DF1", + "npcx02", + "FC_NPC194", + "FC_NPC192M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 92, + "STRING1": "Clara", + "STRING2": [ + "C_NPC195", + "C_NPCX02_DF1", + "npcx02", + "FC_NPC195", + "FC_NPC196M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 93, + "STRING1": "Ferris", + "STRING2": [ + "C_NPC196", + "C_NPCX02_DF1", + "npcx02", + "FC_NPC196", + "FC_NPC196M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 93, + "STRING1": "Ferris (Noble)", + "STRING2": [ + "C_NPC196_C05", + "C_NPCX02_DF1", + "npcx02", + "FC_NPC196", + "FC_NPC196M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 94, + "STRING1": "Bridget", + "STRING2": [ + "C_NPC197", + "C_NPCX02_DF1", + "npcx02", + "FC_NPC197", + "FC_NPC192M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 95, + "STRING1": "Friedel", + "STRING2": [ + "C_NPC198", + "C_NPCX02_DF1", + "npcx02", + "FC_NPC198", + "FC_NPC192M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 96, + "STRING1": "Theresia", + "STRING2": [ + "C_NPC199", + "C_NPCX02_DF1", + "npcx02", + "FC_NPC199", + "FC_NPC192M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 97, + "STRING1": "Edel", + "STRING2": [ + "C_NPC200", + "C_NPCX02_DF1", + "npcx02", + "FC_NPC200", + "FC_NPC192M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 98, + "STRING1": "Margarita", + "STRING2": [ + "C_NPC201", + "C_NPCX02_DF1", + "npcx02", + "FC_NPC201", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC206", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX00E", + "FC_NPCX10M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC206_C00", + "C_NPCX00_DF1", + "npcx00", + "null", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC207", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX00E", + "FC_NPCX10M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC207_C00", + "C_NPCX02_DF1", + "npcx02", + "null", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC208", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX40E", + "FC_NPCX10M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC208_C00", + "C_NPCX00_DF1", + "npcx00", + "null", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC209", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX40E", + "FC_NPCX10M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC209_C00", + "C_NPCX02_DF1", + "npcx02", + "null", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 61, + "STRING1": "Instructor Beatrix", + "STRING2": [ + "C_NPC220", + "C_NPCX02_DF1", + "npcx02", + "FC_NPC220", + "FC_NPC220" + ] + }, + { + "TYPE": "NameTableData", + "ID": 62, + "STRING1": "Instructor Mary", + "STRING2": [ + "C_NPC221", + "C_NPCX02_DF1", + "npcx02", + "FC_NPC221", + "FC_NPC221" + ] + }, + { + "TYPE": "NameTableData", + "ID": 63, + "STRING1": "Instructor Makarov", + "STRING2": [ + "C_NPC222", + "C_NPCX00_DF1", + "npcx00", + "FC_NPC222", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 64, + "STRING1": "Vice Principal Heinrich", + "STRING2": [ + "C_NPC223", + "C_NPCX00_DF1", + "npcx00", + "FC_NPC223", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Radio Station Producer", + "STRING2": [ + "C_NPC224", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX51E", + "FC_NPCX50M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Cameraman", + "STRING2": [ + "C_NPC225", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX53E", + "FC_NPCX50M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Ricky", + "STRING2": [ + "C_NPC226", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX31E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Anton", + "STRING2": [ + "C_NPC227", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX30E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC230", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX30E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC230_C00", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX30E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC231", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX32E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC232", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX50E", + "FC_NPCX50M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC232_C00", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX51E", + "FC_NPCX50M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC233", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX51E", + "FC_NPCX50M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC234", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX71E", + "FC_NPCX50M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC234_C00", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX71E", + "FC_NPCX70M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC235", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX70E", + "FC_NPCX71M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC236", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX00E", + "FC_NPCX40M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC236_C00", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX40E", + "FC_NPCX40M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC237", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX40E", + "FC_NPCX40M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC238", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX60E", + "FC_NPCX60M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC238_C00", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX61E", + "FC_NPCX60M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC239", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX60E", + "FC_NPCX60M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC239_C00", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX60E", + "FC_NPCX60M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC240", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX80E", + "FC_NPCX80M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC240_C00", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX81E", + "FC_NPCX80M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC241", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX81E", + "FC_NPCX80M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC243", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX00E", + "FC_NPCX10M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC243_C00", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX22E", + "FC_NPCX10M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC245", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX22E", + "FC_NPCX10M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC245_C00", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX40E", + "FC_NPCX10M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC247", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX31E", + "FC_NPCX10M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC247_C00", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX22E", + "FC_NPCX10M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC249", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX22E", + "FC_NPCX10M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC249_C00", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX40E", + "FC_NPCX10M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC250", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX30E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC250_C00", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX30E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC251", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX30E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC252", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX53E", + "FC_NPCX50M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC252_C00", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX51E", + "FC_NPCX50M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC253", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX52E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC254", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX70E", + "FC_NPCX71M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC254_C00", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX71E", + "FC_NPCX71M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC255", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX72E", + "FC_NPCX71M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC256", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX46E", + "FC_NPCX40M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC256_C00", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX00E", + "FC_NPCX40M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC257", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX42E", + "FC_NPCX40M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC258", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX62E", + "FC_NPCX61M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC258_C00", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX60E", + "FC_NPCX61M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC259", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX60E", + "FC_NPCX60M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC260", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX80E", + "FC_NPCX80M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC260_C00", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX61E", + "FC_NPCX80M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC261", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX70E", + "FC_NPCX80M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC262", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX02E", + "FC_NPCX10M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC262_C00", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX00E", + "FC_NPCX10M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC264", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX02E", + "FC_NPCX10M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC264_C00", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX41E", + "FC_NPCX10M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC266", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX00E", + "FC_NPCX10M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC266_C00", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX02E", + "FC_NPCX10M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC268", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX00E", + "FC_NPCX10M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC268_C00", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX22E", + "FC_NPCX10M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC270", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX32E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC270_C00", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX32E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC271_C00", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX51E", + "FC_NPCX50M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC271_C01", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX51E", + "FC_NPCX50M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC273", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX70E", + "FC_NPCX71M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC274", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX40E", + "FC_NPCX40M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC274_C00", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX21E", + "FC_NPCX40M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC276", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX61E", + "FC_NPCX60M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC277", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX61E", + "FC_NPCX60M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC278", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX80E", + "FC_NPCX80M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC280", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX31E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC281", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX50E", + "FC_NPCX50M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC283", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX72E", + "FC_NPCX70M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC284", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX70E", + "FC_NPCX70M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC286", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX31E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC286_C00", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX51E", + "FC_NPCX50M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC290", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX53E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC290_C00", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX53E", + "FC_NPCX50M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC291", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX30E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC291_C00", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX51E", + "FC_NPCX50M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC292", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX46E", + "FC_NPCX40M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC292_C00", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX60E", + "FC_NPCX60M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC293", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX00E", + "FC_NPCX40M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC293_C00", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX60E", + "FC_NPCX60M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC294", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX30E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC294_C00", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX51E", + "FC_NPCX50M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC295", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX30E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC296", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX40E", + "FC_NPCX40M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC297", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX71E", + "FC_NPCX71M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC298", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX30E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC300", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX30E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC301", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX30E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC302", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX50E", + "FC_NPCX50M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC302_C00", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX53E", + "FC_NPCX50M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC310", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX30E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC310_C00", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX32E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC311", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX53E", + "FC_NPCX50M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC311_C00", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX52E", + "FC_NPCX50M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 102, + "STRING1": "Lotte", + "STRING2": [ + "C_NPC312", + "C_NPCX02_DF1", + "npcx02", + "FC_NPC312", + "FC_NPC312" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC312_C00", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX40E", + "FC_NPCX40M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65, + "STRING1": "Sariffa", + "STRING2": [ + "C_NPC312_C01", + "C_NPCX02_DF1", + "npcx02", + "FC_NPC312_C01", + "FC_NPC312_C01" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC312_C02", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX41E", + "FC_NPCX40M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 66, + "STRING1": "Butler Celestin", + "STRING2": [ + "C_NPC313", + "C_NPCX00_DF1", + "npcx00", + "FC_NPC313", + "FC_NPC313" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC313_C00", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX53E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC313_C01", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX70E", + "FC_NPCX71M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC313_C02", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX51E", + "FC_NPCX50M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC320", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX30E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC321", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX50E", + "FC_NPCX50M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC322", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX71E", + "FC_NPCX70M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC323", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX40E", + "FC_NPCX40M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC324", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX61E", + "FC_NPCX60M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC325", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX81E", + "FC_NPCX80M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC326", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX20E", + "FC_NPCX10M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC330", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX34E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC330_C00", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX35E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC330_C01", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX34E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC330_C02", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX35E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC330_C03", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX54E", + "FC_NPCX50M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC331", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX51E", + "FC_NPCX50M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC331_C00", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX52E", + "FC_NPCX50M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC331_C01", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX34E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC331_C02", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX30E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC332", + "C_NPCX00_DF1", + "npcx00", + "null", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC340", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX35E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC340_C00", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX34E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC340_C01", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX42E", + "FC_NPCX40M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC340_C02", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX32E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC350", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX34E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC351", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX51E", + "FC_NPCX50M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC351_C03", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX51E", + "FC_NPCX50M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC351_C05", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX51E", + "FC_NPCX50M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC350_C00", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX35E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC350_C03", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX34E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC350_C04", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX35E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC350_C05", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX34E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC350_C06", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX35E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC370", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX34E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC370_C00", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX34E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC375", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX70E", + "FC_NPCX70M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC376", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX32E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC376_C00", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX50E", + "FC_NPCX50M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC377", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX40E", + "FC_NPCX40M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC380", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX62E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC385", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX00E", + "FC_NPCX40M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC386", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX01E", + "FC_NPCX40M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC387", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX02E", + "FC_NPCX40M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC388", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX40E", + "FC_NPCX40M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC389", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX34E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Male Commoner NPC1", + "STRING2": [ + "C_NPC400", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX30E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Male Commoner NPC1 - Summer", + "STRING2": [ + "C_NPC400_C00", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX30E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Male Commoner NPC2", + "STRING2": [ + "C_NPC401", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX32E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Male Commoner NPC2 - Summer", + "STRING2": [ + "C_NPC401_C00", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX32E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Female Commoner NPC1", + "STRING2": [ + "C_NPC402", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX40E", + "FC_NPCX40M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Female Commoner NPC1 - Summer", + "STRING2": [ + "C_NPC402_C00", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX40E", + "FC_NPCX40M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Female Commoner NPC2", + "STRING2": [ + "C_NPC403", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX41E", + "FC_NPCX40M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Female Commoner NPC2 - Summer", + "STRING2": [ + "C_NPC403_C00", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX41E", + "FC_NPCX40M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Male Noble NPC1", + "STRING2": [ + "C_NPC404", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX30E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Male Noble NPC2", + "STRING2": [ + "C_NPC405", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX32E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Female Noble NPC1", + "STRING2": [ + "C_NPC406", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX20E", + "FC_NPCX40M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Female Noble NPC2", + "STRING2": [ + "C_NPC407", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX41E", + "FC_NPCX40M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Courageous Crew (Young Male Soldier 1)", + "STRING2": [ + "C_NPC410", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX30E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Courageous Crew (Young Male Soldier 2)", + "STRING2": [ + "C_NPC411", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX30E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Courageous Crew (Young Male Soldier 3)", + "STRING2": [ + "C_NPC412", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX53E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Courageous Crew (Female Soldier 1)", + "STRING2": [ + "C_NPC413", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX42E", + "FC_NPCX40M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC414", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX21E", + "FC_NPCX40M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Owner Howard", + "STRING2": [ + "C_NPC415", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX50E", + "FC_NPCX50M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Harison (Suit)", + "STRING2": [ + "C_NPC416", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX30E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Payton", + "STRING2": [ + "C_NPC417", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX30E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Micht (Middle Aged Commoner 1)", + "STRING2": [ + "C_NPC418", + "C_NPCX00_DF1", + "npcx00", + "FC_NPC418", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC419", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX71E", + "FC_NPCX70M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC420", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX53E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC421", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX31E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC422", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX42E", + "FC_NPCX40M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC423", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX34E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Male Noble NPC1 (Stage Outfit)", + "STRING2": [ + "C_NPC430", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX30E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Male Noble NPC2 (Stage Outfit)", + "STRING2": [ + "C_NPC431", + "C_NPCX00_DF1", + "npcx00", + "FC_NPCX32E", + "FC_NPCX30M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Female Noble NPC1 (Stage Outfit)", + "STRING2": [ + "C_NPC432", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX40E", + "FC_NPCX40M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Female Noble NPC2 (Stage Outfit)", + "STRING2": [ + "C_NPC433", + "C_NPCX02_DF1", + "npcx02", + "FC_NPCX41E", + "FC_NPCX40M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Live Audience", + "STRING2": [ + "C_NPC498", + "null", + "null", + "null", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Students at Welcoming Ceremony", + "STRING2": [ + "C_NPC499", + "null", + "null", + "null", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Horse", + "STRING2": [ + "C_NPC500", + "C_NPC500_DF1", + "npc500", + "null", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "White Horse", + "STRING2": [ + "C_NPC500_C00", + "C_NPC500_DF1", + "npc500", + "null", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Black Horse", + "STRING2": [ + "C_NPC500_C01", + "C_NPC500_DF1", + "npc500", + "null", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Chestnut Horse", + "STRING2": [ + "C_NPC500_C02", + "C_NPC500_DF1", + "npc500", + "null", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Sheep", + "STRING2": [ + "C_NPC501", + "C_NPC501_DF1", + "npc501", + "null", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Dog 1", + "STRING2": [ + "C_NPC503", + "C_NPC503_DF1", + "npc503", + "null", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Dog 2", + "STRING2": [ + "C_NPC503_C00", + "C_NPC503_DF1", + "npc503", + "null", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Dog 3", + "STRING2": [ + "C_NPC503_C01", + "C_NPC503_DF1", + "npc503", + "null", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "White Cat", + "STRING2": [ + "C_NPC504", + "C_NPC052_DF1", + "npc052", + "FC_NPCX90E", + "FC_NPCX90M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Gray Cat", + "STRING2": [ + "C_NPC504_C00", + "C_NPC052_DF1", + "npc052", + "FC_NPCX90E", + "FC_NPCX90M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Brown Cat", + "STRING2": [ + "C_NPC504_C01", + "C_NPC052_DF1", + "npc052", + "FC_NPCX90E", + "FC_NPCX90M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Black and White Cat", + "STRING2": [ + "C_NPC504_C02", + "C_NPC052_DF1", + "npc052", + "FC_NPCX90E", + "FC_NPCX90M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Light Brown Cat with Yellow Collar", + "STRING2": [ + "C_NPC504_C03", + "C_NPC052_DF1", + "npc052", + "FC_NPCX90E", + "FC_NPCX90M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Striped Boss Cat", + "STRING2": [ + "C_NPC504_C04", + "C_NPC052_DF1", + "npc052", + "FC_NPCX90E", + "FC_NPCX90M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "White Kitten", + "STRING2": [ + "C_NPC504_C05", + "C_NPC052_DF1", + "npc052", + "FC_NPCX90E", + "FC_NPCX90M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Brown Kitten", + "STRING2": [ + "C_NPC504_C06", + "C_NPC052_DF1", + "npc052", + "FC_NPCX90E", + "FC_NPCX90M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "White Kitten with Red Collar", + "STRING2": [ + "C_NPC504_C07", + "C_NPC052_DF1", + "npc052", + "FC_NPCX90E", + "FC_NPCX90M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Chicken", + "STRING2": [ + "C_NPC505", + "C_NPC505", + "npc505", + "FC_NPCX90E", + "FC_NPCX90M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Pigeon", + "STRING2": [ + "C_NPC506", + "C_NPC506", + "npc505", + "FC_NPCX90E", + "FC_NPCX90M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Black Kite", + "STRING2": [ + "C_NPC507", + "C_NPC507_DF1", + "npc507", + "FC_NPCX90E", + "FC_NPCX90M" + ] + }, + { + "TYPE": "NameTableData", + "ID": 1500, + "STRING1": "Ashen Knight", + "STRING2": [ + "C_NPC600", + "C_NPC600_DF1", + "npc600", + "null", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "Azure Knight", + "STRING2": [ + "C_NPC601", + "C_NPC601_DF1", + "npc601", + "null", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC990", + "null", + "npccom", + "null", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC996", + "null", + "npccom", + "null", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC997", + "null", + "npccom", + "null", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPC999", + "null", + "npccom", + "null", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPCX00", + "C_NPCX00_DF1", + "npcx00", + "null", + "null" + ] + }, + { + "TYPE": "NameTableData", + "ID": 65535, + "STRING1": "null", + "STRING2": [ + "C_NPCX02", + "C_NPCX02_DF1", + "npcx02", + "null", + "null" + ] + } +] \ No newline at end of file diff --git a/text/jsons/t_navi.json b/text/jsons/t_navi.json new file mode 100644 index 0000000..df8308a --- /dev/null +++ b/text/jsons/t_navi.json @@ -0,0 +1,836 @@ +[ + { + "TYPE": "NaviTextData", + "ID": 1, + "STRING": "Hurry to the railway gun.", + "UNK0": "00020202" + }, + { + "TYPE": "NaviTextData", + "ID": 2, + "STRING": "Head to Thors Military Academy.", + "UNK0": "02020702" + }, + { + "TYPE": "NaviTextData", + "ID": 3, + "STRING": "Inspect the pedestal.", + "UNK0": "07020802" + }, + { + "TYPE": "NaviTextData", + "ID": 4, + "STRING": "Set the master quartz into your ARCUS.", + "UNK0": "08020902" + }, + { + "TYPE": "NaviTextData", + "ID": 5, + "STRING": "Return to the building's first floor.", + "UNK0": "09020004" + }, + { + "TYPE": "NaviTextData", + "ID": 6, + "STRING": "Go to the Student Council room.", + "UNK0": "00042404" + }, + { + "TYPE": "NaviTextData", + "ID": 7, + "STRING": "Give everyone their student notebooks.", + "UNK0": "24042604" + }, + { + "TYPE": "NaviTextData", + "ID": 8, + "STRING": "Return to your room and go to sleep.", + "UNK0": "26040304" + }, + { + "TYPE": "NaviTextData", + "ID": 9, + "STRING": "Complete your Student Council tasks.", + "UNK0": "03040a04" + }, + { + "TYPE": "NaviTextData", + "ID": 10, + "STRING": "Return to the dormitory.", + "UNK0": "0a040b04" + }, + { + "TYPE": "NaviTextData", + "ID": 11, + "STRING": "Head to the station.", + "UNK0": "0b040c04" + }, + { + "TYPE": "NaviTextData", + "ID": 12, + "STRING": "Purchase your train tickets.", + "UNK0": "0c040e04" + }, + { + "TYPE": "NaviTextData", + "ID": 13, + "STRING": "Go and speak with Instructor Sara.", + "UNK0": "0e040f04" + }, + { + "TYPE": "NaviTextData", + "ID": 14, + "STRING": "Work through the field study tasks.", + "UNK0": "0f041204" + }, + { + "TYPE": "NaviTextData", + "ID": 15, + "STRING": "Return to the inn.", + "UNK0": "12041304" + }, + { + "TYPE": "NaviTextData", + "ID": 16, + "STRING": "See what's happening at the market.", + "UNK0": "13041404" + }, + { + "TYPE": "NaviTextData", + "ID": 17, + "STRING": "Return to the inn.", + "UNK0": "14041a04" + }, + { + "TYPE": "NaviTextData", + "ID": 18, + "STRING": "See what's happening at the market.", + "UNK0": "1a041b04" + }, + { + "TYPE": "NaviTextData", + "ID": 19, + "STRING": "Ask around at the market.", + "UNK0": "1b041e04" + }, + { + "TYPE": "NaviTextData", + "ID": 20, + "STRING": "Go to the Provincial Army Guardhouse.", + "UNK0": "1e041f04" + }, + { + "TYPE": "NaviTextData", + "ID": 21, + "STRING": "Ask around on the main street.", + "UNK0": "1f042104" + }, + { + "TYPE": "NaviTextData", + "ID": 22, + "STRING": "Head to Lunaria Nature Park.", + "UNK0": "21042204" + }, + { + "TYPE": "NaviTextData", + "ID": 23, + "STRING": "Pursue the culprits.", + "UNK0": "22040006" + }, + { + "TYPE": "NaviTextData", + "ID": 24, + "STRING": "Return to the dormitory.", + "UNK0": "00062806" + }, + { + "TYPE": "NaviTextData", + "ID": 25, + "STRING": "Head back to your room and rest.", + "UNK0": "28060306" + }, + { + "TYPE": "NaviTextData", + "ID": 26, + "STRING": "Complete your Student Council tasks.", + "UNK0": "03060c06" + }, + { + "TYPE": "NaviTextData", + "ID": 27, + "STRING": "Return to the dormitory.", + "UNK0": "0c060f06" + }, + { + "TYPE": "NaviTextData", + "ID": 28, + "STRING": "Go down to the first floor.", + "UNK0": "0f061006" + }, + { + "TYPE": "NaviTextData", + "ID": 29, + "STRING": "Head to the station.", + "UNK0": "10061106" + }, + { + "TYPE": "NaviTextData", + "ID": 30, + "STRING": "Purchase your train tickets.", + "UNK0": "11061306" + }, + { + "TYPE": "NaviTextData", + "ID": 31, + "STRING": "Work through the field study tasks.", + "UNK0": "13061606" + }, + { + "TYPE": "NaviTextData", + "ID": 32, + "STRING": "Head to Aurochs Fort.", + "UNK0": "16061806" + }, + { + "TYPE": "NaviTextData", + "ID": 33, + "STRING": "Report to the soldiers.", + "UNK0": "18061a06" + }, + { + "TYPE": "NaviTextData", + "ID": 34, + "STRING": "Return to Bareahard.", + "UNK0": "1a061d06" + }, + { + "TYPE": "NaviTextData", + "ID": 35, + "STRING": "Return to the hotel.", + "UNK0": "1d061e06" + }, + { + "TYPE": "NaviTextData", + "ID": 36, + "STRING": "Work through the field study tasks.", + "UNK0": "1e062006" + }, + { + "TYPE": "NaviTextData", + "ID": 37, + "STRING": "Return to Bareahard.", + "UNK0": "20062106" + }, + { + "TYPE": "NaviTextData", + "ID": 38, + "STRING": "Enter the underground waterway.", + "UNK0": "21062306" + }, + { + "TYPE": "NaviTextData", + "ID": 39, + "STRING": "Head to the west area of the waterway.", + "UNK0": "23062606" + }, + { + "TYPE": "NaviTextData", + "ID": 40, + "STRING": "Escape from the underground waterway.", + "UNK0": "26060008" + }, + { + "TYPE": "NaviTextData", + "ID": 41, + "STRING": "Revise for the exams with everyone.", + "UNK0": "00080108" + }, + { + "TYPE": "NaviTextData", + "ID": 42, + "STRING": "Complete your Student Council tasks.", + "UNK0": "01080608" + }, + { + "TYPE": "NaviTextData", + "ID": 43, + "STRING": "Return to the dormitory.", + "UNK0": "06080708" + }, + { + "TYPE": "NaviTextData", + "ID": 44, + "STRING": "Head to the station.", + "UNK0": "07080808" + }, + { + "TYPE": "NaviTextData", + "ID": 45, + "STRING": "Purchase your train tickets.", + "UNK0": "08080a08" + }, + { + "TYPE": "NaviTextData", + "ID": 46, + "STRING": "Cross to platform 4.", + "UNK0": "0a080b08" + }, + { + "TYPE": "NaviTextData", + "ID": 47, + "STRING": "Head to the nomadic settlement.", + "UNK0": "0b080d08" + }, + { + "TYPE": "NaviTextData", + "ID": 48, + "STRING": "Work through the field study tasks.", + "UNK0": "0d081708" + }, + { + "TYPE": "NaviTextData", + "ID": 49, + "STRING": "Head to Lake Lacrima.", + "UNK0": "17081808" + }, + { + "TYPE": "NaviTextData", + "ID": 50, + "STRING": "Visit the cabin by the lake.", + "UNK0": "18081908" + }, + { + "TYPE": "NaviTextData", + "ID": 51, + "STRING": "Go to the garage.", + "UNK0": "19081a08" + }, + { + "TYPE": "NaviTextData", + "ID": 52, + "STRING": "Head to Zender Gate.", + "UNK0": "1a081c08" + }, + { + "TYPE": "NaviTextData", + "ID": 53, + "STRING": "Investigate what happened.", + "UNK0": "1c081d08" + }, + { + "TYPE": "NaviTextData", + "ID": 54, + "STRING": "Search for where the mortar was fired.", + "UNK0": "1d082008" + }, + { + "TYPE": "NaviTextData", + "ID": 55, + "STRING": "Head to Zender Gate.", + "UNK0": "20082108" + }, + { + "TYPE": "NaviTextData", + "ID": 56, + "STRING": "Follow the strange silver object.", + "UNK0": "21082208" + }, + { + "TYPE": "NaviTextData", + "ID": 57, + "STRING": "Head to the nomadic settlement.", + "UNK0": "22082308" + }, + { + "TYPE": "NaviTextData", + "ID": 58, + "STRING": "Head to the ancient quarry.", + "UNK0": "23082408" + }, + { + "TYPE": "NaviTextData", + "ID": 59, + "STRING": "Enter the ancient quarry.", + "UNK0": "24082608" + }, + { + "TYPE": "NaviTextData", + "ID": 60, + "STRING": "Searched for the armed group.", + "UNK0": "2608000a" + }, + { + "TYPE": "NaviTextData", + "ID": 61, + "STRING": "Return to the dormitory.", + "UNK0": "000a3f0a" + }, + { + "TYPE": "NaviTextData", + "ID": 62, + "STRING": "Head back to your room and rest.", + "UNK0": "3f0a030a" + }, + { + "TYPE": "NaviTextData", + "ID": 63, + "STRING": "Complete your Student Council tasks.", + "UNK0": "030a0a0a" + }, + { + "TYPE": "NaviTextData", + "ID": 64, + "STRING": "Return to the dormitory.", + "UNK0": "0a0a0b0a" + }, + { + "TYPE": "NaviTextData", + "ID": 65, + "STRING": "Search for Elise.", + "UNK0": "0b0a0f0a" + }, + { + "TYPE": "NaviTextData", + "ID": 66, + "STRING": "Head to the station.", + "UNK0": "0f0a100a" + }, + { + "TYPE": "NaviTextData", + "ID": 67, + "STRING": "Purchase your train tickets.", + "UNK0": "100a120a" + }, + { + "TYPE": "NaviTextData", + "ID": 68, + "STRING": "Go to Elliot's house.", + "UNK0": "120a130a" + }, + { + "TYPE": "NaviTextData", + "ID": 69, + "STRING": "Head for the former guild branch.", + "UNK0": "130a150a" + }, + { + "TYPE": "NaviTextData", + "ID": 70, + "STRING": "Work through the field study tasks.", + "UNK0": "150a1e0a" + }, + { + "TYPE": "NaviTextData", + "ID": 71, + "STRING": "Return to the hotel and report.", + "UNK0": "1e0a1f0a" + }, + { + "TYPE": "NaviTextData", + "ID": 72, + "STRING": "Open the secret passage.", + "UNK0": "1f0a200a" + }, + { + "TYPE": "NaviTextData", + "ID": 73, + "STRING": "See where the passage leads.", + "UNK0": "200a210a" + }, + { + "TYPE": "NaviTextData", + "ID": 74, + "STRING": "Go and speak with Elliot's friends.", + "UNK0": "210a220a" + }, + { + "TYPE": "NaviTextData", + "ID": 75, + "STRING": "Go to Mater Park.", + "UNK0": "220a230a" + }, + { + "TYPE": "NaviTextData", + "ID": 76, + "STRING": "Go to the gazebo in Mater Park.", + "UNK0": "230a240a" + }, + { + "TYPE": "NaviTextData", + "ID": 77, + "STRING": "Work through the field study tasks.", + "UNK0": "240a2a0a" + }, + { + "TYPE": "NaviTextData", + "ID": 78, + "STRING": "Return to Heimdallr Port and report.", + "UNK0": "2a0a2b0a" + }, + { + "TYPE": "NaviTextData", + "ID": 79, + "STRING": "Open the secret passage.", + "UNK0": "2b0a2c0a" + }, + { + "TYPE": "NaviTextData", + "ID": 80, + "STRING": "See where the passage leads.", + "UNK0": "2c0a2d0a" + }, + { + "TYPE": "NaviTextData", + "ID": 81, + "STRING": "Work through the field study tasks.", + "UNK0": "2d0a2e0a" + }, + { + "TYPE": "NaviTextData", + "ID": 82, + "STRING": "Travel to the Sankt District by tram.", + "UNK0": "2e0ac30a" + }, + { + "TYPE": "NaviTextData", + "ID": 83, + "STRING": "Go down to the first floor.", + "UNK0": "c30a300a" + }, + { + "TYPE": "NaviTextData", + "ID": 84, + "STRING": "Patrol your assigned city districts.", + "UNK0": "300a3d0a" + }, + { + "TYPE": "NaviTextData", + "ID": 85, + "STRING": "Travel to Mater Park by tram.", + "UNK0": "3d0a360a" + }, + { + "TYPE": "NaviTextData", + "ID": 86, + "STRING": "Patrol Dreichels Plaza.", + "UNK0": "360a370a" + }, + { + "TYPE": "NaviTextData", + "ID": 87, + "STRING": "Pursue the terrorists.", + "UNK0": "370a000c" + }, + { + "TYPE": "NaviTextData", + "ID": 88, + "STRING": "Return to the dormitory.", + "UNK0": "000c010c" + }, + { + "TYPE": "NaviTextData", + "ID": 89, + "STRING": "Go to the Student Council room.", + "UNK0": "010c020c" + }, + { + "TYPE": "NaviTextData", + "ID": 90, + "STRING": "Search for Millium.", + "UNK0": "020c2b0c" + }, + { + "TYPE": "NaviTextData", + "ID": 91, + "STRING": "Head back to your room and rest.", + "UNK0": "2b0c030c" + }, + { + "TYPE": "NaviTextData", + "ID": 92, + "STRING": "Complete your Student Council tasks.", + "UNK0": "030c090c" + }, + { + "TYPE": "NaviTextData", + "ID": 93, + "STRING": "Return to the dormitory.", + "UNK0": "090c0a0c" + }, + { + "TYPE": "NaviTextData", + "ID": 94, + "STRING": "Head to the station.", + "UNK0": "0a0c0b0c" + }, + { + "TYPE": "NaviTextData", + "ID": 95, + "STRING": "Purchase your train tickets.", + "UNK0": "0b0c0d0c" + }, + { + "TYPE": "NaviTextData", + "ID": 96, + "STRING": "Head to the guild.", + "UNK0": "0d0c0e0c" + }, + { + "TYPE": "NaviTextData", + "ID": 97, + "STRING": "Work through the field study tasks.", + "UNK0": "0e0c130c" + }, + { + "TYPE": "NaviTextData", + "ID": 98, + "STRING": "Head to the guild to report.", + "UNK0": "130c140c" + }, + { + "TYPE": "NaviTextData", + "ID": 99, + "STRING": "Work through the field study tasks.", + "UNK0": "140c1a0c" + }, + { + "TYPE": "NaviTextData", + "ID": 100, + "STRING": "Go to Viscount Arseid's mansion.", + "UNK0": "1a0c1b0c" + }, + { + "TYPE": "NaviTextData", + "ID": 101, + "STRING": "Work through the field study tasks.", + "UNK0": "1b0c1c0c" + }, + { + "TYPE": "NaviTextData", + "ID": 102, + "STRING": "Go to the wharf.", + "UNK0": "1c0c1d0c" + }, + { + "TYPE": "NaviTextData", + "ID": 103, + "STRING": "Go to Lohengrin Castle.", + "UNK0": "1d0c1f0c" + }, + { + "TYPE": "NaviTextData", + "ID": 104, + "STRING": "Search for the children.", + "UNK0": "1f0c230c" + }, + { + "TYPE": "NaviTextData", + "ID": 105, + "STRING": "Head for the top floor.", + "UNK0": "230c240c" + }, + { + "TYPE": "NaviTextData", + "ID": 106, + "STRING": "Head to the station.", + "UNK0": "240c250c" + }, + { + "TYPE": "NaviTextData", + "ID": 107, + "STRING": "Tour Garrelia Fortress.", + "UNK0": "250c260c" + }, + { + "TYPE": "NaviTextData", + "ID": 108, + "STRING": "Hurry to the railway gun.", + "UNK0": "260c000e" + }, + { + "TYPE": "NaviTextData", + "ID": 109, + "STRING": "Return to the dormitory.", + "UNK0": "000e390e" + }, + { + "TYPE": "NaviTextData", + "ID": 110, + "STRING": "Head back to your room and rest.", + "UNK0": "390e010e" + }, + { + "TYPE": "NaviTextData", + "ID": 111, + "STRING": "Complete your Student Council tasks.", + "UNK0": "010e060e" + }, + { + "TYPE": "NaviTextData", + "ID": 112, + "STRING": "Go to the computer room on 2F.", + "UNK0": "060e070e" + }, + { + "TYPE": "NaviTextData", + "ID": 113, + "STRING": "Go to the academy field.", + "UNK0": "070e370e" + }, + { + "TYPE": "NaviTextData", + "ID": 114, + "STRING": "Walk around the Courageous.", + "UNK0": "370e0c0e" + }, + { + "TYPE": "NaviTextData", + "ID": 115, + "STRING": "Go to the Reinford corporate HQ.", + "UNK0": "0c0e0e0e" + }, + { + "TYPE": "NaviTextData", + "ID": 116, + "STRING": "Work through the field study tasks.", + "UNK0": "0e0e170e" + }, + { + "TYPE": "NaviTextData", + "ID": 117, + "STRING": "Go and investigate the commotion.", + "UNK0": "170e180e" + }, + { + "TYPE": "NaviTextData", + "ID": 118, + "STRING": "Go and investigate the lower level.", + "UNK0": "180e190e" + }, + { + "TYPE": "NaviTextData", + "ID": 119, + "STRING": "Walk around Alisa's home.", + "UNK0": "190e1e0e" + }, + { + "TYPE": "NaviTextData", + "ID": 120, + "STRING": "Go and meet Captain Claire.", + "UNK0": "1e0e240e" + }, + { + "TYPE": "NaviTextData", + "ID": 121, + "STRING": "Work through the field study tasks.", + "UNK0": "240e2a0e" + }, + { + "TYPE": "NaviTextData", + "ID": 122, + "STRING": "Head to the Sachsen Iron Mine.", + "UNK0": "2a0e2b0e" + }, + { + "TYPE": "NaviTextData", + "ID": 123, + "STRING": "Check what's happening at the mine.", + "UNK0": "2b0e2c0e" + }, + { + "TYPE": "NaviTextData", + "ID": 124, + "STRING": "Ask about the chairman at reception.", + "UNK0": "2c0e2d0e" + }, + { + "TYPE": "NaviTextData", + "ID": 125, + "STRING": "Go to 23F using the elevator.", + "UNK0": "2d0e2e0e" + }, + { + "TYPE": "NaviTextData", + "ID": 126, + "STRING": "Go to the mine through the passage.", + "UNK0": "2e0e310e" + }, + { + "TYPE": "NaviTextData", + "ID": 127, + "STRING": "Save the hostages.", + "UNK0": "310e0010" + }, + { + "TYPE": "NaviTextData", + "ID": 128, + "STRING": "Help prepare for the Academy Festival.", + "UNK0": "00100110" + }, + { + "TYPE": "NaviTextData", + "ID": 129, + "STRING": "Head to the engineering building.", + "UNK0": "01100210" + }, + { + "TYPE": "NaviTextData", + "ID": 130, + "STRING": "Travel to Heimdallr by orbal bike.", + "UNK0": "02102310" + }, + { + "TYPE": "NaviTextData", + "ID": 131, + "STRING": "Head back to your room and rest.", + "UNK0": "23100310" + }, + { + "TYPE": "NaviTextData", + "ID": 132, + "STRING": "Enjoy the Academy Festival.", + "UNK0": "03100610" + }, + { + "TYPE": "NaviTextData", + "ID": 133, + "STRING": "Return the old schoolhouse to normal.", + "UNK0": "06100710" + }, + { + "TYPE": "NaviTextData", + "ID": 134, + "STRING": "Take a pie to George.", + "UNK0": "07100910" + }, + { + "TYPE": "NaviTextData", + "ID": 135, + "STRING": "Go and meet Elise at the front gate.", + "UNK0": "09100b10" + }, + { + "TYPE": "NaviTextData", + "ID": 136, + "STRING": "Search for Millium and Crow.", + "UNK0": "0b101210" + }, + { + "TYPE": "NaviTextData", + "ID": 137, + "STRING": "Return to the dorms and look for Crow.", + "UNK0": "12101410" + }, + { + "TYPE": "NaviTextData", + "ID": 138, + "STRING": "Return to the academy.", + "UNK0": "14101810" + }, + { + "TYPE": "NaviTextData", + "ID": 139, + "STRING": "Prepare, then leave through the gate.", + "UNK0": "18100000" + } +] \ No newline at end of file diff --git a/text/jsons/t_notechar.json b/text/jsons/t_notechar.json new file mode 100644 index 0000000..d5aacea --- /dev/null +++ b/text/jsons/t_notechar.json @@ -0,0 +1,1052 @@ +[ + { + "TYPE": "QSChapter", + "ID": 0, + "STRING": "Class VII Members" + }, + { + "TYPE": "QSChapter", + "ID": 1, + "STRING": "Y1 - Class I/II" + }, + { + "TYPE": "QSChapter", + "ID": 2, + "STRING": "Y1 - Class III/IV/V" + }, + { + "TYPE": "QSChapter", + "ID": 3, + "STRING": "Y2 - Class I/II" + }, + { + "TYPE": "QSChapter", + "ID": 4, + "STRING": "Y2 - Class III/IV/V" + }, + { + "TYPE": "QSChapter", + "ID": 5, + "STRING": "Instructors etc." + }, + { + "TYPE": "QSChar", + "ID": 0, + "UNK0": "00004000", + "STRINGS": [ + "Rean", + "Rean Schwarzer", + "(Unaffiliated)", + "Year 1 Class VII\nA young man who is part of Class VII.\nEasygoing, honest, polite, and sociable.", + "Secret", + "Achieved beginner rank in the Eight\nLeaves One Blade school. He is also the\nadopted son of Ymir's Baron Schwarzer.", + "Devoted Brother", + "He has a non-blood-related younger \nsister, Elise, who attends St.\nAstraia. Very dedicated to her.", + "Power", + "Rean occasionally exhibits a beast-like\npower when he loses control of himself.\nHe has feared that since he was a child." + ] + }, + { + "TYPE": "QSChar", + "ID": 1, + "UNK0": "00004000", + "STRINGS": [ + "Alisa", + "Alisa Reinford", + "(Lacrosse Club)", + "Year 1 Class VII\nLooks like a reserved noble, but \nsays what she really thinks. \nSurprisingly naive and meddling.", + "Reinford", + "Daughter of the chairman of the Reinford\nCompany, the Empire's largest heavy \nindustry corporation.", + "A Present", + "Together with Rean, she \nsent a hat as a present to \nGwyn in the Nord Highlands.", + "Daughter", + "While opposed to her mother's\nways, she still worries about her \nas her daughter." + ] + }, + { + "TYPE": "QSChar", + "ID": 2, + "UNK0": "00004000", + "STRINGS": [ + "Elliot", + "Elliot Craig", + "(Wind Orchestra)", + "Year 1 Class VII\nBelongs to the Wind Orchestra. \nA meek, kind-natured boy with\nred hair. Dislikes conflict.", + "Loves Music", + "Has loved music since he was a child,\nand originally wanted to attend a music\nacademy instead of Thors.", + "General's Son", + "His father is the famed general Craig \nthe Red, leader of the renowned 4th\nArmored Division.", + "Music Mania", + "While Elliot is usually meek, he accepts\nno compromises when it comes to music,\nworking everyone hard with a smile." + ] + }, + { + "TYPE": "QSChar", + "ID": 3, + "UNK0": "00004000", + "STRINGS": [ + "Laura", + "Laura S. Arseid", + "(Swimming Club)", + "Year 1 Class VII\nDaughter of the viscount who rules over\nLegram. Practitioner of the Arseid\nschool, and the strongest first year.", + "Lofty Goal", + "Laura seems to aspire to be like St.\nSandlot, who fought valiantly during \nthe War of the Lions 250 years ago.", + "Mishy", + "She seems surprisingly taken by Mishy,\nthe mascot character she spotted at the\ngeneral store.", + "Like Father...", + "Laura seems to have taken after her\nfather, in both character and strength." + ] + }, + { + "TYPE": "QSChar", + "ID": 4, + "UNK0": "00004000", + "STRINGS": [ + "Machias", + "Machias Regnitz", + "(Lower Class Chess Club)", + "Year 1 Class VII\nClass VII's vice president. Son \nof Heimdallr's governor. He hates \nthe nobility with a passion.", + "Top Grades", + "Scored joint highest in the midterm\nexaminations with Emma. His diligence \nin studying for them paid off in the end.", + "Machias' Past", + "Machias' hatred for nobility stems from\na past event involving his cousin. That \nhate seems to be fading over time, though.", + "Reconciliation", + "The two chess clubs got past their \ndifferences through chess. This seems \nto have changed Machias' opinions, too." + ] + }, + { + "TYPE": "QSChar", + "ID": 5, + "UNK0": "00004000", + "STRINGS": [ + "Emma", + "Emma Millstein", + "(Literature Club)", + "Year 1 Class VII\nIntelligent, broad-minded girl who came \nfrom a remote region of the Empire. \nClass VII's class president.", + "Tutor", + "Considerate towards others, personally\nhelping Fie with her studies.", + "Celine", + "Emma gets along very well with a local \nblack cat, and seems to be caring for \nher in private.", + "Strange Power", + "Emma's people seem to have a strange\npower, which she has always tried to\nkeep secret." + ] + }, + { + "TYPE": "QSChar", + "ID": 6, + "UNK0": "00004000", + "STRINGS": [ + "Jusis", + "Jusis Albarea", + "(Riding Club)", + "Year 1 Class VII\nThe son of Duke Albarea who \ntends to keep others at a distance. \nSkilled at traditional court fencing.", + "Bastard Son", + "Jusis' mother was a commoner, a \nfact that soured the relationship with \nhis father, Duke Albarea.", + "Horse Carer", + "He cares for horses back at home, \nand appears to get along well with \nthe horses at the academy as well.", + "Oil and Water", + "While he seems to be liked by \nchildren, he has difficulty dealing \nwith the overly-affectionate Millium." + ] + }, + { + "TYPE": "QSChar", + "ID": 7, + "UNK0": "00004000", + "STRINGS": [ + "Fie", + "Fie Claussell", + "(Gardening Club)", + "Year 1 Class VII\nA quiet, petite girl who somewhat\nresembles a cat and loves sleeping.\nAgile and skilled at combat.", + "Jaeger Member", + "When Fie was younger, she used \nto be a member of a jaeger corps.", + "Sylphid", + "When she was a member of the Zephyr\nCorps, she went by the codename\n'Sylphid' on the battlefield.", + "Fie's Flowers", + "The flowers that Fie raised are herbs\nthat symbolize familial love." + ] + }, + { + "TYPE": "QSChar", + "ID": 8, + "UNK0": "00004000", + "STRINGS": [ + "Gaius", + "Gaius Worzel", + "(Art Club)", + "Year 1 Class VII\nA tall exchange student. Soft-spoken,\nbut has a strong sense of integrity.\nCan be relied on when it counts.", + "Homeland", + "Gaius' homeland, the Nord Highlands, \nis where Emperor Dreichels rose his \narmy during the War of the Lions.", + "Resolve", + "Gaius chose to enroll at the academy \nto learn more about the outside \nworld and better protect his homeland.", + "Painter", + "Gaius was painting the scenery of the\nNord Highlands, hoping to return there\nwith his class one day." + ] + }, + { + "TYPE": "QSChar", + "ID": 9, + "UNK0": "00004000", + "STRINGS": [ + "Millium", + "Millium Orion", + "(Cooking Club)", + "Year 1 Class VII\nPart of the Imperial Army's Intelligence\nDivision. Generally carefree, but does\nact like an agent at times.", + "Hates Ghosts", + "She is terrified of ghosts and \nother supernatural entities.", + "Fun Times", + "She has adjusted quickly to academy \nlife and seems to be enjoying it greatly. \nShe has even joined a club already.", + "Her Missions", + "Millium was sent to the academy \nto investigate two things -- the \nold schoolhouse, and C." + ] + }, + { + "TYPE": "QSChar", + "ID": 10, + "UNK0": "00004000", + "STRINGS": [ + "Crow", + "Crow Armbrust", + "(Unaffiliated)", + "Year 1 Class VII\nTechnically a second-year student. \nA bit of a playboy, but is caring \nand dependable. Short on credits.", + "Blade", + "He was the one responsible for \nintroducing Blade to Trista. He enjoys\nplaying it with the local children, too.", + "Helper", + "He agreed to use his experience from \nlast year to help with the machinery, \noutfits, etc. for the festival.", + "C", + "Crow's true identity is the Imperial\nLiberation Front's leader, C." + ] + }, + { + "TYPE": "QSChar", + "ID": 57, + "UNK0": "01004000", + "STRINGS": [ + "Patrick", + "Patrick T. Hyarms", + "(Fencing Club)", + "Year 1 Class I\nAn arrogant upper class student. \nBelieves strongly in the class system,\nand looks down on commoners.", + "Hyarms Family", + "The third son of Marquis Hyarms, head of\none of the Four Great Houses. One of \nthe highest-ranking first years.", + "Surprise Side", + "He seems to regret what he said, being\nstrangely considerate towards Rean ever\nsince. Perhaps he's not so bad after all.", + "Celestin", + "Thinks of his butler, Celestin, like a\nreal brother -- strict yet kind." + ] + }, + { + "TYPE": "QSChar", + "ID": 93, + "UNK0": "01001000", + "STRINGS": [ + "Ferris", + "Ferris Florald", + "(Lacrosse Club)", + "Year 1 Class I\nDaughter of Count Florald. High-handed\nand hates losing. Strangely antagonistic\ntowards Alisa.", + "Worthy Rival", + "Despite Ferris' previous animosity, \nshe and Alisa have come to recognize \none another as worthy rivals and friends.", + "0", + "0", + "0", + "0" + ] + }, + { + "TYPE": "QSChar", + "ID": 80, + "UNK0": "01001000", + "STRINGS": [ + "Kenneth", + "Kenneth Lakelord", + "(Imperial Fishing Club)", + "Year 1 Class II\nHead of the Imperial Fishing Club. \nCarefree, and loves to sit and fish \nwhenever he has the chance. ", + "Brother", + "The Imperial Fishing Club was set up by\nKenneth's brother, a former student of\nThors.", + "0", + "0", + "0", + "0" + ] + }, + { + "TYPE": "QSChar", + "ID": 94, + "UNK0": "01001000", + "STRINGS": [ + "Bridget", + "Bridget", + "(Wind Orchestra)", + "Year 1 Class II\nA sensible upper class student. Plays\nthe piano in the Wind Orchestra.", + "Made Friends", + "She went to the same Sunday School as\nClass IV's Alan. He was avoiding her for\na while, but they were able to make up.", + "0", + "0", + "0", + "0" + ] + }, + { + "TYPE": "QSChar", + "ID": 98, + "UNK0": "01001000", + "STRINGS": [ + "Margarita", + "Margarita ", + "(Cooking Club)", + "Year 1 Class II\nDaughter of a baron. Came to the academy\nto search for a future husband and\nbecome a better potential wife.", + "Grand Rose", + "She sent a grand rose, grown by her\nfamily, to Vincent. The grand rose\nsymbolizes 'passionate romance.'", + "0", + "0", + "0", + "0" + ] + }, + { + "TYPE": "QSChar", + "ID": 68, + "UNK0": "02001000", + "STRINGS": [ + "Hugo", + "Hugo Kleist", + "(Unaffiliated)", + "Year 1 Class III\nA student who commutes from Heimdallr\nevery day. Seems to get along well with\nthe budding merchant Becky.", + "Kleist & Co.", + "Despite being a student, he helps run \nhis father's company, Kleist & Co.", + "0", + "0", + "0", + "0" + ] + }, + { + "TYPE": "QSChar", + "ID": 82, + "UNK0": "02001000", + "STRINGS": [ + "Monica", + "Monica", + "(Swimming Club)", + "Year 1 Class III\nA quiet, reserved first year girl. \nNot very good at sports.", + "Work Pays Off", + "After intensive training with Laura, she\nwas finally able to swim 50 arge.", + "0", + "0", + "0", + "0" + ] + }, + { + "TYPE": "QSChar", + "ID": 83, + "UNK0": "02001000", + "STRINGS": [ + "Mint", + "Mint", + "(Wind Orchestra)", + "Year 1 Class III\nPlays the flute in the Wind Orchestra.\nAn optimistic girl who doesn't dwell on\nthings.", + "Cookery", + "She made a new kind of homemade food \nfor her uncle, Instructor Makarov. It \nhas a distinctive bitter taste.", + "0", + "0", + "0", + "0" + ] + }, + { + "TYPE": "QSChar", + "ID": 91, + "UNK0": "02001000", + "STRINGS": [ + "Beryl", + "Beryl", + "(Occult Research Society)", + "Year 1 Class III\nA somewhat suspicious girl who acts as\nhead of the Occult Research Society.", + "7 Mysteries", + "She was investigating the academy's\nseven mysteries. It seems there are\ntwo sets of mysteries, though...", + "0", + "0", + "0", + "0" + ] + }, + { + "TYPE": "QSChar", + "ID": 70, + "UNK0": "02001000", + "STRINGS": [ + "Casper", + "Casper", + "(Swimming Club)", + "Year 1 Class IV\nA boy who joined the Swimming Club \nbecause he looks up to its captain. \nTenacious and energetic.", + "Seaside Town", + "Comes from a seaside town in the Lamare\nProvince, so he's used to swimming, but \nhe admires the more skilled Laura.", + "0", + "0", + "0", + "0" + ] + }, + { + "TYPE": "QSChar", + "ID": 67, + "UNK0": "02001000", + "STRINGS": [ + "Alan", + "Alan", + "(Fencing Club)", + "Year 1 Class IV\nA very competitive and stubborn boy.\nSpends his days training in pursuit of\nstrength.", + "Resolve", + "The reason he avoided Bridget was that\nhe didn't want her to see him at less\nthan his best.", + "0", + "0", + "0", + "0" + ] + }, + { + "TYPE": "QSChar", + "ID": 84, + "UNK0": "02002000", + "STRINGS": [ + "Linde", + "Linde", + "(Art Club)", + "Year 1 Class IV\nA polite girl who belongs to the Art\nClub. Somewhat timid, which leads to \nher being used by others.", + "Twin Sister", + "Vivi from the Gardening Club is her\nyounger sister, and she is often a \nvictim to Vivi's pranks.", + "Protector", + "As Vivi's older sister, she has the\ninner strength to protect her when \nit's needed.", + "0", + "0" + ] + }, + { + "TYPE": "QSChar", + "ID": 85, + "UNK0": "02002000", + "STRINGS": [ + "Vivi", + "Vivi", + "(Gardening Club)", + "Year 1 Class IV\nA girl who loves playing pranks \non people. Always searching for \nsomething fun to do.", + "Twin Sister", + "Younger sister of Linde from the Art\nClub. She enjoys changing places with\nher to play pranks.", + "Trusting", + "She seems to trust her older sister to\nbe there when she needs her to be.", + "0", + "0" + ] + }, + { + "TYPE": "QSChar", + "ID": 81, + "UNK0": "02001000", + "STRINGS": [ + "Colette", + "Colette", + "(Unaffiliated)", + "Year 1 Class IV\nA shopaholic first year. Spends as\nmuch time as possible walking around\nthe various shops in town.", + "New Things", + "While shopping is her main hobby, she\nalso loves walking around food stalls\nand trying out new things.", + "0", + "0", + "0", + "0" + ] + }, + { + "TYPE": "QSChar", + "ID": 73, + "UNK0": "02001000", + "STRINGS": [ + "Rex", + "Rex", + "(Photography Club)", + "Year 1 Class V\nA member of the Photography Club who \nhas little interest in taking photographs \nof anything but attractive girls.", + "Eccentric", + "While he's not the best at taking\nphotographs of scenery, he's an \nexpert at taking pictures of girls.", + "0", + "0", + "0", + "0" + ] + }, + { + "TYPE": "QSChar", + "ID": 74, + "UNK0": "02001000", + "STRINGS": [ + "Munk", + "Munk", + "(Unaffiliated)", + "Year 1 Class V\nA boy who doesn't stand out very \nmuch. Always looking for material \nfor something.", + "Radio Addict", + "He sends in lots of material to the \nradio show Abend Time, and has a \nlot of signed stickers for doing so.", + "0", + "0", + "0", + "0" + ] + }, + { + "TYPE": "QSChar", + "ID": 88, + "UNK0": "02001000", + "STRINGS": [ + "Paula", + "Paula", + "(Riding Club)", + "Year 1 Class V\nA lively first year. Doesn't mince\nwords, even when she's addressing \na member of the nobility.", + "Improving", + "She was originally a beginner at horse\nriding, but has slowly improved to the\npoint where she can ride unassisted.", + "0", + "0", + "0", + "0" + ] + }, + { + "TYPE": "QSChar", + "ID": 86, + "UNK0": "02001000", + "STRINGS": [ + "Becky", + "Becky", + "(Unaffiliated)", + "Year 1 Class V\nA budding merchant who's always \nlooking for new ways to make a profit.", + "Sales Battle", + "She and Hugo competed to see who\ncould sell the most during the festival.\nIn the end, both were skilled merchants.", + "0", + "0", + "0", + "0" + ] + }, + { + "TYPE": "QSChar", + "ID": 89, + "UNK0": "02001000", + "STRINGS": [ + "Rosine", + "Rosine", + "(Unaffiliated)", + "Year 1 Class V\nA deeply spiritual, noble-minded girl.\nCan get along with just about anyone.", + "Slimming?", + "She gives off a different impression to\npeople when she wears her habit, a fact\nshe's concerned about.", + "0", + "0", + "0", + "0" + ] + }, + { + "TYPE": "QSChar", + "ID": 12, + "UNK0": "03004000", + "STRINGS": [ + "Angelica", + "Angelica Rogner", + "(Bike Club)", + "Year 2 Class I\nThe daughter of Marquis Rogner, \nhead of one of the Four Great \nFamilies. Loves her orbal bike.", + "Biking Trips", + "Occasionally goes out riding on the \norbal bike with Towa, who she's good\nfriends with.", + "Taito", + "Seven years ago, she learned \nthe Eastern martial art of Taito \nfrom a foreign woman.", + "Teacher", + "She has long been friends with Gwyn,\nwho taught her all kinds of things--\nincluding how to flirt with girls." + ] + }, + { + "TYPE": "QSChar", + "ID": 77, + "UNK0": "03001000", + "STRINGS": [ + "Vincent", + "Vincent Florald", + "(Unaffiliated)", + "Year 2 Class I\nThe eldest son of Count Florald. A typical\nnarcissistic young nobleman who's \nalways accompanied by Sariffa the maid.", + "Poor Actor", + "He performed in a play during last \nyear's academy festival, but when \nhis part came, everyone fell asleep.", + "0", + "0", + "0", + "0" + ] + }, + { + "TYPE": "QSChar", + "ID": 95, + "UNK0": "03001000", + "STRINGS": [ + "Friedel", + "Friedel", + "(Fencing Club)", + "Year 2 Class I\nThe Fencing Club's calm and pleasant\ncaptain. Always supporting her club's\nmembers from the sidelines.", + "Club No. 1", + "The strongest member of the Fencing\nClub, she was able to completely \noverwhelm Patrick in a duel.", + "0", + "0", + "0", + "0" + ] + }, + { + "TYPE": "QSChar", + "ID": 78, + "UNK0": "03001000", + "STRINGS": [ + "Lambert", + "Lambert", + "(Riding Club)", + "Year 2 Class II\nAlways with his beloved horse and\npartner Whitcomb. Head of the Riding\nClub, and passionate about horses.", + "True Partner", + "Despite rising tensions in the Empire, \nhe swears to overcome any obstacle with\nWhitcomb at his side.", + "0", + "0", + "0", + "0" + ] + }, + { + "TYPE": "QSChar", + "ID": 79, + "UNK0": "03001000", + "STRINGS": [ + "Fidelio", + "Fidelio", + "(Photography Club)", + "Year 2 Class II\nKind, sensible head of the Photography \nClub. While a noble, he doesn't place \nimportance on social class.", + "Responsible", + "While usually pleasant, he's responsible\nas the Photography Club's head, and\npunished Rex for his transgressions.", + "0", + "0", + "0", + "0" + ] + }, + { + "TYPE": "QSChar", + "ID": 96, + "UNK0": "03001000", + "STRINGS": [ + "Theresia", + "Theresia", + "(Lacrosse Club)", + "Year 2 Class II\nA refined second year noble. Second-in-\ncommand in the Lacrosse Club, supporting\nthe club alongside Emily.", + "Good Team", + "While Emily is better at sports, \nTheresia is better at studying. She\nhelped Emily study for the midterms.", + "0", + "0", + "0", + "0" + ] + }, + { + "TYPE": "QSChar", + "ID": 97, + "UNK0": "03001000", + "STRINGS": [ + "Edel", + "Edel", + "(Gardening Club)", + "Year 2 Class II\nThe head of the Gardening Club, never\nseen without her straw hat. Open minded\nand easygoing.", + "Gardener", + "Is raising vegetables in the \nGardening Club. Believes in biting \nstraight into acerbic tomatoes.", + "0", + "0", + "0", + "0" + ] + }, + { + "TYPE": "QSChar", + "ID": 56, + "UNK0": "04004000", + "STRINGS": [ + "George", + "George Nome", + "(Engineering Club)", + "Year 2 Class III\nA good-natured second year who runs the\nEngineering Club. Loves tinkering with\norbments and adept with technology.", + "Tech Institute", + "He stays in regular contact with the\nRoer Institute of Technology, sending\nthem regular reports on the orbal bike. ", + "Sweet Fan", + "Apparently eating helps him \nwork better. He especially\nlikes sweet things.", + "Bike Bonding", + "It was thanks to Angelica that he ended\nup studying the orbal bike, something \nhe's silently thankful for." + ] + }, + { + "TYPE": "QSChar", + "ID": 52, + "UNK0": "04004000", + "STRINGS": [ + "Towa", + "Towa Herschel", + "(Student Council)", + "Year 2 Class IV\nPresident of the Student Council. Very\nhard working, and trusted by students\nand instructors alike.", + "President", + "Her skills draw the respect and support \nof all of her classmates, regardless of \nsocial class. ", + "Postwoman", + "Personally delivers Rean's tasks \nto his dormitory first thing in the \nmorning on free days. ", + "Entourage", + "Her work evacuating Heimdallr earned her\nboth a spot in the trade conference and\na number of post-graduation job offers." + ] + }, + { + "TYPE": "QSChar", + "ID": 127, + "UNK0": "04004000", + "STRINGS": [ + "Crow", + "Crow Armbrust", + "(Unaffiliated)", + "Year 2 Class V\nA carefree second-year student. A bit of\na playboy, but can be relied on in times\nof need.", + "Blade", + "He was the one responsible for \nintroducing Blade to Trista. He enjoys\nplaying it with the local children, too.", + "Helper", + "He agreed to use his experience from \nlast year to help with the machinery, \noutfits, etc. for the festival.", + "C", + "Crow's true identity is the Imperial\nLiberation Front's leader, C." + ] + }, + { + "TYPE": "QSChar", + "ID": 76, + "UNK0": "04001000", + "STRINGS": [ + "Stefan", + "Stefan", + "(Lower Class Chess Club)", + "Year 2 Class III\nHead of the Lower Class Chess Club.\nNot the most skilled player, but he\nmakes up for it with love for the game.", + "Hard Practice", + "Practiced extensively with Machias,\nallowing him to be able to compete on\nequal terms with the Upper Class club.", + "0", + "0", + "0", + "0" + ] + }, + { + "TYPE": "QSChar", + "ID": 92, + "UNK0": "04001000", + "STRINGS": [ + "Clara", + "Clara", + "(Art Club)", + "Year 2 Class III\nHead of the Art Club, and an artist in\nthe purest sense. Usually found in the\nclub room sculpting--her specialty.", + "Natural Talent", + "She seems to be able to score decently\nin exams without studying at all, and\nuses that time for art instead.", + "0", + "0", + "0", + "0" + ] + }, + { + "TYPE": "QSChar", + "ID": 69, + "UNK0": "04001000", + "STRINGS": [ + "Hibelle", + "Hibelle", + "(Wind Orchestra)", + "Year 2 Class IV\nThe second-year head of the Wind\nOrchestra. Plays violin. Skilled with\nthe technical side of music, too.", + "Concert", + "He was injured in the run up to the \nconcert, meaning he couldn't take part.\nHe was proud of the others, though.", + "0", + "0", + "0", + "0" + ] + }, + { + "TYPE": "QSChar", + "ID": 72, + "UNK0": "04001000", + "STRINGS": [ + "Loggins", + "Loggins", + "(Fencing Club)", + "Year 2 Class IV\nA scary-faced member of the Fencing\nClub. His most noticeable flaw is \nbeing a little short tempered.", + "Naughty Past", + "Apparently he was an uncontrollable\ndelinquent in his first year, but \nFriedel knocked him into shape.", + "0", + "0", + "0", + "0" + ] + }, + { + "TYPE": "QSChar", + "ID": 87, + "UNK0": "04001000", + "STRINGS": [ + "Emily", + "Emily", + "(Lacrosse Club)", + "Year 2 Class IV\nThe passionate captain of the Lacrosse\nClub. Always encouraging the other\nmembers of the club.", + "Friendship", + "Emily and Theresia didn't get along at \nfirst, but they eventually became best \nfriends--a fact that she's very proud of.", + "0", + "0", + "0", + "0" + ] + }, + { + "TYPE": "QSChar", + "ID": 71, + "UNK0": "04001000", + "STRINGS": [ + "Klein", + "Klein", + "(Swimming Club)", + "Year 2 Class V\nThe eloquent captain of the Swimming\nClub. Always encouraging the club's\nmembers to excel.", + "Family Man", + "He's deeply devoted to his mother, who\nsingle-handedly raised him and his \nyounger siblings after his father died.", + "0", + "0", + "0", + "0" + ] + }, + { + "TYPE": "QSChar", + "ID": 75, + "UNK0": "04001000", + "STRINGS": [ + "Nicholas", + "Nicholas", + "(Cooking Club)", + "Year 2 Class V\nThe big-hearted head of the \nCooking Club. Never seems \nto be fazed by anything.", + "Cooking Master", + "Has the unusual ability to tell what\ningredients--and how much--are\nused in something simply by tasting it.", + "0", + "0", + "0", + "0" + ] + }, + { + "TYPE": "QSChar", + "ID": 90, + "UNK0": "04001000", + "STRINGS": [ + "Dorothee", + "Dorothee", + "(Literature Club)", + "Year 2 Class V\nThe imaginative head of the Literature\nClub. Is often a little too excited over\nthe stories she reads.", + "Maidenly Hobby", + "She writes somewhat obscene stories \nabout romance between young men.", + "0", + "0", + "0", + "0" + ] + }, + { + "TYPE": "QSChar", + "ID": 11, + "UNK0": "05004000", + "STRINGS": [ + "Instructor Sara", + "Instructor Sara Valestein", + " ", + "Instructor (Combat, Practical Skills)\nClass VII's homeroom teacher. More \nthan a little slovenly, and is often seen\ndrinking in the early afternoon.", + "Odd Friendship", + "She seems to be acquainted with Micht\nat the pawn shop, and they both seem to\nknow one another's backgrounds.", + "Former Bracer", + "She was formerly an A-rank bracer \nbelonging to the guild in Heimdallr.\nWas known as 'Purple Lightning.'", + "Comrade", + "She becomes a little sentimental on the \nanniversary of a comrade's death, but it\ndoesn't seem that they were a bracer..." + ] + }, + { + "TYPE": "QSChar", + "ID": 58, + "UNK0": "05001000", + "STRINGS": [ + "Principal Vandyck", + "Principal Vandyck", + " ", + "Principal\nThors Military Academy's principal. Used\nto be a general in the Imperial Army, \nand still retains an aura of dignity.", + "Calligrapher", + "He's enjoyed calligraphy for almost ten \nyears, taking an interest after leaving\nthe army. Uses a fine Eastern ink brush.", + "0", + "0", + "0", + "0" + ] + }, + { + "TYPE": "QSChar", + "ID": 59, + "UNK0": "05001000", + "STRINGS": [ + "Instructor Neithardt", + "Instructor Neithardt", + " ", + "Instructor (Military Science)\nAn active-duty major in the Imperial\nArmy's 4th Armored Division. Serious \nin nature and lacking in friendliness.", + "Slave Driver", + "Pushes his students to complete \nMilitary-style training.", + "0", + "0", + "0", + "0" + ] + }, + { + "TYPE": "QSChar", + "ID": 64, + "UNK0": "05001000", + "STRINGS": [ + "Vice Principal Heinrich", + "Vice Principal Heinrich", + " ", + "Vice Principal (Political Economics)\nA baron who teaches political\neconomics. A high-strung man who's a\nstickler for rules and complains often.", + "The Notebook", + "He walks around with a private \nnotebook, guarding its contents \nfrom prying eyes.", + "0", + "0", + "0", + "0" + ] + }, + { + "TYPE": "QSChar", + "ID": 60, + "UNK0": "05001000", + "STRINGS": [ + "Instructor Thomas", + "Instructor Thomas Lysander", + " ", + "Instructor (History, Literature)\nThe epitome of carefree. Well versed \nin folklore and legends. Tends to get \noverexcited while teaching.", + "The Library", + "Currently in charge of the academy's\nlibrary. He enjoys spending all his free\ntime there, looking through books.", + "0", + "0", + "0", + "0" + ] + }, + { + "TYPE": "QSChar", + "ID": 63, + "UNK0": "05001000", + "STRINGS": [ + "Instructor Makarov", + "Instructor Makarov", + " ", + "Instructor (Orbal and Natural Sciences)\nPerforms his job well, but always \nseems to find it tedious. Year 1,\nClass III student Mint is his niece.", + "Proud History", + "Graduated valedictorian from Roer Inst. \nof Technology, and then took up a position \nat the Imperial Institute of Science.", + "0", + "0", + "0", + "0" + ] + }, + { + "TYPE": "QSChar", + "ID": 61, + "UNK0": "05001000", + "STRINGS": [ + "Instructor Beatrix", + "Instructor Beatrix", + " ", + "Academy Nurse (Medical Science)\nA kindly instructor who is in charge of\nthe infirmary. Has a mild bedside manner\nand is welcoming to all students.", + "Intimidating", + "Usually kind, but capable of giving off\nsuch an aura of intimidation that even\nVice Principal Heinrich fears her.", + "0", + "0", + "0", + "0" + ] + }, + { + "TYPE": "QSChar", + "ID": 62, + "UNK0": "05001000", + "STRINGS": [ + "Instructor Mary", + "Instructor Mary", + " ", + "Instructor (Music, Art, Cookery)\nAn instructor who joined the academy\njust this year. Completely devoted to \nher students.", + "Count Altheim", + "Daughter of Count Altheim, head of a \nmajor noble family in the Sutherland \nProvince. Puts being a teacher first.", + "0", + "0", + "0", + "0" + ] + }, + { + "TYPE": "QSChar", + "ID": 66, + "UNK0": "05001000", + "STRINGS": [ + "Butler Celestin", + "Butler Celestin", + " ", + "Butler (Upper Class Dormitory)\nA butler sent by the Hyarms family. \nCompletes all of the tasks assigned \nto him perfectly and completely.", + "Devoted", + "He was ordered to return by the Hyarms\nfamily, but is doing all he can to stay\nin Trista for Patrick's sake.", + "0", + "0", + "0", + "0" + ] + }, + { + "TYPE": "QSChar", + "ID": 65, + "UNK0": "05001000", + "STRINGS": [ + "Sariffa", + "Sariffa", + " ", + "Maid (Upper Class Dormitory)\nA maid sent by the Florald family. \nAlways accompanies Vincent wherever \nhe goes.", + "Odd Servant", + "She has served Vincent and Ferris for so\nlong because she finds them 'interesting\nand endearing people.'", + "0", + "0", + "0", + "0" + ] + }, + { + "TYPE": "QSChar", + "ID": 102, + "UNK0": "05001000", + "STRINGS": [ + "Lotte", + "Lotte", + " ", + "Maid (Upper Class Dormitory)\nA relatively plain maid who works at the\nupper class dormitory. Still very much\nin training.", + "Cooking", + "She's currently trying to expand her\ncooking repertoire so she can serve a \ngreater variety of food in the dorms.", + "0", + "0", + "0", + "0" + ] + }, + { + "TYPE": "QSChar", + "ID": 53, + "UNK0": "05004000", + "STRINGS": [ + "Sharon", + "Sharon Kreuger", + " ", + "Maid (Class VII Dormitory's Caretaker)\nAn exceptionally skilled maid sent by \nthe Reinford family. Supports Class VII\nas their dormitory's caretaker.", + "Like Sisters", + "Alisa looks up to her like an older\nsister, while Sharon adores her like\na younger sister.", + "Super Maid", + "As Chairman Irina's maid, she even \nhelps to fulfill her duties as one of \nthe academy's board directors.", + "Blade Master", + "She was chosen by Crow to serve \nas Blade Master at Gate of Avalon." + ] + } +] \ No newline at end of file diff --git a/text/jsons/t_notecook.json b/text/jsons/t_notecook.json new file mode 100644 index 0000000..95b07bb --- /dev/null +++ b/text/jsons/t_notecook.json @@ -0,0 +1,527 @@ +[ + { + "TYPE": "QSCook", + "STRING1": "Record", + "UNK0": "14000f2700000f2700000f2700000f2700000f2700000f2700000f2700000f2700000f27", + "STRINGS1": [ + "0", + "0" + ], + "UNK1": 9999, + "STRINGS2": [ + "0", + "0" + ], + "UNK2": 9999, + "STRINGS3": [ + "0", + "0" + ], + "UNK3": 9999, + "STRINGS4": [ + "0", + "0" + ], + "UNK4": "0000000000000000000000" + }, + { + "TYPE": "QSCook", + "STRING1": "Simple Omelet", + "UNK0": "000040060100490601000f2700000f2700000f2700000f2700000f2700000f270000f005", + "STRINGS1": [ + "Recovers 100HP", + "Cures K.O." + ], + "UNK1": 1540, + "STRINGS2": [ + "Recovers 600HP", + " " + ], + "UNK2": 1560, + "STRINGS3": [ + "Recovers 400HP", + "DEF+25% (3 turns)" + ], + "UNK3": 1500, + "STRINGS4": [ + "Recovers 600HP", + "STR+25% (3 turns)/Cures freeze" + ], + "UNK4": "0502000303010304020303" + }, + { + "TYPE": "QSCook", + "STRING1": "Sweet Cookie", + "UNK0": "01004006010048060100510601000f2700000f2700000f2700000f2700000f270000f105", + "STRINGS1": [ + "Recovers 1000HP", + "Cures poison" + ], + "UNK1": 1541, + "STRINGS2": [ + "Recovers 700HP", + "Cures poison" + ], + "UNK2": 1575, + "STRINGS3": [ + "[Attack (Set) - Area (S)]", + "(Power D) Poison (50%)" + ], + "UNK3": 1501, + "STRINGS4": [ + "Recovers 800HP", + "Cures poison/burn" + ], + "UNK4": "0500030403010302040203" + }, + { + "TYPE": "QSCook", + "STRING1": "Whole Juice", + "UNK0": "020046060100480601004f0601000f2700000f2700000f2700000f2700000f270000f205", + "STRINGS1": [ + "Recovers 1200HP", + "Cures K.O." + ], + "UNK1": 1542, + "STRINGS2": [ + "Recovers 1000HP", + "Cures faint" + ], + "UNK2": 1561, + "STRINGS3": [ + "Restores 100EP", + " " + ], + "UNK3": 1502, + "STRINGS4": [ + "Recovers 1000HP/Restores 50EP", + "Cures faint/confuse" + ], + "UNK4": "0504030201030300030302" + }, + { + "TYPE": "QSCook", + "STRING1": "Tomato Sandwich", + "UNK0": "030044060100470601004a0601004c0601000f2700000f2700000f2700000f270000f305", + "STRINGS1": [ + "Recovers 1800HP/Restores 20CP", + " " + ], + "UNK1": 1543, + "STRINGS2": [ + "Recovers 1500HP/Restores 10CP", + " " + ], + "UNK2": 1562, + "STRINGS3": [ + "Recovers 100HP/Restores 40CP", + " " + ], + "UNK3": 1503, + "STRINGS4": [ + "Recovers 1500HP/Restores 25CP", + "STR+25% (3 turns)" + ], + "UNK4": "0502010300020403030103" + }, + { + "TYPE": "QSCook", + "STRING1": "Savory Herb Tea", + "UNK0": "040043060100480601004b0601004f0601000f2700000f2700000f2700000f270000f405", + "STRINGS1": [ + "Recovers 2000HP", + "Cures seal/mute" + ], + "UNK1": 1544, + "STRINGS2": [ + "Recovers 1200HP", + "Cures seal" + ], + "UNK2": 1563, + "STRINGS3": [ + "Restores 200EP", + " " + ], + "UNK3": 1504, + "STRINGS4": [ + "Recovers 1600HP", + "SPD+25% (3 turns)" + ], + "UNK4": "0501030204020103000404" + }, + { + "TYPE": "QSCook", + "STRING1": "Creamy Chowder", + "UNK0": "05004106010042060100450601004d0601004e0601000f2700000f2700000f270000f505", + "STRINGS1": [ + "Recovers 2400HP", + "Cures freeze" + ], + "UNK1": 1545, + "STRINGS2": [ + "Recovers 1400HP", + "Cures freeze" + ], + "UNK2": 1576, + "STRINGS3": [ + "[Magic Attack (Set) - Area (S)]", + "(Power C) Freeze (50%)" + ], + "UNK3": 1505, + "STRINGS4": [ + "Recovers 2000HP", + "Cures poison/blind/burn/freeze" + ], + "UNK4": "0503020303010004030203" + }, + { + "TYPE": "QSCook", + "STRING1": "Berry Tart", + "UNK0": "06004006010046060100480601004a0601004f060100510601000f2700000f270000f605", + "STRINGS1": [ + "Recovers 2800HP", + "Cures petrify" + ], + "UNK1": 1546, + "STRINGS2": [ + "Recovers 1800HP", + "Cures petrify" + ], + "UNK2": 1564, + "STRINGS3": [ + "Recovers 1200HP", + "ATS+25% (5 turns)" + ], + "UNK3": 1506, + "STRINGS4": [ + "Recovers 2400HP", + "Cures freeze/petrify" + ], + "UNK4": "0501020303000303040204" + }, + { + "TYPE": "QSCook", + "STRING1": "Milk Porridge", + "UNK0": "07004106010042060100450601004a0601004d0601004e0601000f2700000f270000f705", + "STRINGS1": [ + "Recovers 2600HP", + "DEF/ADF+25% (5 turns)" + ], + "UNK1": 1547, + "STRINGS2": [ + "Recovers 1800HP", + "DEF/ADF+25% (3 turns)" + ], + "UNK2": 1565, + "STRINGS3": [ + "Recovers 800HP", + "DEF/ADF+50% (3 turns)" + ], + "UNK3": 1507, + "STRINGS4": [ + "Recovers 1200HP", + "STR/ATS+25% (5 turns)" + ], + "UNK4": "0502030001020402010303" + }, + { + "TYPE": "QSCook", + "STRING1": "Crispy Pizza", + "UNK0": "08004206010043060100440601004a0601004c060100510601000f2700000f270000f805", + "STRINGS1": [ + "Recovers 2000HP/Restores 25CP", + "Cures stat down" + ], + "UNK1": 1548, + "STRINGS2": [ + "Recovers 1200HP/Restores 15CP", + " " + ], + "UNK2": 1566, + "STRINGS3": [ + "Restores 50EP", + "Magic Reflect (once)" + ], + "UNK3": 1508, + "STRINGS4": [ + "Recovers 2400HP/Restores 25CP", + "DEF/SPD+25% (3 turns)" + ], + "UNK4": "0004030402030203010302" + }, + { + "TYPE": "QSCook", + "STRING1": "Roasted Coffee", + "UNK0": "0900430601004a0601004f060100500601000f2700000f2700000f2700000f270000f905", + "STRINGS1": [ + "Recovers 3000HP", + "Cures sleep/nightmare" + ], + "UNK1": 1549, + "STRINGS2": [ + "Recovers 1600HP", + "Cures sleep/nightmare" + ], + "UNK2": 1567, + "STRINGS3": [ + "Restores 250EP", + " " + ], + "UNK3": 1509, + "STRINGS4": [ + "Recovers 2400HP", + "Cures sleep/nightmare/faint/confuse" + ], + "UNK4": "0503040300030202030401" + }, + { + "TYPE": "QSCook", + "STRING1": "Tomato Gratin", + "UNK0": "0a004206010045060100470601004e06010050060100510601000f2700000f270000fa05", + "STRINGS1": [ + "Recovers 2800HP/Restores 40CP", + " " + ], + "UNK1": 1550, + "STRINGS2": [ + "Recovers 2400HP/Restores 20CP", + " " + ], + "UNK2": 1568, + "STRINGS3": [ + "Recovers 200HP/Restores 50CP", + " " + ], + "UNK3": 1510, + "STRINGS4": [ + "Recovers 2000HP/Restores 25CP", + "ATS+50% (3 turns)" + ], + "UNK4": "0502010303000304030203" + }, + { + "TYPE": "QSCook", + "STRING1": "Fried Fish", + "UNK0": "0b0040060100490601004a0601004d060200500601000f2700000f2700000f270000fb05", + "STRINGS1": [ + "Recovers 4000HP", + "SPD+25% (5 turns)" + ], + "UNK1": 1551, + "STRINGS2": [ + "Recovers 3000HP", + "SPD+25% (3 turns)" + ], + "UNK2": 1577, + "STRINGS3": [ + "[Attack (Set) - Area (S)]", + "(Power C) Burn (50%)" + ], + "UNK3": 1511, + "STRINGS4": [ + "Recovers 3600HP", + "SPD+50% (3 turns)" + ], + "UNK4": "0503030104030200010402" + }, + { + "TYPE": "QSCook", + "STRING1": "Custard Pudding", + "UNK0": "0c004006020041060100480601004f0602000f2700000f2700000f2700000f270000fc05", + "STRINGS1": [ + "Recovers 2600HP", + "ATS/ADF+25% (5 turns)" + ], + "UNK1": 1552, + "STRINGS2": [ + "Recovers 1800HP", + "ATS/ADF+25% (3 turns)" + ], + "UNK2": 1569, + "STRINGS3": [ + "Recovers 600HP", + "Insight (5 turns)" + ], + "UNK3": 1512, + "STRINGS4": [ + "Recovers 1400HP", + "STR/DEF/ATS/ADF+25% (4 turns)" + ], + "UNK4": "0501000302020404030103" + }, + { + "TYPE": "QSCook", + "STRING1": "Refreshing Pasta Soup", + "UNK0": "0d0043060100490601004a0601004b0601004d0602004e0602000f2700000f270000fd05", + "STRINGS1": [ + "Recovers 3000HP/Restores 150EP", + "Cures burn" + ], + "UNK1": 1553, + "STRINGS2": [ + "Recovers 2600HP/Restores 50EP", + "Cures burn" + ], + "UNK2": 1570, + "STRINGS3": [ + "Recovers 2400HP", + "STR/SPD+25% (3 turns)" + ], + "UNK3": 1513, + "STRINGS4": [ + "Recovers 1800HP/Restores 100EP", + "Cures abnormal status" + ], + "UNK4": "0503030102020004040303" + }, + { + "TYPE": "QSCook", + "STRING1": "Hashed Beef Rice", + "UNK0": "0e004406010045060100470601004a0601004c060200500602000f2700000f270000fe05", + "STRINGS1": [ + "Recovers 5000HP/Restores 15CP", + "ATS/SPD+25% (3 turns)" + ], + "UNK1": 1554, + "STRINGS2": [ + "Recovers 3000HP/Restores 10CP", + "SPD+25% (3 turns)" + ], + "UNK2": 1578, + "STRINGS3": [ + "[Attack (Set) - Area (S)]", + "(Power B) Delay+20" + ], + "UNK3": 1514, + "STRINGS4": [ + "Recovers 3600HP/Restores 20CP", + "DEF/ADF+50% (3 turns)" + ], + "UNK4": "0503020303010404030002" + }, + { + "TYPE": "QSCook", + "STRING1": "Stamina Steak", + "UNK0": "0f0043060100490601004c0601004e06010050060100510601000f2700000f270000ff05", + "STRINGS1": [ + "Recovers 5600HP", + "STR/DEF+25% (5 turns)" + ], + "UNK1": 1555, + "STRINGS2": [ + "Recovers 3600HP", + "STR/DEF+25% (3 turns)" + ], + "UNK2": 1571, + "STRINGS3": [ + "Recovers 1000HP", + "Physical Immunity (once)" + ], + "UNK3": 1515, + "STRINGS4": [ + "Recovers 5200HP", + "STR+50% (5 turns)" + ], + "UNK4": "0503040103030302000201" + }, + { + "TYPE": "QSCook", + "STRING1": "Tomato Cocktail", + "UNK0": "1000430601004606010047060100480601004b0602004e0601004f0601000f2700000006", + "STRINGS1": [ + "Recovers 3200HP/Restores 45CP", + " " + ], + "UNK1": 1556, + "STRINGS2": [ + "Recovers 2600HP/Restores 30CP", + " " + ], + "UNK2": 1572, + "STRINGS3": [ + "Restores 300EP/45CP", + " " + ], + "UNK3": 1516, + "STRINGS4": [ + "Recovers 2200HP/Restores 60CP", + " " + ], + "UNK4": "0503020304030101020400" + }, + { + "TYPE": "QSCook", + "STRING1": "Mixed Gelato", + "UNK0": "110040060200410602004306020046060200480602004f060200510601000f2700000106", + "STRINGS1": [ + "Recovers 3200HP/Restores 150EP", + "Cures K.O." + ], + "UNK1": 1557, + "STRINGS2": [ + "Recovers 2000HP/Restores 100EP", + "Cures K.O." + ], + "UNK2": 1573, + "STRINGS3": [ + "Recovers 500HP/Restores 150EP", + "Cures abnormal status/stat down" + ], + "UNK3": 1517, + "STRINGS4": [ + "Recovers 2500HP/Restores 50EP/25CP", + "Cures K.O." + ], + "UNK4": "0502030003020201040203" + }, + { + "TYPE": "QSCook", + "STRING1": "Filling Hotpot", + "UNK0": "1200490601004b0601004c0601004d0601004e0601004f06010050060100510601000206", + "STRINGS1": [ + "Recovers 12000HP", + "STR/ATS/SPD+50% (3 turns)" + ], + "UNK1": 1558, + "STRINGS2": [ + "Recovers 7000HP", + "STR/ATS/SPD+25% (3 turns)" + ], + "UNK2": 1574, + "STRINGS3": [ + "Restores 500EP", + "CP+100 or near death" + ], + "UNK3": 1518, + "STRINGS4": [ + "Recovers 2500HP/Restores 150EP/45CP", + "STR/SPD+50% (5 turns)" + ], + "UNK4": "0003030402030303010401" + }, + { + "TYPE": "QSCook", + "STRING1": "Handmade Hamburger", + "UNK0": "130040060100430601004406020047060100490601004c06020050060100510602000306", + "STRINGS1": [ + "Recovers 10000HP/Restores 20CP", + "STR/DEF+50% (5 turns)" + ], + "UNK1": 1559, + "STRINGS2": [ + "Recovers 6000HP/Restores 10CP", + "STR/DEF+25% (5 turns)" + ], + "UNK2": 1579, + "STRINGS3": [ + "[Attack (Set) - Area (M)]", + "(Power A) Faint (50%)" + ], + "UNK3": 1519, + "STRINGS4": [ + "Recovers 8000HP/Restores 30CP", + "ATS/ADF+50% (5 turns)" + ], + "UNK4": "0500020304010302020403" + } +] \ No newline at end of file diff --git a/text/jsons/t_notefish.json b/text/jsons/t_notefish.json new file mode 100644 index 0000000..f960569 --- /dev/null +++ b/text/jsons/t_notefish.json @@ -0,0 +1,296 @@ +[ + { + "TYPE": "QSFish", + "ID": 24, + "STRING1": "Record", + "UNK0": 0, + "UNK1": [ + 0.0, + 0.0, + 0.0 + ], + "UNK2": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000f2700000000000000000000000000000f2700000000000000000000000000000f27000000000000", + "STRING2": "□", + "UNK3": "0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "QSFish", + "ID": 0, + "STRING1": "Swordtail", + "UNK0": 4, + "UNK1": [ + 1.2000000476837158, + 0.0006000000284984708, + 0.0012000000569969416 + ], + "UNK2": "05000000f4010000fa00000032000000280028001400050000000a000000000000000000c04066660e41f2000a00010000000000104166664e41f2001400020000000000504100008041f2001e0062006300", + "STRING2": "A small fish known for its sharp, sword-like tail fin. \nIt's very aggressive by nature, and will try to \nrepel even the largest intruders from its territory.\nPopular in aquariums due to its beautiful color.", + "UNK3": "06000000803f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "QSFish", + "ID": 1, + "STRING1": "Gray Crab", + "UNK0": 4, + "UNK1": [ + 0.800000011920929, + 0.0006000000284984708, + 0.0012000000569969416 + ], + "UNK2": "0a000000f4010000fa00000032000000280028001400050000000f000000000000000000004166663e414e060100010000000000404166667e414e0602000200000000008041000090414e06030062006300", + "STRING2": "A small crab with a gray carapace. Spends much of its time\nhidden in the shadows of rocks disguised as a small stone,\nmaking it difficult to find. Also popular as a cooking\ningredient, as its shell makes a delicious, mellow stock.", + "UNK3": "0c000000804000000000003f0001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "QSFish", + "ID": 2, + "STRING1": "Kasagin", + "UNK0": 4, + "UNK1": [ + 1.100000023841858, + 0.000699999975040555, + 0.0012000000569969416 + ], + "UNK2": "05000000f4010000fa000000320000002800280014000500000014000000000000000000204166665e41f7000a00010000000000604133338f41f700140002000000000090410000a041f7001e0062006300", + "STRING2": "An attractive small fish with distinctive glistening\nscales. Able to adapt to a variety of water types and\nenvironments. Widely loved by fishermen for the pleasant\nway it tugs on the line.", + "UNK3": "06000000004000000000003f0001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "QSFish", + "ID": 3, + "STRING1": "Crayfish", + "UNK0": 4, + "UNK1": [ + 0.8999999761581421, + 0.0006500000017695129, + 0.0020000000949949026 + ], + "UNK2": "0f000000f4010000fa000000320000002800280014000500000019000000000000000000604133338f41f3000a0001000000000090413333af41f3001400020000000000b0410000c041f3001e005e000000", + "STRING2": "A crustacean with a distinctive red carapace. It rarely\nlets go of bait, making it an extremely easy fish to catch. \nMost Erebonian men have been crayfish fishing at least \nonce when they were younger.", + "UNK3": "0600000040400000000000400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "QSFish", + "ID": 4, + "STRING1": "Anor Carp", + "UNK0": 3, + "UNK1": [ + 1.0, + 0.000699999975040555, + 0.0017999999690800905 + ], + "UNK2": "050000002c010000960000001e000000280028001400070000001e00000000000000000090413333af41f4000f00010000000000b0413333cf41f4001e00020000000000d0410000e041f400320062006300", + "STRING2": "A small fish said to be native to the Anor River. A\ntactical approach is needed to catch one, making it \na fun experience for both beginners and experts. \nMany rate it as the most fun fish of all to catch.", + "UNK3": "0e000000c03f00000000c03f00000000404000000000003f0001000000000000000000000000000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "QSFish", + "ID": 5, + "STRING1": "Rockeater", + "UNK0": 3, + "UNK1": [ + 0.8999999761581421, + 0.0007999999797903001, + 0.0020000000949949026 + ], + "UNK2": "050000002c010000960000001e0000002800280014000500000023000000000000000000b0413333cf41f1000f00010000000000d0413333ef41f1001e00020000000000f04100000042f100320062006300", + "STRING2": "An overly cautious fish that requires a careful\napproach to catch. It is believed to swallow rocks \nto stabilize itself when water levels rise -- it is often \nfound with amberls in their stomachs when caught.", + "UNK3": "0c000000404000000000003f0001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "QSFish", + "ID": 6, + "STRING1": "Carp", + "UNK0": 3, + "UNK1": [ + 1.0, + 0.0008999999845400453, + 0.0024999999441206455 + ], + "UNK2": "0a000000960000002c010000960000002800280014000700000028000000000000000000f0419a9913420000010001000000000014429a992f42000002000200000000003042000048420000030062006300", + "STRING2": "A freshwater fish known for its longevity. There are \nseven officially reported cases of carp living for over \na hundred years, and unconfirmed reports of some \nhaving lived since the Middle Ages.", + "UNK3": "0e009a99993f00000000004000000000003f0001000000400000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "QSFish", + "ID": 7, + "STRING1": "Rainbow Trout", + "UNK0": 2, + "UNK1": [ + 1.0, + 0.0007999999797903001, + 0.0024999999441206455 + ], + "UNK2": "0f0000007d000000fa0000007d0000002800280014000a0000002d00000000000000000008429a992342f9000a0001000000000024429a993f42f9001400020000000000404200005842f9001e0064000000", + "STRING2": "A medium-sized fish that shines with all the colors of the\nrainbow when light reflects off it at the right angle. It\nhas all seven types of sepith in its body, making it\npossible to get rich by catching a really big one.", + "UNK3": "0f009a99993f0000cdcc4c3e0001000000400000cdcc4c3e0001000000400000cdcc4c3e00010000c03f0000000000000000000000000000000000000000" + }, + { + "TYPE": "QSFish", + "ID": 8, + "STRING1": "Salamander", + "UNK0": 3, + "UNK1": [ + 0.800000011920929, + 0.000750000006519258, + 0.0024999999441206455 + ], + "UNK2": "14000000960000002c010000960000002800280014000a0000003200000000000000000018429a9933424f06010001000000000034429a994f424f0602000200000000005042000068424f0603005e000000", + "STRING2": "A medium-sized amphibian that loves to live in stagnant \nwater. Some food connoisseurs praise its taste, but it \nhasn't caught on with the general population because \nof its scarcity and unpleasant appearance.", + "UNK3": "0d000000404000009a99993e0001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "QSFish", + "ID": 9, + "STRING1": "Gluttonous Bass", + "UNK0": 3, + "UNK1": [ + 0.8999999761581421, + 0.0007999999797903001, + 0.003000000026077032 + ], + "UNK2": "0a000000960000002c01000096000000280028001400070000003700000000000000000030429a994b42580201000100000000004c429a9967425d0201000200000000006842000080426002010062006300", + "STRING2": "A fish that feeds on other fish, and has a very large\nmouth relative to its body. Flails wildly when hooked on\na line, resisting until it has no strength to do so,\nmaking it ideal for fishermen who love a battle.", + "UNK3": "0b000000004000000000803f00010000404000000000803f0000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "QSFish", + "ID": 10, + "STRING1": "Trout", + "UNK0": 3, + "UNK1": [ + 1.0, + 0.0008500000112690032, + 0.003000000026077032 + ], + "UNK2": "0f000000960000002c01000096000000280028001400070000003c00000000000000000040429a995b424d0601000100000000005c429a9977424d0602000200000000007842000088424d06030065000000", + "STRING2": "A medium-sized fish covered with steel-blue scales. \nSome say that it is a subspecies of landlocked \nsalmon. Its features differ depending on the region \nit lives in, and some even find their way to the sea.", + "UNK3": "07000000004000000000c03f00000000803f00000000803f0000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "QSFish", + "ID": 11, + "STRING1": "Arowana", + "UNK0": 2, + "UNK1": [ + 1.0, + 0.0008999999845400453, + 0.0031999999191612005 + ], + "UNK2": "0a0000007d000000fa0000007d0000002800280014000a0000004100000000000000000050429a996b42f80019000100000000006c42cdcc8342f8003200020000000000844200009042f8004b0064000000", + "STRING2": "A beautiful medium-sized fish with a red and gold \ncoloring. Far more savage than its appearance would \nsuggest, it targets prey that jumps above the water's \nsurface, jumping dynamically through the air.", + "UNK3": "0e009a99993f00000000c03f00000000803f0001000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "QSFish", + "ID": 12, + "STRING1": "Salmon", + "UNK0": 2, + "UNK1": [ + 1.0, + 0.0010000000474974513, + 0.0035000001080334187 + ], + "UNK2": "14000000190000007d000000fa00000028002800140007000000460000000000000000007042cdcc8b424c0602000100000000008c42cdcc9f424c060300020000000000a0420000b4424c06040065000000", + "STRING2": "An anadromous fish that is born in a river and then \nmigrates to the ocean. When hooked, it uses the \nstrength it has acquired living in the sea to great \neffect, tugging on the line with considerable force.", + "UNK3": "0f000000004000000000003f00000000404000000000003f0001000000000000000000000000000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "QSFish", + "ID": 13, + "STRING1": "Eel", + "UNK0": 2, + "UNK1": [ + 0.800000011920929, + 0.0007999999797903001, + 0.003000000026077032 + ], + "UNK2": "32000000190000007d000000fa0000002800280014000a0000004b0000000000000000009042cdcc8f42f5001e00010000000000a442cdccb742f5003c00020000000000b8420000cc42f5005a005e000000", + "STRING2": "A rare fish with an unpleasant appearance that resembles\na snake. It is covered in a mucous layer that makes it hard \nto hold barehanded. Regarded as having energizing properties \nin Eastern medicine, and effective in fighting off heat.", + "UNK3": "0f000000004000009a99993f0001000040400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "QSFish", + "ID": 14, + "STRING1": "Gold Salmon", + "UNK0": 1, + "UNK1": [ + 0.8999999761581421, + 0.001500000013038516, + 0.0038999998942017555 + ], + "UNK2": "4b0000000f0000004b000000960000002800280014000e00000050000000000000000000a842cdccbb42f6002800010000000000bc42cdcccf42f6005000020000000000d0420000e442f600780064000000", + "STRING2": "A subspecies of salmon with a glistening gold body. Its\nappearance symbolizes wealth and good fortune, making it\nprized by more than just fishermen. It is also said to be\ndelicious, but is so rare that few can confirm this.", + "UNK3": "07000000004000000000803f00010000004000000000003f0001000000000000000000000000000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "QSFish", + "ID": 15, + "STRING1": "Queen Crab", + "UNK0": 2, + "UNK1": [ + 0.6000000238418579, + 0.000750000006519258, + 0.00279999990016222 + ], + "UNK2": "190000001400000064000000c80000002800280014000a00000055000000000000000000b842cdcccb42f3001e00010000000000cc42cdccdf42f3003c00020000000000e0420000f442f3005a0065000000", + "STRING2": "A large crab with a pale red carapace. Far more agile than\nits appearance would suggest, it can catch swimming fish\nin its claws while they are in motion. Its claws are very\nsharp, requiring careful handling even after catching.", + "UNK3": "0f000000404000000000004000000000404000000000003f0001000000000000000000000000000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "QSFish", + "ID": 16, + "STRING1": "Pale Salamander", + "UNK0": 1, + "UNK1": [ + 0.8999999761581421, + 0.0012000000569969416, + 0.004000000189989805 + ], + "UNK2": "640000000f0000004b000000960000002800280014000e0000005a000000000000000000d842cdcceb425c080100010000000000ec42cdccff425f080100020000000000004300000a435d0801005e000000", + "STRING2": "A large amphibian with a glistening pale blue body. Said\nto have healing powers due to its mystical appearance\nand speed in recovering from injuries. While some think\nit a mutated salamander, too few are caught to be sure. ", + "UNK3": "0f009a99993f00000000c03f00009a99993f0000000000400000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "QSFish", + "ID": 17, + "STRING1": "Catfish", + "UNK0": 1, + "UNK1": [ + 1.0, + 0.0010000000474974513, + 0.004000000189989805 + ], + "UNK2": "140000000f0000004b000000960000002800280014000e0000005f000000000000000000f84266e605435c020100010000000000064366e60f435f020100020000000000104300001a437202010065000000", + "STRING2": "A large, savage fish that inhabits stagnant waters. Its\nlong whiskers act as sensors, allowing it to supposedly \ndetect a septium vein's flow. Known for causing an uproar\njust before earthquakes hit.", + "UNK3": "0f000000004000000000003f00000000003f00000000403f00010000803f00000000003f00000000a03f0000000000000000000000000000000000000000" + }, + { + "TYPE": "QSFish", + "ID": 18, + "STRING1": "Invisible Crayfish", + "UNK0": 0, + "UNK1": [ + 0.800000011920929, + 0.001500000013038516, + 0.004000000189989805 + ], + "UNK2": "320000000a00000032000000640000002800280014001200000064000000000000000000024366e60b43f20032000100000000000c4366e61543f2006400020000000000164300002043f20096005e000000", + "STRING2": "A large crustacean that looks like it has been frozen in\nice. It is extremely difficult to spot in water, perhaps\ndue to the water sepith in its body. As a result, despite\nits large size, barely any have ever been caught.", + "UNK3": "0f000000004000000000004000000000403f00010000803f0000000000000000000000000000000000000000000000000000000000000000000000000000" + }, + { + "TYPE": "QSFish", + "ID": 19, + "STRING1": "Giant Swordtail", + "UNK0": 0, + "UNK1": [ + 1.0, + 0.0020000000949949026, + 0.006500000134110451 + ], + "UNK2": "0000000064000000640000006400000000000000640032000000c80000000000000000007f4300007f436d0801000000000000007f4300007f430f2700000000000000007f4300007f430f27000065000000", + "STRING2": "A mutation of the swordtail which has grown larger from\ncountless battles. So elusive most fishermen are lucky to\nmeet one once in their life time. Seen as an embodiment of\nwhat can be achieved when one keeps fighting and winning.", + "UNK3": "0f000000004000009a99993f00000000403f00000000403f00009a99993f00000000403f0001000000000000000000000000000000000000000000000000" + } +] \ No newline at end of file diff --git a/text/jsons/t_notehelp.json b/text/jsons/t_notehelp.json new file mode 100644 index 0000000..c4c22b5 --- /dev/null +++ b/text/jsons/t_notehelp.json @@ -0,0 +1,268 @@ +[ + { + "TYPE": "QSChapter", + "ID": 0, + "STRING": "General" + }, + { + "TYPE": "QSChapter", + "ID": 1, + "STRING": "Combat" + }, + { + "TYPE": "QSChapter", + "ID": 2, + "STRING": "Orbments" + }, + { + "TYPE": "QSChapter", + "ID": 3, + "STRING": "Combat Links" + }, + { + "TYPE": "QSHelp", + "UNK0": 0, + "ID": 0, + "STRING": "Controls" + }, + { + "TYPE": "QSHelp", + "UNK0": 0, + "ID": 1, + "STRING": "Save" + }, + { + "TYPE": "QSHelp", + "UNK0": 0, + "ID": 2, + "STRING": "Navigation" + }, + { + "TYPE": "QSHelp", + "UNK0": 0, + "ID": 3, + "STRING": "Minimap" + }, + { + "TYPE": "QSHelp", + "UNK0": 0, + "ID": 4, + "STRING": "Event Markers" + }, + { + "TYPE": "QSHelp", + "UNK0": 0, + "ID": 41, + "STRING": "AP and Ranks" + }, + { + "TYPE": "QSHelp", + "UNK0": 0, + "ID": 5, + "STRING": "Bonding Events" + }, + { + "TYPE": "QSHelp", + "UNK0": 0, + "ID": 6, + "STRING": "Quick Travel Menu" + }, + { + "TYPE": "QSHelp", + "UNK0": 0, + "ID": 7, + "STRING": "Party Order" + }, + { + "TYPE": "QSHelp", + "UNK0": 0, + "ID": 8, + "STRING": "Party Order 2" + }, + { + "TYPE": "QSHelp", + "UNK0": 0, + "ID": 9, + "STRING": "Link Settings" + }, + { + "TYPE": "QSHelp", + "UNK0": 0, + "ID": 10, + "STRING": "Weapon Customizing" + }, + { + "TYPE": "QSHelp", + "UNK0": 0, + "ID": 11, + "STRING": "Cooking" + }, + { + "TYPE": "QSHelp", + "UNK0": 0, + "ID": 12, + "STRING": "Fishing" + }, + { + "TYPE": "QSHelp", + "UNK0": 0, + "ID": 13, + "STRING": "Curios" + }, + { + "TYPE": "QSHelp", + "UNK0": 1, + "ID": 14, + "STRING": "Encounter Types" + }, + { + "TYPE": "QSHelp", + "UNK0": 1, + "ID": 15, + "STRING": "Turn Order" + }, + { + "TYPE": "QSHelp", + "UNK0": 1, + "ID": 16, + "STRING": "Attacking" + }, + { + "TYPE": "QSHelp", + "UNK0": 1, + "ID": 17, + "STRING": "Crafts" + }, + { + "TYPE": "QSHelp", + "UNK0": 1, + "ID": 18, + "STRING": "S-Crafts" + }, + { + "TYPE": "QSHelp", + "UNK0": 1, + "ID": 19, + "STRING": "Arts" + }, + { + "TYPE": "QSHelp", + "UNK0": 1, + "ID": 20, + "STRING": "Analysis" + }, + { + "TYPE": "QSHelp", + "UNK0": 1, + "ID": 21, + "STRING": "Elemental Efficacy" + }, + { + "TYPE": "QSHelp", + "UNK0": 1, + "ID": 22, + "STRING": "Switching" + }, + { + "TYPE": "QSHelp", + "UNK0": 1, + "ID": 23, + "STRING": "Status Efficacy" + }, + { + "TYPE": "QSHelp", + "UNK0": 1, + "ID": 24, + "STRING": "Abnormal Status" + }, + { + "TYPE": "QSHelp", + "UNK0": 1, + "ID": 25, + "STRING": "Abnormal Status 2" + }, + { + "TYPE": "QSHelp", + "UNK0": 1, + "ID": 26, + "STRING": "Battle Evaluation" + }, + { + "TYPE": "QSHelp", + "UNK0": 1, + "ID": 27, + "STRING": "Statistics" + }, + { + "TYPE": "QSHelp", + "UNK0": 1, + "ID": 28, + "STRING": "AT Bonuses" + }, + { + "TYPE": "QSHelp", + "UNK0": 1, + "ID": 29, + "STRING": "AT Bonuses 2" + }, + { + "TYPE": "QSHelp", + "UNK0": 2, + "ID": 30, + "STRING": "Orbments" + }, + { + "TYPE": "QSHelp", + "UNK0": 2, + "ID": 31, + "STRING": "Master Quartz" + }, + { + "TYPE": "QSHelp", + "UNK0": 2, + "ID": 32, + "STRING": "Quartz" + }, + { + "TYPE": "QSHelp", + "UNK0": 2, + "ID": 33, + "STRING": "Slot Opening" + }, + { + "TYPE": "QSHelp", + "UNK0": 2, + "ID": 34, + "STRING": "Quartz Synthesis" + }, + { + "TYPE": "QSHelp", + "UNK0": 3, + "ID": 35, + "STRING": "Combat Links" + }, + { + "TYPE": "QSHelp", + "UNK0": 3, + "ID": 36, + "STRING": "Link Attacks" + }, + { + "TYPE": "QSHelp", + "UNK0": 3, + "ID": 37, + "STRING": "Weapon Types" + }, + { + "TYPE": "QSHelp", + "UNK0": 3, + "ID": 39, + "STRING": "Rush" + }, + { + "TYPE": "QSHelp", + "UNK0": 3, + "ID": 40, + "STRING": "Burst" + } +] \ No newline at end of file diff --git a/text/jsons/t_notemons.json b/text/jsons/t_notemons.json new file mode 100644 index 0000000..ee83ff9 --- /dev/null +++ b/text/jsons/t_notemons.json @@ -0,0 +1,1011 @@ +[ + { + "TYPE": "QSChapter", + "ID": 65535, + "STRING": "Record" + }, + { + "TYPE": "QSChapter", + "ID": 0, + "STRING": "Thors Academy" + }, + { + "TYPE": "QSChapter", + "ID": 1, + "STRING": "Schoolhouse - 1F" + }, + { + "TYPE": "QSChapter", + "ID": 2, + "STRING": "Schoolhouse - 2F" + }, + { + "TYPE": "QSChapter", + "ID": 3, + "STRING": "Schoolhouse - 3F" + }, + { + "TYPE": "QSChapter", + "ID": 4, + "STRING": "Schoolhouse - 4F" + }, + { + "TYPE": "QSChapter", + "ID": 5, + "STRING": "Schoolhouse - 5F" + }, + { + "TYPE": "QSChapter", + "ID": 6, + "STRING": "Schoolhouse - 6F" + }, + { + "TYPE": "QSChapter", + "ID": 7, + "STRING": "Schoolhouse - 7F" + }, + { + "TYPE": "QSChapter", + "ID": 8, + "STRING": "Celdic Highway" + }, + { + "TYPE": "QSChapter", + "ID": 10, + "STRING": "Lunaria Park" + }, + { + "TYPE": "QSChapter", + "ID": 11, + "STRING": "North Kreuzen Hwy" + }, + { + "TYPE": "QSChapter", + "ID": 12, + "STRING": "Aurochs Canyon" + }, + { + "TYPE": "QSChapter", + "ID": 13, + "STRING": "Bareahard Waterway" + }, + { + "TYPE": "QSChapter", + "ID": 14, + "STRING": "Highlands - South" + }, + { + "TYPE": "QSChapter", + "ID": 15, + "STRING": "Highlands - North" + }, + { + "TYPE": "QSChapter", + "ID": 16, + "STRING": "Ancient Quarry" + }, + { + "TYPE": "QSChapter", + "ID": 17, + "STRING": "Heimdallr Passage" + }, + { + "TYPE": "QSChapter", + "ID": 9, + "STRING": "Mater Park" + }, + { + "TYPE": "QSChapter", + "ID": 18, + "STRING": "Heimdallr Waterway" + }, + { + "TYPE": "QSChapter", + "ID": 19, + "STRING": "Waterway - Depths" + }, + { + "TYPE": "QSChapter", + "ID": 20, + "STRING": "Ebel Highway" + }, + { + "TYPE": "QSChapter", + "ID": 21, + "STRING": "Legram" + }, + { + "TYPE": "QSChapter", + "ID": 22, + "STRING": "Lohengrin Castle" + }, + { + "TYPE": "QSChapter", + "ID": 23, + "STRING": "Garrelia Fortress" + }, + { + "TYPE": "QSChapter", + "ID": 24, + "STRING": "Spina Byroad" + }, + { + "TYPE": "QSChapter", + "ID": 25, + "STRING": "Nortia Highway" + }, + { + "TYPE": "QSChapter", + "ID": 26, + "STRING": "Sachsen Mtn Path" + }, + { + "TYPE": "QSChapter", + "ID": 27, + "STRING": "Sachsen Iron Mine" + }, + { + "TYPE": "QSChapter", + "ID": 28, + "STRING": "Military Factory" + }, + { + "TYPE": "QSChapter", + "ID": 29, + "STRING": "Roer Passage" + }, + { + "TYPE": "QSChapter", + "ID": 30, + "STRING": "Trista Outskirts" + }, + { + "TYPE": "QSChapter", + "ID": 31, + "STRING": "EXTRA" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3133305F6330300000000000" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3133305F6330310000000100" + }, + { + "TYPE": "QSMons", + "UNK": "706C79303131610000000200" + }, + { + "TYPE": "QSMons", + "UNK": "6E70633030350000000300" + }, + { + "TYPE": "QSMons", + "UNK": "6E70633035360000000400" + }, + { + "TYPE": "QSMons", + "UNK": "6E70633035370000000500" + }, + { + "TYPE": "QSMons", + "UNK": "6E70633035380000000600" + }, + { + "TYPE": "QSMons", + "UNK": "706C79303033610000000700" + }, + { + "TYPE": "QSMons", + "UNK": "706C79303037610000000800" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3133305F6330320000000900" + }, + { + "TYPE": "QSMons", + "UNK": "706C79303032610000000A00" + }, + { + "TYPE": "QSMons", + "UNK": "706C79303034620000000B00" + }, + { + "TYPE": "QSMons", + "UNK": "706C79303036610000000C00" + }, + { + "TYPE": "QSMons", + "UNK": "706C79303038610000000D00" + }, + { + "TYPE": "QSMons", + "UNK": "706C79303031610000000E00" + }, + { + "TYPE": "QSMons", + "UNK": "706C79303033620000000F00" + }, + { + "TYPE": "QSMons", + "UNK": "706C79303035610000001000" + }, + { + "TYPE": "QSMons", + "UNK": "706C79303037620000001100" + }, + { + "TYPE": "QSMons", + "UNK": "706C79303131620000001200" + }, + { + "TYPE": "QSMons", + "UNK": "706C79303132610000001300" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3034300001001400" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3030300001001500" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3034320001001600" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3034310001001700" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3030350001001800" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3134300001001900" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3034365F6330300001001A00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3034360001001B00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3135395F6330300001001C00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3131375F6330300002001D00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3134320002001E00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3034350002001F00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3031390002002000" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3134350003002100" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3031350003002200" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3038315F6330300003002300" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3033395F6330300003002400" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3135370004002500" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3034385F6330300004002600" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3034395F6330300004002700" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3031395F6330300004002800" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3035305F6330300004002900" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3134340005002A00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3134365F6330300005002B00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3034315F6330300005002C00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3130380005002D00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3134380006002E00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3030385F6330300006002F00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3134315F6330300006003000" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3037310006003100" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3134370007003200" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3135390007003300" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3136340007003400" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3034365F6330340007003500" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3134355F6330300007003600" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3135375F6330300007003700" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3039385F6330300007003800" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3133395F6330300007003900" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3035305F6330310007003A00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3031355F6330310007003B00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3130385F6330300007003C00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3136350007003D00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3136390007003E00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3030340008003F00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3038310008004000" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3038320008004100" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3038350008004200" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3032320008004300" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3038330008004400" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3032380008004500" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3038380008004600" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3039360008004700" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E313136000A004800" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E303434000A004900" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3034345F633031000A004A00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E303133000A004B00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E303230000A004C00" + }, + { + "TYPE": "QSMons", + "UNK": "6E7063303534000A004D00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E313031000A004E00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E303438000B004F00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E303031000B005000" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E303439000B005100" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E303730000C005200" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E303931000C005300" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E303932000C005400" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E303231000C005500" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3039365F633031000C005600" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E303433000C005700" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E303134000C005800" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E303237000C005900" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3034305F633030000D005A00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3030305F633030000D005B00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3030395F633030000D005C00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3039305F633030000D005D00" + }, + { + "TYPE": "QSMons", + "UNK": "6E7063333530000D006000" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E303733000D005E00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3037335F633030000D005F00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E313337000E006100" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3030345F633030000E006200" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3131385F633030000E006300" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3039315F633030000E006400" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3039325F633030000E006500" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E303032000E006600" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E303939000E006700" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E303239000E006800" + }, + { + "TYPE": "QSMons", + "UNK": "706C7930303961000E006900" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E313139000F006A00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E303933000F006B00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3032325F633031000F006C00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3037305F633030000F006D00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E303138000F006E00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E313033000F006F00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E313339000F007000" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3039370010007100" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3134310010007200" + }, + { + "TYPE": "QSMons", + "UNK": "6E70633338390010007500" + }, + { + "TYPE": "QSMons", + "UNK": "6E70633031390010007600" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3037350010007300" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3037360010007400" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3030390011007700" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3030305F6330310011007800" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3032340011007900" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3134330011007A00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3030305F6330340011007B00" + }, + { + "TYPE": "QSMons", + "UNK": "706C79303030610009007C00" + }, + { + "TYPE": "QSMons", + "UNK": "706C79303034610009007D00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3031360012007E00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3038325F6330300012007F00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3030305F6330320012008000" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3032375F6330300012008100" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3031370012008200" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3133375F6330300013008300" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3033390013008400" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3039350013008500" + }, + { + "TYPE": "QSMons", + "UNK": "6E70633031380013008600" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3131365F6330300014008700" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3030355F6330300014008800" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3032305F6330300014008900" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3039375F6330300014008A00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3030325F6330300014008B00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3031320014008C00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3130320014008D00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3032360014008E00" + }, + { + "TYPE": "QSMons", + "UNK": "6E70633033300015008F00" + }, + { + "TYPE": "QSMons", + "UNK": "6E70633032390015009000" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3030380016009100" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3033300016009200" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3033320016009300" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3034335F6330300016009400" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3032350016009500" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3033370016009600" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3130340017009700" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3130345F6330300017009800" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3032365F6330300017009900" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3132300017009A00" + }, + { + "TYPE": "QSMons", + "UNK": "6E70633337305F6330300017009B00" + }, + { + "TYPE": "QSMons", + "UNK": "6E70633337300017009C00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3132305F6330320017009D00" + }, + { + "TYPE": "QSMons", + "UNK": "6E70633032300017009E00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3039365F6330300018009F00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3034345F633032001800A000" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3032325F633030001800A100" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E303233001800A200" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3032385F633030001800A300" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3131395F633030001800A400" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3038355F633030001900A500" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3030315F633030001900A600" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3034345F633030001900A700" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E303938001900A800" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E313039001A00A900" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E313137001A00AA00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E303037001A00AB00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3032315F633030001A00AC00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3130335F633030001A00AD00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E303930001B00AE00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3032345F633030001B00AF00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3131365F633031001B00B000" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3030305F633033001B00B100" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3034335F633031001B00B200" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3032365F633031001B00B300" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3130345F633031001B00B400" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3130345F633032001B00B500" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3037335F633031001B00B600" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3132305F633031001B00B700" + }, + { + "TYPE": "QSMons", + "UNK": "6E70633337305F633032001B00B900" + }, + { + "TYPE": "QSMons", + "UNK": "6E70633337305F633031001B00BA00" + }, + { + "TYPE": "QSMons", + "UNK": "6E7063303231001B00BB00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E303338001B00BC00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3132305F633030001B00B800" + }, + { + "TYPE": "QSMons", + "UNK": "6E70633031385F633030001B00BD00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3131305F633030001C00BE00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3034325F633030001D00BF00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E313135001D00C000" + }, + { + "TYPE": "QSMons", + "UNK": "6E7063363037001E00C100" + }, + { + "TYPE": "QSMons", + "UNK": "6E7063363038001E00C200" + }, + { + "TYPE": "QSMons", + "UNK": "6E70633630385F633032001E00C300" + }, + { + "TYPE": "QSMons", + "UNK": "6E7063363031001E00C400" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E303036001F00C500" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E30303661001F00C600" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3030365F633030001F00C700" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3030365F63303061001F00C800" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3030365F633031001F00C900" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3030365F63303161001F00CA00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3030365F633032001F00CB00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3030365F63303261001F00CC00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3030365F633033001F00CD00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3030365F63303361001F00CE00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3030365F633034001F00CF00" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3030365F63303461001F00D000" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3030365F633035001F00D100" + }, + { + "TYPE": "QSMons", + "UNK": "6D6F6E3030365F63303561001F00D200" + } +] \ No newline at end of file diff --git a/text/jsons/t_place.json b/text/jsons/t_place.json new file mode 100644 index 0000000..237c0d2 --- /dev/null +++ b/text/jsons/t_place.json @@ -0,0 +1,2626 @@ +[ + { + "TYPE": "PlaceTableData", + "ID": 0, + "UNK0": 0, + "NAMEID": "null", + "STRING1": "---", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 1, + "UNK0": 0, + "NAMEID": "null", + "STRING1": "???", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 34464, + "UNK0": 1, + "NAMEID": "c0000", + "STRING1": "Capital - Station Plaza", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 34564, + "UNK0": 1, + "NAMEID": "c0010", + "STRING1": "Heimdallr Central Station", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 34664, + "UNK0": 1, + "NAMEID": "c0020", + "STRING1": "Railway Military Police - Command Post", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 35464, + "UNK0": 1, + "NAMEID": "c0100", + "STRING1": "Capital - Vainqueur Street", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 35564, + "UNK0": 1, + "NAMEID": "c0110", + "STRING1": "Le Sage Boutique - Head Store", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 35664, + "UNK0": 1, + "NAMEID": "c0120", + "STRING1": "Department Store - Plaza Bifrost", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 35764, + "UNK0": 1, + "NAMEID": "c0130", + "STRING1": "Watson's Weapons & Armor", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 35864, + "UNK0": 1, + "NAMEID": "c0140", + "STRING1": "Imperial Chronicle Building", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 35964, + "UNK0": 1, + "NAMEID": "c0150", + "STRING1": "Lumiere Orbal Factory", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 36464, + "UNK0": 1, + "NAMEID": "c0200", + "STRING1": "Capital - Garnier District", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 36564, + "UNK0": 1, + "NAMEID": "c0210", + "STRING1": "Heimdallr Opera House", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 36664, + "UNK0": 1, + "NAMEID": "c0220", + "STRING1": "San Corries Jewelers", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 36764, + "UNK0": 1, + "NAMEID": "c0230", + "STRING1": "Hotel - Der Himmel", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 37464, + "UNK0": 1, + "NAMEID": "c0300", + "STRING1": "Capital - Alto Street", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 37564, + "UNK0": 1, + "NAMEID": "c0310", + "STRING1": "Alto Street - Craig Family Home", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 37764, + "UNK0": 1, + "NAMEID": "c0330", + "STRING1": "Former Guild Branch", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 37964, + "UNK0": 1, + "NAMEID": "c0350", + "STRING1": "Concert Cafe - Etoile", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 38064, + "UNK0": 1, + "NAMEID": "c0360", + "STRING1": "Alto Street - House", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 38464, + "UNK0": 1, + "NAMEID": "c0400", + "STRING1": "Capital - Ost District", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 38564, + "UNK0": 1, + "NAMEID": "c0410", + "STRING1": "Ost District - Regnitz Family Home", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 38764, + "UNK0": 1, + "NAMEID": "c0430", + "STRING1": "Gamgee's Pub", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 38864, + "UNK0": 1, + "NAMEID": "c0440", + "STRING1": "Emmrod's Used Goods", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 38964, + "UNK0": 1, + "NAMEID": "c0450", + "STRING1": "Ost District - House 1", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 39064, + "UNK0": 1, + "NAMEID": "c0460", + "STRING1": "Ost District - House 2", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 39464, + "UNK0": 1, + "NAMEID": "c0500", + "STRING1": "Capital - Heimdallr Port ", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 40464, + "UNK0": 1, + "NAMEID": "c0600", + "STRING1": "Capital - Sankt District", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 40564, + "UNK0": 1, + "NAMEID": "c0610", + "STRING1": "St. Astraia - Rose Garden", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 40664, + "UNK0": 1, + "NAMEID": "c0620", + "STRING1": "St. Astraia - Communion Room", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 41464, + "UNK0": 1, + "NAMEID": "c0700", + "STRING1": "Capital - Mater Park", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 41564, + "UNK0": 1, + "NAMEID": "c0710", + "STRING1": "Crystal Garden", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 42464, + "UNK0": 1, + "NAMEID": "c0800", + "STRING1": "Capital - Dreichels Plaza ", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 43564, + "UNK0": 1, + "NAMEID": "c0910", + "STRING1": "Palace - Chancellor's Office ", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 43664, + "UNK0": 1, + "NAMEID": "c0920", + "STRING1": "★Unused", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 43764, + "UNK0": 1, + "NAMEID": "c0930", + "STRING1": "Valflame Palace - Parlor", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 43864, + "UNK0": 1, + "NAMEID": "c0940", + "STRING1": "Valflame Palace - Audience Chamber", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 43964, + "UNK0": 1, + "NAMEID": "c0950", + "STRING1": "Valflame Palace - Reception Hall", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 44064, + "UNK0": 1, + "NAMEID": "c0960", + "STRING1": "Valflame Palace - Terrace", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 3392, + "UNK0": 3, + "NAMEID": "t0000", + "STRING1": "Thors Military Academy", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 3492, + "UNK0": 3, + "NAMEID": "t0010", + "STRING1": "Main Building 1F", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 3592, + "UNK0": 3, + "NAMEID": "t0020", + "STRING1": "Main Building 2F", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 3692, + "UNK0": 3, + "NAMEID": "t0030", + "STRING1": "Gate of Avalon", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 3702, + "UNK0": 3, + "NAMEID": "t0031", + "STRING1": "Stella Garten", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 3712, + "UNK0": 3, + "NAMEID": "t0032", + "STRING1": "Eastern Teahouse", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 3892, + "UNK0": 3, + "NAMEID": "t0050", + "STRING1": "Gymnasium", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 3992, + "UNK0": 3, + "NAMEID": "t0060", + "STRING1": "Academy - Library", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 4092, + "UNK0": 3, + "NAMEID": "t0070", + "STRING1": "Academy - Auditorium", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 4192, + "UNK0": 3, + "NAMEID": "t0080", + "STRING1": "Student Union Building", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 4292, + "UNK0": 3, + "NAMEID": "t0090", + "STRING1": "Academy - Engineering Building", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 3393, + "UNK0": 3, + "NAMEID": "null", + "STRING1": "Main Building - Rooftop", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 3394, + "UNK0": 3, + "NAMEID": "null", + "STRING1": "Front Gate", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 3395, + "UNK0": 3, + "NAMEID": "null", + "STRING1": "Courtyard", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 5392, + "UNK0": 3, + "NAMEID": "t0200", + "STRING1": "Old Schoolhouse", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 5402, + "UNK0": 3, + "NAMEID": "t0201", + "STRING1": "Old Schoolhouse", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 5492, + "UNK0": 3, + "NAMEID": "t0210", + "STRING1": "Old Schoolhouse - 1F", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 13392, + "UNK0": 3, + "NAMEID": "t1000", + "STRING1": "Trista", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 13492, + "UNK0": 3, + "NAMEID": "t1010", + "STRING1": "Class VII Dormitory", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 13592, + "UNK0": 3, + "NAMEID": "t1020", + "STRING1": "Brandon's General Goods", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 13692, + "UNK0": 3, + "NAMEID": "t1030", + "STRING1": "Keynes' Bookstore", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 13792, + "UNK0": 3, + "NAMEID": "t1040", + "STRING1": "Boutique - Le Sage", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 13892, + "UNK0": 3, + "NAMEID": "t1050", + "STRING1": "Kirsche's Cafe & Inn", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 13992, + "UNK0": 3, + "NAMEID": "t1060", + "STRING1": "Micht's Pawn Shop", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 14092, + "UNK0": 3, + "NAMEID": "t1070", + "STRING1": "Trista - Home", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 14192, + "UNK0": 3, + "NAMEID": "t1080", + "STRING1": "Trista - House", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 14292, + "UNK0": 3, + "NAMEID": "t1090", + "STRING1": "Trista Station", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 14492, + "UNK0": 3, + "NAMEID": "t1110", + "STRING1": "Trista Chapel", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 14592, + "UNK0": 3, + "NAMEID": "t1120", + "STRING1": "Trista Radio Station", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 14892, + "UNK0": 3, + "NAMEID": "t1150", + "STRING1": "Upper Class Dorm", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 14992, + "UNK0": 3, + "NAMEID": "t1160", + "STRING1": "Lower Class Dorm", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 18392, + "UNK0": 3, + "NAMEID": "t1500", + "STRING1": "Celdic, the Market Town", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 18492, + "UNK0": 3, + "NAMEID": "t1510", + "STRING1": "Weathercock Inn", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 18692, + "UNK0": 3, + "NAMEID": "t1530", + "STRING1": "Celdic - Market Manager's House", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 18792, + "UNK0": 3, + "NAMEID": "t1540", + "STRING1": "Celdic - House", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 18892, + "UNK0": 3, + "NAMEID": "t1550", + "STRING1": "Oddvin's Arms & Orbal Factory", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 18992, + "UNK0": 3, + "NAMEID": "t1560", + "STRING1": "Celdic Chapel", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 19092, + "UNK0": 3, + "NAMEID": "t1570", + "STRING1": "Celdic Station", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 18393, + "UNK0": 3, + "NAMEID": "null", + "STRING1": "Provincial Army Guardhouse", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 18394, + "UNK0": 3, + "NAMEID": "null", + "STRING1": "Celdic Grand Market", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 19392, + "UNK0": 3, + "NAMEID": "t1600", + "STRING1": "East Highway - Farmhouse", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 19492, + "UNK0": 3, + "NAMEID": "t1610", + "STRING1": "West Highway - Farmhouse", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 23392, + "UNK0": 3, + "NAMEID": "t2000", + "STRING1": "Bareahard - Station Street", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 23492, + "UNK0": 3, + "NAMEID": "t2010", + "STRING1": "Bareahard Station", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 23592, + "UNK0": 3, + "NAMEID": "t2020", + "STRING1": "Christie's Galleria", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 23393, + "UNK0": 3, + "NAMEID": "null", + "STRING1": "Bareahard Airport", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 24392, + "UNK0": 3, + "NAMEID": "t2100", + "STRING1": "Bareahard Central Plaza", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 24492, + "UNK0": 3, + "NAMEID": "t2110", + "STRING1": "Hotel Esmeralda", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 24592, + "UNK0": 3, + "NAMEID": "t2120", + "STRING1": "Sorciere Restaurant", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 24692, + "UNK0": 3, + "NAMEID": "t2130", + "STRING1": "Bareahard Cathedral", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 25392, + "UNK0": 3, + "NAMEID": "t2200", + "STRING1": "Bareahard - Noble District", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 25492, + "UNK0": 3, + "NAMEID": "t2210", + "STRING1": "Bareahard - Residence 1", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 25592, + "UNK0": 3, + "NAMEID": "t2220", + "STRING1": "Bareahard - Residence 2", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 26392, + "UNK0": 3, + "NAMEID": "t2300", + "STRING1": "Bareahard - Artisans' Street", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 26492, + "UNK0": 3, + "NAMEID": "t2310", + "STRING1": "Davos' Factory", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 26592, + "UNK0": 3, + "NAMEID": "t2320", + "STRING1": "Alouette Inn", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 26692, + "UNK0": 3, + "NAMEID": "t2330", + "STRING1": "Turner's Jewelers", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 26792, + "UNK0": 3, + "NAMEID": "t2340", + "STRING1": "Valenty Tailoring", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 33392, + "UNK0": 3, + "NAMEID": "t3000", + "STRING1": "Legram, the Lakeside Town", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 33492, + "UNK0": 3, + "NAMEID": "t3010", + "STRING1": "Bracer Guild - Legram Branch", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 33592, + "UNK0": 3, + "NAMEID": "t3020", + "STRING1": "Watteau's Store", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 33692, + "UNK0": 3, + "NAMEID": "t3030", + "STRING1": "Legram - House 2", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 33792, + "UNK0": 3, + "NAMEID": "t3040", + "STRING1": "Legram - House 1", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 33892, + "UNK0": 3, + "NAMEID": "t3050", + "STRING1": "Arseid School Training Hall", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 33992, + "UNK0": 3, + "NAMEID": "t3060", + "STRING1": "Viscount Arseid's Mansion", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 34092, + "UNK0": 3, + "NAMEID": "t3070", + "STRING1": "Mansion - Terrace", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 34292, + "UNK0": 3, + "NAMEID": "t3090", + "STRING1": "Legram Chapel", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 34392, + "UNK0": 3, + "NAMEID": "t3100", + "STRING1": "Aprikoze Inn", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 33393, + "UNK0": 3, + "NAMEID": "t3000", + "STRING1": "Legram Station", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 38392, + "UNK0": 3, + "NAMEID": "t3500", + "STRING1": "Roer, the Industrial Metropolis", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 38492, + "UNK0": 3, + "NAMEID": "t3510", + "STRING1": "Reinford Corporate HQ - Entrance Hall", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 38592, + "UNK0": 3, + "NAMEID": "t3520", + "STRING1": "23F - Executive Floor", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 38692, + "UNK0": 3, + "NAMEID": "t3530", + "STRING1": "24F - Reinford Residence", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 38792, + "UNK0": 3, + "NAMEID": "t3540", + "STRING1": "★Unused", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 38892, + "UNK0": 3, + "NAMEID": "t3550", + "STRING1": "Elevator", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 38992, + "UNK0": 3, + "NAMEID": "t3560", + "STRING1": "RF Store", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 39092, + "UNK0": 3, + "NAMEID": "t3570", + "STRING1": "Boronia's General Goods", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 39192, + "UNK0": 3, + "NAMEID": "t3580", + "STRING1": "Dining Bar - F", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 39292, + "UNK0": 3, + "NAMEID": "t3590", + "STRING1": "Roer - Residence 1", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 39392, + "UNK0": 3, + "NAMEID": "t3600", + "STRING1": "RF Arms", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 39492, + "UNK0": 3, + "NAMEID": "t3610", + "STRING1": "Roer Cathedral", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 39592, + "UNK0": 3, + "NAMEID": "t3620", + "STRING1": "Hotel Lagrange", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 39692, + "UNK0": 3, + "NAMEID": "t3630", + "STRING1": "Roer Station", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 40492, + "UNK0": 3, + "NAMEID": "t3710", + "STRING1": "Dvance's Diner", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 40592, + "UNK0": 3, + "NAMEID": "t3720", + "STRING1": "Roer - Residence 2", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 40692, + "UNK0": 3, + "NAMEID": "t3730", + "STRING1": "Jackass' Repair Shop", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 40792, + "UNK0": 3, + "NAMEID": "t3740", + "STRING1": "Roer Institute of Technology", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 40892, + "UNK0": 3, + "NAMEID": "t3750", + "STRING1": "Reinford - Military Factory", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 40992, + "UNK0": 3, + "NAMEID": "t3760", + "STRING1": "Reinford - Military Factory", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 41092, + "UNK0": 3, + "NAMEID": "t3770", + "STRING1": "Reinford - Military Factory", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 41192, + "UNK0": 3, + "NAMEID": "t3780", + "STRING1": "Underground Passage 1", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 41292, + "UNK0": 3, + "NAMEID": "t3790", + "STRING1": "Underground Passage 2", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 42392, + "UNK0": 3, + "NAMEID": "t3900", + "STRING1": "Roer Airport", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 43392, + "UNK0": 3, + "NAMEID": "t4000", + "STRING1": "Ymir, the Hot Springs Paradise", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 43592, + "UNK0": 3, + "NAMEID": "t4020", + "STRING1": "Daily & Souvenir Store - Plover", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 43692, + "UNK0": 3, + "NAMEID": "t4030", + "STRING1": "Tavern - Valley's Echo", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 43792, + "UNK0": 3, + "NAMEID": "t4040", + "STRING1": "Baron Schwarzer's Mansion", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 43992, + "UNK0": 3, + "NAMEID": "t4060", + "STRING1": "The Phoenix Wings", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 44092, + "UNK0": 3, + "NAMEID": "t4070", + "STRING1": "The Phoenix Wings - Indoor Bathhouse", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 44192, + "UNK0": 3, + "NAMEID": "t4080", + "STRING1": "The Phoenix Wings - Outdoor Hot Spring", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 44292, + "UNK0": 3, + "NAMEID": "t4090", + "STRING1": "Ymir Chapel", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 44392, + "UNK0": 3, + "NAMEID": "t4100", + "STRING1": "Ymir - House", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 48392, + "UNK0": 3, + "NAMEID": "t4500", + "STRING1": "Nomadic Settlement", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 48492, + "UNK0": 3, + "NAMEID": "t4510", + "STRING1": "Settlement - Worzel Home", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 48592, + "UNK0": 3, + "NAMEID": "t4520", + "STRING1": "Settlement - Lodging Yurt", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 48692, + "UNK0": 3, + "NAMEID": "t4530", + "STRING1": "Settlement - Elder's Home", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 48792, + "UNK0": 3, + "NAMEID": "t4540", + "STRING1": "Settlement - Trading Post", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 48892, + "UNK0": 3, + "NAMEID": "t4550", + "STRING1": "Settlement - Doctor's Home", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 49392, + "UNK0": 3, + "NAMEID": "t4600", + "STRING1": "Highlands - Lake Lacrima", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 49492, + "UNK0": 3, + "NAMEID": "t4610", + "STRING1": "Lake Cabin", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 50392, + "UNK0": 3, + "NAMEID": "t4700", + "STRING1": "Imperial Army - Watchtower", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 51492, + "UNK0": 3, + "NAMEID": "t4810", + "STRING1": "Imperial Border - Zender Gate", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 53392, + "UNK0": 3, + "NAMEID": "t5000", + "STRING1": "Provincial Army - Aurochs Fort", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 53492, + "UNK0": 3, + "NAMEID": "t5010", + "STRING1": "Rest Area - Crescent Moon", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 58392, + "UNK0": 3, + "NAMEID": "t5500", + "STRING1": "Imperial Army Base - Garrelia Fortress", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 58492, + "UNK0": 3, + "NAMEID": "t5510", + "STRING1": "Fortress - Motor Pool", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 58592, + "UNK0": 3, + "NAMEID": "t5520", + "STRING1": "Garrelia Fortress - Command Area", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 58692, + "UNK0": 3, + "NAMEID": "t5530", + "STRING1": "Fortress - Central Freight Platform", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 59492, + "UNK0": 3, + "NAMEID": "t5610", + "STRING1": "Fortress - Storage Floor 1", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 59592, + "UNK0": 3, + "NAMEID": "t5620", + "STRING1": "Fortress - Barracks", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 59692, + "UNK0": 3, + "NAMEID": "t5630", + "STRING1": "Fortress - Storage Floor 2", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 59792, + "UNK0": 3, + "NAMEID": "t5640", + "STRING1": "Fortress - Relay Area", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 59992, + "UNK0": 3, + "NAMEID": "t5660", + "STRING1": "Fortress - Crossbell Side", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 60392, + "UNK0": 3, + "NAMEID": "t5700", + "STRING1": "Garrelia Fortress - Training Grounds", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 37856, + "UNK0": 4, + "NAMEID": "r0000", + "STRING1": "West Celdic Highway 1", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 37857, + "UNK0": 4, + "NAMEID": "r0000", + "STRING1": "★Unused", + "STRING2": "I_PLACE999" + }, + { + "TYPE": "PlaceTableData", + "ID": 37956, + "UNK0": 4, + "NAMEID": "r0010", + "STRING1": "West Celdic Highway 2", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 38056, + "UNK0": 4, + "NAMEID": "r0020", + "STRING1": "East Celdic Highway 1", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 38156, + "UNK0": 4, + "NAMEID": "r0030", + "STRING1": "East Celdic Highway 2", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 38856, + "UNK0": 4, + "NAMEID": "r0100", + "STRING1": "North Kreuzen Highway", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 39156, + "UNK0": 4, + "NAMEID": "r0130", + "STRING1": "★Unused", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 39856, + "UNK0": 4, + "NAMEID": "r0200", + "STRING1": "Aurochs Canyon Path 1", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 39956, + "UNK0": 4, + "NAMEID": "r0210", + "STRING1": "Aurochs Canyon Path 2", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 40056, + "UNK0": 4, + "NAMEID": "r0220", + "STRING1": "Aurochs Canyon Path 3", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 40856, + "UNK0": 4, + "NAMEID": "r0300", + "STRING1": "Ebel Highway 1", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 40956, + "UNK0": 4, + "NAMEID": "r0310", + "STRING1": "Ebel Highway 2", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 41856, + "UNK0": 4, + "NAMEID": "r0400", + "STRING1": "Spina Byroad", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 41956, + "UNK0": 4, + "NAMEID": "r0410", + "STRING1": "Nortia Highway", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 42056, + "UNK0": 4, + "NAMEID": "r0420", + "STRING1": "Sachsen Mountain Path 1", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 42156, + "UNK0": 4, + "NAMEID": "r0430", + "STRING1": "Sachsen Mountain Path 2", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 42856, + "UNK0": 4, + "NAMEID": "r0500", + "STRING1": "Ymir Canyon Path 1", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 42956, + "UNK0": 4, + "NAMEID": "r0510", + "STRING1": "Ymir Canyon Path 2", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 43056, + "UNK0": 4, + "NAMEID": "r0520", + "STRING1": "Canyon Path - End", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 43856, + "UNK0": 4, + "NAMEID": "r0600", + "STRING1": "West Trista Highway", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 43956, + "UNK0": 4, + "NAMEID": "r0610", + "STRING1": "East Trista Highway", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 45856, + "UNK0": 4, + "NAMEID": "r0800", + "STRING1": "Nord Highlands - South", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 45956, + "UNK0": 4, + "NAMEID": "r0810", + "STRING1": "Nord Highlands - North", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 6884, + "UNK0": 6, + "NAMEID": "m0010", + "STRING1": "Lunaria Nature Park 1", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 6885, + "UNK0": 6, + "NAMEID": "n", + "STRING1": "Lunaria Nature Park", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 6984, + "UNK0": 6, + "NAMEID": "m0020", + "STRING1": "Lunaria Nature Park 2", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 7084, + "UNK0": 6, + "NAMEID": "m0030", + "STRING1": "Lunaria Nature Park 3", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 7184, + "UNK0": 6, + "NAMEID": "m0040", + "STRING1": "Nature Park - Depths", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 11784, + "UNK0": 6, + "NAMEID": "m0500", + "STRING1": "Underground Waterway 1", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 11884, + "UNK0": 6, + "NAMEID": "m0510", + "STRING1": "Underground Waterway 2", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 11984, + "UNK0": 6, + "NAMEID": "m0520", + "STRING1": "Underground Waterway 3", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 12084, + "UNK0": 6, + "NAMEID": "m0530", + "STRING1": "Provincial Army Guardhouse - Underground", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 16784, + "UNK0": 6, + "NAMEID": "m1000", + "STRING1": "Lohengrin Castle - Outside", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 16794, + "UNK0": 6, + "NAMEID": "m1001", + "STRING1": "Lake Ebel", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 16884, + "UNK0": 6, + "NAMEID": "m1010", + "STRING1": "Lohengrin Castle - Entrance Hall", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 16984, + "UNK0": 6, + "NAMEID": "m1020", + "STRING1": "Lohengrin Castle - Left Wing", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 17084, + "UNK0": 6, + "NAMEID": "m1030", + "STRING1": "Lohengrin Castle - Right Wing", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 17184, + "UNK0": 6, + "NAMEID": "m1040", + "STRING1": "Lohengrin Castle - External Corridor 1", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 17284, + "UNK0": 6, + "NAMEID": "m1050", + "STRING1": "Lohengrin Castle - External Corridor 2", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 17384, + "UNK0": 6, + "NAMEID": "m1060", + "STRING1": "Lohengrin Castle - Staircase", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 17484, + "UNK0": 6, + "NAMEID": "m1070", + "STRING1": "Lohengrin Castle - Keep", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 18784, + "UNK0": 6, + "NAMEID": "m1200", + "STRING1": "Sachsen Iron Mine - Outside", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 18884, + "UNK0": 6, + "NAMEID": "m1210", + "STRING1": "Sachsen Iron Mine - Delivery Area", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 18984, + "UNK0": 6, + "NAMEID": "m1220", + "STRING1": "Sachsen Iron Mine - Delivery Area", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 19084, + "UNK0": 6, + "NAMEID": "m1230", + "STRING1": "Sachsen Iron Mine - Shaft 3", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 19184, + "UNK0": 6, + "NAMEID": "m1240", + "STRING1": "Sachsen Iron Mine - Relay Area", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 19284, + "UNK0": 6, + "NAMEID": "m1250", + "STRING1": "--------------------", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 19384, + "UNK0": 6, + "NAMEID": "m1260", + "STRING1": "Central Control Room - Front", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 21784, + "UNK0": 6, + "NAMEID": "m1500", + "STRING1": "Highlands - Ancient Quarry", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 21884, + "UNK0": 6, + "NAMEID": "m1510", + "STRING1": "--------------------", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 21984, + "UNK0": 6, + "NAMEID": "m1520", + "STRING1": "--------------------", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 22184, + "UNK0": 6, + "NAMEID": "m1540", + "STRING1": "Ancient Quarry - Interior", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 26784, + "UNK0": 6, + "NAMEID": "m2000", + "STRING1": "Heimdallr Underground Passage 1", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 26794, + "UNK0": 6, + "NAMEID": "m2001", + "STRING1": "Heimdallr Underground Passage 2", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 26804, + "UNK0": 6, + "NAMEID": "m2002", + "STRING1": "0", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 26834, + "UNK0": 6, + "NAMEID": "m2005", + "STRING1": "Heimdallr Underground Passage 3", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 26984, + "UNK0": 6, + "NAMEID": "m2020", + "STRING1": "Heimdallr Underground Waterway 1", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 26994, + "UNK0": 6, + "NAMEID": "m2021", + "STRING1": "Heimdallr Underground Waterway 2", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 27004, + "UNK0": 6, + "NAMEID": "m2022", + "STRING1": "Heimdallr Underground Waterway 3", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 27784, + "UNK0": 6, + "NAMEID": "m2100", + "STRING1": "--------------------", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 27884, + "UNK0": 6, + "NAMEID": "m2110", + "STRING1": "--------------------", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 27984, + "UNK0": 6, + "NAMEID": "m2120", + "STRING1": "--------------------", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 28084, + "UNK0": 6, + "NAMEID": "m2130", + "STRING1": "Heimdallr Underground Waterway Depths", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 31784, + "UNK0": 6, + "NAMEID": "m2500", + "STRING1": "Old Schoolhouse - Underground Area 1", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 31794, + "UNK0": 6, + "NAMEID": "m2501", + "STRING1": "Old Schoolhouse - Underground Area 2", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 31804, + "UNK0": 6, + "NAMEID": "m2502", + "STRING1": "Old Schoolhouse - Underground Area 3", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 31814, + "UNK0": 6, + "NAMEID": "m2503", + "STRING1": "Old Schoolhouse - Stairway Room", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 31824, + "UNK0": 6, + "NAMEID": "m2504", + "STRING1": "Old Schoolhouse - Elevator Room", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 31834, + "UNK0": 6, + "NAMEID": "m2505", + "STRING1": "Old Schoolhouse - Stairway Room", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 31884, + "UNK0": 6, + "NAMEID": "m2510", + "STRING1": "Old Schoolhouse - Floor 1", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 31894, + "UNK0": 6, + "NAMEID": "m2511", + "STRING1": "Floor 1 - Main Area", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 31904, + "UNK0": 6, + "NAMEID": "m2512", + "STRING1": "Floor 1 - Depths", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 31984, + "UNK0": 6, + "NAMEID": "m2520", + "STRING1": "Old Schoolhouse - Floor 2", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 31994, + "UNK0": 6, + "NAMEID": "m2521", + "STRING1": "Floor 2 - Main Area", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 32004, + "UNK0": 6, + "NAMEID": "m2522", + "STRING1": "Floor 2 - Depths", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 32084, + "UNK0": 6, + "NAMEID": "m2530", + "STRING1": "Old Schoolhouse - Floor 3", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 32094, + "UNK0": 6, + "NAMEID": "m2531", + "STRING1": "Floor 3 - Area 1", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 32104, + "UNK0": 6, + "NAMEID": "m2532", + "STRING1": "Floor 3 - Area 2", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 32114, + "UNK0": 6, + "NAMEID": "m2533", + "STRING1": "Floor 3 - Depths", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 32184, + "UNK0": 6, + "NAMEID": "m2540", + "STRING1": "Old Schoolhouse - Floor 4", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 32194, + "UNK0": 6, + "NAMEID": "m2541", + "STRING1": "Floor 4 - Area 1", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 32204, + "UNK0": 6, + "NAMEID": "m2542", + "STRING1": "Floor 4 - Area 2", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 32214, + "UNK0": 6, + "NAMEID": "m2543", + "STRING1": "Floor 4 - Depths", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 32284, + "UNK0": 6, + "NAMEID": "m2550", + "STRING1": "Old Schoolhouse - Floor 5", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 32294, + "UNK0": 6, + "NAMEID": "m2551", + "STRING1": "Floor 5 - Area 1", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 32304, + "UNK0": 6, + "NAMEID": "m2552", + "STRING1": "Floor 5 - Area 2", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 32314, + "UNK0": 6, + "NAMEID": "m2553", + "STRING1": "Floor 5 - Depths", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 32384, + "UNK0": 6, + "NAMEID": "m2560", + "STRING1": "Old Schoolhouse - Floor 6", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 32394, + "UNK0": 6, + "NAMEID": "m2561", + "STRING1": "Floor 6 - Area 1", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 32404, + "UNK0": 6, + "NAMEID": "m2562", + "STRING1": "Floor 6 - Area 2", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 32414, + "UNK0": 6, + "NAMEID": "m2563", + "STRING1": "Floor 6 - Depths", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 36784, + "UNK0": 6, + "NAMEID": "m3000", + "STRING1": "Old Schoolhouse - Floor 7", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 36794, + "UNK0": 6, + "NAMEID": "m3001", + "STRING1": "Realm of the Great Shadow 1", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 36804, + "UNK0": 6, + "NAMEID": "m3002", + "STRING1": "Realm of the Great Shadow 2", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 36814, + "UNK0": 6, + "NAMEID": "m3003", + "STRING1": "Realm of the Great Shadow 3", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 36824, + "UNK0": 6, + "NAMEID": "m3004", + "STRING1": "Realm of the Great Shadow 1", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 36834, + "UNK0": 6, + "NAMEID": "m3005", + "STRING1": "★Unused", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 36844, + "UNK0": 6, + "NAMEID": "m3006", + "STRING1": "★Unused", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 36854, + "UNK0": 6, + "NAMEID": "m3007", + "STRING1": "Otherworldly Battlefield", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 36864, + "UNK0": 6, + "NAMEID": "m3008", + "STRING1": "Floor 7 - Depths", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 46784, + "UNK0": 6, + "NAMEID": "e2000", + "STRING1": "Courageous - Deck", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 46785, + "UNK0": 6, + "NAMEID": "null", + "STRING1": "Courageous - Front Deck", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 46786, + "UNK0": 6, + "NAMEID": "null", + "STRING1": "Courageous - Rear Deck", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 46794, + "UNK0": 6, + "NAMEID": "e7010", + "STRING1": "Courageous - Inside", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 46795, + "UNK0": 6, + "NAMEID": "null", + "STRING1": "Courageous - 5F Bridge", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 46796, + "UNK0": 6, + "NAMEID": "null", + "STRING1": "Courageous - 3F Junction Area", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 46797, + "UNK0": 6, + "NAMEID": "null", + "STRING1": "Courageous - 1F Hold", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 46884, + "UNK0": 6, + "NAMEID": "e5410", + "STRING1": "Orbal Tram", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 46894, + "UNK0": 6, + "NAMEID": "e5010", + "STRING1": "Orbal Train", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 46895, + "UNK0": 6, + "NAMEID": "e5011", + "STRING1": "Orbal Train", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 46896, + "UNK0": 6, + "NAMEID": "e5012", + "STRING1": "Orbal Train", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 56784, + "UNK0": 6, + "NAMEID": "null", + "STRING1": "Trista - River", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 56785, + "UNK0": 6, + "NAMEID": "null", + "STRING1": "Old Schoolhouse - 1F", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 56786, + "UNK0": 6, + "NAMEID": "null", + "STRING1": "Old Schoolhouse - 3F", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 56787, + "UNK0": 6, + "NAMEID": "null", + "STRING1": "Old Schoolhouse - 4F", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 56788, + "UNK0": 6, + "NAMEID": "null", + "STRING1": "Old Schoolhouse - 5F", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 56789, + "UNK0": 6, + "NAMEID": "null", + "STRING1": "Old Schoolhouse - 6F", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 56790, + "UNK0": 6, + "NAMEID": "null", + "STRING1": "Trista - Pond", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 56791, + "UNK0": 6, + "NAMEID": "null", + "STRING1": "East Celdic Highway", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 56792, + "UNK0": 6, + "NAMEID": "null", + "STRING1": "West Celdic Highway", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 56793, + "UNK0": 6, + "NAMEID": "null", + "STRING1": "Bareahard Central Plaza", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 56794, + "UNK0": 6, + "NAMEID": "null", + "STRING1": "North Kreuzen Highway", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 56795, + "UNK0": 6, + "NAMEID": "null", + "STRING1": "Highlands - Lake Lacrima", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 56796, + "UNK0": 6, + "NAMEID": "null", + "STRING1": "Nord Highlands - North", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 56797, + "UNK0": 6, + "NAMEID": "null", + "STRING1": "Capital - Dreichels Plaza ", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 56798, + "UNK0": 6, + "NAMEID": "null", + "STRING1": "Capital - Mater Park", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 56799, + "UNK0": 6, + "NAMEID": "null", + "STRING1": "Capital - Heimdallr Port ", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 56800, + "UNK0": 6, + "NAMEID": "null", + "STRING1": "Heimdallr Underground Waterway", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 56801, + "UNK0": 6, + "NAMEID": "null", + "STRING1": "Ebel Highway", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 56802, + "UNK0": 6, + "NAMEID": "null", + "STRING1": "Legram, the Lakeside Town", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 56803, + "UNK0": 6, + "NAMEID": "null", + "STRING1": "Spina Byroad", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 56804, + "UNK0": 6, + "NAMEID": "null", + "STRING1": "Sachsen Mountain Path", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 10, + "UNK0": 0, + "NAMEID": "null", + "STRING1": "Prologue - The Way to Thors", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 11, + "UNK0": 0, + "NAMEID": "null", + "STRING1": "Chapter 1 - Unconventional Studies", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 12, + "UNK0": 0, + "NAMEID": "null", + "STRING1": "Chapter 2 - The Verdant City", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 13, + "UNK0": 0, + "NAMEID": "null", + "STRING1": "Chapter 3 - Beyond the Railways", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 14, + "UNK0": 0, + "NAMEID": "null", + "STRING1": "Chapter 4 - A Midsummer's Revels", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 15, + "UNK0": 0, + "NAMEID": "null", + "STRING1": "Chapter 5 - Signs and Omens", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 16, + "UNK0": 0, + "NAMEID": "null", + "STRING1": "Chapter 6 - Progressive Chaos", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 18, + "UNK0": 0, + "NAMEID": "null", + "STRING1": "Final Chapter - Put to the Test", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 20, + "UNK0": 0, + "NAMEID": "null", + "STRING1": "Prologue - End", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 21, + "UNK0": 0, + "NAMEID": "null", + "STRING1": "Chapter 1 - End", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 22, + "UNK0": 0, + "NAMEID": "null", + "STRING1": "Chapter 2 - End", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 23, + "UNK0": 0, + "NAMEID": "null", + "STRING1": "Chapter 3 - End", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 24, + "UNK0": 0, + "NAMEID": "null", + "STRING1": "Chapter 4 - End", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 25, + "UNK0": 0, + "NAMEID": "null", + "STRING1": "Chapter 5 - End", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 26, + "UNK0": 0, + "NAMEID": "null", + "STRING1": "Chapter 6 - End", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 28, + "UNK0": 0, + "NAMEID": "null", + "STRING1": "Final Chapter - End ★ Clear Data", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 29, + "UNK0": 0, + "NAMEID": "null", + "STRING1": "Final Chapter - Afterparty", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 31, + "UNK0": 0, + "NAMEID": "null", + "STRING1": "Chapter 1 - Practical Exam", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 32, + "UNK0": 0, + "NAMEID": "null", + "STRING1": "Chapter 2 - Practical Exam", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 33, + "UNK0": 0, + "NAMEID": "null", + "STRING1": "Chapter 3 - Practical Exam", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 34, + "UNK0": 0, + "NAMEID": "null", + "STRING1": "Chapter 4 - Practical Exam", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 35, + "UNK0": 0, + "NAMEID": "null", + "STRING1": "Chapter 5 - Practical Exam", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 36, + "UNK0": 0, + "NAMEID": "null", + "STRING1": "Chapter 6 - Practical Exam", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 37, + "UNK0": 0, + "NAMEID": "null", + "STRING1": "Chapter 3 - Field Study Day 2 - End", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 38, + "UNK0": 0, + "NAMEID": "null", + "STRING1": "Chapter 3 - Arrested the Culprits", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 39, + "UNK0": 0, + "NAMEID": "null", + "STRING1": "Chapter 4 - End of Free Day", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 40, + "UNK0": 0, + "NAMEID": "null", + "STRING1": "Chapter 4 - Met with Prince Olivert", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 41, + "UNK0": 0, + "NAMEID": "null", + "STRING1": "Chapter 5 - Fortress Day 1 - End", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 42, + "UNK0": 0, + "NAMEID": "null", + "STRING1": "Final Chapter - Day before the Festival", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 43, + "UNK0": 0, + "NAMEID": "null", + "STRING1": "Final Chapter - Festival Day 1 - End", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 44, + "UNK0": 0, + "NAMEID": "null", + "STRING1": "Final Chapter - Before Class VII's Concert", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 45, + "UNK0": 0, + "NAMEID": "null", + "STRING1": "Final Chapter - The Chancellor's Address", + "STRING2": "n" + }, + { + "TYPE": "PlaceTableData", + "ID": 46, + "UNK0": 0, + "NAMEID": "null", + "STRING1": "Final Chapter - Battle for Trista", + "STRING2": "n" + } +] \ No newline at end of file diff --git a/text/jsons/t_quest.json b/text/jsons/t_quest.json new file mode 100644 index 0000000..5511018 --- /dev/null +++ b/text/jsons/t_quest.json @@ -0,0 +1,3626 @@ +[ + { + "TYPE": "QSRank", + "ID": 0, + "STRING": "Rank B7", + "UNK0": "00000f270f27" + }, + { + "TYPE": "QSRank", + "ID": 1, + "STRING": "Rank B6", + "UNK0": "140009090f27" + }, + { + "TYPE": "QSRank", + "ID": 2, + "STRING": "Rank B5", + "UNK0": "2d0063020f27" + }, + { + "TYPE": "QSRank", + "ID": 3, + "STRING": "Rank B4", + "UNK0": "460044080f27" + }, + { + "TYPE": "QSRank", + "ID": 4, + "STRING": "Rank B3", + "UNK0": "640064020f27" + }, + { + "TYPE": "QSRank", + "ID": 5, + "STRING": "Rank B2", + "UNK0": "82008c080f27" + }, + { + "TYPE": "QSRank", + "ID": 6, + "STRING": "Rank B1", + "UNK0": "a00065020f27" + }, + { + "TYPE": "QSRank", + "ID": 7, + "STRING": "Rank A7", + "UNK0": "be00b0080f27" + }, + { + "TYPE": "QSRank", + "ID": 8, + "STRING": "Rank A6", + "UNK0": "dc0080020f27" + }, + { + "TYPE": "QSRank", + "ID": 9, + "STRING": "Rank A5", + "UNK0": "fa003f020f27" + }, + { + "TYPE": "QSRank", + "ID": 10, + "STRING": "Rank A4", + "UNK0": "1801d2080f27" + }, + { + "TYPE": "QSRank", + "ID": 11, + "STRING": "Rank A3", + "UNK0": "360166020f27" + }, + { + "TYPE": "QSRank", + "ID": 12, + "STRING": "Rank A2", + "UNK0": "54010c020f27" + }, + { + "TYPE": "QSRank", + "ID": 13, + "STRING": "Rank A1", + "UNK0": "7c01ea07f008" + }, + { + "TYPE": "QSRank", + "ID": 14, + "STRING": "Rank A0", + "UNK0": "ae0197020f27" + }, + { + "TYPE": "QSChapter", + "ID": 0, + "STRING": "Prologue" + }, + { + "TYPE": "QSChapter", + "ID": 1, + "STRING": "Chapter 1" + }, + { + "TYPE": "QSChapter", + "ID": 2, + "STRING": "Chapter 2" + }, + { + "TYPE": "QSChapter", + "ID": 3, + "STRING": "Chapter 3" + }, + { + "TYPE": "QSChapter", + "ID": 4, + "STRING": "Chapter 4 " + }, + { + "TYPE": "QSChapter", + "ID": 5, + "STRING": "Chapter 5" + }, + { + "TYPE": "QSChapter", + "ID": 6, + "STRING": "Chapter 6" + }, + { + "TYPE": "QSChapter", + "ID": 7, + "STRING": "Final Chapter" + }, + { + "TYPE": "QSTitle", + "ID": 60, + "UNK0": 5, + "STRING": "Old Schoolhouse Mystery", + "CATEGORY": "Principal Vandyck", + "UNK1": "010005000000000000" + }, + { + "TYPE": "QSText", + "ID": 60, + "UNK0": 31, + "STRING": "I have reason to believe that strange\nphenomena have been occurring in\nthe old schoolhouse of late.\n\nAs such, I would like to request\nthat one or more combat-ready students\nlook into this and report back to me.\n\nFor more details, come see me in my\noffice on the first floor of the main\nbuilding.\n --Principal Vandyck", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 60, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・Principal Vandyck entrusted me with the key to\nthe old schoolhouse. It seems as though strange\nthings are afoot in there, so I'm going to need\nto check it out.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 60, + "UNK0": 1, + "STRING": "・I made my way to the staircase room and\nsomething is definitely weird here.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 60, + "UNK0": 2, + "STRING": "・The structure of the building\nappears to have changed completely...\nI should explore everywhere I can.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 60, + "UNK0": 3, + "STRING": "・I defeated a powerful foe in what seemed\nto be the deepest area of the ruins.\nNow's a good time to head back out.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 60, + "UNK0": 4, + "STRING": "・I reported the results of my\ninvestigation to Principal Vandyck!", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 61, + "UNK0": 5, + "STRING": "Orbal Delivery", + "CATEGORY": "George", + "UNK1": "010004000000000000" + }, + { + "TYPE": "QSText", + "ID": 61, + "UNK0": 31, + "STRING": "I've just finished repairing a bunch\nof orbal tech here at the Engineering\nClub, but I need someone to deliver\neverything.\n\nStop by the engineering building (left\nof the Student Union building) and I'll\ntell you more.\n --George, Year 2, Class III", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 61, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・George gave me three items to deliver:\n1) An orbal scale, to be delivered to Nicholas,\nhead of the Cooking Club. I'll find him in the\nhome ec room on the second floor of the main\nbuilding.\n2) An antique orbal lamp, which is bound for\nMicht at the pawn shop.\n3) An orbal wristwatch belonging to Michael,\nthe director of Radio Trista.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 61, + "UNK0": 1, + "STRING": "・I delivered the orbal scale to Nicholas.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 61, + "UNK0": 2, + "STRING": "・I delivered the antique orbal lamp to Micht.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 61, + "UNK0": 3, + "STRING": "・I delivered the orbal wristwatch to Michael.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 61, + "UNK0": 4, + "STRING": "・I've delivered all three items safe and sound.\nBetter tell George.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 61, + "UNK0": 5, + "STRING": "・Checked in with George. Request complete!", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 62, + "UNK0": 1, + "STRING": "A Noteworthy Loss", + "CATEGORY": "Colette", + "UNK1": "010004000000000000" + }, + { + "TYPE": "QSText", + "ID": 62, + "UNK0": 31, + "STRING": "I kind of dropped my student notebook,\nand now I can't find it anywhere.\n\nWould anyone be willing to help me look?\n\nI'll be looking for it on the first floor\nof the Student Union building, and I'd\nreally appreciate it if someone lent me\na hand.\n ~Colette, Year 1, Class IV", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 62, + "UNK0": 0, + "STRING": "・Colette filled me in on what happened and we\nagreed to split up and search. I'll be checking\nthe main building and focusing on corridors\nand rest areas. She has an inkling that it's\non the second floor, but we'll see.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 62, + "UNK0": 1, + "STRING": "・I found Colette's student notebook on the\nsecond floor of the main building. I better\ntake it back to her.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 62, + "UNK0": 2, + "STRING": "・Colette's notebook is back in her hands!", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 63, + "UNK0": 1, + "STRING": "Story of Seasoning", + "CATEGORY": "Fred", + "UNK1": "010004000000000000" + }, + { + "TYPE": "QSText", + "ID": 63, + "UNK0": 31, + "STRING": "Fred at Kirshe's told me that he's fresh\nout of the passion leaves he uses as\nseasoning and he needs them a.s.a.p.\n\nNicholas is the head of the Cooking\nClub, maybe he has some to spare...", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 63, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・Nicholas thinks there might be some\nin the cafeteria. It's worth a shot.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 63, + "UNK0": 1, + "STRING": "・Once I'd explained the situation, Ramsay was\nhappy to give me some passion leaves. I need\nto get these to Fred!", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 63, + "UNK0": 2, + "STRING": "・I gave Fred the seasoning he needed!", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 5, + "UNK0": 6, + "STRING": "East Celdic Highway Monster", + "CATEGORY": "Syro", + "UNK1": "010004000000000000" + }, + { + "TYPE": "QSText", + "ID": 5, + "UNK0": 31, + "STRING": "A dangerous monster has appeared near\nthe highway and is making it very\ndifficult for us to harvest our crops.\nCould someone please help us?\n\nMonster: Scary Dinosaur\nLocation: A plateau near the East Celdic\nHighway.\n\nMy house is alongside the East Celdic\nHighway, so please stop by if you can.\n --Syro", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 5, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・We asked Syro to tell us everything he knew\nabout the monster. It sounds even more dangerous\nthan the name suggests, so we have to make sure\nthat we're ready to face it.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 5, + "UNK0": 1, + "STRING": "・Monster defeated! It wasn't really THAT scary...", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 5, + "UNK0": 2, + "STRING": "・We told Syro the details of our battle,\ncompleting his request!", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 6, + "UNK0": 6, + "STRING": "Any Bright Ideas?", + "CATEGORY": "Samus", + "UNK1": "010004000000000000" + }, + { + "TYPE": "QSText", + "ID": 6, + "UNK0": 31, + "STRING": "I need someone to replace a\nmalfunctioning orbment light in a\nroad lamp for me.\n\nFor more details, see me at\nOddvin's Arms & Orbal Factory.\n --Samus", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 6, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・Samus gave us an orbment light.\n・We need to use it to replace a road lamp\nnear the windmill in front of Lunaria Nature\nPark. We can find the park at the end of the\nWest Celdic Highway.\n・We're going to need to open a maintenance\npanel before we can replace it, though.\nThe code to unlock it is 466515.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 6, + "UNK0": 1, + "STRING": "・As soon as we arrived at the road lamp,\nmonsters began to show up. Luckily, the others\nagreed to cover me while I replaced the light.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 6, + "UNK0": 2, + "STRING": "・I typed in the code without any problems and\nreplaced the light in a blink.\nWe should go tell Samus.", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 6, + "UNK0": 3, + "STRING": "・I messed up the code, which slowed down the\nwhole process... At least it all worked out\nin the end. We should go tell Samus.", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 6, + "UNK0": 4, + "STRING": "・We told Samus that the light was installed\nand shining bright!", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 7, + "UNK0": 2, + "STRING": "For the Common Cold", + "CATEGORY": "Father Zirbel", + "UNK1": "010004000000000000" + }, + { + "TYPE": "QSText", + "ID": 7, + "UNK0": 31, + "STRING": "I've run out of some of the ingredients\nI need to make a particular medicine. I\nwould very much appreciate it if someone\ncould procure more for me.\n\nPlease speak with me in the church for\nfurther details.\n --Father Zirbel", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 7, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n ・Father Zirbel told us about the two\ningredients he needs to make his cold\nmedicine, and they are:\n1) Bear Claw\n Flint at the Grand Market has these.\n2) Imperial Carrots\n Paul has these in the farmhouse on\n the West Celdic Highway.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 7, + "UNK0": 1, + "STRING": "・Obtained Bear Claw from Flint.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 7, + "UNK0": 2, + "STRING": "・Obtained Imperial Carrots from Paul.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 7, + "UNK0": 3, + "STRING": "・Now that we have both ingredients, we\nshould go give them to Father Zirbel.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 7, + "UNK0": 4, + "STRING": "・We handed the ingredients over to\nFather Zirbel. Cold medicine for all!", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 8, + "UNK0": 2, + "STRING": "A Day as a Merchant", + "CATEGORY": "Merchant Lymon", + "UNK1": "010003000000000000" + }, + { + "TYPE": "QSText", + "ID": 8, + "UNK0": 31, + "STRING": "At Lymon's suggestion, we agreed to look\nafter his stall at the Grand Market\nduring the evening sale.\n\nWe'll have to decide for ourselves how\nto discount everything... Hopefully\nwe manage to do a good job.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 8, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・Not only did I look after the stall,\nit turns out I'm quite the salesman!", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 8, + "UNK0": 1, + "STRING": "#666c     ◆    ◆    ◆\n・I looked after the stall and did a\ndecent job as a merchant, apparently.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 8, + "UNK0": 2, + "STRING": "#666c     ◆    ◆    ◆\n・I looked after the stall, but I don't\nthink I have much of a future in\ncommerce...", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 9, + "UNK0": 2, + "STRING": "West Celdic Highway Monster", + "CATEGORY": "Market Manager Otto", + "UNK1": "010004000021040000" + }, + { + "TYPE": "QSText", + "ID": 9, + "UNK0": 31, + "STRING": "A large, ferocious monster has been\nsighted on the West Celdic Highway.\nWe'd all be happier if someone took\nit out.\n\nMonster: Zwordar\nLocation: Stone bridge leading to\nHeimdallr on the West Celdic Highway.\n --Market Manager Otto", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 9, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n ・Zwordar? More like... Wait, its name was\nseriously 'Zwordar'? Anyway, it's gone now,\nwe should go tell Otto.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 9, + "UNK0": 1, + "STRING": " ・We told Otto that we eliminated Zwordar.\n...Sorry, I'm still not over that name.", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 10, + "UNK0": 2, + "STRING": "Lost Wallet", + "CATEGORY": "Merchant Lizzie", + "UNK1": "010004000021040000" + }, + { + "TYPE": "QSText", + "ID": 10, + "UNK0": 31, + "STRING": "Yesterday, I found a wallet on the floor\nin front of my stall. Would someone be\nwilling to find its owner for me?\n\nSee me at my ceramics stall and I'll\ntell you more.\n --Lizzie", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 10, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n ・Lizzie entrusted us with the wallet she\nfound. It might be a good idea to start our\nsearch at the station.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 10, + "UNK0": 1, + "STRING": " ・We asked at the station and learned that\nthe wallet's owner had called them. She\napparently headed to the Weathercock, so\nwe should do the same.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 10, + "UNK0": 2, + "STRING": " ・Margot told us that Annabelle, the wallet's\nowner, had just left. She apparently said she\nwas going to check the rest area of the Grand\nMarket next.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 10, + "UNK0": 3, + "STRING": " ・After asking around the rest area, we\nlearned Annabelle had left for the church.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 10, + "UNK0": 4, + "STRING": " ・We finally returned Annabelle's wallet and\ntold Lizzie what had happened.", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 64, + "UNK0": 5, + "STRING": "Old Schoolhouse Mystery II", + "CATEGORY": "Principal Vandyck", + "UNK1": "020005000000000000" + }, + { + "TYPE": "QSText", + "ID": 64, + "UNK0": 31, + "STRING": "I would like to ask Class VII to\ncontinue their investigation of the old\nschoolhouse from where they left off\nlast month.\n\nI hope you will be able to shed further\nlight onto the secrets within those\nwalls.\n\nYou may begin when you see fit, but make\nsure that you are completely prepared.\n --Principal Vandyck", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 64, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・As soon as we entered the stairway room, we\nrealized that the building's structure had\nchanged yet again. Let's take a look at that\npedestal thing.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 64, + "UNK0": 1, + "STRING": "・We took what turned out to be an elevator\ndown to the second floor. We're going to need\nto be very, very careful.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 64, + "UNK0": 2, + "STRING": "・We defeated a powerful enemy in the deepest\narea of the second floor. That's probably\nabout it for us for the day.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 64, + "UNK0": 3, + "STRING": "・We successfully completed our\ninvestigation of the old schoolhouse.", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 65, + "UNK0": 1, + "STRING": "Substitute Tutor", + "CATEGORY": "Klein", + "UNK1": "020003000000000000" + }, + { + "TYPE": "QSText", + "ID": 65, + "UNK0": 31, + "STRING": "Something urgent has just come up, so\nI really need someone to take care of\ntutoring the kid I usually teach.\n\nI'll be waiting in the lower class\ndorms, so please come see me as soon as\nyou can.\n --Klein, Year 2, Class V", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 65, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・Klein teaches a boy named Emile who lives\nin a house near the river south of the Lower\nClass Dormitory.\n・They were going to go over orbal science.\nAs soon as I've brushed up, I should go talk\nto his mother, Melinda. It probably wouldn't\nhurt to go over the history of the Reinford\nCompany, either.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 65, + "UNK0": 1, + "STRING": "・That's one tutored kid! I don't think\nI made any huge mistakes, and he seemed\npretty happy with me as a substitute.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 65, + "UNK0": 2, + "STRING": "・I finished tutoring Emile. I might've\nmade some mistakes here and there, but he\nseemed pretty happy to study with me.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 65, + "UNK0": 3, + "STRING": "・I guess you could call that tutoring...\nI made a ton of mistakes, though. I\ndon't think I'm very good at this...", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 66, + "UNK0": 1, + "STRING": "Book Delivery", + "CATEGORY": "Keynes", + "UNK1": "020004000000000000" + }, + { + "TYPE": "QSText", + "ID": 66, + "UNK0": 31, + "STRING": "A number of books have just arrived\nfor Thors faculty and I would like\nassistance in delivering them.\n\nInquire at Keynes' Bookstore.\n -Keynes", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 66, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・Keynes says he lost the order slip\ntelling him who to deliver each book to.\nIn other words, he wants me to guess\nwhich faculty member each book belongs\nto based on their title alone.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 66, + "UNK0": 1, + "STRING": "・Delivered 'Behind the War of\nthe Lions' to Instructor Thomas.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 66, + "UNK0": 2, + "STRING": "・Delivered 'Modern Art: The\nComplete Works' to Instructor Mary.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 66, + "UNK0": 3, + "STRING": "・Delivered 'Topical Science'\nto Instructor Makarov.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 66, + "UNK0": 4, + "STRING": "・Delivered 'Analyzing Macroeconomics'\nto Vice Principal Heinrich.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 66, + "UNK0": 5, + "STRING": "・Delivered 'The Empire's Hottest Spots'\nto Instructor Sara.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 66, + "UNK0": 6, + "STRING": "・Finally delivered all five books.\nI should let Keynes know.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 66, + "UNK0": 7, + "STRING": "・Reported back to Keynes. I'm done!", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 67, + "UNK0": 1, + "STRING": "A Rose by Any Other Name", + "CATEGORY": "Linde", + "UNK1": "020004000000000000" + }, + { + "TYPE": "QSText", + "ID": 67, + "UNK0": 31, + "STRING": "I agreed to pick up some flowers for\nLinde at Jane's, the flower shop.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 67, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・Linde caught me on my way out the gate\nand asked me to buy a grand rose, too.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 67, + "UNK0": 1, + "STRING": "・I picked up all the flowers Linde\nasked for from the florist. I should\ndeliver them as soon as I can.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 67, + "UNK0": 2, + "STRING": "・It turns out the girl asking for the\ngrand rose wasn't Linde after all. It\nwas her (evil?) twin Vivi...\n・At least I managed to deliver the\nflowers Linde really did ask for.", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 11, + "UNK0": 6, + "STRING": "Aurochs Canyon Monster", + "CATEGORY": "Aurochs Fort", + "UNK1": "020004000000000000" + }, + { + "TYPE": "QSText", + "ID": 11, + "UNK0": 31, + "STRING": "A violent monster has been seen roving\nthe Aurochs Canyon Path, and the\nKreuzen Provincial Army would like it\neliminated.\n\nMonster: Fate Spinner\nLocation: Atop a cliff partway\nalong the Aurochs Canyon Path.\n\nOnce the monster has been exterminated,\nplease report to the soldiers at\nAurochs Fort.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 11, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・We spun that monster right around! Let's\nhead to Aurochs Fort to let them know.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 11, + "UNK0": 1, + "STRING": "・We reported the monster's defeat to the\nprovincial army, fulfilling their request.", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 13, + "UNK0": 6, + "STRING": "Put a Ring on it", + "CATEGORY": "Bruc", + "UNK1": "020004000000000000" + }, + { + "TYPE": "QSText", + "ID": 13, + "UNK0": 31, + "STRING": "I'd like someone to help me find a\nparticular semi-precious stone.\n\nFor more details, talk to me at\nTurner's Jewelers.\n --Bruc", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 13, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・We agreed to find a Dryad's Tear\nfor Bengt's wedding ring.\n・According to a really shady-looking baron\nwho happened to be in the jewelers' at the\ntime, we can get it from a tree on the North\nKreuzen Highway.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 13, + "UNK0": 1, + "STRING": "・We found a Dryad's Tear. Let's hurry it\nback to the jewelers'.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 13, + "UNK0": 2, + "STRING": "・Bengt's Dryad's Tear ended up inside a\ncount's stomach...\n・That wasn't quite the ending we hoped\nfor, but we did what we said we'd do...", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 14, + "UNK0": 2, + "STRING": "Addicted to Bath Salts", + "CATEGORY": "Hasan Voltaire", + "UNK1": "020004000000000000" + }, + { + "TYPE": "QSText", + "ID": 14, + "UNK0": 31, + "STRING": "The Voltaire family even bathes in style,\nusing nothing but the most fabulous bath\nsalts...which we're unfortunately running\nlow on. Will someone procure them for us?\n\nIf this strikes your fancy, find me on the\nterrace outside the Sorciere restaurant.\n --Hasan Voltaire", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 14, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・We should be able to find the\nbath salts deep into the Aurochs\nCanyon Path. Might as well take care\nof the monster while we're there, too.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 14, + "UNK0": 1, + "STRING": "・We've got the bath salts. All we\nneed to do now is deliver them to\nHasan when we're back in town.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 14, + "UNK0": 2, + "STRING": "・Bath salts delivered.\nAnother happy customer!", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 15, + "UNK0": 6, + "STRING": "North Kreuzen Highway Monster", + "CATEGORY": "Manager Richelieu", + "UNK1": "020004000000000000" + }, + { + "TYPE": "QSText", + "ID": 15, + "UNK0": 31, + "STRING": "We have received word that a dangerous\nmonster roams the North Kreuzen Highway.\nThis is bad news for our hotel, so may I\nask someone to please take care of it?\n\nMonster: Venus Mantrap\nLocation: The stone bridge leading\ntowards Celdic on the North Kreuzen\nHighway\n\n --Richelieu, G.M. of Hotel Esmeralda", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 15, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・We took care of the Venus Mantrap!\nI'm sure Richelieu will be thrilled.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 15, + "UNK0": 1, + "STRING": "・We assured Richelieu that the highway is\nsafe for travel once again.", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 16, + "UNK0": 2, + "STRING": "The Bite of Nostalgia", + "CATEGORY": "Owner Hammond", + "UNK1": "020004000021060000" + }, + { + "TYPE": "QSText", + "ID": 16, + "UNK0": 31, + "STRING": "I'd like to request someone's help in\ngathering a number of ingredients I need\nto make a particularly nostalgic dish.\n\nFor more details, come find me at\nSorciere, a restaurant in the central\nplaza.\n --Hammond.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 16, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・We need to gather these ingredients:\n1) Globby Fat x5\n We can get that from monsters.\n2) Healing Herb\n We can get this from Sister Tatiana.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 16, + "UNK0": 1, + "STRING": "・Sister Tatiana gave us a Healing Herb.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 16, + "UNK0": 2, + "STRING": "・Once we'd given Hammond the ingredients\nhe treated us to a soup dish originally\nmade by Jusis' mother.\n・It's a shame Jusis wasn't with us, but\nwe completed Hammond's request.", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 17, + "UNK0": 2, + "STRING": "The Lost Traveler", + "CATEGORY": "Traveler Anton", + "UNK1": "020004000000000000" + }, + { + "TYPE": "QSText", + "ID": 17, + "UNK0": 31, + "STRING": "We ran into a lost traveler named\nAnton at Aurochs Fort and agreed\nto escort him back to Bareahard.\n\nHe's a little...strange, but that's\nno reason not to get him there safely.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 17, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・We safely escorted Anton to Bareahard!", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 68, + "UNK0": 5, + "STRING": "Old Schoolhouse Mystery III", + "CATEGORY": "Principal Vandyck", + "UNK1": "030005000000000000" + }, + { + "TYPE": "QSText", + "ID": 68, + "UNK0": 31, + "STRING": "This month, I would like the members of\nClass VII to commit themselves to their\nnoble academic pursuits.\n\nThough I know, studious as you all are,\nI can expect that anyway. So on top of\nthat, I'd like you to continue your\nexploration of the old schoolhouse and\nreport your findings to me.\n --Principal Vandyck", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 68, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・We've gained access to a third floor. We\nshould check it out, but we have to be careful!", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 68, + "UNK0": 1, + "STRING": "・We took down a powerful enemy in the\ndeepest part of the third floor. Might be\na good time to head back out.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 68, + "UNK0": 2, + "STRING": "・We completed our investigation for the month!", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 69, + "UNK0": 5, + "STRING": "Born to be Orbal", + "CATEGORY": "George & Angelica", + "UNK1": "030003000000000000" + }, + { + "TYPE": "QSText", + "ID": 69, + "UNK0": 31, + "STRING": "We're testing the orbal bike's\ncapabilities on a highway near Trista.\n\nIf you're curious, come talk to us in\nthe engineering building.\n --George & Angelica", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 69, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・I agreed to ride the orbal bike and\nreport on my experience. Although the\norbal bike was tuned for Angelica, I\nrode it perfectly. It was awesome.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 69, + "UNK0": 1, + "STRING": "#666c     ◆    ◆    ◆\n・I agreed to ride the orbal bike and\nreport on my experience. Although the\norbal bike was tuned for Angelica, I\nonly made a few mistakes. Not bad.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 69, + "UNK0": 2, + "STRING": "#666c     ◆    ◆    ◆\n・I agreed to ride the orbal bike and\nreport on my experience. I know it\nwas my first time riding, but I made\nmore mistakes than I should have...", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 70, + "UNK0": 1, + "STRING": "The Secret Admirer", + "CATEGORY": "Vincent", + "UNK1": "030004000000000000" + }, + { + "TYPE": "QSText", + "ID": 70, + "UNK0": 31, + "STRING": "I am in need of aid! Some fair maiden\nhas sent me several messages proclaiming\nher love for me. And who could blame\nher? I simply must know who she is, so\nwould some kind soul help find her and\nbring her to me?\n\nMore details behind the storage\nbuilding!\n --Vincent Florald, Year 2, Class I", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 70, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・I agreed to try to figure out who sent\nVincent the love letter.\n・The letter came with pressed grand roses,\nso we decided it would be best to ask the\nflorist who had purchased them.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 70, + "UNK0": 1, + "STRING": "・I asked the florist and learned that three\ngirls have purchased grand roses from her\nrecently: Beryl from Class III, Vivi from\nClass IV, and Rosine from Class V.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 70, + "UNK0": 2, + "STRING": "・I asked Beryl, but she doesn't\nseem to have sent the letters.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 70, + "UNK0": 3, + "STRING": "・I asked Vivi, but she claims that she\njust bought a rose to harass her sister.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 70, + "UNK0": 4, + "STRING": "・I asked Rosine, but she doesn't\nseem to have sent the letter.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 70, + "UNK0": 5, + "STRING": "・It seems as though none of the first\nyears that bought grand roses are\nVincent's mystery girl after all. I\nshould go break the bad news to him.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 70, + "UNK0": 6, + "STRING": "・...As it turns out, our mystery woman was\n an upper class student named Margarita.", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 71, + "UNK0": 1, + "STRING": "A Sticky Situation", + "CATEGORY": "Munk (Courtyard)", + "UNK1": "030004000000000000" + }, + { + "TYPE": "QSText", + "ID": 71, + "UNK0": 31, + "STRING": "I agreed to help Munk find his beloved\nstickers.\n\nHe says they were blown out of his hands\non the roof of the main building.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 71, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・Munk thinks that one was blown towards\nthe field, another east of the main\nbuilding, and the last northeast of it.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 71, + "UNK0": 1, + "STRING": "・I found one by the engineering building.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 71, + "UNK0": 2, + "STRING": "・I found one on the northern part of the field.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 71, + "UNK0": 3, + "STRING": "・I found one in front of the old schoolhouse.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 71, + "UNK0": 4, + "STRING": "・Now that I've found all three stickers,\nI should go return them to Munk.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 71, + "UNK0": 5, + "STRING": "・I gave Munk his stickers back!", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 18, + "UNK0": 6, + "STRING": "Return to Zender", + "CATEGORY": "Lt. General Zechs", + "UNK1": "030004000000000000" + }, + { + "TYPE": "QSText", + "ID": 18, + "UNK0": 31, + "STRING": "I have a very important request for\nClass VII pertaining to a monster\nprowling the highlands.\n\nCome speak to me in the commander's room\nat Zender Gate for more information.\nBe prepared for battle.\n --Zechs Vander", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 18, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・We were asked to defeat a ferocious monster\nappearing in a basin east-northeast of Zender\nGate. The sooner we take care of it, the better.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 18, + "UNK0": 1, + "STRING": "・We let Lieutenant General Zechs know that\nwe exterminated the monster!", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 19, + "UNK0": 6, + "STRING": "Turning Over a New Leaf", + "CATEGORY": "Doctor Amr", + "UNK1": "030004000000000000" + }, + { + "TYPE": "QSText", + "ID": 19, + "UNK0": 31, + "STRING": "I need ingredients for a very important\nmedicine, and I would like to request\nthat you obtain them for me.\n\nI will tell you more in person, so\nplease come and speak to me at my home.\n --Amr", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 19, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・Amr's medicine wards off an disease\nendemic to horses in the region, but he\ncan't make it without epona grass.\n・Epona grass is recognizable by its\nyellow flowers and is regularly found in\nthe southern part of the highlands.\n・He needs five of them to make the\nmedicine. We better get started.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 19, + "UNK0": 1, + "STRING": "・Gathered all five epona grasses!\nLet's get these back to Amr.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 19, + "UNK0": 2, + "STRING": "・We delivered the epona grasses to Amr,\nfulfilling the request, and hopefully\nhelping some horses.", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 20, + "UNK0": 2, + "STRING": "Delivery to the Watchtower", + "CATEGORY": "Kilte", + "UNK1": "030004000017080000" + }, + { + "TYPE": "QSText", + "ID": 20, + "UNK0": 31, + "STRING": "Could someone deliver something to the\nsoldiers in the Imperial Army's\nwatchtower for me?\n\nIf so, I'll be at the trading post.\n --Kilte", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 20, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・Kilte entrusted us with a parcel of food\nthat we need to deliver to a soldier named\nZats at the watchtower.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 20, + "UNK0": 1, + "STRING": "・When we gave Zats the parcel, he gave us\nsome Erebonian wine in exchange. We should\nhead back and give it to Kilte.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 20, + "UNK0": 2, + "STRING": "・We gave Kilte our report and the wine,\ncompleting her request.", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 21, + "UNK0": 6, + "STRING": "Cameraman Caravan", + "CATEGORY": "Elder Ivan", + "UNK1": "030004000000000000" + }, + { + "TYPE": "QSText", + "ID": 21, + "UNK0": 31, + "STRING": "A visiting photographer by the name of\nNorton has left for the northern\nhighlands unaccompanied.\n\nI would like you to go after him and\nensure his safety, but first, please\nvisit me at my home, as I have more to\ntell you.\n --Elder Ivan", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 21, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・The elder believes that Norton likely went\nto get a closer look at the statue in the\nnorthern highlands.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 21, + "UNK0": 1, + "STRING": "・We found Norton right in front of the\nstatue. He didn't seem to be in danger,\nthough, so we let him stay for a while.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 21, + "UNK0": 2, + "STRING": "・We brought Norton safely back to the\nsettlement, fulfilling the request.", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 22, + "UNK0": 2, + "STRING": "Wandering Sheep", + "CATEGORY": "Watari", + "UNK1": "030004000017080000" + }, + { + "TYPE": "QSText", + "ID": 22, + "UNK0": 31, + "STRING": "The fence in front of the pasture has\nbeen damaged and a number of sheep have\ngotten loose. Please help me find them.\n\nI'll be in the pasture if you need more\ndetails.\n --Watari", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 22, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・Watari says that the fence was damaged this\nmorning and five sheep have escaped.\n・Based on the hoofprints, it looks like three\nare headed north, and the other two are headed\nsouth. Let's get searching.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 22, + "UNK0": 1, + "STRING": "・We've found all five! We'd better get\nback to Watari and let him know.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 22, + "UNK0": 2, + "STRING": "・Sheep secured!", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 23, + "UNK0": 2, + "STRING": "A Special Lesson", + "CATEGORY": "Old Lady Jedah", + "UNK1": "030003000017080000" + }, + { + "TYPE": "QSText", + "ID": 23, + "UNK0": 31, + "STRING": "I would like you to hold a simple lesson\nfor the children of this settlement in\norder to broaden their horizons.\n\nIf you're willing to do so, please come\nspeak to me outside.\n --Jedah", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 23, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・I conducted a lesson about Erebonia\nfor the children of the settlement.\n・The last question really made me think,\nbut I had no trouble answering the others,\nso the lesson went very smoothly.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 23, + "UNK0": 1, + "STRING": "#666c     ◆    ◆    ◆\n・I conducted a lesson about Erebonia\nfor the children of the settlement.\n・I had a bit of trouble with some\nof the questions, but it was a decent\nlesson regardless.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 23, + "UNK0": 2, + "STRING": "#666c     ◆    ◆    ◆\n・I conducted a lesson about Erebonia\nfor the children of the settlement.\n・I struggled through the whole thing and\nended up wasting everyone's time...but\nI DID see it through to the end.", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 24, + "UNK0": 2, + "STRING": "Connecting Hearts", + "CATEGORY": "Sharl", + "UNK1": "030004000017080000" + }, + { + "TYPE": "QSText", + "ID": 24, + "UNK0": 31, + "STRING": "Sharl, a girl who works in the mess hall\nat Zender Gate, asked us to find out\nwhat Thoma's favorite color is.\n\nIt sounds like she wants to make him a\npresent, so we've got to ask him without\nmaking him suspect anything.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 24, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・We managed to figure out Thoma's favorite\ncolor in a discussion about clothes. Let's\ntell Sharl a.s.a.p.!", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 24, + "UNK0": 1, + "STRING": "・We passed what Thoma told us on to Sharl.", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 25, + "UNK0": 2, + "STRING": "Nord Highlands - North Monster", + "CATEGORY": "Lacan", + "UNK1": "030004000023080000" + }, + { + "TYPE": "QSText", + "ID": 25, + "UNK0": 31, + "STRING": "A large, unknown monster has been seen\naround the northern part of the\nhighlands. It must be exterminated at\nall costs.\n\nMonster: Details unknown\nLocation: Southwest area of the northern\nhighlands, near a cliff edge.\n --Lacan", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 25, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・Monster down! We should tell Lacan,\njust in case he couldn't hear it.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 25, + "UNK0": 1, + "STRING": "・We reported to Lacan, fulfilling\nthe request!", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 72, + "UNK0": 5, + "STRING": "Old Schoolhouse Mystery IV", + "CATEGORY": "Principal Vandyck", + "UNK1": "040005000000000000" + }, + { + "TYPE": "QSText", + "ID": 72, + "UNK0": 31, + "STRING": "This month, I would like Class VII to\nsimply relax and enjoy themselves.\n\nThat, of course, was a joke. Please\ndelve deeper into the old schoolhouse\nand report back to me.\n\nYou may begin when you are ready, but\nbe sure you're ready for anything.\n --Principal Vandyck", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 72, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆ \n・As we suspected, we're now able to access\nthe fourth floor. No sense in being too\nhasty, though...", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 72, + "UNK0": 1, + "STRING": "・We encountered another monster deep within\nthe fourth floor, this one more powerful than\nany before it. We managed to defeat it, but\nwe're all exhausted.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 72, + "UNK0": 2, + "STRING": "・That brings our fourth month of investigation\nto a close.", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 73, + "UNK0": 1, + "STRING": "Childhood Friend's Intentions", + "CATEGORY": "Bridget", + "UNK1": "040003000000000000" + }, + { + "TYPE": "QSText", + "ID": 73, + "UNK0": 31, + "STRING": "I've known this boy since we were kids,\nbut I have no idea what's on his mind\nlately. To be honest, I'm a bit worried.\n\nWould someone be able to give me some\nadvice on how to handle this? I'll be\nin the upper class dormitory if you can\nhelp.\n --Bridget, Year 1, Class II", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 73, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・I agreed to help Bridget find out how Alan\nfeels about her. He's in the Fencing Club,\nso I'll look for him there.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 73, + "UNK0": 1, + "STRING": "・Alan wasn't in the training hall, but Loggins,\na second year, told me he might be on the field.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 73, + "UNK0": 2, + "STRING": "・I found Alan training alone on the field and\nsuggested that we fight a Combat Shell together\na la Class VII's practical exams.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 73, + "UNK0": 3, + "STRING": "・Alan regained his confidence after he landed\nthe final blow on the Combat Shell. Better yet,\nhe told me how he feels about Bridget...\nHe can handle things from here. ", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 73, + "UNK0": 4, + "STRING": "・Alan regained his confidence after an\nimpressive fight against the Combat Shell.\nBetter yet, he told me how he feels about\nBridget... He can handle things from here.", + "UNK1": 1 + }, + { + "TYPE": "QSText", + "ID": 73, + "UNK0": 5, + "STRING": "・The battle didn't go the way I'd hoped, but it\nseemed to cheer Alan up anyway. Afterwards he\ntold me how he feels about Bridget...\nHe can handle things from here.", + "UNK1": 1 + }, + { + "TYPE": "QSTitle", + "ID": 74, + "UNK0": 1, + "STRING": "Snapped", + "CATEGORY": "Fidelio", + "UNK1": "040004000000000000" + }, + { + "TYPE": "QSText", + "ID": 74, + "UNK0": 31, + "STRING": "Rumor has it that a first year in the\nPhotography Club who shall remain\nnameless (Rex) has been taking pictures\nof people without their permission and\nselling them to other students.\n\nIf this is true. I need to make him stop\nfor his own good (and everyone else's).\nIf you are willing to assist me, please\ncome to the Photography Club's clubroom.\n --Fidelio, Year 2, Class II", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 74, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・After a bit of discussion, Fidelio and I\ndecided it would be best to catch Rex in the act.\n・He told me that Rex exchanges his wares near\nthe old schoolhouse and behind the field's\nstorage building. I'm going to check them out.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 74, + "UNK0": 1, + "STRING": "・I found Rex behind the storage building,\nbut he ran off before I could confront him.\nTime to head to the old schoolhouse.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 74, + "UNK0": 2, + "STRING": "・I tried to be careful, but I fell right\ninto Rex's trap. He got away again...\n・I'm sure he's hidden somewhere without too\nmany people, but I have no idea where...\nGuess I'll have to start looking around.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 74, + "UNK0": 3, + "STRING": "・I found Rex inside the auditorium.\nSurprise, surprise -- he ran away again,\nbut I can tell he's still in the building.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 74, + "UNK0": 4, + "STRING": "・I managed to corner Rex and dragged him back\nto Fidelio. At least it seems like he's\nreflecting on what he did wrong...", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 75, + "UNK0": 1, + "STRING": "Swimming Lessons", + "CATEGORY": "Instructor Neithardt", + "UNK1": "040004000000000000" + }, + { + "TYPE": "QSText", + "ID": 75, + "UNK0": 31, + "STRING": "At Instructor Neithardt's suggestion, I\nrounded up the other guys in Class VII\nfor his special swimming lessons.\n\nHe says he's going to teach us the most\neffective and manly way to swim...\nI have no idea what he's talking about.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 75, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・We started by racing each other.\nI chose Elliot as my first opponent.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 75, + "UNK0": 1, + "STRING": "#666c     ◆    ◆    ◆\n・We started by racing each other.\nI chose Machias as my first opponent.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 75, + "UNK0": 2, + "STRING": "#666c     ◆    ◆    ◆\n・We started by racing each other.\nI chose Jusis as my first opponent.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 75, + "UNK0": 3, + "STRING": "#666c     ◆    ◆    ◆\n・We started by racing each other.\nI chose Gaius as my first opponent.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 75, + "UNK0": 4, + "STRING": "I won against him, too.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 75, + "UNK0": 5, + "STRING": "I lost against him, though...", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 75, + "UNK0": 6, + "STRING": "・After that, Neithardt had us swim until\nwe couldn't swim anymore... He is not a\nmerciful man.\n・He is an effective one, though. We're\nall posting way better times than we\nwere before.", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 76, + "UNK0": 1, + "STRING": "A Brush with Destiny", + "CATEGORY": "Janitor Gyler", + "UNK1": "040004000000000000" + }, + { + "TYPE": "QSText", + "ID": 76, + "UNK0": 31, + "STRING": "Gyler the janitor found a really nice\nEastern ink brush and asked me to help\nhim find its rightful owner.\n\nMy old master enjoyed calligraphy, so\nI have the feeling that I know who this\nbrush belongs to. I should ask them.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 76, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・My feeling was correct. The brush was\nPrincipal Vandyck's. I'm curious as to how\nhe came to befriend my master...but for\nnow, I'm just glad he has his brush back.", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 26, + "UNK0": 6, + "STRING": "Underground Passage Monster", + "CATEGORY": "Owner Noble", + "UNK1": "040004000000000000" + }, + { + "TYPE": "QSText", + "ID": 26, + "UNK0": 31, + "STRING": "My name is Noble. I run the Der Himmel\nhotel which, unfortunately, currently\nhas a monster lurking beneath it.\n\nIf you can get rid of it, please see me\nat my hotel in the Garnier District.\n --Noble", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 26, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・We visited Noble's hotel, but he seemed\nto be away. We'll have to check again\nwhen we're finished with our other obligations.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 26, + "UNK0": 1, + "STRING": "・Noble gave us the key to the passage\nunder the hotel. We should take care\nof this quickly, but preparedly.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 26, + "UNK0": 2, + "STRING": "・Target eliminated. Let's go back to\nthe hotel and give Noble our report.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 26, + "UNK0": 3, + "STRING": "・We gave our report at the hotel,\ncompleting yet another request.", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 27, + "UNK0": 6, + "STRING": "Hat's Off", + "CATEGORY": "Jasmine", + "UNK1": "040004000000000000" + }, + { + "TYPE": "QSText", + "ID": 27, + "UNK0": 31, + "STRING": "A customer who visited my gelato\nstall yesterday accidentally dropped\ntheir hat.\n\nI'd like to get it back to them, but\nI'm not sure how. If you have any good\nideas, please visit my stall in\nDreichels Plaza.\n --Jasmine", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 27, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・Jasmine left the hat in our care and\nwe agreed to search for its owner.\n・She says he's from the Ost District.\nWe'll start our search at Gamgee's pub,\nsince Machias knows the man who runs it. ", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 27, + "UNK0": 1, + "STRING": "・We spoke with Gamgee, who shed some\nlight on the hat's owner.\n・His name is Jim and he lives in a house\nnear the pub. All we have to do is leave\nthe pub, take a slight right, and follow\nthe steps down. Piece of cake.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 27, + "UNK0": 2, + "STRING": "・We visited Jim's home, but his wife\ninformed us that he had stepped out.\n・He apparently just left, so he shouldn't\nhave gone too far from home yet...", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 27, + "UNK0": 3, + "STRING": "・We found Jim at the tram stop. Just as\nwe were returning his hat, his wife showed\nup and they both thanked us.\n・We've let Jasmine know that the hat\nsituation has been sorted out!", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 28, + "UNK0": 6, + "STRING": "Chronicles of the Chronicle", + "CATEGORY": "Imperial Chronicle", + "UNK1": "040004000000000000" + }, + { + "TYPE": "QSText", + "ID": 28, + "UNK0": 31, + "STRING": "A journalist at the Imperial Chronicle\nneeds assistance with a tourism piece\nhe's preparing.\n\nFor more information, speak to me at\nreception in our office on Vainqueur\nStreet and I will connect you two.\n --Citron", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 28, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・Norton explained that he's producing a\ntourist brochure for the Summer Festival\nand asked us to get photos of and a\ncomment from every store in the district.\n・There are five places we need to visit:\n1) Weston House, in Plaza Bifrost\n2) Mimosa, in Plaza Bifrost\n3) Watson's Weapons & Armor\n4) Lumiere Orbal Factory\n5) Le Sage Boutique", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 28, + "UNK0": 1, + "STRING": "・Received a comment from Weston House!", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 28, + "UNK0": 2, + "STRING": "・Received a comment from Mimosa!", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 28, + "UNK0": 3, + "STRING": "・Received a comment from\nWatson's Weapons & Armor!", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 28, + "UNK0": 4, + "STRING": "・Received a comment from\nLumiere Orbal Factory!", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 28, + "UNK0": 5, + "STRING": "・Received a comment from\nLe Sage Boutique!", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 28, + "UNK0": 6, + "STRING": "・We've got everything we need from all five\nstores. Let's get back to Norton in the\nImperial Chronicle building.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 28, + "UNK0": 7, + "STRING": "・We gave Norton all of the comments\nand photos from each store.", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 29, + "UNK0": 2, + "STRING": "Amber Amour", + "CATEGORY": "Old Man Heming", + "UNK1": "040004000000000000" + }, + { + "TYPE": "QSText", + "ID": 29, + "UNK0": 31, + "STRING": "One of my cafe's most popular records\nhas been shattered.\n\nIf possible, I'd like to get another\nrecord of the same song, but I need\nhelp. Visit me at the Concert Cafe - \nEtoile on Alto Street for further\ninformation.\n --Heming", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 29, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・The smashed record was a thirty-year-old\nsong named 'Amber Amour.'\n・We thought that Fiona might know something,\nso we went over to Elliot's house.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 29, + "UNK0": 1, + "STRING": "・Fiona suggested that we ask at the\nreception desk in Plaza Bifrost.\nThat's on Vainqueur Street.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 29, + "UNK0": 2, + "STRING": "・The receptionist at Plaza Bifrost told us\nthat the record was sold out everywhere and\nthat the only way to secure a copy would be\nto order it directly from the manufacturer. Yikes.\n・But she did tell us to check out Emmrod's,\na secondhand store in the Ost District.\nWe might luck out and find it there.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 29, + "UNK0": 3, + "STRING": "・We finally managed to get our hands on\na used copy of 'Amber Amour.' Let's get\nit back to Heming as soon as we can.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 29, + "UNK0": 4, + "STRING": "・We gave Heming his record, and Etoile\nfinally has its signature song back!", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 30, + "UNK0": 6, + "STRING": "Heimdallr Port Monster", + "CATEGORY": "Port Chief Danberto", + "UNK1": "040004000000000000" + }, + { + "TYPE": "QSText", + "ID": 30, + "UNK0": 31, + "STRING": "A terrifying monster has been sighted\nin an underground waterway near\nHeimdallr port.\n\nConfirm the specifics with Danberto the\nport chief, then eliminate the creature.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 30, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・We took the key to the underground\nwaterway from Danberto. We can get in\nthrough a door farther into the port.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 30, + "UNK0": 1, + "STRING": "・The waterways are safe once again!\nLet's get out of here and tell Danberto.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 30, + "UNK0": 2, + "STRING": "・We told Danberto that we\ndefeated the monster!", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 31, + "UNK0": 2, + "STRING": "Made for Walkin'", + "CATEGORY": "Owner Howard", + "UNK1": "04000400002a0a0000" + }, + { + "TYPE": "QSText", + "ID": 31, + "UNK0": 31, + "STRING": "I need someone to test a new product.\n\nCome to Le Sage on Vainqueur Street\nand I'll tell you more.\n --Howard", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 31, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・Howard gave us a pair of Ladies' Stregas.\n・Laura's going to have to walk two\nthousand steps while wearing them.\n ", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 31, + "UNK0": 1, + "STRING": "・Laura walked over two thousand steps in the\nStregas and we told Howard how they held up.", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 32, + "UNK0": 2, + "STRING": "Oh No, Nono!", + "CATEGORY": "Old Man Keaton", + "UNK1": "04000400002a0a0000" + }, + { + "TYPE": "QSText", + "ID": 32, + "UNK0": 31, + "STRING": "Our family's kitten has gone missing.\n\nIf you can help us, please visit us in our\nhome in the Ost District for more details.\n --Keaton", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 32, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・Keaton's family told us all about their\nmissing kitten, Nono. She has white fur and is\nvery timid... She shouldn't have strayed too far.\n・The family's already asked the residents'\nassociation to help them search indoors, so we\nonly need to look outdoors in the Ost District.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 32, + "UNK0": 1, + "STRING": "・We spotted two brown cats -- a mother and a\nkitten -- in northern Ost.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 32, + "UNK0": 2, + "STRING": "・We spotted a black and white cat in\nsouthern Ost.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 32, + "UNK0": 3, + "STRING": "・We spotted a gray cat in eastern Ost.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 32, + "UNK0": 4, + "STRING": "・We spotted Mr. Tiddles, the leader\nof all the cats in Ost. Let's go\nafter him and see what we find!", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 32, + "UNK0": 5, + "STRING": "・Yes! We brought Nono back!", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 33, + "UNK0": 6, + "STRING": "Burglary at the Jewelers", + "CATEGORY": "San Corries Jewelers", + "UNK1": "040005000000000000" + }, + { + "TYPE": "QSText", + "ID": 33, + "UNK0": 31, + "STRING": "It seems a burglary has taken place at\na jewelers in the Garnier District\ncalled San Corries.\n\nWe should head over and find out what\nhappened as soon as possible!", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 33, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・The owner, Cordelia, told us that the culprit\nwas the famous Phantom Thief B, and that he'd\nspecifically called us out for some sort of\ntreasure hunt.\n・While it feels like we're walking into a trap,\nif we can get the stolen Crimson Tiara back, we\nneed to try. Our first clue: 'At the feet of\nthe conqueror with the heart of a lion.'", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 33, + "UNK0": 1, + "STRING": "・We found our next card at the feet of the\nstatue of Emperor Dreichels in Dreichels Plaza.\nOn it was another clue, reading 'In the\nnortheastern seat of the prismatic palace.'", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 33, + "UNK0": 2, + "STRING": "・We found another card attached to the\nnortheast bench in the Crystal Garden. Our next\nclue: 'At the round table where once rested the\ngauntlets that supported the east of the city.'\n・Right after that, we ran into Baron Bleublanc.\nI don't know what he's after, but he gives me\na weird feeling...", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 33, + "UNK0": 3, + "STRING": "・We found another card, this one attached to\nthe legs of the table on the second floor of the\nguild where we were staying. Its clue says:\n'On the bottom of the white burden of the steel\nbird perched at the water's edge.'", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 33, + "UNK0": 4, + "STRING": "・We headed to Heimdallr Port and asked the\nchief there to check the bottom of the\ncontainers near the large crane. Lo and behold,\nwe found another card.\n・The seemingly-final clue also appears to\npoint to Heimdallr Port: 'The crimson crown\nyou seek sleeps within a black ark, nestled\nin the steel car that marches with the minutes.'", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 33, + "UNK0": 5, + "STRING": "・The driver agreed to let us look inside the tram.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 33, + "UNK0": 6, + "STRING": "・We safely recovered the Crimson Tiara\nfrom inside the tram.\n・We then learned that the driver we spoke\nto was the Phantom Thief B -- or Bleublanc,\nas he introduced himself -- in disguise. We\nstill don't know what he's after, though.\n・Even though we couldn't capture him, we\nwere able to recover the tiara. We checked\nin with the local government and reported\nback to Cordelia at San Corries.", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 34, + "UNK0": 2, + "STRING": "In Case of Emergency", + "CATEGORY": "Bond", + "UNK1": "040004000000000000" + }, + { + "TYPE": "QSText", + "ID": 34, + "UNK0": 31, + "STRING": "A tourist from Crossbell by the name of\nBond seems to have swapped suitcases\nwith someone else by mistake.\n\nLet's see if we can find whoever that\nwas and get this mixup sorted out.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 34, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・Apparently the person who has Bond's\nbriefcase has plans to watch the parade\nfrom the Garnier District. Let's move. ", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 34, + "UNK0": 1, + "STRING": "・We talked to a man running a juice stall in\nthe Garnier District and he told us that the\nperson we're looking for was looking for a\nplace to rest, so he recommended the Alto\nDistrict. Let's see if he's at Concert\nCafe - Etoile.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 34, + "UNK0": 2, + "STRING": "・We found the man with Bond's briefcase\nand solved the suitcase situation!", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 77, + "UNK0": 5, + "STRING": "Old Schoolhouse Mystery V", + "CATEGORY": "Principal Vandyck", + "UNK1": "050005000000000000" + }, + { + "TYPE": "QSText", + "ID": 77, + "UNK0": 31, + "STRING": "Does anyone in Class VII actually read\nthese? If I wrote whatever I wanted\nhere, would they investigate the old\nschoolhouse regardless? Perhaps I should\nuse this opportunity to tell a joke.\n\nI know just the one! Two men walk into a\nbar, Instructors Neithardt and Thomas,\nperhaps, and one says to the other --\nOh, blast it, I'm out of room...\n --Principal Vandyck", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 77, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・We can now go all the way down to the fifth\nfloor of the schoolhouse. What kind of horrors\ncould await us down there?", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 77, + "UNK0": 1, + "STRING": "・Oh, that kind. We defeated another tough\nenemy on the fifth floor. That's enough\nexploration for me for one day.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 77, + "UNK0": 2, + "STRING": "・Another month, another floor investigated.", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 78, + "UNK0": 5, + "STRING": "Side by Sidecar", + "CATEGORY": "George & Angelica", + "UNK1": "050003000000000000" + }, + { + "TYPE": "QSText", + "ID": 78, + "UNK0": 31, + "STRING": "We're adding a new feature to the bike\nand we want YOU to give it a test run.\n\nCome see us in the engineering building\nwhen you're ready to ride.\n --George & Angelica", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 78, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・Today I'll be testing something called\na 'sidecar,' which means I'll have Towa\nriding next to me through the whole test.\n・It took some getting used to, but I\nthink I handled the sidecar pretty well!", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 78, + "UNK0": 1, + "STRING": "#666c     ◆    ◆    ◆\n・Today I'll be testing something called\na 'sidecar,' which means I'll have Towa\nriding next to me through the whole test.\n・It took some getting used to, but I\nthink I handled the sidecar well enough.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 78, + "UNK0": 2, + "STRING": "#666c     ◆    ◆    ◆\n・Today I'll be testing something called\na 'sidecar,' which means I'll have Towa\nriding next to me through the whole test.\n・Yikes, that was a rough ride. I don't\nthink I can count all the mistakes I made.", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 79, + "UNK0": 1, + "STRING": "Thors' 7 Mysteries", + "CATEGORY": "Beryl", + "UNK1": "050004000000000000" + }, + { + "TYPE": "QSText", + "ID": 79, + "UNK0": 31, + "STRING": "Lately, the other girls have been going\non about the seven mysteries of the\nacademy. I desire this grim knowledge.\n\nIf you do, too, visit the Occult\nResearch Society clubroom in the Student\nUnion building.\n --Beryl, Year 1, Class III", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 79, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・I agreed to ask people who might be\nfamiliar with the mysteries for more\ndetails. If there's anything that I'm\nnot sure about, I should ask Beryl.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 79, + "UNK0": 1, + "STRING": "・The first mystery is 'The Crying\nSculpture.' Clara runs the Art Club,\nso she might know the truth behind it.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 79, + "UNK0": 2, + "STRING": "・The second mystery is 'The Haunted\nPiano.' This one's a question for\nHibelle, head of the Wind Orchestra.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 79, + "UNK0": 3, + "STRING": "・The third mystery is 'The Forbidden\nTome.' Nobody knows books like Instructor\nThomas, so I should ask him about it.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 79, + "UNK0": 4, + "STRING": "・The fourth mystery is 'The Hidden\nGraves.' Paula spends a lot of time on the\nfield riding horses, so we should talk.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 79, + "UNK0": 5, + "STRING": "・The fifth mystery is 'The Sports Clubs'\nGrudge.' Friedel's the Fencing Club\ncaptain; she probably knows her screams...", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 79, + "UNK0": 6, + "STRING": "・The sixth mystery is 'The Crimson Devil\nof Lake Hell.' Kenneth's the guy to ask.\nHis last name IS Lakelord, after all.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 79, + "UNK0": 7, + "STRING": "The seventh mystery is 'The Poltergeist\nin the Upper Class Dormitory.' The maids\nare there all day, so I should ask them.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 79, + "UNK0": 8, + "STRING": "・Clara gave me some information\non 'The Crying Sculpture.'", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 79, + "UNK0": 9, + "STRING": "・Hibelle gave me some information\non 'The Haunted Piano.'", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 79, + "UNK0": 10, + "STRING": "・Instructor Thomas gave me some\ninformation on 'The Forbidden Tome.'", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 79, + "UNK0": 11, + "STRING": "・Paula gave me some information\non 'The Hidden Graves.'", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 79, + "UNK0": 12, + "STRING": "・Friedel gave me some information\non 'The Sports Clubs' Grudge.'", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 79, + "UNK0": 13, + "STRING": "・Kenneth gave me some information\non 'The Crimson Devil of Lake Hell.'", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 79, + "UNK0": 14, + "STRING": "・Lotte have me some information on 'The\nPoltergeist in the Upper Class Dormitory.'", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 79, + "UNK0": 15, + "STRING": "・I've gathered information on all seven\nmysteries. I should go tell Beryl everything\nI know.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 79, + "UNK0": 16, + "STRING": "・I gave Beryl all the information I'd gathered.\nI'm curious what she meant by 'the real seven\nmysteries,' but it's probably safer if I don't\neven ask...", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 80, + "UNK0": 1, + "STRING": "Swimming Lessons Mk. II", + "CATEGORY": "Instructor Sara", + "UNK1": "050004000000000000" + }, + { + "TYPE": "QSText", + "ID": 80, + "UNK0": 31, + "STRING": "Determined not to let Instructor\nNeithardt get the better of her,\nInstructor Sara has decided to give the\ngirls of Class VII swimming lessons.\n\n...That's great, but why'd she have\nto drag me into all this?", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 80, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・Much like Neithardt's lessons, we\nkicked things off by racing each other.\nI raced Alisa first.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 80, + "UNK0": 1, + "STRING": "#666c     ◆    ◆    ◆\n・Much like Neithardt's lessons, we\nkicked things off by racing each other.\nI raced Laura first.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 80, + "UNK0": 2, + "STRING": "#666c     ◆    ◆    ◆\n・Much like Neithardt's lessons, we\nkicked things off by racing each other.\nI raced Emma first.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 80, + "UNK0": 3, + "STRING": "#666c     ◆    ◆    ◆\n・Much like Neithardt's lessons, we\nkicked things off by racing each other.\nI raced Fie first.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 80, + "UNK0": 4, + "STRING": "#666c     ◆    ◆    ◆\n・Much like Neithardt's lessons, we\nkicked things off by racing each other.\nI raced Millium first.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 80, + "UNK0": 5, + "STRING": "#666c     ◆    ◆    ◆\n・Much like Neithardt's lessons, we\nkicked things off by racing each other.\nI raced Instructor Sara first.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 80, + "UNK0": 6, + "STRING": "I won against her, too.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 80, + "UNK0": 7, + "STRING": "I lost against her, though...", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 80, + "UNK0": 8, + "STRING": "・Afterwards, we agreed to Millium's idea\nof playing underwater tag until our stamina\ngave out. Naturally, this led to some\nunfortunate accidents, but eventually\nour exhausting training came to an end.", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 81, + "UNK0": 1, + "STRING": "The Sleeping Boy", + "CATEGORY": "Rosine", + "UNK1": "050004000000000000" + }, + { + "TYPE": "QSText", + "ID": 81, + "UNK0": 31, + "STRING": "I practically stumbled over a boy\nnamed Kurt asleep in the church.\n\nRosine and I decided to work\ntogether to get him home safely.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 81, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・I carried Kurt home as Rosine held an\numbrella over me. Together, we were able\nto get him home without waking him up.", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 35, + "UNK0": 6, + "STRING": "Arseid School Training Bout", + "CATEGORY": "Butler Klaus", + "UNK1": "050004000000000000" + }, + { + "TYPE": "QSText", + "ID": 35, + "UNK0": 31, + "STRING": "I wish for Lady Laura and you, her\nclassmates, to engage in a friendly\ntraining bout against students of the\nArseid school.\n\nWhen you have prepared sufficiently,\nplease make your way to the training\nhall, which is down the stairs outside\nthe mansion and to the right.\n --Klaus", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 35, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・After facing off against the students of\nthe Arseid school, Laura, Millium, Emma,\nand I were challenged by Klaus himself.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 35, + "UNK0": 1, + "STRING": "#666c     ◆    ◆    ◆\n・After facing off against the students of\nthe Arseid school, Laura, Millium, Jusis,\nand I were challenged by Klaus himself.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 35, + "UNK0": 2, + "STRING": "#666c     ◆    ◆    ◆\n・After facing off against the students of\nthe Arseid school, Laura, Millium, Gaius,\nand I were challenged by Klaus himself.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 35, + "UNK0": 3, + "STRING": "・The battle was fierce, but we emerged\nvictorious against Klaus, fulfilling\nhis request!", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 36, + "UNK0": 6, + "STRING": "Ebel Highway Monster", + "CATEGORY": "Toval", + "UNK1": "050004000000000000" + }, + { + "TYPE": "QSText", + "ID": 36, + "UNK0": 31, + "STRING": "A monster's been spotted roving the\nEbel Highway, and he's a big one!\n\nMonster: Crocodark\nLocation: Ebel Highway\n\nI request that Class VII deal with this\nthreat as soon as they possibly can.\n --Toval", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 36, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・That Crocodark is croco-done.\nBetter let Toval know.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 36, + "UNK0": 1, + "STRING": "・Now that we've told Toval, we can\nscratch that request off the list!", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 37, + "UNK0": 2, + "STRING": "Many Hands Make Light Work", + "CATEGORY": "Duncan", + "UNK1": "050004000000000000" + }, + { + "TYPE": "QSText", + "ID": 37, + "UNK0": 31, + "STRING": "I need someone to replace a lot of\norbment lights all along the highway.\n\nIf you like putting lights into things,\nyou can find me in Watteau's store.\n --Duncan", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 37, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・Apparently the lights in the road lamps\nalong the Ebel Highway have been worn down,\nand they all need replacing. That means we've\ngot fourteen lamps that need their lights\nreplaced. Let's do this.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 37, + "UNK0": 1, + "STRING": "・Seven down, seven to go!\nWe're halfway there!", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 37, + "UNK0": 2, + "STRING": "・We've exchanged all of the orbment\nlights. Let's go tell Duncan.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 37, + "UNK0": 3, + "STRING": "・We showed Duncan that nobody replaces\nlights like we do. Nobody.", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 38, + "UNK0": 6, + "STRING": "Ebel Highway Monster 2", + "CATEGORY": "Toval", + "UNK1": "050004000000000000" + }, + { + "TYPE": "QSText", + "ID": 38, + "UNK0": 31, + "STRING": "There's another monster on the Ebel\nHighway, but we don't know what KIND\nof monster it is.\n\nMonster: Details unknown\nLocation: Ebel Highway\n\nDon't let me down, Class VII. Get this\ntaken care of a.s.a.p.\n --Toval", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 38, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・We took that monster down! We should\ntell Toval as soon as we get the chance.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 38, + "UNK0": 1, + "STRING": "・Another beaten monster means another\ncompleted request.", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 39, + "UNK0": 2, + "STRING": "An Offering to the Departed", + "CATEGORY": "Sister Theramis", + "UNK1": "05000400001b0c0000" + }, + { + "TYPE": "QSText", + "ID": 39, + "UNK0": 31, + "STRING": "I would like to practice making an\noffering to St. Sandlot.\n\nWould you be willing to help me gather\nthe materials necessary to do so?\n\nIf so, come see me at Legram Chapel.\n --Sister Theramis", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 39, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・We'll need to gather the following:\n1) Hearty Powder x5\n2) Clear Gelatin x5\n3) White Seed\nWe can get the first two from monsters,\nbut we'll need to get the third from\nthe Arseid household's head chef.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 39, + "UNK0": 1, + "STRING": "・Josef gave us some white seed", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 39, + "UNK0": 2, + "STRING": "・We delivered all the ingredients to\nSister Theramis and she let us try some\nof the food she made. We'll leave the\nremainder as an offering to St. Sandlot.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 39, + "UNK0": 3, + "STRING": "・We told Sister Theramis about our offering,\ncompleting her request!", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 40, + "UNK0": 2, + "STRING": "A Golden Catch", + "CATEGORY": "Weiber", + "UNK1": "050004000000000000" + }, + { + "TYPE": "QSText", + "ID": 40, + "UNK0": 31, + "STRING": "Calling all fishermen! Could someone\ncatch me the elusive gold salmon?\nFind me at the Aprikoze Inn for more\ndetailed information.\n --Weiber", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 40, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆ \n・Weiber claims that Toval spotted a gold\nsalmon in a river just off the highway.\nWe should go take a look for ourselves.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 40, + "UNK0": 1, + "STRING": "・We arrived at the river only to find that\nsomebody had beaten us there. Even more\nsurprisingly, she challenged us to see who\ncould catch a gold salmon first.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 40, + "UNK0": 2, + "STRING": "・We caught a gold salmon! Weiber's\ngoing to be so excited.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 40, + "UNK0": 3, + "STRING": "・When we delivered the fish to Weiber,\nhe let us taste some of it. Awesome!", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 41, + "UNK0": 2, + "STRING": "Charm of the Eisenritter", + "CATEGORY": "Cindy", + "UNK1": "050004000000000000" + }, + { + "TYPE": "QSText", + "ID": 41, + "UNK0": 31, + "STRING": "We agreed to find some luminous grass\nfor Cindy.\n\nShe needs it to make a charm that traces\nits origins back to the Eisenritter.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 41, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・Apparently, luminous grass isn't grass at\nall, but a flower that can only be found when\nthe fog clears in this region. People have\nseen it on Ebel Highway. It's supposed to be\nmore common in areas with higher elevation.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 41, + "UNK0": 1, + "STRING": "・We found some luminous grass! Let's get\nthis to Cindy as soon as we can!", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 41, + "UNK0": 2, + "STRING": "・We gave Cindy the luminous grass!", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 82, + "UNK0": 5, + "STRING": "Old Schoolhouse Mystery VI", + "CATEGORY": "Principal Vandyck", + "UNK1": "060005000000000000" + }, + { + "TYPE": "QSText", + "ID": 82, + "UNK0": 31, + "STRING": "Good Mr. Schwarzer, we have come to an\namusing juncture at which, even were I\nto submit a blank request form, you\nwould naturally assume my intent to be\nan investigation of the old\nschoolhouse, and so it is once again.\n --Principal Vandyck", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 82, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n ・All of the lights on the elevator panel\nare lit and we can now descend all the way\nto the sixth floor. There's no telling what\nawaits us now.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 82, + "UNK0": 1, + "STRING": " ・We defeated an unbelievably powerful foe\nand...nothing happened. Not much to do now\nbut go home for the day.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 82, + "UNK0": 2, + "STRING": " ・It's hard to believe, but that spells\nthe end of our schoolhouse investigations.", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 83, + "UNK0": 5, + "STRING": "A Personal Request", + "CATEGORY": "Angelica", + "UNK1": "060003000000000000" + }, + { + "TYPE": "QSText", + "ID": 83, + "UNK0": 31, + "STRING": "Rean, I have to ask you to do me a\nfavor.\n\nI'll be in the training hall on the\nfirst floor of the gym. If you come,\ncome prepared.\n --Angelica Rogner", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 83, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n ・Turns out that by 'favor,' Angelica\nmeant 'duel.'", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 83, + "UNK0": 1, + "STRING": " ・I was able to emerge victorious, but it wasn't\neasy. Angelica's a practitioner of Taito, and\nshe's no slouch in a fight.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 83, + "UNK0": 2, + "STRING": "I agreed to fight her...and was thoroughly\ntrounced. Angelica's been studying Taito\nfor a long time and it shows.", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 84, + "UNK0": 1, + "STRING": "From Heart to Stomach", + "CATEGORY": "Mint", + "UNK1": "060003000000000000" + }, + { + "TYPE": "QSText", + "ID": 84, + "UNK0": 31, + "STRING": "I'm thinking about making some food as a\npresent for someone, but I don't know\nwhat to make! It's gotta be something\nthat screams 'me,' y'know? I think I'll\nneed someone's help to figure that out.\n\nIf you've got a stomach of steel and\ncan help me out, meet me in the\ncafeteria kitchen in the Student Union!\n ㈱ Mint, Year 1, Class III", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 84, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・Mint asked me to bring her a number of\ndishes that I would describe as 'superb' to\nfuel the fires of her cooking passion.\n・She needs three dishes in all -- one soup,\none main, and one dessert. Once I've chosen\nmy three, I'll bring them her way.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 84, + "UNK0": 1, + "STRING": "・I gave Mint my three chosen dishes and\nshe managed to whip up the Mint Special α.\nIt was a little too unique for my palate,\nbut she made it with love, and that's what\ncounts...probably. Either way, that's one\nmore request taken care of!", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 84, + "UNK0": 2, + "STRING": "・I gave Mint my three chosen dishes and\nshe managed to whip up the Mint Special β.\nIt was a little too unique for my palate,\nbut she made it with love, and that's what\ncounts...probably. Either way, that's one\nmore request taken care of!", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 84, + "UNK0": 3, + "STRING": "・I gave Mint my three chosen dishes and\nshe managed to whip up the Mint Special Ω.\nIt was a little too unique for my palate,\nbut she made it with love, and that's what\ncounts...probably. Either way, that's one\nmore request taken care of!", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 85, + "UNK0": 1, + "STRING": "Celestin's Secret", + "CATEGORY": "Patrick", + "UNK1": "060003000000000000" + }, + { + "TYPE": "QSText", + "ID": 85, + "UNK0": 31, + "STRING": "Patrick told me that Celestin's been\nacting very strange lately, and it sounds\nlike it's more than just his imagination.\n\nI agreed to look into Celestin's behavior\nwithout arousing his suspicions. First\nstop: the upper class dormitory.\n", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 85, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・I visited the upper class dormitory, but\nCelestin was nowhere to be found. When I\nasked Lotte, she told me he'd gone to our\ndorm to collect something from Sharon.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 85, + "UNK0": 1, + "STRING": "・Sharon told me that she'd made too much\nfood and Celestin had come to collect\nsome. He also mentioned he'd be stopping\nby Kirsche's later, so let's meet him there.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 85, + "UNK0": 2, + "STRING": "・I found Celestin at Kirsche's. After a brief\ndiscussion about Patrick, he challenged me to\na little card game.\n・After I won, he shared some of the\nreasons for his recent behavior with\nme. I should pass them on to Patrick.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 85, + "UNK0": 3, + "STRING": "・I found Celestin at Kirsche's. After a brief\ndiscussion about Patrick, he challenged me to\na little card game.\n・Because I lost, he refused to tell me\nwhy he'd been acting so strangely. That\nsaid, he did promise to tell Patrick the\ntruth, so I should let him know.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 85, + "UNK0": 4, + "STRING": "・I told Patrick everything\nI learned from Celestin!", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 42, + "UNK0": 6, + "STRING": "Mining a Minor Metal", + "CATEGORY": "Researcher Ratto", + "UNK1": "060004000000000000" + }, + { + "TYPE": "QSText", + "ID": 42, + "UNK0": 31, + "STRING": "I'm looking for a particularly rare sort\nof metal for my research, but I'm afraid\nI can't get it myself.\n\nIf you're willing to help, I'll be in\nthe western part of the upper level of\nthe Roer Institute of Technology.\n --Ratto", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 42, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・Ratto needed linium, a minor metal we can\nget from the Sachsen Iron Mine.\n・Apparently, the mine shaft where we could\nobtain linium has been sealed off due to the\nappearance of a dangerous monster. We'll\nneed to be doubly careful now.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 42, + "UNK0": 1, + "STRING": "・We were given the key to the mine shaft\nby the chief miner. Let's get exploring.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 42, + "UNK0": 2, + "STRING": "・They weren't kidding about that monster.\nWe beat him, though, and managed to get\nour hands on some linium, which it seems\nto have swallowed. I hope Ratto's happy...", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 42, + "UNK0": 3, + "STRING": "・Linium delivered! ", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 43, + "UNK0": 2, + "STRING": "Can You Hear Me Now?", + "CATEGORY": "Chief Johann", + "UNK1": "060004000000000000" + }, + { + "TYPE": "QSText", + "ID": 43, + "UNK0": 31, + "STRING": "I'd like a hand with an experiment that\nconcerns your ARCUS units.\n\nI will be waiting for you inside the\nRF Store, and I'll tell you more when\nI see you.\n --Johann", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 43, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・Johann gave us an orbal wave detector\nand asked us to check every building in\nRoer to find areas with a signal strength\nof 1. This might take a while...", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 43, + "UNK0": 1, + "STRING": "・The interior of Dining Bar - F has a\nsignal strength of 1!", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 43, + "UNK0": 2, + "STRING": "・The interior of Roer Cathedral has a\nsignal strength of 1!", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 43, + "UNK0": 3, + "STRING": "・The interior of Jackass' Repair Shop\nhas a signal strength of 1!", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 43, + "UNK0": 4, + "STRING": "・The interior of The Roer Institute of\nTechnology has a signal strength of 1!", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 43, + "UNK0": 5, + "STRING": "・The area in front of the sealed-off\ndoor on Roer's upper level has a signal\nstrength of 1!", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 43, + "UNK0": 6, + "STRING": "・We told Johann about the three areas\nwe found. Hopefully that helped!", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 43, + "UNK0": 7, + "STRING": "・We told Johann about the four areas\nwe found. Hopefully that helped!", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 43, + "UNK0": 8, + "STRING": "・We told Johann about the five areas\nwe found. Hopefully that helped!", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 44, + "UNK0": 2, + "STRING": "Spina Byroad Monster", + "CATEGORY": "Nortia Provincial Army", + "UNK1": "06000400002c0e240e" + }, + { + "TYPE": "QSText", + "ID": 44, + "UNK0": 31, + "STRING": "A powerful beast has appeared on the\nSpina Byroad. The Nortia Provincial Army\nhereby requests its extermination.\n\nMonster: Rocky Croaker\nLocation: Spina Byroad. Take the left\npath outside the city and turn left.\n\nOnce the monster is eliminated, please\nreport to the soldiers in front of\nMarquis Rogner's residence.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 44, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・The Rocky Croaker's croaked! Better\nlet the provincial army know.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 44, + "UNK0": 1, + "STRING": "・Another monster down and another\nProvincial Army request fulfilled.", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 45, + "UNK0": 2, + "STRING": "Midnight Hide-and-Seek", + "CATEGORY": "Locomo", + "UNK1": "060004000000000000" + }, + { + "TYPE": "QSText", + "ID": 45, + "UNK0": 31, + "STRING": "We found a child who claimed to be\nplaying some late-night hide-and-seek,\nso we decided to help him find his friend.\n\nFie thinks he's probably somewhere on the\nupper level of the city. We should look\nfor him anywhere that a child might hide.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 45, + "UNK0": 0, + "STRING": "・We found the child and made sure\nthat he returned home safely!", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 46, + "UNK0": 6, + "STRING": "Nortia Highway Monster", + "CATEGORY": "Nortia Provincial Army", + "UNK1": "060004000000000000" + }, + { + "TYPE": "QSText", + "ID": 46, + "UNK0": 31, + "STRING": "A ferocious monster has appeared on the\nNortia Highway. The Nortia Provincial\nArmy hereby requests its extermination.\n\nMonster: Hydra\nLocation: Open area off of Nortia Highway\n\nOnce the monster is eliminated, please\nreport to the soldiers in front of\nMarquis Rogner's residence.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 46, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・That monster won't be bothering anyone\nnow! We should tell the provincial army.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 46, + "UNK0": 1, + "STRING": "・We've checked in with the army and the\nhighway is once again safe for travel.", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 47, + "UNK0": 2, + "STRING": "Shots Fired", + "CATEGORY": "Chief Sandy", + "UNK1": "06000400002c0e0000" + }, + { + "TYPE": "QSText", + "ID": 47, + "UNK0": 31, + "STRING": "Those of us at Reinford's 2nd Factory\nhave developed a new type of orbal gun\nand we'd like to have it tested.\n\nSpeak with me in RF Arms if you fancy\ngiving it a shot.\n --Sandy", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 47, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・Sandy gave us a shotgun, which we promptly\nshoved into Machias' hands.\n・We need to use it to defeat ten Dancing Owls\non the Sachsen Mountain path. All of us can\nweaken them, but the final blow needs to be\ndealt with the shotgun.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 47, + "UNK0": 1, + "STRING": "#666c     ◆    ◆    ◆\n・Sandy gave us a pair of gunswords, which Fie\nwill be making use of.\n・We need to use them to defeat ten Dancing Owls\non the Sachsen Mountain path. All of us can\nweaken them, but the final blow needs to be\ndealt with the gunswords.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 47, + "UNK0": 2, + "STRING": "#666c     ◆    ◆    ◆\n・Sandy gave us a pair of pistols, which Crow\nhappily accepted.\n・We need to use them to defeat ten Dancing\nOwls on the Sachsen Mountain path. All of us\ncan weaken them, but the final blow needs to\nbe dealt with the pistols.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 47, + "UNK0": 3, + "STRING": "・We've defeated ten Dancing Owls now.\nWe should give Sandy our report.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 47, + "UNK0": 4, + "STRING": "・We gave Sandy the test\ninformation he needed!", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 48, + "UNK0": 2, + "STRING": "Crying Over Lost Milk", + "CATEGORY": "Vanilla", + "UNK1": "060004000000000000" + }, + { + "TYPE": "QSText", + "ID": 48, + "UNK0": 31, + "STRING": "Milk is missing! Could you please help\nus find our beloved little kitty?\n\nAny would-be heroes should come talk to\nme at my house next to Dining Bar - F.\n ~Vanilla", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 48, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・Milk is distinguishable by her brown and\nwhite fur and yellow collar. She's a very\ncautious cat, so she tends to avoid places\nwith a lot of people. She also likes to\ncrawl under things. All of the evidence\npoints to her being outdoors.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 48, + "UNK0": 1, + "STRING": "・We found Milk under a bench near the Roer\nInstitute of Technology, but she ran off.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 48, + "UNK0": 2, + "STRING": "・We found Milk under another bench near\nthe diner, but she slipped away again.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 48, + "UNK0": 3, + "STRING": "・We discovered Milk under a bench, but she\ngot away from us a third time and ran into\nthe station.\n・We received permission from a station\nemployee to check the train car Milk\nprobably entered.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 48, + "UNK0": 4, + "STRING": "・We reunited Vanilla and Milk! ...But\nwhy am I suddenly hungry for cookies?", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 86, + "UNK0": 5, + "STRING": "Slipped Their Minds", + "CATEGORY": "Instructor Beatrix", + "UNK1": "070005000000000000" + }, + { + "TYPE": "QSText", + "ID": 86, + "UNK0": 31, + "STRING": "A number of students have yet to collect\ntheir permission slips to serve food\nand drinks at the festival. Given that\nit's imperative that everyone doing so\nhas a slip, I need them delivered today.\n\nFor more details, speak to me in the\ninfirmary.\n --Instructor Beatrix", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 86, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・Instructor Beatrix gave me four slips\nto deliver to the following four people.\n1) Nicholas in the Cooking Club\n2) Colette, a first year in Class IV\n3) Becky, who's running her own stall.\n4) Hugo, who's also running one of his.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 86, + "UNK0": 1, + "STRING": "・I went to the Cooking Club's clubroom,\nbut it seems like Nicholas went out to\nbuy supplies. I guess I'll have to find\nhim at Brandon's General Goods.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 86, + "UNK0": 2, + "STRING": "・I delivered Nicholas' permission slip.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 86, + "UNK0": 3, + "STRING": "・Colette wasn't in Class IV's first-year\nclassroom, but I heard she was in their\nsecond-year classroom. Better get going.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 86, + "UNK0": 4, + "STRING": "・I delivered Colette's permission slip.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 86, + "UNK0": 5, + "STRING": "・I delivered Hugo and Becky's\npermission slips.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 86, + "UNK0": 6, + "STRING": "・Now that I've delivered all four\npermission slips, I should let\nInstructor Beatrix know.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 86, + "UNK0": 7, + "STRING": "・I reported back to Instructor\nBeatrix, completing her request!", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 87, + "UNK0": 1, + "STRING": "We Read the Comments", + "CATEGORY": "Radio Trista", + "UNK1": "070004000000000000" + }, + { + "TYPE": "QSText", + "ID": 87, + "UNK0": 31, + "STRING": "We're doing a special feature here at\nRadio Trista on the academy festival,\nbut we're running a little short on\ncomments. Anyone want to collect the\nones we need for me?\n\nFor more specifics, come see me in\nthe Radio Trista building.\n --Michael, director at Radio Trista", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 87, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・I need to collect comments from:\n1) A Class I first year\n2) A Class V first year\n3) The Occult Research Society", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 87, + "UNK0": 1, + "STRING": "・I received a comment from Ferris.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 87, + "UNK0": 2, + "STRING": "・I checked the training hall, but it turns\nout Munk was in charge of making the\ncomment and he wasn't there. He might\nbe in the lower class dormitory, though.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 87, + "UNK0": 3, + "STRING": "・I received a comment from Munk.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 87, + "UNK0": 4, + "STRING": "・I received a comment from Beryl.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 87, + "UNK0": 5, + "STRING": "・I've gathered all three comments.\nTime to let Michael know.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 87, + "UNK0": 6, + "STRING": "・I gave Michael the comments, so the\nfeature should go off without a hitch!", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 88, + "UNK0": 1, + "STRING": "Mail Mixup", + "CATEGORY": "Year 1 Class II", + "UNK1": "070004000000000000" + }, + { + "TYPE": "QSText", + "ID": 88, + "UNK0": 31, + "STRING": "Our class received a package that\nclearly wasn't meant for us.\n\nWe want to get it to whichever class\nordered it, but we're too swamped with\nour preparations to ask around. Could\nsomeone please deliver this for us?\n\nWe'll be outside Class II's second-year\nclassroom preparing for the festival.\nPlease come see us if you can help.\n --Bridget, Year 1, Class II", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 88, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・I picked up the package that'd been delivered\nto Class II only to find cones inside... These\nare probably going to be used for something on\nthe field.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 88, + "UNK0": 1, + "STRING": "・It turns out the cones were meant for the\nRiding Club. Not only did they not get their\npackage, but they got another one full of\nnewly-printed books, too. Now I have to figure\nout who these are for...", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 88, + "UNK0": 2, + "STRING": "・I took the books to the bookstore and,\nunsurprisingly, I was entrusted with yet another\npackage. This one contains copies of a handmade\nshort story anthology.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 88, + "UNK0": 3, + "STRING": "・Once I delivered the anthologies, I was given\na package full of expensive-looking ornaments.\nGiven that Class II's contribution to the\nfestival has a fancy name like 'Stella Garten'...", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 88, + "UNK0": 4, + "STRING": "・We've finally come full circle. All of\nthe packages have been properly delivered!", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 89, + "UNK0": 1, + "STRING": "Duly Noted", + "CATEGORY": "Vice Principal Heinrich", + "UNK1": "070004000000000000" + }, + { + "TYPE": "QSText", + "ID": 89, + "UNK0": 31, + "STRING": "The vice principal seems to have lost\nhis notebook, and he seems desperate to\nfind it again. I'd like to help him out,\nbut it'd be easier if I knew where to\nstart...", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 89, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆\n・He mentioned something about dropping it\nwhen he was on the roof of the main building...", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 89, + "UNK0": 1, + "STRING": "・It seems as though the vice principal was\nfacing out into the courtyard at one point,\nbut moved toward the academy field with his\nnotebook in hand. So maybe...", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 89, + "UNK0": 2, + "STRING": "・Apparently, a group of students found\nsomething next to the field and headed off\nsomewhere quiet to look at it.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 89, + "UNK0": 3, + "STRING": "・Rex and his group of friends gave me a black\nleather notebook. I should return this to the\nvice principal a.s.a.p.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 89, + "UNK0": 4, + "STRING": "・I gave the vice principal his notebook\nback and learned all about Rixia Mao!", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 90, + "UNK0": 1, + "STRING": "Academy Festival Patrol", + "CATEGORY": "Student Council", + "UNK1": "070004000000000000" + }, + { + "TYPE": "QSText", + "ID": 90, + "UNK0": 31, + "STRING": "I've agreed to help the Student Council\nduring the festival. I'll be walking\naround and seeing if anyone needs help.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 90, + "UNK0": 0, + "STRING": "#666c     ◆    ◆    ◆", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 90, + "UNK0": 1, + "STRING": "・A couple asked me about Class III's\nattraction and I was able to guide them properly!", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 90, + "UNK0": 2, + "STRING": "・A couple asked me about Class III's\nattraction and I couldn't help them out...", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 90, + "UNK0": 3, + "STRING": "・A girl on the rooftop has dropped her Mishy\nplush. She apparently had it just a while ago,\nso I should look around the main building for it.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 90, + "UNK0": 4, + "STRING": "・I found the girl's Mishy plush in the\nmain building and returned it to her!", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 90, + "UNK0": 5, + "STRING": "・Becky asked me to find and deliver her ten\npacks of Course Rock Salt.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 90, + "UNK0": 6, + "STRING": "・I gave Becky the salt she needed!", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 90, + "UNK0": 7, + "STRING": "・A boy's balloon has been caught in a tree\nnear the field. I'll have to borrow a ladder\nfrom the janitor to get it down.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 90, + "UNK0": 8, + "STRING": "・I rescued the boy's balloon!", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 90, + "UNK0": 9, + "STRING": "・I found Vanilla lost in front of the old\nschoolhouse. I should let Instructor Makarov\nknow where she is.", + "UNK1": 0 + }, + { + "TYPE": "QSText", + "ID": 90, + "UNK0": 10, + "STRING": "・I told Instructor Makarov about Vanilla!", + "UNK1": 0 + }, + { + "TYPE": "QSTitle", + "ID": 123, + "UNK0": 8, + "STRING": "", + "CATEGORY": "???", + "UNK1": "010001000000000000" + }, + { + "TYPE": "QSTitle", + "ID": 124, + "UNK0": 8, + "STRING": "", + "CATEGORY": "???", + "UNK1": "010004000000000000" + }, + { + "TYPE": "QSTitle", + "ID": 125, + "UNK0": 8, + "STRING": "", + "CATEGORY": "???", + "UNK1": "010000000000000000" + }, + { + "TYPE": "QSTitle", + "ID": 126, + "UNK0": 8, + "STRING": "", + "CATEGORY": "???", + "UNK1": "010005000000000000" + }, + { + "TYPE": "QSTitle", + "ID": 127, + "UNK0": 8, + "STRING": "", + "CATEGORY": "???", + "UNK1": "020001000000000000" + }, + { + "TYPE": "QSTitle", + "ID": 128, + "UNK0": 8, + "STRING": "", + "CATEGORY": "???", + "UNK1": "020001000000000000" + }, + { + "TYPE": "QSTitle", + "ID": 129, + "UNK0": 8, + "STRING": "", + "CATEGORY": "???", + "UNK1": "020004000000000000" + }, + { + "TYPE": "QSTitle", + "ID": 130, + "UNK0": 8, + "STRING": "", + "CATEGORY": "???", + "UNK1": "020006000000000000" + }, + { + "TYPE": "QSTitle", + "ID": 131, + "UNK0": 8, + "STRING": "", + "CATEGORY": "???", + "UNK1": "030003000000000000" + }, + { + "TYPE": "QSTitle", + "ID": 132, + "UNK0": 8, + "STRING": "", + "CATEGORY": "???", + "UNK1": "030004000000000000" + }, + { + "TYPE": "QSTitle", + "ID": 133, + "UNK0": 8, + "STRING": "", + "CATEGORY": "???", + "UNK1": "030000000000000000" + }, + { + "TYPE": "QSTitle", + "ID": 134, + "UNK0": 8, + "STRING": "", + "CATEGORY": "???", + "UNK1": "030007000000000000" + }, + { + "TYPE": "QSTitle", + "ID": 135, + "UNK0": 8, + "STRING": "", + "CATEGORY": "???", + "UNK1": "040003000000000000" + }, + { + "TYPE": "QSTitle", + "ID": 147, + "UNK0": 8, + "STRING": "", + "CATEGORY": "???", + "UNK1": "040001000000000000" + }, + { + "TYPE": "QSTitle", + "ID": 136, + "UNK0": 8, + "STRING": "", + "CATEGORY": "???", + "UNK1": "040004000000000000" + }, + { + "TYPE": "QSTitle", + "ID": 137, + "UNK0": 8, + "STRING": "", + "CATEGORY": "???", + "UNK1": "040000000000000000" + }, + { + "TYPE": "QSTitle", + "ID": 138, + "UNK0": 8, + "STRING": "", + "CATEGORY": "???", + "UNK1": "040008000000000000" + }, + { + "TYPE": "QSTitle", + "ID": 139, + "UNK0": 8, + "STRING": "", + "CATEGORY": "???", + "UNK1": "050001000000000000" + }, + { + "TYPE": "QSTitle", + "ID": 140, + "UNK0": 8, + "STRING": "", + "CATEGORY": "???", + "UNK1": "050004000000000000" + }, + { + "TYPE": "QSTitle", + "ID": 141, + "UNK0": 8, + "STRING": "", + "CATEGORY": "???", + "UNK1": "050009000000000000" + }, + { + "TYPE": "QSTitle", + "ID": 142, + "UNK0": 8, + "STRING": "", + "CATEGORY": "???", + "UNK1": "060004000000000000" + }, + { + "TYPE": "QSTitle", + "ID": 143, + "UNK0": 8, + "STRING": "", + "CATEGORY": "???", + "UNK1": "060002000000000000" + }, + { + "TYPE": "QSTitle", + "ID": 144, + "UNK0": 8, + "STRING": "", + "CATEGORY": "???", + "UNK1": "06000a000000000000" + }, + { + "TYPE": "QSTitle", + "ID": 145, + "UNK0": 8, + "STRING": "", + "CATEGORY": "???", + "UNK1": "07000f000000000000" + }, + { + "TYPE": "QSTitle", + "ID": 146, + "UNK0": 8, + "STRING": "", + "CATEGORY": "???", + "UNK1": "070003000000000000" + } +] \ No newline at end of file diff --git a/text/jsons/t_rendou.json b/text/jsons/t_rendou.json new file mode 100644 index 0000000..e8f3900 --- /dev/null +++ b/text/jsons/t_rendou.json @@ -0,0 +1,62 @@ +[ + { + "TYPE": "hkitugi_lst", + "ID": 0, + "UNK0": 465, + "UNK1": 1, + "STRINGS": [ + "#2C 特典 #0C:『ステージ衣装』所持", + "衣装『ステージ衣装』を所持した状態でゲームを開始します。" + ] + }, + { + "TYPE": "hkitugi_lst", + "ID": 1, + "UNK0": 466, + "UNK1": 1, + "STRINGS": [ + "#2C 特典 #0C:『その他衣装』所持", + "各種その他衣装を所持した状態でゲームを開始します。\n内容はプレイ時にご確認ください。" + ] + }, + { + "TYPE": "hkitugi_lst", + "ID": 2, + "UNK0": 467, + "UNK1": 2, + "STRINGS": [ + "#2C 特典 #0C:『学院指定水着』所持", + "衣装『士官学院指定水着』を所持した状態でゲームを開始します。" + ] + }, + { + "TYPE": "hkitugi_lst", + "ID": 3, + "UNK0": 468, + "UNK1": 2, + "STRINGS": [ + "#2C 特典 #0C:ミラ30万・七属性セピス×3000個入手", + "ミラ30万・七属性セピス×3000個を入手します。" + ] + }, + { + "TYPE": "hkitugi_lst", + "ID": 4, + "UNK0": 469, + "UNK1": 4, + "STRINGS": [ + "#2C 特典 #0C:絆行動ポイントMAX", + "自由行動日の絆行動ポイントが最大値になります。" + ] + }, + { + "TYPE": "hkitugi_lst", + "ID": 5, + "UNK0": 0, + "UNK1": 0, + "STRINGS": [ + "#1C        特典選択終了", + "特典の選択を終了します。" + ] + } +] \ No newline at end of file diff --git a/text/jsons/t_shop.json b/text/jsons/t_shop.json new file mode 100644 index 0000000..c75991e --- /dev/null +++ b/text/jsons/t_shop.json @@ -0,0 +1,24259 @@ +[ + { + "TYPE": "ShopGoods", + "UNK": "00000006000700080009000A00FFFFFFFF" + }, + { + "TYPE": "ShopGoods", + "UNK": "0100000600070008000A00FFFFFFFFFFFF" + }, + { + "TYPE": "ShopGoods", + "UNK": "0200000B000C000F000A00FFFFFFFFFFFF" + }, + { + "TYPE": "ShopGoods", + "UNK": "0B0000100009000A00FFFFFFFFFFFFFFFF" + }, + { + "TYPE": "ShopGoods", + "UNK": "0301000B000C000E0008000F000A00FFFF" + }, + { + "TYPE": "ShopGoods", + "UNK": "0401001000080009000A00FFFFFFFFFFFF" + }, + { + "TYPE": "ShopGoods", + "UNK": "05010006000D00070008000F000A00FFFF" + }, + { + "TYPE": "ShopGoods", + "UNK": "060000110008000A00FFFFFFFFFFFFFFFF" + }, + { + "TYPE": "ShopGoods", + "UNK": "07000011000600070008000A00FFFFFFFF" + }, + { + "TYPE": "ShopGoods", + "UNK": "080000120008000A00FFFFFFFFFFFFFFFF" + }, + { + "TYPE": "ShopGoods", + "UNK": "0902000600070008000A00FFFFFFFFFFFF" + }, + { + "TYPE": "ShopGoods", + "UNK": "0A040012000A00FFFFFFFFFFFFFFFFFFFF" + }, + { + "TYPE": "ShopTitle", + "ID": 0, + "UNK0": 0, + "STRING": "Campus Store", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "0000E8030000" + }, + { + "TYPE": "ShopItem", + "UNK": "000024040000" + }, + { + "TYPE": "ShopItem", + "UNK": "0000D8040000" + }, + { + "TYPE": "ShopItem", + "UNK": "0000F4010000" + }, + { + "TYPE": "ShopItem", + "UNK": "000026020000" + }, + { + "TYPE": "ShopItem", + "UNK": "000000000000" + }, + { + "TYPE": "ShopItem", + "UNK": "000003000000" + }, + { + "TYPE": "ShopItem", + "UNK": "000006000000" + }, + { + "TYPE": "ShopItem", + "UNK": "00000B000000" + }, + { + "TYPE": "ShopItem", + "UNK": "00000C000000" + }, + { + "TYPE": "ShopItem", + "UNK": "00000D000000" + }, + { + "TYPE": "ShopItem", + "UNK": "00000E000000" + }, + { + "TYPE": "ShopItem", + "UNK": "00000F000000" + }, + { + "TYPE": "ShopItem", + "UNK": "000010000000" + }, + { + "TYPE": "ShopItem", + "UNK": "000011000000" + }, + { + "TYPE": "ShopItem", + "UNK": "000012000000" + }, + { + "TYPE": "ShopItem", + "UNK": "000013000000" + }, + { + "TYPE": "ShopItem", + "UNK": "000014000000" + }, + { + "TYPE": "ShopItem", + "UNK": "000004010000" + }, + { + "TYPE": "ShopTitle", + "ID": 1, + "UNK0": 0, + "STRING": "Campus Store", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "0100E8030000" + }, + { + "TYPE": "ShopItem", + "UNK": "010007040000" + }, + { + "TYPE": "ShopItem", + "UNK": "010024040000" + }, + { + "TYPE": "ShopItem", + "UNK": "010043040000" + }, + { + "TYPE": "ShopItem", + "UNK": "0100D8040000" + }, + { + "TYPE": "ShopItem", + "UNK": "0100F4010000" + }, + { + "TYPE": "ShopItem", + "UNK": "010026020000" + }, + { + "TYPE": "ShopItem", + "UNK": "010000000000" + }, + { + "TYPE": "ShopItem", + "UNK": "010003000000" + }, + { + "TYPE": "ShopItem", + "UNK": "010006000000" + }, + { + "TYPE": "ShopItem", + "UNK": "01000B000000" + }, + { + "TYPE": "ShopItem", + "UNK": "01000C000000" + }, + { + "TYPE": "ShopItem", + "UNK": "01000D000000" + }, + { + "TYPE": "ShopItem", + "UNK": "01000E000000" + }, + { + "TYPE": "ShopItem", + "UNK": "01000F000000" + }, + { + "TYPE": "ShopItem", + "UNK": "010010000000" + }, + { + "TYPE": "ShopItem", + "UNK": "010011000000" + }, + { + "TYPE": "ShopItem", + "UNK": "010012000000" + }, + { + "TYPE": "ShopItem", + "UNK": "010013000000" + }, + { + "TYPE": "ShopItem", + "UNK": "010014000000" + }, + { + "TYPE": "ShopItem", + "UNK": "010004010000" + }, + { + "TYPE": "ShopTitle", + "ID": 2, + "UNK0": 0, + "STRING": "Campus Store", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "0200EA030000" + }, + { + "TYPE": "ShopItem", + "UNK": "020008040000" + }, + { + "TYPE": "ShopItem", + "UNK": "020026040000" + }, + { + "TYPE": "ShopItem", + "UNK": "020044040000" + }, + { + "TYPE": "ShopItem", + "UNK": "0200F7010000" + }, + { + "TYPE": "ShopItem", + "UNK": "020029020000" + }, + { + "TYPE": "ShopItem", + "UNK": "020000000000" + }, + { + "TYPE": "ShopItem", + "UNK": "020001000000" + }, + { + "TYPE": "ShopItem", + "UNK": "020003000000" + }, + { + "TYPE": "ShopItem", + "UNK": "020004000000" + }, + { + "TYPE": "ShopItem", + "UNK": "020006000000" + }, + { + "TYPE": "ShopItem", + "UNK": "020007000000" + }, + { + "TYPE": "ShopItem", + "UNK": "02000B000000" + }, + { + "TYPE": "ShopItem", + "UNK": "02000C000000" + }, + { + "TYPE": "ShopItem", + "UNK": "02000D000000" + }, + { + "TYPE": "ShopItem", + "UNK": "02000E000000" + }, + { + "TYPE": "ShopItem", + "UNK": "02000F000000" + }, + { + "TYPE": "ShopItem", + "UNK": "020010000000" + }, + { + "TYPE": "ShopItem", + "UNK": "020011000000" + }, + { + "TYPE": "ShopItem", + "UNK": "020012000000" + }, + { + "TYPE": "ShopItem", + "UNK": "020013000000" + }, + { + "TYPE": "ShopItem", + "UNK": "020014000000" + }, + { + "TYPE": "ShopItem", + "UNK": "020015000000" + }, + { + "TYPE": "ShopItem", + "UNK": "020016000000" + }, + { + "TYPE": "ShopItem", + "UNK": "020017000000" + }, + { + "TYPE": "ShopItem", + "UNK": "020018000000" + }, + { + "TYPE": "ShopItem", + "UNK": "020005010000" + }, + { + "TYPE": "ShopTitle", + "ID": 3, + "UNK0": 0, + "STRING": "Campus Store", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "0300EA030000" + }, + { + "TYPE": "ShopItem", + "UNK": "030008040000" + }, + { + "TYPE": "ShopItem", + "UNK": "030026040000" + }, + { + "TYPE": "ShopItem", + "UNK": "030027040000" + }, + { + "TYPE": "ShopItem", + "UNK": "030044040000" + }, + { + "TYPE": "ShopItem", + "UNK": "030063040000" + }, + { + "TYPE": "ShopItem", + "UNK": "03009F040000" + }, + { + "TYPE": "ShopItem", + "UNK": "0300BD040000" + }, + { + "TYPE": "ShopItem", + "UNK": "0300DB040000" + }, + { + "TYPE": "ShopItem", + "UNK": "0300F7010000" + }, + { + "TYPE": "ShopItem", + "UNK": "030029020000" + }, + { + "TYPE": "ShopItem", + "UNK": "030000000000" + }, + { + "TYPE": "ShopItem", + "UNK": "030001000000" + }, + { + "TYPE": "ShopItem", + "UNK": "030003000000" + }, + { + "TYPE": "ShopItem", + "UNK": "030004000000" + }, + { + "TYPE": "ShopItem", + "UNK": "030006000000" + }, + { + "TYPE": "ShopItem", + "UNK": "030007000000" + }, + { + "TYPE": "ShopItem", + "UNK": "03000B000000" + }, + { + "TYPE": "ShopItem", + "UNK": "03000C000000" + }, + { + "TYPE": "ShopItem", + "UNK": "03000D000000" + }, + { + "TYPE": "ShopItem", + "UNK": "03000E000000" + }, + { + "TYPE": "ShopItem", + "UNK": "03000F000000" + }, + { + "TYPE": "ShopItem", + "UNK": "030010000000" + }, + { + "TYPE": "ShopItem", + "UNK": "030011000000" + }, + { + "TYPE": "ShopItem", + "UNK": "030012000000" + }, + { + "TYPE": "ShopItem", + "UNK": "030013000000" + }, + { + "TYPE": "ShopItem", + "UNK": "030014000000" + }, + { + "TYPE": "ShopItem", + "UNK": "030015000000" + }, + { + "TYPE": "ShopItem", + "UNK": "030016000000" + }, + { + "TYPE": "ShopItem", + "UNK": "030017000000" + }, + { + "TYPE": "ShopItem", + "UNK": "030018000000" + }, + { + "TYPE": "ShopItem", + "UNK": "030005010000" + }, + { + "TYPE": "ShopTitle", + "ID": 4, + "UNK0": 0, + "STRING": "Campus Store", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "0400ED030000" + }, + { + "TYPE": "ShopItem", + "UNK": "04000C040000" + }, + { + "TYPE": "ShopItem", + "UNK": "040029040000" + }, + { + "TYPE": "ShopItem", + "UNK": "040048040000" + }, + { + "TYPE": "ShopItem", + "UNK": "040065040000" + }, + { + "TYPE": "ShopItem", + "UNK": "0400A1040000" + }, + { + "TYPE": "ShopItem", + "UNK": "0400BF040000" + }, + { + "TYPE": "ShopItem", + "UNK": "0400DE040000" + }, + { + "TYPE": "ShopItem", + "UNK": "0400F8010000" + }, + { + "TYPE": "ShopItem", + "UNK": "04002A020000" + }, + { + "TYPE": "ShopItem", + "UNK": "040000000000" + }, + { + "TYPE": "ShopItem", + "UNK": "040001000000" + }, + { + "TYPE": "ShopItem", + "UNK": "040003000000" + }, + { + "TYPE": "ShopItem", + "UNK": "040004000000" + }, + { + "TYPE": "ShopItem", + "UNK": "040006000000" + }, + { + "TYPE": "ShopItem", + "UNK": "040007000000" + }, + { + "TYPE": "ShopItem", + "UNK": "04000B000000" + }, + { + "TYPE": "ShopItem", + "UNK": "04000C000000" + }, + { + "TYPE": "ShopItem", + "UNK": "04000D000000" + }, + { + "TYPE": "ShopItem", + "UNK": "04000E000000" + }, + { + "TYPE": "ShopItem", + "UNK": "04000F000000" + }, + { + "TYPE": "ShopItem", + "UNK": "040010000000" + }, + { + "TYPE": "ShopItem", + "UNK": "040011000000" + }, + { + "TYPE": "ShopItem", + "UNK": "040012000000" + }, + { + "TYPE": "ShopItem", + "UNK": "040013000000" + }, + { + "TYPE": "ShopItem", + "UNK": "040014000000" + }, + { + "TYPE": "ShopItem", + "UNK": "040015000000" + }, + { + "TYPE": "ShopItem", + "UNK": "040016000000" + }, + { + "TYPE": "ShopItem", + "UNK": "040017000000" + }, + { + "TYPE": "ShopItem", + "UNK": "040018000000" + }, + { + "TYPE": "ShopItem", + "UNK": "040006010000" + }, + { + "TYPE": "ShopTitle", + "ID": 5, + "UNK0": 0, + "STRING": "Campus Store", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "0500F0030000" + }, + { + "TYPE": "ShopItem", + "UNK": "05000E040000" + }, + { + "TYPE": "ShopItem", + "UNK": "05002C040000" + }, + { + "TYPE": "ShopItem", + "UNK": "05002D040000" + }, + { + "TYPE": "ShopItem", + "UNK": "05004B040000" + }, + { + "TYPE": "ShopItem", + "UNK": "050069040000" + }, + { + "TYPE": "ShopItem", + "UNK": "0500A4040000" + }, + { + "TYPE": "ShopItem", + "UNK": "0500C3040000" + }, + { + "TYPE": "ShopItem", + "UNK": "0500E0040000" + }, + { + "TYPE": "ShopItem", + "UNK": "0500FC010000" + }, + { + "TYPE": "ShopItem", + "UNK": "05002E020000" + }, + { + "TYPE": "ShopItem", + "UNK": "050000000000" + }, + { + "TYPE": "ShopItem", + "UNK": "050001000000" + }, + { + "TYPE": "ShopItem", + "UNK": "050003000000" + }, + { + "TYPE": "ShopItem", + "UNK": "050004000000" + }, + { + "TYPE": "ShopItem", + "UNK": "050006000000" + }, + { + "TYPE": "ShopItem", + "UNK": "050007000000" + }, + { + "TYPE": "ShopItem", + "UNK": "05000B000000" + }, + { + "TYPE": "ShopItem", + "UNK": "05000C000000" + }, + { + "TYPE": "ShopItem", + "UNK": "05000D000000" + }, + { + "TYPE": "ShopItem", + "UNK": "05000E000000" + }, + { + "TYPE": "ShopItem", + "UNK": "05000F000000" + }, + { + "TYPE": "ShopItem", + "UNK": "050010000000" + }, + { + "TYPE": "ShopItem", + "UNK": "050011000000" + }, + { + "TYPE": "ShopItem", + "UNK": "050012000000" + }, + { + "TYPE": "ShopItem", + "UNK": "050013000000" + }, + { + "TYPE": "ShopItem", + "UNK": "050014000000" + }, + { + "TYPE": "ShopItem", + "UNK": "050015000000" + }, + { + "TYPE": "ShopItem", + "UNK": "050016000000" + }, + { + "TYPE": "ShopItem", + "UNK": "050017000000" + }, + { + "TYPE": "ShopItem", + "UNK": "050018000000" + }, + { + "TYPE": "ShopItem", + "UNK": "050007010000" + }, + { + "TYPE": "ShopTitle", + "ID": 6, + "UNK0": 0, + "STRING": "Campus Store", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "0600F3030000" + }, + { + "TYPE": "ShopItem", + "UNK": "060012040000" + }, + { + "TYPE": "ShopItem", + "UNK": "06002F040000" + }, + { + "TYPE": "ShopItem", + "UNK": "060030040000" + }, + { + "TYPE": "ShopItem", + "UNK": "06004D040000" + }, + { + "TYPE": "ShopItem", + "UNK": "06006B040000" + }, + { + "TYPE": "ShopItem", + "UNK": "0600A8040000" + }, + { + "TYPE": "ShopItem", + "UNK": "0600C5040000" + }, + { + "TYPE": "ShopItem", + "UNK": "0600E4040000" + }, + { + "TYPE": "ShopItem", + "UNK": "060002050000" + }, + { + "TYPE": "ShopItem", + "UNK": "060020050000" + }, + { + "TYPE": "ShopItem", + "UNK": "060001020000" + }, + { + "TYPE": "ShopItem", + "UNK": "060033020000" + }, + { + "TYPE": "ShopItem", + "UNK": "060000000000" + }, + { + "TYPE": "ShopItem", + "UNK": "060001000000" + }, + { + "TYPE": "ShopItem", + "UNK": "060003000000" + }, + { + "TYPE": "ShopItem", + "UNK": "060004000000" + }, + { + "TYPE": "ShopItem", + "UNK": "060006000000" + }, + { + "TYPE": "ShopItem", + "UNK": "060007000000" + }, + { + "TYPE": "ShopItem", + "UNK": "06000B000000" + }, + { + "TYPE": "ShopItem", + "UNK": "06000C000000" + }, + { + "TYPE": "ShopItem", + "UNK": "06000D000000" + }, + { + "TYPE": "ShopItem", + "UNK": "06000E000000" + }, + { + "TYPE": "ShopItem", + "UNK": "06000F000000" + }, + { + "TYPE": "ShopItem", + "UNK": "060010000000" + }, + { + "TYPE": "ShopItem", + "UNK": "060011000000" + }, + { + "TYPE": "ShopItem", + "UNK": "060012000000" + }, + { + "TYPE": "ShopItem", + "UNK": "060013000000" + }, + { + "TYPE": "ShopItem", + "UNK": "060014000000" + }, + { + "TYPE": "ShopItem", + "UNK": "060015000000" + }, + { + "TYPE": "ShopItem", + "UNK": "060016000000" + }, + { + "TYPE": "ShopItem", + "UNK": "060017000000" + }, + { + "TYPE": "ShopItem", + "UNK": "060018000000" + }, + { + "TYPE": "ShopItem", + "UNK": "060009010000" + }, + { + "TYPE": "ShopTitle", + "ID": 7, + "UNK0": 0, + "STRING": "Campus Store", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "0700F6030000" + }, + { + "TYPE": "ShopItem", + "UNK": "070015040000" + }, + { + "TYPE": "ShopItem", + "UNK": "070032040000" + }, + { + "TYPE": "ShopItem", + "UNK": "070033040000" + }, + { + "TYPE": "ShopItem", + "UNK": "070050040000" + }, + { + "TYPE": "ShopItem", + "UNK": "07006F040000" + }, + { + "TYPE": "ShopItem", + "UNK": "0700AA040000" + }, + { + "TYPE": "ShopItem", + "UNK": "0700C9040000" + }, + { + "TYPE": "ShopItem", + "UNK": "0700E6040000" + }, + { + "TYPE": "ShopItem", + "UNK": "070004050000" + }, + { + "TYPE": "ShopItem", + "UNK": "070023050000" + }, + { + "TYPE": "ShopItem", + "UNK": "070003020000" + }, + { + "TYPE": "ShopItem", + "UNK": "070036020000" + }, + { + "TYPE": "ShopItem", + "UNK": "070000000000" + }, + { + "TYPE": "ShopItem", + "UNK": "070001000000" + }, + { + "TYPE": "ShopItem", + "UNK": "070003000000" + }, + { + "TYPE": "ShopItem", + "UNK": "070004000000" + }, + { + "TYPE": "ShopItem", + "UNK": "070006000000" + }, + { + "TYPE": "ShopItem", + "UNK": "070007000000" + }, + { + "TYPE": "ShopItem", + "UNK": "07000B000000" + }, + { + "TYPE": "ShopItem", + "UNK": "07000C000000" + }, + { + "TYPE": "ShopItem", + "UNK": "07000D000000" + }, + { + "TYPE": "ShopItem", + "UNK": "07000E000000" + }, + { + "TYPE": "ShopItem", + "UNK": "07000F000000" + }, + { + "TYPE": "ShopItem", + "UNK": "070010000000" + }, + { + "TYPE": "ShopItem", + "UNK": "070011000000" + }, + { + "TYPE": "ShopItem", + "UNK": "070012000000" + }, + { + "TYPE": "ShopItem", + "UNK": "070013000000" + }, + { + "TYPE": "ShopItem", + "UNK": "070014000000" + }, + { + "TYPE": "ShopItem", + "UNK": "070015000000" + }, + { + "TYPE": "ShopItem", + "UNK": "070016000000" + }, + { + "TYPE": "ShopItem", + "UNK": "070017000000" + }, + { + "TYPE": "ShopItem", + "UNK": "070018000000" + }, + { + "TYPE": "ShopItem", + "UNK": "07000B010000" + }, + { + "TYPE": "ShopTitle", + "ID": 8, + "UNK0": 0, + "STRING": "Campus Store", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "0800F9030000" + }, + { + "TYPE": "ShopItem", + "UNK": "0800FC030000" + }, + { + "TYPE": "ShopItem", + "UNK": "080017040000" + }, + { + "TYPE": "ShopItem", + "UNK": "08001A040000" + }, + { + "TYPE": "ShopItem", + "UNK": "080035040000" + }, + { + "TYPE": "ShopItem", + "UNK": "080036040000" + }, + { + "TYPE": "ShopItem", + "UNK": "080038040000" + }, + { + "TYPE": "ShopItem", + "UNK": "080054040000" + }, + { + "TYPE": "ShopItem", + "UNK": "080056040000" + }, + { + "TYPE": "ShopItem", + "UNK": "080071040000" + }, + { + "TYPE": "ShopItem", + "UNK": "080074040000" + }, + { + "TYPE": "ShopItem", + "UNK": "0800AE040000" + }, + { + "TYPE": "ShopItem", + "UNK": "0800B0040000" + }, + { + "TYPE": "ShopItem", + "UNK": "0800CB040000" + }, + { + "TYPE": "ShopItem", + "UNK": "0800CE040000" + }, + { + "TYPE": "ShopItem", + "UNK": "0800EA040000" + }, + { + "TYPE": "ShopItem", + "UNK": "0800EC040000" + }, + { + "TYPE": "ShopItem", + "UNK": "080008050000" + }, + { + "TYPE": "ShopItem", + "UNK": "08000A050000" + }, + { + "TYPE": "ShopItem", + "UNK": "080025050000" + }, + { + "TYPE": "ShopItem", + "UNK": "080028050000" + }, + { + "TYPE": "ShopItem", + "UNK": "080006020000" + }, + { + "TYPE": "ShopItem", + "UNK": "080009020000" + }, + { + "TYPE": "ShopItem", + "UNK": "080039020000" + }, + { + "TYPE": "ShopItem", + "UNK": "08003C020000" + }, + { + "TYPE": "ShopItem", + "UNK": "080000000000" + }, + { + "TYPE": "ShopItem", + "UNK": "080001000000" + }, + { + "TYPE": "ShopItem", + "UNK": "080003000000" + }, + { + "TYPE": "ShopItem", + "UNK": "080004000000" + }, + { + "TYPE": "ShopItem", + "UNK": "080006000000" + }, + { + "TYPE": "ShopItem", + "UNK": "080007000000" + }, + { + "TYPE": "ShopItem", + "UNK": "08000B000000" + }, + { + "TYPE": "ShopItem", + "UNK": "08000C000000" + }, + { + "TYPE": "ShopItem", + "UNK": "08000D000000" + }, + { + "TYPE": "ShopItem", + "UNK": "08000E000000" + }, + { + "TYPE": "ShopItem", + "UNK": "08000F000000" + }, + { + "TYPE": "ShopItem", + "UNK": "080010000000" + }, + { + "TYPE": "ShopItem", + "UNK": "080011000000" + }, + { + "TYPE": "ShopItem", + "UNK": "080012000000" + }, + { + "TYPE": "ShopItem", + "UNK": "080013000000" + }, + { + "TYPE": "ShopItem", + "UNK": "080014000000" + }, + { + "TYPE": "ShopItem", + "UNK": "080015000000" + }, + { + "TYPE": "ShopItem", + "UNK": "080016000000" + }, + { + "TYPE": "ShopItem", + "UNK": "080017000000" + }, + { + "TYPE": "ShopItem", + "UNK": "080018000000" + }, + { + "TYPE": "ShopItem", + "UNK": "08000D010000" + }, + { + "TYPE": "ShopTitle", + "ID": 9, + "UNK0": 0, + "STRING": "Campus Store", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "0900F9030000" + }, + { + "TYPE": "ShopItem", + "UNK": "0900FC030000" + }, + { + "TYPE": "ShopItem", + "UNK": "090017040000" + }, + { + "TYPE": "ShopItem", + "UNK": "09001A040000" + }, + { + "TYPE": "ShopItem", + "UNK": "090035040000" + }, + { + "TYPE": "ShopItem", + "UNK": "090036040000" + }, + { + "TYPE": "ShopItem", + "UNK": "090038040000" + }, + { + "TYPE": "ShopItem", + "UNK": "090054040000" + }, + { + "TYPE": "ShopItem", + "UNK": "090056040000" + }, + { + "TYPE": "ShopItem", + "UNK": "090071040000" + }, + { + "TYPE": "ShopItem", + "UNK": "090074040000" + }, + { + "TYPE": "ShopItem", + "UNK": "0900AE040000" + }, + { + "TYPE": "ShopItem", + "UNK": "0900B0040000" + }, + { + "TYPE": "ShopItem", + "UNK": "0900CB040000" + }, + { + "TYPE": "ShopItem", + "UNK": "0900CE040000" + }, + { + "TYPE": "ShopItem", + "UNK": "0900EA040000" + }, + { + "TYPE": "ShopItem", + "UNK": "0900EC040000" + }, + { + "TYPE": "ShopItem", + "UNK": "090008050000" + }, + { + "TYPE": "ShopItem", + "UNK": "09000A050000" + }, + { + "TYPE": "ShopItem", + "UNK": "090025050000" + }, + { + "TYPE": "ShopItem", + "UNK": "090028050000" + }, + { + "TYPE": "ShopItem", + "UNK": "090000000000" + }, + { + "TYPE": "ShopItem", + "UNK": "090001000000" + }, + { + "TYPE": "ShopItem", + "UNK": "090003000000" + }, + { + "TYPE": "ShopItem", + "UNK": "090004000000" + }, + { + "TYPE": "ShopItem", + "UNK": "090006000000" + }, + { + "TYPE": "ShopItem", + "UNK": "090007000000" + }, + { + "TYPE": "ShopItem", + "UNK": "09000B000000" + }, + { + "TYPE": "ShopItem", + "UNK": "09000C000000" + }, + { + "TYPE": "ShopItem", + "UNK": "09000D000000" + }, + { + "TYPE": "ShopItem", + "UNK": "09000E000000" + }, + { + "TYPE": "ShopItem", + "UNK": "09000F000000" + }, + { + "TYPE": "ShopItem", + "UNK": "090010000000" + }, + { + "TYPE": "ShopItem", + "UNK": "090011000000" + }, + { + "TYPE": "ShopItem", + "UNK": "090012000000" + }, + { + "TYPE": "ShopItem", + "UNK": "090013000000" + }, + { + "TYPE": "ShopItem", + "UNK": "090014000000" + }, + { + "TYPE": "ShopItem", + "UNK": "090015000000" + }, + { + "TYPE": "ShopItem", + "UNK": "090016000000" + }, + { + "TYPE": "ShopItem", + "UNK": "090017000000" + }, + { + "TYPE": "ShopItem", + "UNK": "090018000000" + }, + { + "TYPE": "ShopItem", + "UNK": "09000E010000" + }, + { + "TYPE": "ShopTitle", + "ID": 10, + "UNK0": 3, + "STRING": "Engineering Club", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "0A0034080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0A003A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0A003D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0A0057080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0A005C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0A0063080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0A007A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0A0082080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0A0084080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0A009D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0A00A7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0A00C7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0A0000090200" + }, + { + "TYPE": "ShopItem", + "UNK": "0A0005090200" + }, + { + "TYPE": "ShopItem", + "UNK": "0A0030090400" + }, + { + "TYPE": "ShopItem", + "UNK": "0A0031090400" + }, + { + "TYPE": "ShopTitle", + "ID": 11, + "UNK0": 3, + "STRING": "Engineering Club", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "0B0034080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0B0035080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0B003A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0B003D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0B0040080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0B0057080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0B0058080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0B005C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0B005F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0B0061080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0B0063080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0B0066080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0B007A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0B007B080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0B0082080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0B0084080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0B0087080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0B009D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0B009E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0B00A2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0B00A5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0B00A7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0B00AA080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0B00C0080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0B00C7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0B00CA080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0B00CC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0B00DE080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0B00E5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0B00E7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0B00FC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0B0000090200" + }, + { + "TYPE": "ShopItem", + "UNK": "0B0003090200" + }, + { + "TYPE": "ShopItem", + "UNK": "0B0005090200" + }, + { + "TYPE": "ShopItem", + "UNK": "0B0030090400" + }, + { + "TYPE": "ShopItem", + "UNK": "0B0031090400" + }, + { + "TYPE": "ShopTitle", + "ID": 12, + "UNK0": 3, + "STRING": "Engineering Club", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "0C0034080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0C0035080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0C0039080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0C003A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0C003D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0C0040080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0C0041080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0C0057080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0C0058080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0C005C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0C005D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0C005F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0C0061080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0C0063080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0C0066080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0C0067080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0C007A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0C007B080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0C0080080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0C0082080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0C0084080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0C0087080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0C0088080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0C009D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0C009E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0C00A2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0C00A5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0C00A7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0C00AA080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0C00AB080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0C00C0080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0C00C1080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0C00C4080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0C00C7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0C00CA080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0C00CC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0C00DE080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0C00DF080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0C00E2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0C00E5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0C00E7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0C00FC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0C00FD080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0C0000090200" + }, + { + "TYPE": "ShopItem", + "UNK": "0C0001090200" + }, + { + "TYPE": "ShopItem", + "UNK": "0C0003090200" + }, + { + "TYPE": "ShopItem", + "UNK": "0C0005090200" + }, + { + "TYPE": "ShopItem", + "UNK": "0C0030090400" + }, + { + "TYPE": "ShopItem", + "UNK": "0C0031090400" + }, + { + "TYPE": "ShopTitle", + "ID": 13, + "UNK0": 3, + "STRING": "Engineering Club", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "0D0034080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D0035080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D0036080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D0039080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D003A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D003B080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D003D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D003E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D0040080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D0041080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D0057080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D0058080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D0059080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D005C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D005D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D005F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D0061080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D0063080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D0064080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D0066080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D0067080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D007A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D007B080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D007C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D0080080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D0081080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D0082080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D0083080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D0084080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D0085080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D0087080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D0088080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D009D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D009E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D009F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D00A2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D00A4080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D00A5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D00A6080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D00A7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D00A8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D00AA080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D00AB080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D00C0080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D00C1080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D00C4080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D00C5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D00C7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D00C8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D00CA080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D00CB080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D00CC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D00CD080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D00DE080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D00DF080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D00E2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D00E3080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D00E5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D00E6080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D00E7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D00E8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D00FC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D00FD080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D00FE080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D0000090200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D0001090200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D0003090200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D0004090200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D0005090200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D0006090200" + }, + { + "TYPE": "ShopItem", + "UNK": "0D0030090400" + }, + { + "TYPE": "ShopItem", + "UNK": "0D0031090400" + }, + { + "TYPE": "ShopTitle", + "ID": 14, + "UNK0": 3, + "STRING": "Engineering Club", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "0E0034080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E0035080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E0036080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E0039080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E003A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E003B080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E003D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E003E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E0040080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E0041080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E0057080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E0058080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E0059080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E005C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E005D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E005E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E005F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E0060080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E0061080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E0062080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E0063080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E0064080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E0066080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E0067080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E007A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E007B080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E007C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E007D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E0080080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E0081080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E0082080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E0083080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E0084080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E0085080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E0087080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E0088080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E009D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E009E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E009F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E00A2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E00A3080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E00A4080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E00A5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E00A6080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E00A7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E00A8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E00AA080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E00AB080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E00C0080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E00C1080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E00C2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E00C4080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E00C5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E00C7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E00C8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E00CA080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E00CB080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E00CC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E00CD080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E00DE080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E00DF080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E00E0080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E00E2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E00E3080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E00E5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E00E6080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E00E7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E00E8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E00FC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E00FD080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E00FE080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E0000090200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E0001090200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E0002090200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E0003090200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E0004090200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E0005090200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E0006090200" + }, + { + "TYPE": "ShopItem", + "UNK": "0E0030090400" + }, + { + "TYPE": "ShopItem", + "UNK": "0E0031090400" + }, + { + "TYPE": "ShopTitle", + "ID": 15, + "UNK0": 3, + "STRING": "Engineering Club", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "0F0034080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F0035080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F0036080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F0037080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F0039080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F003A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F003B080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F003D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F003E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F003F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F0040080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F0041080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F0057080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F0058080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F0059080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F005A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F005C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F005D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F005E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F005F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F0060080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F0061080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F0062080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F0063080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F0064080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F0065080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F0066080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F0067080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F007A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F007B080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F007C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F007D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F007E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F007F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F0080080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F0081080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F0082080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F0083080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F0084080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F0085080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F0086080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F0087080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F0088080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F009D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F009E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F009F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F00A0080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F00A1080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F00A2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F00A3080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F00A4080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F00A5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F00A6080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F00A7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F00A8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F00A9080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F00AA080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F00AB080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F00C0080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F00C1080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F00C2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F00C4080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F00C5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F00C7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F00C8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F00C9080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F00CA080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F00CB080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F00CC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F00CD080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F00DE080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F00DF080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F00E0080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F00E2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F00E3080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F00E4080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F00E5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F00E6080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F00E7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F00E8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F00FC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F00FD080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F00FE080200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F0000090200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F0001090200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F0002090200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F0003090200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F0004090200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F0005090200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F0006090200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F0007090200" + }, + { + "TYPE": "ShopItem", + "UNK": "0F0030090400" + }, + { + "TYPE": "ShopItem", + "UNK": "0F0031090400" + }, + { + "TYPE": "ShopTitle", + "ID": 16, + "UNK0": 3, + "STRING": "Engineering Club", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "100034080200" + }, + { + "TYPE": "ShopItem", + "UNK": "100035080200" + }, + { + "TYPE": "ShopItem", + "UNK": "100036080200" + }, + { + "TYPE": "ShopItem", + "UNK": "100037080200" + }, + { + "TYPE": "ShopItem", + "UNK": "100038080200" + }, + { + "TYPE": "ShopItem", + "UNK": "100039080200" + }, + { + "TYPE": "ShopItem", + "UNK": "10003A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "10003B080200" + }, + { + "TYPE": "ShopItem", + "UNK": "10003C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "10003D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "10003E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "10003F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "100040080200" + }, + { + "TYPE": "ShopItem", + "UNK": "100041080200" + }, + { + "TYPE": "ShopItem", + "UNK": "100057080200" + }, + { + "TYPE": "ShopItem", + "UNK": "100058080200" + }, + { + "TYPE": "ShopItem", + "UNK": "100059080200" + }, + { + "TYPE": "ShopItem", + "UNK": "10005A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "10005B080200" + }, + { + "TYPE": "ShopItem", + "UNK": "10005C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "10005D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "10005E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "10005F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "100060080200" + }, + { + "TYPE": "ShopItem", + "UNK": "100061080200" + }, + { + "TYPE": "ShopItem", + "UNK": "100062080200" + }, + { + "TYPE": "ShopItem", + "UNK": "100063080200" + }, + { + "TYPE": "ShopItem", + "UNK": "100064080200" + }, + { + "TYPE": "ShopItem", + "UNK": "100065080200" + }, + { + "TYPE": "ShopItem", + "UNK": "100066080200" + }, + { + "TYPE": "ShopItem", + "UNK": "100067080200" + }, + { + "TYPE": "ShopItem", + "UNK": "10007A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "10007B080200" + }, + { + "TYPE": "ShopItem", + "UNK": "10007C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "10007D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "10007E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "10007F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "100080080200" + }, + { + "TYPE": "ShopItem", + "UNK": "100081080200" + }, + { + "TYPE": "ShopItem", + "UNK": "100082080200" + }, + { + "TYPE": "ShopItem", + "UNK": "100083080200" + }, + { + "TYPE": "ShopItem", + "UNK": "100084080200" + }, + { + "TYPE": "ShopItem", + "UNK": "100085080200" + }, + { + "TYPE": "ShopItem", + "UNK": "100086080200" + }, + { + "TYPE": "ShopItem", + "UNK": "100087080200" + }, + { + "TYPE": "ShopItem", + "UNK": "100088080200" + }, + { + "TYPE": "ShopItem", + "UNK": "10009D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "10009E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "10009F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1000A0080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1000A1080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1000A2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1000A3080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1000A4080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1000A5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1000A6080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1000A7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1000A8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1000A9080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1000AA080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1000AB080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1000C0080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1000C1080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1000C2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1000C3080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1000C4080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1000C5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1000C6080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1000C7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1000C8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1000C9080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1000CA080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1000CB080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1000CC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1000CD080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1000DE080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1000DF080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1000E0080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1000E1080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1000E2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1000E3080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1000E4080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1000E5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1000E6080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1000E7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1000E8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1000FC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1000FD080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1000FE080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1000FF080200" + }, + { + "TYPE": "ShopItem", + "UNK": "100000090200" + }, + { + "TYPE": "ShopItem", + "UNK": "100001090200" + }, + { + "TYPE": "ShopItem", + "UNK": "100002090200" + }, + { + "TYPE": "ShopItem", + "UNK": "100003090200" + }, + { + "TYPE": "ShopItem", + "UNK": "100004090200" + }, + { + "TYPE": "ShopItem", + "UNK": "100005090200" + }, + { + "TYPE": "ShopItem", + "UNK": "100006090200" + }, + { + "TYPE": "ShopItem", + "UNK": "100007090200" + }, + { + "TYPE": "ShopItem", + "UNK": "100030090400" + }, + { + "TYPE": "ShopItem", + "UNK": "100031090400" + }, + { + "TYPE": "ShopTitle", + "ID": 17, + "UNK0": 2, + "STRING": "Orbment Charging Station", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "110034080200" + }, + { + "TYPE": "ShopItem", + "UNK": "11003A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "11003D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "110057080200" + }, + { + "TYPE": "ShopItem", + "UNK": "11005C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "110063080200" + }, + { + "TYPE": "ShopItem", + "UNK": "11007A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "110082080200" + }, + { + "TYPE": "ShopItem", + "UNK": "110084080200" + }, + { + "TYPE": "ShopItem", + "UNK": "11009D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1100A7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1100C7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "110000090200" + }, + { + "TYPE": "ShopItem", + "UNK": "110005090200" + }, + { + "TYPE": "ShopTitle", + "ID": 18, + "UNK0": 2, + "STRING": "Orbment Charging Station", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "120034080200" + }, + { + "TYPE": "ShopItem", + "UNK": "120035080200" + }, + { + "TYPE": "ShopItem", + "UNK": "12003A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "12003D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "120040080200" + }, + { + "TYPE": "ShopItem", + "UNK": "120057080200" + }, + { + "TYPE": "ShopItem", + "UNK": "120058080200" + }, + { + "TYPE": "ShopItem", + "UNK": "12005C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "12005F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "120061080200" + }, + { + "TYPE": "ShopItem", + "UNK": "120063080200" + }, + { + "TYPE": "ShopItem", + "UNK": "120066080200" + }, + { + "TYPE": "ShopItem", + "UNK": "12007A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "12007B080200" + }, + { + "TYPE": "ShopItem", + "UNK": "120082080200" + }, + { + "TYPE": "ShopItem", + "UNK": "120084080200" + }, + { + "TYPE": "ShopItem", + "UNK": "120087080200" + }, + { + "TYPE": "ShopItem", + "UNK": "12009D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "12009E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1200A2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1200A5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1200A7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1200AA080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1200C0080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1200C7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1200CA080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1200CC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1200DE080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1200E5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1200E7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1200FC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "120000090200" + }, + { + "TYPE": "ShopItem", + "UNK": "120003090200" + }, + { + "TYPE": "ShopItem", + "UNK": "120005090200" + }, + { + "TYPE": "ShopTitle", + "ID": 19, + "UNK0": 2, + "STRING": "Orbment Charging Station", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "130034080200" + }, + { + "TYPE": "ShopItem", + "UNK": "130035080200" + }, + { + "TYPE": "ShopItem", + "UNK": "130039080200" + }, + { + "TYPE": "ShopItem", + "UNK": "13003A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "13003D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "130040080200" + }, + { + "TYPE": "ShopItem", + "UNK": "130041080200" + }, + { + "TYPE": "ShopItem", + "UNK": "130057080200" + }, + { + "TYPE": "ShopItem", + "UNK": "130058080200" + }, + { + "TYPE": "ShopItem", + "UNK": "13005C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "13005D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "13005F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "130061080200" + }, + { + "TYPE": "ShopItem", + "UNK": "130063080200" + }, + { + "TYPE": "ShopItem", + "UNK": "130066080200" + }, + { + "TYPE": "ShopItem", + "UNK": "130067080200" + }, + { + "TYPE": "ShopItem", + "UNK": "13007A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "13007B080200" + }, + { + "TYPE": "ShopItem", + "UNK": "130080080200" + }, + { + "TYPE": "ShopItem", + "UNK": "130082080200" + }, + { + "TYPE": "ShopItem", + "UNK": "130084080200" + }, + { + "TYPE": "ShopItem", + "UNK": "130087080200" + }, + { + "TYPE": "ShopItem", + "UNK": "130088080200" + }, + { + "TYPE": "ShopItem", + "UNK": "13009D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "13009E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1300A2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1300A5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1300A7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1300AA080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1300AB080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1300C0080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1300C1080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1300C4080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1300C7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1300CA080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1300CC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1300DE080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1300DF080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1300E2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1300E5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1300E7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1300FC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1300FD080200" + }, + { + "TYPE": "ShopItem", + "UNK": "130000090200" + }, + { + "TYPE": "ShopItem", + "UNK": "130001090200" + }, + { + "TYPE": "ShopItem", + "UNK": "130003090200" + }, + { + "TYPE": "ShopItem", + "UNK": "130005090200" + }, + { + "TYPE": "ShopTitle", + "ID": 20, + "UNK0": 2, + "STRING": "Orbment Charging Station", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "140034080200" + }, + { + "TYPE": "ShopItem", + "UNK": "140035080200" + }, + { + "TYPE": "ShopItem", + "UNK": "140036080200" + }, + { + "TYPE": "ShopItem", + "UNK": "140039080200" + }, + { + "TYPE": "ShopItem", + "UNK": "14003A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "14003B080200" + }, + { + "TYPE": "ShopItem", + "UNK": "14003D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "14003E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "140040080200" + }, + { + "TYPE": "ShopItem", + "UNK": "140041080200" + }, + { + "TYPE": "ShopItem", + "UNK": "140057080200" + }, + { + "TYPE": "ShopItem", + "UNK": "140058080200" + }, + { + "TYPE": "ShopItem", + "UNK": "140059080200" + }, + { + "TYPE": "ShopItem", + "UNK": "14005C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "14005D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "14005F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "140061080200" + }, + { + "TYPE": "ShopItem", + "UNK": "140063080200" + }, + { + "TYPE": "ShopItem", + "UNK": "140064080200" + }, + { + "TYPE": "ShopItem", + "UNK": "140066080200" + }, + { + "TYPE": "ShopItem", + "UNK": "140067080200" + }, + { + "TYPE": "ShopItem", + "UNK": "14007A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "14007B080200" + }, + { + "TYPE": "ShopItem", + "UNK": "14007C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "140080080200" + }, + { + "TYPE": "ShopItem", + "UNK": "140081080200" + }, + { + "TYPE": "ShopItem", + "UNK": "140082080200" + }, + { + "TYPE": "ShopItem", + "UNK": "140083080200" + }, + { + "TYPE": "ShopItem", + "UNK": "140084080200" + }, + { + "TYPE": "ShopItem", + "UNK": "140085080200" + }, + { + "TYPE": "ShopItem", + "UNK": "140087080200" + }, + { + "TYPE": "ShopItem", + "UNK": "140088080200" + }, + { + "TYPE": "ShopItem", + "UNK": "14009D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "14009E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "14009F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1400A2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1400A4080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1400A5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1400A6080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1400A7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1400A8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1400AA080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1400AB080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1400C0080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1400C1080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1400C4080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1400C5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1400C7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1400C8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1400CA080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1400CB080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1400CC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1400CD080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1400DE080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1400DF080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1400E2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1400E3080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1400E5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1400E6080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1400E7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1400E8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1400FC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1400FD080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1400FE080200" + }, + { + "TYPE": "ShopItem", + "UNK": "140000090200" + }, + { + "TYPE": "ShopItem", + "UNK": "140001090200" + }, + { + "TYPE": "ShopItem", + "UNK": "140003090200" + }, + { + "TYPE": "ShopItem", + "UNK": "140004090200" + }, + { + "TYPE": "ShopItem", + "UNK": "140005090200" + }, + { + "TYPE": "ShopItem", + "UNK": "140006090200" + }, + { + "TYPE": "ShopTitle", + "ID": 21, + "UNK0": 2, + "STRING": "Orbment Charging Station", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "150034080200" + }, + { + "TYPE": "ShopItem", + "UNK": "150035080200" + }, + { + "TYPE": "ShopItem", + "UNK": "150036080200" + }, + { + "TYPE": "ShopItem", + "UNK": "150039080200" + }, + { + "TYPE": "ShopItem", + "UNK": "15003A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "15003B080200" + }, + { + "TYPE": "ShopItem", + "UNK": "15003D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "15003E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "150040080200" + }, + { + "TYPE": "ShopItem", + "UNK": "150041080200" + }, + { + "TYPE": "ShopItem", + "UNK": "150057080200" + }, + { + "TYPE": "ShopItem", + "UNK": "150058080200" + }, + { + "TYPE": "ShopItem", + "UNK": "150059080200" + }, + { + "TYPE": "ShopItem", + "UNK": "15005C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "15005D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "15005E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "15005F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "150060080200" + }, + { + "TYPE": "ShopItem", + "UNK": "150061080200" + }, + { + "TYPE": "ShopItem", + "UNK": "150062080200" + }, + { + "TYPE": "ShopItem", + "UNK": "150063080200" + }, + { + "TYPE": "ShopItem", + "UNK": "150064080200" + }, + { + "TYPE": "ShopItem", + "UNK": "150066080200" + }, + { + "TYPE": "ShopItem", + "UNK": "150067080200" + }, + { + "TYPE": "ShopItem", + "UNK": "15007A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "15007B080200" + }, + { + "TYPE": "ShopItem", + "UNK": "15007C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "15007D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "150080080200" + }, + { + "TYPE": "ShopItem", + "UNK": "150081080200" + }, + { + "TYPE": "ShopItem", + "UNK": "150082080200" + }, + { + "TYPE": "ShopItem", + "UNK": "150083080200" + }, + { + "TYPE": "ShopItem", + "UNK": "150084080200" + }, + { + "TYPE": "ShopItem", + "UNK": "150085080200" + }, + { + "TYPE": "ShopItem", + "UNK": "150087080200" + }, + { + "TYPE": "ShopItem", + "UNK": "150088080200" + }, + { + "TYPE": "ShopItem", + "UNK": "15009D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "15009E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "15009F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1500A2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1500A3080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1500A4080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1500A5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1500A6080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1500A7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1500A8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1500AA080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1500AB080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1500C0080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1500C1080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1500C2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1500C4080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1500C5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1500C7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1500C8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1500CA080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1500CB080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1500CC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1500CD080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1500DE080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1500DF080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1500E0080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1500E2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1500E3080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1500E5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1500E6080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1500E7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1500E8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1500FC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1500FD080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1500FE080200" + }, + { + "TYPE": "ShopItem", + "UNK": "150000090200" + }, + { + "TYPE": "ShopItem", + "UNK": "150001090200" + }, + { + "TYPE": "ShopItem", + "UNK": "150002090200" + }, + { + "TYPE": "ShopItem", + "UNK": "150003090200" + }, + { + "TYPE": "ShopItem", + "UNK": "150004090200" + }, + { + "TYPE": "ShopItem", + "UNK": "150005090200" + }, + { + "TYPE": "ShopItem", + "UNK": "150006090200" + }, + { + "TYPE": "ShopTitle", + "ID": 22, + "UNK0": 2, + "STRING": "Orbment Charging Station", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "160034080200" + }, + { + "TYPE": "ShopItem", + "UNK": "160035080200" + }, + { + "TYPE": "ShopItem", + "UNK": "160036080200" + }, + { + "TYPE": "ShopItem", + "UNK": "160037080200" + }, + { + "TYPE": "ShopItem", + "UNK": "160039080200" + }, + { + "TYPE": "ShopItem", + "UNK": "16003A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "16003B080200" + }, + { + "TYPE": "ShopItem", + "UNK": "16003D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "16003E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "16003F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "160040080200" + }, + { + "TYPE": "ShopItem", + "UNK": "160041080200" + }, + { + "TYPE": "ShopItem", + "UNK": "160057080200" + }, + { + "TYPE": "ShopItem", + "UNK": "160058080200" + }, + { + "TYPE": "ShopItem", + "UNK": "160059080200" + }, + { + "TYPE": "ShopItem", + "UNK": "16005A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "16005C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "16005D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "16005E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "16005F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "160060080200" + }, + { + "TYPE": "ShopItem", + "UNK": "160061080200" + }, + { + "TYPE": "ShopItem", + "UNK": "160062080200" + }, + { + "TYPE": "ShopItem", + "UNK": "160063080200" + }, + { + "TYPE": "ShopItem", + "UNK": "160064080200" + }, + { + "TYPE": "ShopItem", + "UNK": "160065080200" + }, + { + "TYPE": "ShopItem", + "UNK": "160066080200" + }, + { + "TYPE": "ShopItem", + "UNK": "160067080200" + }, + { + "TYPE": "ShopItem", + "UNK": "16007A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "16007B080200" + }, + { + "TYPE": "ShopItem", + "UNK": "16007C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "16007D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "16007E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "16007F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "160080080200" + }, + { + "TYPE": "ShopItem", + "UNK": "160081080200" + }, + { + "TYPE": "ShopItem", + "UNK": "160082080200" + }, + { + "TYPE": "ShopItem", + "UNK": "160083080200" + }, + { + "TYPE": "ShopItem", + "UNK": "160084080200" + }, + { + "TYPE": "ShopItem", + "UNK": "160085080200" + }, + { + "TYPE": "ShopItem", + "UNK": "160086080200" + }, + { + "TYPE": "ShopItem", + "UNK": "160087080200" + }, + { + "TYPE": "ShopItem", + "UNK": "160088080200" + }, + { + "TYPE": "ShopItem", + "UNK": "16009D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "16009E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "16009F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1600A0080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1600A1080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1600A2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1600A3080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1600A4080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1600A5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1600A6080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1600A7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1600A8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1600A9080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1600AA080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1600AB080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1600C0080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1600C1080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1600C2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1600C4080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1600C5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1600C7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1600C8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1600C9080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1600CA080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1600CB080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1600CC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1600CD080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1600DE080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1600DF080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1600E0080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1600E2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1600E3080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1600E4080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1600E5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1600E6080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1600E7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1600E8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1600FC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1600FD080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1600FE080200" + }, + { + "TYPE": "ShopItem", + "UNK": "160000090200" + }, + { + "TYPE": "ShopItem", + "UNK": "160001090200" + }, + { + "TYPE": "ShopItem", + "UNK": "160002090200" + }, + { + "TYPE": "ShopItem", + "UNK": "160003090200" + }, + { + "TYPE": "ShopItem", + "UNK": "160004090200" + }, + { + "TYPE": "ShopItem", + "UNK": "160005090200" + }, + { + "TYPE": "ShopItem", + "UNK": "160006090200" + }, + { + "TYPE": "ShopItem", + "UNK": "160007090200" + }, + { + "TYPE": "ShopTitle", + "ID": 23, + "UNK0": 2, + "STRING": "Orbment Charging Station", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "170034080200" + }, + { + "TYPE": "ShopItem", + "UNK": "170035080200" + }, + { + "TYPE": "ShopItem", + "UNK": "170036080200" + }, + { + "TYPE": "ShopItem", + "UNK": "170037080200" + }, + { + "TYPE": "ShopItem", + "UNK": "170038080200" + }, + { + "TYPE": "ShopItem", + "UNK": "170039080200" + }, + { + "TYPE": "ShopItem", + "UNK": "17003A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "17003B080200" + }, + { + "TYPE": "ShopItem", + "UNK": "17003C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "17003D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "17003E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "17003F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "170040080200" + }, + { + "TYPE": "ShopItem", + "UNK": "170041080200" + }, + { + "TYPE": "ShopItem", + "UNK": "170057080200" + }, + { + "TYPE": "ShopItem", + "UNK": "170058080200" + }, + { + "TYPE": "ShopItem", + "UNK": "170059080200" + }, + { + "TYPE": "ShopItem", + "UNK": "17005A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "17005B080200" + }, + { + "TYPE": "ShopItem", + "UNK": "17005C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "17005D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "17005E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "17005F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "170060080200" + }, + { + "TYPE": "ShopItem", + "UNK": "170061080200" + }, + { + "TYPE": "ShopItem", + "UNK": "170062080200" + }, + { + "TYPE": "ShopItem", + "UNK": "170063080200" + }, + { + "TYPE": "ShopItem", + "UNK": "170064080200" + }, + { + "TYPE": "ShopItem", + "UNK": "170065080200" + }, + { + "TYPE": "ShopItem", + "UNK": "170066080200" + }, + { + "TYPE": "ShopItem", + "UNK": "170067080200" + }, + { + "TYPE": "ShopItem", + "UNK": "17007A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "17007B080200" + }, + { + "TYPE": "ShopItem", + "UNK": "17007C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "17007D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "17007E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "17007F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "170080080200" + }, + { + "TYPE": "ShopItem", + "UNK": "170081080200" + }, + { + "TYPE": "ShopItem", + "UNK": "170082080200" + }, + { + "TYPE": "ShopItem", + "UNK": "170083080200" + }, + { + "TYPE": "ShopItem", + "UNK": "170084080200" + }, + { + "TYPE": "ShopItem", + "UNK": "170085080200" + }, + { + "TYPE": "ShopItem", + "UNK": "170086080200" + }, + { + "TYPE": "ShopItem", + "UNK": "170087080200" + }, + { + "TYPE": "ShopItem", + "UNK": "170088080200" + }, + { + "TYPE": "ShopItem", + "UNK": "17009D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "17009E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "17009F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1700A0080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1700A1080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1700A2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1700A3080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1700A4080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1700A5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1700A6080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1700A7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1700A8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1700A9080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1700AA080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1700AB080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1700C0080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1700C1080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1700C2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1700C3080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1700C4080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1700C5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1700C6080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1700C7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1700C8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1700C9080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1700CA080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1700CB080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1700CC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1700CD080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1700DE080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1700DF080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1700E0080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1700E1080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1700E2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1700E3080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1700E4080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1700E5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1700E6080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1700E7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1700E8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1700FC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1700FD080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1700FE080200" + }, + { + "TYPE": "ShopItem", + "UNK": "1700FF080200" + }, + { + "TYPE": "ShopItem", + "UNK": "170000090200" + }, + { + "TYPE": "ShopItem", + "UNK": "170001090200" + }, + { + "TYPE": "ShopItem", + "UNK": "170002090200" + }, + { + "TYPE": "ShopItem", + "UNK": "170003090200" + }, + { + "TYPE": "ShopItem", + "UNK": "170004090200" + }, + { + "TYPE": "ShopItem", + "UNK": "170005090200" + }, + { + "TYPE": "ShopItem", + "UNK": "170006090200" + }, + { + "TYPE": "ShopItem", + "UNK": "170007090200" + }, + { + "TYPE": "ShopTitle", + "ID": 24, + "UNK0": 4, + "STRING": "Engineering Club", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "1800C8000100" + }, + { + "TYPE": "ShopItem", + "UNK": "1800D7000100" + }, + { + "TYPE": "ShopItem", + "UNK": "1800F5000100" + }, + { + "TYPE": "ShopTitle", + "ID": 25, + "UNK0": 4, + "STRING": "Engineering Club", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "1900C9000100" + }, + { + "TYPE": "ShopItem", + "UNK": "1900D2000100" + }, + { + "TYPE": "ShopItem", + "UNK": "1900D8000100" + }, + { + "TYPE": "ShopItem", + "UNK": "1900E1000100" + }, + { + "TYPE": "ShopTitle", + "ID": 26, + "UNK0": 4, + "STRING": "Engineering Club", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "1A00CA000100" + }, + { + "TYPE": "ShopItem", + "UNK": "1A00D9000100" + }, + { + "TYPE": "ShopItem", + "UNK": "1A00E6000100" + }, + { + "TYPE": "ShopItem", + "UNK": "1A00EB000100" + }, + { + "TYPE": "ShopItem", + "UNK": "1A00F0000100" + }, + { + "TYPE": "ShopTitle", + "ID": 27, + "UNK0": 4, + "STRING": "Engineering Club", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "1B00CB000100" + }, + { + "TYPE": "ShopItem", + "UNK": "1B00D3000100" + }, + { + "TYPE": "ShopItem", + "UNK": "1B00DA000100" + }, + { + "TYPE": "ShopItem", + "UNK": "1B00EC000100" + }, + { + "TYPE": "ShopItem", + "UNK": "1B00F6000100" + }, + { + "TYPE": "ShopTitle", + "ID": 28, + "UNK0": 4, + "STRING": "Engineering Club", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "1C00CC000100" + }, + { + "TYPE": "ShopItem", + "UNK": "1C00DB000100" + }, + { + "TYPE": "ShopItem", + "UNK": "1C00E2000100" + }, + { + "TYPE": "ShopItem", + "UNK": "1C00E7000100" + }, + { + "TYPE": "ShopItem", + "UNK": "1C00F1000100" + }, + { + "TYPE": "ShopTitle", + "ID": 29, + "UNK0": 4, + "STRING": "Engineering Club", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "1D00CD000100" + }, + { + "TYPE": "ShopItem", + "UNK": "1D00DC000100" + }, + { + "TYPE": "ShopItem", + "UNK": "1D00E3000100" + }, + { + "TYPE": "ShopItem", + "UNK": "1D00ED000100" + }, + { + "TYPE": "ShopItem", + "UNK": "1D00F7000100" + }, + { + "TYPE": "ShopItem", + "UNK": "1D00FB000100" + }, + { + "TYPE": "ShopTitle", + "ID": 30, + "UNK0": 4, + "STRING": "Engineering Club", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "1E00CE000100" + }, + { + "TYPE": "ShopItem", + "UNK": "1E00D4000100" + }, + { + "TYPE": "ShopItem", + "UNK": "1E00DD000100" + }, + { + "TYPE": "ShopItem", + "UNK": "1E00E8000100" + }, + { + "TYPE": "ShopItem", + "UNK": "1E00F2000100" + }, + { + "TYPE": "ShopItem", + "UNK": "1E0000010100" + }, + { + "TYPE": "ShopTitle", + "ID": 31, + "UNK0": 4, + "STRING": "Engineering Club", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "1F00C4000100" + }, + { + "TYPE": "ShopItem", + "UNK": "1F00CF000100" + }, + { + "TYPE": "ShopItem", + "UNK": "1F00D5000100" + }, + { + "TYPE": "ShopItem", + "UNK": "1F00DE000100" + }, + { + "TYPE": "ShopItem", + "UNK": "1F00DF000100" + }, + { + "TYPE": "ShopItem", + "UNK": "1F00E4000100" + }, + { + "TYPE": "ShopItem", + "UNK": "1F00E9000100" + }, + { + "TYPE": "ShopItem", + "UNK": "1F00EE000100" + }, + { + "TYPE": "ShopItem", + "UNK": "1F00F3000100" + }, + { + "TYPE": "ShopItem", + "UNK": "1F00F8000100" + }, + { + "TYPE": "ShopItem", + "UNK": "1F00FC000100" + }, + { + "TYPE": "ShopItem", + "UNK": "1F0001010100" + }, + { + "TYPE": "ShopItem", + "UNK": "1F00CE000100" + }, + { + "TYPE": "ShopItem", + "UNK": "1F00D4000100" + }, + { + "TYPE": "ShopItem", + "UNK": "1F00DD000100" + }, + { + "TYPE": "ShopItem", + "UNK": "1F00E8000100" + }, + { + "TYPE": "ShopItem", + "UNK": "1F00F2000100" + }, + { + "TYPE": "ShopItem", + "UNK": "1F0000010100" + }, + { + "TYPE": "ShopTitle", + "ID": 32, + "UNK0": 5, + "STRING": "Engineering Club", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "2000D5070300" + }, + { + "TYPE": "ShopItem", + "UNK": "200003000000" + }, + { + "TYPE": "ShopTitle", + "ID": 33, + "UNK0": 5, + "STRING": "Engineering Club", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "2100D5070300" + }, + { + "TYPE": "ShopItem", + "UNK": "2100DA070300" + }, + { + "TYPE": "ShopItem", + "UNK": "210003000000" + }, + { + "TYPE": "ShopTitle", + "ID": 34, + "UNK0": 5, + "STRING": "Engineering Club", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "2200D5070300" + }, + { + "TYPE": "ShopItem", + "UNK": "2200DA070300" + }, + { + "TYPE": "ShopItem", + "UNK": "2200DD070300" + }, + { + "TYPE": "ShopItem", + "UNK": "220003000000" + }, + { + "TYPE": "ShopItem", + "UNK": "220004000000" + }, + { + "TYPE": "ShopTitle", + "ID": 35, + "UNK0": 5, + "STRING": "Engineering Club", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "2300D5070300" + }, + { + "TYPE": "ShopItem", + "UNK": "2300DA070300" + }, + { + "TYPE": "ShopItem", + "UNK": "2300DD070300" + }, + { + "TYPE": "ShopItem", + "UNK": "2300DF070300" + }, + { + "TYPE": "ShopItem", + "UNK": "230003000000" + }, + { + "TYPE": "ShopItem", + "UNK": "230004000000" + }, + { + "TYPE": "ShopTitle", + "ID": 36, + "UNK0": 5, + "STRING": "Engineering Club", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "2400D5070300" + }, + { + "TYPE": "ShopItem", + "UNK": "2400DA070300" + }, + { + "TYPE": "ShopItem", + "UNK": "2400DD070300" + }, + { + "TYPE": "ShopItem", + "UNK": "2400DF070300" + }, + { + "TYPE": "ShopItem", + "UNK": "2400E2070300" + }, + { + "TYPE": "ShopItem", + "UNK": "240003000000" + }, + { + "TYPE": "ShopItem", + "UNK": "240004000000" + }, + { + "TYPE": "ShopTitle", + "ID": 37, + "UNK0": 5, + "STRING": "Engineering Club", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "2500D5070300" + }, + { + "TYPE": "ShopItem", + "UNK": "2500DA070300" + }, + { + "TYPE": "ShopItem", + "UNK": "2500DD070300" + }, + { + "TYPE": "ShopItem", + "UNK": "2500DF070300" + }, + { + "TYPE": "ShopItem", + "UNK": "2500E2070300" + }, + { + "TYPE": "ShopItem", + "UNK": "2500E6070300" + }, + { + "TYPE": "ShopItem", + "UNK": "250003000000" + }, + { + "TYPE": "ShopItem", + "UNK": "250004000000" + }, + { + "TYPE": "ShopTitle", + "ID": 38, + "UNK0": 5, + "STRING": "Engineering Club", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "2600D5070300" + }, + { + "TYPE": "ShopItem", + "UNK": "2600DA070300" + }, + { + "TYPE": "ShopItem", + "UNK": "2600DD070300" + }, + { + "TYPE": "ShopItem", + "UNK": "2600DF070300" + }, + { + "TYPE": "ShopItem", + "UNK": "2600E2070300" + }, + { + "TYPE": "ShopItem", + "UNK": "2600E6070300" + }, + { + "TYPE": "ShopItem", + "UNK": "2600E9070300" + }, + { + "TYPE": "ShopItem", + "UNK": "260003000000" + }, + { + "TYPE": "ShopItem", + "UNK": "260004000000" + }, + { + "TYPE": "ShopTitle", + "ID": 39, + "UNK0": 1, + "STRING": "Cafeteria", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "270006060000" + }, + { + "TYPE": "ShopItem", + "UNK": "270007060000" + }, + { + "TYPE": "ShopTitle", + "ID": 40, + "UNK0": 1, + "STRING": "Cafeteria", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "280006060000" + }, + { + "TYPE": "ShopItem", + "UNK": "280007060000" + }, + { + "TYPE": "ShopItem", + "UNK": "28000E060000" + }, + { + "TYPE": "ShopItem", + "UNK": "2800F5050000" + }, + { + "TYPE": "ShopTitle", + "ID": 41, + "UNK0": 1, + "STRING": "Brandon's General Goods", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "290005060000" + }, + { + "TYPE": "ShopItem", + "UNK": "290040060000" + }, + { + "TYPE": "ShopItem", + "UNK": "290041060000" + }, + { + "TYPE": "ShopItem", + "UNK": "290042060000" + }, + { + "TYPE": "ShopItem", + "UNK": "290043060000" + }, + { + "TYPE": "ShopItem", + "UNK": "290044060000" + }, + { + "TYPE": "ShopItem", + "UNK": "290045060000" + }, + { + "TYPE": "ShopItem", + "UNK": "290046060000" + }, + { + "TYPE": "ShopItem", + "UNK": "290047060000" + }, + { + "TYPE": "ShopItem", + "UNK": "290048060000" + }, + { + "TYPE": "ShopItem", + "UNK": "290049060000" + }, + { + "TYPE": "ShopItem", + "UNK": "29004A060000" + }, + { + "TYPE": "ShopItem", + "UNK": "29004B060000" + }, + { + "TYPE": "ShopItem", + "UNK": "290058020000" + }, + { + "TYPE": "ShopItem", + "UNK": "290059020000" + }, + { + "TYPE": "ShopItem", + "UNK": "29005A020000" + }, + { + "TYPE": "ShopItem", + "UNK": "29005B020000" + }, + { + "TYPE": "ShopItem", + "UNK": "29007B020000" + }, + { + "TYPE": "ShopTitle", + "ID": 42, + "UNK0": 1, + "STRING": "Brandon's General Goods", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "2A0005060000" + }, + { + "TYPE": "ShopItem", + "UNK": "2A0040060000" + }, + { + "TYPE": "ShopItem", + "UNK": "2A0041060000" + }, + { + "TYPE": "ShopItem", + "UNK": "2A0042060000" + }, + { + "TYPE": "ShopItem", + "UNK": "2A0043060000" + }, + { + "TYPE": "ShopItem", + "UNK": "2A0044060000" + }, + { + "TYPE": "ShopItem", + "UNK": "2A0045060000" + }, + { + "TYPE": "ShopItem", + "UNK": "2A0046060000" + }, + { + "TYPE": "ShopItem", + "UNK": "2A0047060000" + }, + { + "TYPE": "ShopItem", + "UNK": "2A0048060000" + }, + { + "TYPE": "ShopItem", + "UNK": "2A0049060000" + }, + { + "TYPE": "ShopItem", + "UNK": "2A004A060000" + }, + { + "TYPE": "ShopItem", + "UNK": "2A004B060000" + }, + { + "TYPE": "ShopItem", + "UNK": "2A0058020000" + }, + { + "TYPE": "ShopItem", + "UNK": "2A0059020000" + }, + { + "TYPE": "ShopItem", + "UNK": "2A005A020000" + }, + { + "TYPE": "ShopItem", + "UNK": "2A005B020000" + }, + { + "TYPE": "ShopItem", + "UNK": "2A005C020000" + }, + { + "TYPE": "ShopItem", + "UNK": "2A005D020000" + }, + { + "TYPE": "ShopItem", + "UNK": "2A005E020000" + }, + { + "TYPE": "ShopItem", + "UNK": "2A005F020000" + }, + { + "TYPE": "ShopItem", + "UNK": "2A007B020000" + }, + { + "TYPE": "ShopTitle", + "ID": 43, + "UNK0": 1, + "STRING": "Brandon's General Goods", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "2B0005060000" + }, + { + "TYPE": "ShopItem", + "UNK": "2B0040060000" + }, + { + "TYPE": "ShopItem", + "UNK": "2B0041060000" + }, + { + "TYPE": "ShopItem", + "UNK": "2B0042060000" + }, + { + "TYPE": "ShopItem", + "UNK": "2B0043060000" + }, + { + "TYPE": "ShopItem", + "UNK": "2B0044060000" + }, + { + "TYPE": "ShopItem", + "UNK": "2B0045060000" + }, + { + "TYPE": "ShopItem", + "UNK": "2B0046060000" + }, + { + "TYPE": "ShopItem", + "UNK": "2B0047060000" + }, + { + "TYPE": "ShopItem", + "UNK": "2B0048060000" + }, + { + "TYPE": "ShopItem", + "UNK": "2B0049060000" + }, + { + "TYPE": "ShopItem", + "UNK": "2B004A060000" + }, + { + "TYPE": "ShopItem", + "UNK": "2B004B060000" + }, + { + "TYPE": "ShopItem", + "UNK": "2B0058020000" + }, + { + "TYPE": "ShopItem", + "UNK": "2B0059020000" + }, + { + "TYPE": "ShopItem", + "UNK": "2B005A020000" + }, + { + "TYPE": "ShopItem", + "UNK": "2B005B020000" + }, + { + "TYPE": "ShopItem", + "UNK": "2B005C020000" + }, + { + "TYPE": "ShopItem", + "UNK": "2B005D020000" + }, + { + "TYPE": "ShopItem", + "UNK": "2B005E020000" + }, + { + "TYPE": "ShopItem", + "UNK": "2B005F020000" + }, + { + "TYPE": "ShopItem", + "UNK": "2B0060020000" + }, + { + "TYPE": "ShopItem", + "UNK": "2B0061020000" + }, + { + "TYPE": "ShopItem", + "UNK": "2B007B020000" + }, + { + "TYPE": "ShopTitle", + "ID": 44, + "UNK0": 1, + "STRING": "Brandon's General Goods", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "2C0005060000" + }, + { + "TYPE": "ShopItem", + "UNK": "2C00F1050000" + }, + { + "TYPE": "ShopItem", + "UNK": "2C0040060000" + }, + { + "TYPE": "ShopItem", + "UNK": "2C0041060000" + }, + { + "TYPE": "ShopItem", + "UNK": "2C0042060000" + }, + { + "TYPE": "ShopItem", + "UNK": "2C0043060000" + }, + { + "TYPE": "ShopItem", + "UNK": "2C0044060000" + }, + { + "TYPE": "ShopItem", + "UNK": "2C0045060000" + }, + { + "TYPE": "ShopItem", + "UNK": "2C0046060000" + }, + { + "TYPE": "ShopItem", + "UNK": "2C0047060000" + }, + { + "TYPE": "ShopItem", + "UNK": "2C0048060000" + }, + { + "TYPE": "ShopItem", + "UNK": "2C0049060000" + }, + { + "TYPE": "ShopItem", + "UNK": "2C004A060000" + }, + { + "TYPE": "ShopItem", + "UNK": "2C004B060000" + }, + { + "TYPE": "ShopItem", + "UNK": "2C0058020000" + }, + { + "TYPE": "ShopItem", + "UNK": "2C0059020000" + }, + { + "TYPE": "ShopItem", + "UNK": "2C005A020000" + }, + { + "TYPE": "ShopItem", + "UNK": "2C005B020000" + }, + { + "TYPE": "ShopItem", + "UNK": "2C005C020000" + }, + { + "TYPE": "ShopItem", + "UNK": "2C005D020000" + }, + { + "TYPE": "ShopItem", + "UNK": "2C005E020000" + }, + { + "TYPE": "ShopItem", + "UNK": "2C005F020000" + }, + { + "TYPE": "ShopItem", + "UNK": "2C0060020000" + }, + { + "TYPE": "ShopItem", + "UNK": "2C0061020000" + }, + { + "TYPE": "ShopItem", + "UNK": "2C0062020000" + }, + { + "TYPE": "ShopItem", + "UNK": "2C007B020000" + }, + { + "TYPE": "ShopTitle", + "ID": 45, + "UNK0": 1, + "STRING": "Keynes' Bookstore", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "2D0004010000" + }, + { + "TYPE": "ShopItem", + "UNK": "2D0043010000" + }, + { + "TYPE": "ShopItem", + "UNK": "2D0044010000" + }, + { + "TYPE": "ShopItem", + "UNK": "2D0045010000" + }, + { + "TYPE": "ShopTitle", + "ID": 46, + "UNK0": 1, + "STRING": "Keynes' Bookstore", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "2E0005010000" + }, + { + "TYPE": "ShopItem", + "UNK": "2E0046010000" + }, + { + "TYPE": "ShopItem", + "UNK": "2E0047010000" + }, + { + "TYPE": "ShopItem", + "UNK": "2E0024010000" + }, + { + "TYPE": "ShopTitle", + "ID": 47, + "UNK0": 1, + "STRING": "Keynes' Bookstore", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "2F0006010000" + }, + { + "TYPE": "ShopItem", + "UNK": "2F0048010000" + }, + { + "TYPE": "ShopItem", + "UNK": "2F0049010000" + }, + { + "TYPE": "ShopItem", + "UNK": "2F004A010000" + }, + { + "TYPE": "ShopItem", + "UNK": "2F0024010000" + }, + { + "TYPE": "ShopTitle", + "ID": 48, + "UNK0": 1, + "STRING": "Keynes' Bookstore", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "300007010000" + }, + { + "TYPE": "ShopItem", + "UNK": "30004B010000" + }, + { + "TYPE": "ShopItem", + "UNK": "30004C010000" + }, + { + "TYPE": "ShopItem", + "UNK": "30004D010000" + }, + { + "TYPE": "ShopItem", + "UNK": "30002A010000" + }, + { + "TYPE": "ShopTitle", + "ID": 49, + "UNK0": 1, + "STRING": "Keynes' Bookstore", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "310009010000" + }, + { + "TYPE": "ShopItem", + "UNK": "31004E010000" + }, + { + "TYPE": "ShopItem", + "UNK": "31004F010000" + }, + { + "TYPE": "ShopItem", + "UNK": "310050010000" + }, + { + "TYPE": "ShopItem", + "UNK": "31002A010000" + }, + { + "TYPE": "ShopTitle", + "ID": 50, + "UNK0": 1, + "STRING": "Keynes' Bookstore", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "32000B010000" + }, + { + "TYPE": "ShopItem", + "UNK": "320051010000" + }, + { + "TYPE": "ShopItem", + "UNK": "320052010000" + }, + { + "TYPE": "ShopItem", + "UNK": "320053010000" + }, + { + "TYPE": "ShopItem", + "UNK": "320030010000" + }, + { + "TYPE": "ShopTitle", + "ID": 51, + "UNK0": 1, + "STRING": "Keynes' Bookstore", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "33000D010000" + }, + { + "TYPE": "ShopItem", + "UNK": "330054010000" + }, + { + "TYPE": "ShopTitle", + "ID": 52, + "UNK0": 1, + "STRING": "Keynes' Bookstore", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "34000E010000" + }, + { + "TYPE": "ShopTitle", + "ID": 53, + "UNK0": 0, + "STRING": "Boutique - Le Sage", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "3500F5010000" + }, + { + "TYPE": "ShopItem", + "UNK": "3500F6010000" + }, + { + "TYPE": "ShopItem", + "UNK": "350027020000" + }, + { + "TYPE": "ShopItem", + "UNK": "350028020000" + }, + { + "TYPE": "ShopItem", + "UNK": "350067020000" + }, + { + "TYPE": "ShopItem", + "UNK": "350068020000" + }, + { + "TYPE": "ShopItem", + "UNK": "350069020000" + }, + { + "TYPE": "ShopItem", + "UNK": "35006A020000" + }, + { + "TYPE": "ShopTitle", + "ID": 54, + "UNK0": 0, + "STRING": "Boutique - Le Sage", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "3600F5010000" + }, + { + "TYPE": "ShopItem", + "UNK": "3600F6010000" + }, + { + "TYPE": "ShopItem", + "UNK": "360027020000" + }, + { + "TYPE": "ShopItem", + "UNK": "360028020000" + }, + { + "TYPE": "ShopItem", + "UNK": "360067020000" + }, + { + "TYPE": "ShopItem", + "UNK": "360068020000" + }, + { + "TYPE": "ShopItem", + "UNK": "360069020000" + }, + { + "TYPE": "ShopItem", + "UNK": "36006A020000" + }, + { + "TYPE": "ShopItem", + "UNK": "36006B020000" + }, + { + "TYPE": "ShopItem", + "UNK": "36006C020000" + }, + { + "TYPE": "ShopItem", + "UNK": "36006D020000" + }, + { + "TYPE": "ShopItem", + "UNK": "36006E020000" + }, + { + "TYPE": "ShopTitle", + "ID": 55, + "UNK0": 0, + "STRING": "Boutique - Le Sage", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "3700F5010000" + }, + { + "TYPE": "ShopItem", + "UNK": "3700F6010000" + }, + { + "TYPE": "ShopItem", + "UNK": "370027020000" + }, + { + "TYPE": "ShopItem", + "UNK": "370028020000" + }, + { + "TYPE": "ShopItem", + "UNK": "370067020000" + }, + { + "TYPE": "ShopItem", + "UNK": "370068020000" + }, + { + "TYPE": "ShopItem", + "UNK": "370069020000" + }, + { + "TYPE": "ShopItem", + "UNK": "37006A020000" + }, + { + "TYPE": "ShopItem", + "UNK": "37006B020000" + }, + { + "TYPE": "ShopItem", + "UNK": "37006C020000" + }, + { + "TYPE": "ShopItem", + "UNK": "37006D020000" + }, + { + "TYPE": "ShopItem", + "UNK": "37006E020000" + }, + { + "TYPE": "ShopItem", + "UNK": "37006F020000" + }, + { + "TYPE": "ShopItem", + "UNK": "370070020000" + }, + { + "TYPE": "ShopTitle", + "ID": 56, + "UNK0": 0, + "STRING": "Boutique - Le Sage", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "3800F5010000" + }, + { + "TYPE": "ShopItem", + "UNK": "3800F6010000" + }, + { + "TYPE": "ShopItem", + "UNK": "3800FF010000" + }, + { + "TYPE": "ShopItem", + "UNK": "380000020000" + }, + { + "TYPE": "ShopItem", + "UNK": "380027020000" + }, + { + "TYPE": "ShopItem", + "UNK": "380028020000" + }, + { + "TYPE": "ShopItem", + "UNK": "380031020000" + }, + { + "TYPE": "ShopItem", + "UNK": "380032020000" + }, + { + "TYPE": "ShopItem", + "UNK": "380067020000" + }, + { + "TYPE": "ShopItem", + "UNK": "380068020000" + }, + { + "TYPE": "ShopItem", + "UNK": "380069020000" + }, + { + "TYPE": "ShopItem", + "UNK": "38006A020000" + }, + { + "TYPE": "ShopItem", + "UNK": "38006B020000" + }, + { + "TYPE": "ShopItem", + "UNK": "38006C020000" + }, + { + "TYPE": "ShopItem", + "UNK": "38006D020000" + }, + { + "TYPE": "ShopItem", + "UNK": "38006E020000" + }, + { + "TYPE": "ShopItem", + "UNK": "38006F020000" + }, + { + "TYPE": "ShopItem", + "UNK": "380070020000" + }, + { + "TYPE": "ShopItem", + "UNK": "380071020000" + }, + { + "TYPE": "ShopTitle", + "ID": 57, + "UNK0": 7, + "STRING": "Kirsche's Cafe & Inn", + "UNK1": "646402020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "39000D060000" + }, + { + "TYPE": "ShopItem", + "UNK": "39000C060000" + }, + { + "TYPE": "ShopTitle", + "ID": 58, + "UNK0": 7, + "STRING": "Kirsche's Cafe & Inn", + "UNK1": "646402020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "3A000D060000" + }, + { + "TYPE": "ShopItem", + "UNK": "3A00F9050000" + }, + { + "TYPE": "ShopItem", + "UNK": "3A000C060000" + }, + { + "TYPE": "ShopItem", + "UNK": "3A00F8050000" + }, + { + "TYPE": "ShopTitle", + "ID": 59, + "UNK0": 8, + "STRING": "Micht's Pawn Shop", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "3B0014000500" + }, + { + "TYPE": "ShopItem", + "UNK": "3B0016000500" + }, + { + "TYPE": "ShopItem", + "UNK": "3B0018000500" + }, + { + "TYPE": "ShopItem", + "UNK": "3B00C3000500" + }, + { + "TYPE": "ShopItem", + "UNK": "3B00BE000500" + }, + { + "TYPE": "ShopItem", + "UNK": "3B0000000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3B0001000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3B0002000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3B0003000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3B000B000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3B00BF000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3B00C0000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3B00C1000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3B001E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3B0023000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3B0029000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3B0034000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3B0039000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3B003E000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3B004B000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3B0050000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3B0058000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3B0064000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3B006B000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3B0078000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3B00A0000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3B00A9000800" + }, + { + "TYPE": "ShopTitle", + "ID": 60, + "UNK0": 8, + "STRING": "Micht's Pawn Shop", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "3C0014000500" + }, + { + "TYPE": "ShopItem", + "UNK": "3C0016000500" + }, + { + "TYPE": "ShopItem", + "UNK": "3C0018000500" + }, + { + "TYPE": "ShopItem", + "UNK": "3C00C3000500" + }, + { + "TYPE": "ShopItem", + "UNK": "3C00BE000500" + }, + { + "TYPE": "ShopItem", + "UNK": "3C0000000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3C0001000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3C0002000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3C0003000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3C0004000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3C0005000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3C0006000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3C0007000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3C000B000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3C000C000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3C000D000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3C00BF000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3C00C0000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3C00C1000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3C001E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3C0021000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3C0023000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3C0024000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3C0029000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3C0032000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3C0034000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3C0039000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3C003A000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3C003E000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3C0041000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3C004B000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3C004E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3C0050000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3C0051000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3C0058000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3C0064000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3C0066000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3C0069000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3C006B000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3C006C000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3C0070000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3C0078000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3C007B000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3C007D000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3C007F000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3C008C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3C008E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3C0090000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3C0097000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3C00A0000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3C00A1000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3C00A5000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3C00A9000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3C00AC000700" + }, + { + "TYPE": "ShopTitle", + "ID": 61, + "UNK0": 8, + "STRING": "Micht's Pawn Shop", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "3D0014000500" + }, + { + "TYPE": "ShopItem", + "UNK": "3D0016000500" + }, + { + "TYPE": "ShopItem", + "UNK": "3D0018000500" + }, + { + "TYPE": "ShopItem", + "UNK": "3D00C3000500" + }, + { + "TYPE": "ShopItem", + "UNK": "3D00BE000500" + }, + { + "TYPE": "ShopItem", + "UNK": "3D0000000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3D0001000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3D0002000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3D0003000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3D0004000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3D0005000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3D0006000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3D0007000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3D0008000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3D0009000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3D000B000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3D000C000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3D000D000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3D000E000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3D00BF000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3D00C0000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3D00C1000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3D001E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3D0021000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3D0022000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3D0023000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3D0024000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3D0028000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3D0029000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3D002C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3D0032000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3D0034000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3D0037000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3D0038000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3D0039000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3D003A000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3D003E000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3D003F000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3D0041000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3D0043000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3D0044000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3D004B000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3D004E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3D004F000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3D0050000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3D0051000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3D0056000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3D0058000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3D005A000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3D005B000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3D0064000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3D0066000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3D0069000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3D006A000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3D006B000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3D006C000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3D0070000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3D0073000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3D0078000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3D007B000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3D007D000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3D007F000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3D0080000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3D0083000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3D008C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3D008E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3D0090000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3D0091000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3D0094000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3D0097000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3D0098000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3D00A0000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3D00A1000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3D00A5000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3D00A6000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3D00A9000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3D00AC000700" + }, + { + "TYPE": "ShopTitle", + "ID": 62, + "UNK0": 8, + "STRING": "Micht's Pawn Shop", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0014000500" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0015000500" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0016000500" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0017000500" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0018000500" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0019000500" + }, + { + "TYPE": "ShopItem", + "UNK": "3E00C3000500" + }, + { + "TYPE": "ShopItem", + "UNK": "3E00BE000500" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0000000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0001000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0002000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0003000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0004000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0005000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0006000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0007000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0008000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0009000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3E000A000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3E000B000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3E000C000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3E000D000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3E000E000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3E00BF000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3E00C0000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3E00C1000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3E001E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3E001F000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0021000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0022000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0023000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0024000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0025000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0028000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0029000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3E002A000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3E002C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3E002E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0032000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0033000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0034000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0035000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0037000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0038000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0039000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3E003A000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3E003B000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3E003E000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3E003F000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0041000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0043000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0044000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0045000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3E004B000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3E004C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3E004E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3E004F000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0050000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0051000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0052000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0056000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0057000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0058000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0059000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3E005A000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3E005B000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3E005C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3E005D000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0064000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0065000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0066000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0067000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0069000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3E006A000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3E006B000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3E006C000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3E006D000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0070000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0072000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0073000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0074000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0075000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0078000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0079000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3E007B000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3E007C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3E007D000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3E007E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3E007F000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0080000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0083000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0084000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0087000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3E008C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3E008D000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3E008E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3E008F000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0090000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0091000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0094000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0095000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0097000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3E0098000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3E009B000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3E00A0000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3E00A1000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3E00A2000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3E00A3000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3E00A5000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3E00A6000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3E00A9000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3E00AA000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3E00AB000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3E00AC000700" + }, + { + "TYPE": "ShopTitle", + "ID": 63, + "UNK0": 8, + "STRING": "Micht's Pawn Shop", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0014000500" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0015000500" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0016000500" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0017000500" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0018000500" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0019000500" + }, + { + "TYPE": "ShopItem", + "UNK": "3F00C3000500" + }, + { + "TYPE": "ShopItem", + "UNK": "3F00BE000500" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0000000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0001000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0002000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0003000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0004000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0005000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0006000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0007000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0008000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0009000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3F000A000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3F000B000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3F000C000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3F000D000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3F000E000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3F000F000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0010000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0011000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0012000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3F00BF000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3F00C0000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3F00C1000600" + }, + { + "TYPE": "ShopItem", + "UNK": "3F001E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F001F000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0021000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0022000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0023000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0024000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0025000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0028000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0029000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3F002A000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3F002C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F002D000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F002E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F002F000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0032000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0033000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0034000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0035000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0037000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0038000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0039000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3F003A000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3F003B000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3F003E000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3F003F000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0040000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0041000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0042000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0043000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0044000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0045000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0046000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F004B000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F004C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F004E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F004F000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0050000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0051000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0052000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0053000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0056000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0057000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0058000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0059000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3F005A000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F005B000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F005C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F005D000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F005E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0064000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0065000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0066000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0067000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0068000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0069000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F006A000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F006B000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3F006C000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3F006D000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0070000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0071000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0072000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0073000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0074000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0075000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0076000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0078000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0079000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F007B000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F007C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F007D000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F007E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F007F000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0080000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0081000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0083000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0084000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0086000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0087000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F008C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F008D000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F008E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F008F000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0090000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0091000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0092000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0094000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0095000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0097000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0098000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F0099000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F009A000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F009B000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F00A0000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F00A1000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F00A2000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F00A3000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F00A5000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3F00A6000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3F00A7000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3F00A9000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3F00AA000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3F00AB000800" + }, + { + "TYPE": "ShopItem", + "UNK": "3F00AC000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F00AD000700" + }, + { + "TYPE": "ShopItem", + "UNK": "3F00AF000700" + }, + { + "TYPE": "ShopTitle", + "ID": 64, + "UNK0": 8, + "STRING": "Micht's Pawn Shop", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "400014000500" + }, + { + "TYPE": "ShopItem", + "UNK": "400015000500" + }, + { + "TYPE": "ShopItem", + "UNK": "400016000500" + }, + { + "TYPE": "ShopItem", + "UNK": "400017000500" + }, + { + "TYPE": "ShopItem", + "UNK": "400018000500" + }, + { + "TYPE": "ShopItem", + "UNK": "400019000500" + }, + { + "TYPE": "ShopItem", + "UNK": "4000C3000500" + }, + { + "TYPE": "ShopItem", + "UNK": "4000BE000500" + }, + { + "TYPE": "ShopItem", + "UNK": "400000000600" + }, + { + "TYPE": "ShopItem", + "UNK": "400001000600" + }, + { + "TYPE": "ShopItem", + "UNK": "400002000600" + }, + { + "TYPE": "ShopItem", + "UNK": "400003000600" + }, + { + "TYPE": "ShopItem", + "UNK": "400004000600" + }, + { + "TYPE": "ShopItem", + "UNK": "400005000600" + }, + { + "TYPE": "ShopItem", + "UNK": "400006000600" + }, + { + "TYPE": "ShopItem", + "UNK": "400007000600" + }, + { + "TYPE": "ShopItem", + "UNK": "400008000600" + }, + { + "TYPE": "ShopItem", + "UNK": "400009000600" + }, + { + "TYPE": "ShopItem", + "UNK": "40000A000600" + }, + { + "TYPE": "ShopItem", + "UNK": "40000B000600" + }, + { + "TYPE": "ShopItem", + "UNK": "40000C000600" + }, + { + "TYPE": "ShopItem", + "UNK": "40000D000600" + }, + { + "TYPE": "ShopItem", + "UNK": "40000E000600" + }, + { + "TYPE": "ShopItem", + "UNK": "40000F000600" + }, + { + "TYPE": "ShopItem", + "UNK": "400010000600" + }, + { + "TYPE": "ShopItem", + "UNK": "400011000600" + }, + { + "TYPE": "ShopItem", + "UNK": "400012000600" + }, + { + "TYPE": "ShopItem", + "UNK": "4000BF000600" + }, + { + "TYPE": "ShopItem", + "UNK": "4000C0000600" + }, + { + "TYPE": "ShopItem", + "UNK": "4000C1000600" + }, + { + "TYPE": "ShopItem", + "UNK": "40001E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "40001F000700" + }, + { + "TYPE": "ShopItem", + "UNK": "400020000700" + }, + { + "TYPE": "ShopItem", + "UNK": "400021000700" + }, + { + "TYPE": "ShopItem", + "UNK": "400022000700" + }, + { + "TYPE": "ShopItem", + "UNK": "400023000800" + }, + { + "TYPE": "ShopItem", + "UNK": "400024000800" + }, + { + "TYPE": "ShopItem", + "UNK": "400025000800" + }, + { + "TYPE": "ShopItem", + "UNK": "400026000800" + }, + { + "TYPE": "ShopItem", + "UNK": "400028000800" + }, + { + "TYPE": "ShopItem", + "UNK": "400029000800" + }, + { + "TYPE": "ShopItem", + "UNK": "40002A000800" + }, + { + "TYPE": "ShopItem", + "UNK": "40002C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "40002D000700" + }, + { + "TYPE": "ShopItem", + "UNK": "40002E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "40002F000700" + }, + { + "TYPE": "ShopItem", + "UNK": "400032000700" + }, + { + "TYPE": "ShopItem", + "UNK": "400033000700" + }, + { + "TYPE": "ShopItem", + "UNK": "400034000700" + }, + { + "TYPE": "ShopItem", + "UNK": "400035000700" + }, + { + "TYPE": "ShopItem", + "UNK": "400036000700" + }, + { + "TYPE": "ShopItem", + "UNK": "400037000700" + }, + { + "TYPE": "ShopItem", + "UNK": "400038000700" + }, + { + "TYPE": "ShopItem", + "UNK": "400039000800" + }, + { + "TYPE": "ShopItem", + "UNK": "40003A000800" + }, + { + "TYPE": "ShopItem", + "UNK": "40003B000800" + }, + { + "TYPE": "ShopItem", + "UNK": "40003C000800" + }, + { + "TYPE": "ShopItem", + "UNK": "40003E000800" + }, + { + "TYPE": "ShopItem", + "UNK": "40003F000800" + }, + { + "TYPE": "ShopItem", + "UNK": "400040000800" + }, + { + "TYPE": "ShopItem", + "UNK": "400041000800" + }, + { + "TYPE": "ShopItem", + "UNK": "400042000800" + }, + { + "TYPE": "ShopItem", + "UNK": "400043000700" + }, + { + "TYPE": "ShopItem", + "UNK": "400044000700" + }, + { + "TYPE": "ShopItem", + "UNK": "400045000700" + }, + { + "TYPE": "ShopItem", + "UNK": "400046000700" + }, + { + "TYPE": "ShopItem", + "UNK": "40004B000700" + }, + { + "TYPE": "ShopItem", + "UNK": "40004C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "40004D000700" + }, + { + "TYPE": "ShopItem", + "UNK": "40004E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "40004F000700" + }, + { + "TYPE": "ShopItem", + "UNK": "400050000800" + }, + { + "TYPE": "ShopItem", + "UNK": "400051000800" + }, + { + "TYPE": "ShopItem", + "UNK": "400052000800" + }, + { + "TYPE": "ShopItem", + "UNK": "400053000800" + }, + { + "TYPE": "ShopItem", + "UNK": "400054000800" + }, + { + "TYPE": "ShopItem", + "UNK": "400056000800" + }, + { + "TYPE": "ShopItem", + "UNK": "400057000800" + }, + { + "TYPE": "ShopItem", + "UNK": "400058000800" + }, + { + "TYPE": "ShopItem", + "UNK": "400059000800" + }, + { + "TYPE": "ShopItem", + "UNK": "40005A000700" + }, + { + "TYPE": "ShopItem", + "UNK": "40005B000700" + }, + { + "TYPE": "ShopItem", + "UNK": "40005C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "40005D000700" + }, + { + "TYPE": "ShopItem", + "UNK": "40005E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "400064000700" + }, + { + "TYPE": "ShopItem", + "UNK": "400065000700" + }, + { + "TYPE": "ShopItem", + "UNK": "400066000700" + }, + { + "TYPE": "ShopItem", + "UNK": "400067000700" + }, + { + "TYPE": "ShopItem", + "UNK": "400068000700" + }, + { + "TYPE": "ShopItem", + "UNK": "400069000700" + }, + { + "TYPE": "ShopItem", + "UNK": "40006A000700" + }, + { + "TYPE": "ShopItem", + "UNK": "40006B000800" + }, + { + "TYPE": "ShopItem", + "UNK": "40006C000800" + }, + { + "TYPE": "ShopItem", + "UNK": "40006D000800" + }, + { + "TYPE": "ShopItem", + "UNK": "40006E000800" + }, + { + "TYPE": "ShopItem", + "UNK": "400070000800" + }, + { + "TYPE": "ShopItem", + "UNK": "400071000800" + }, + { + "TYPE": "ShopItem", + "UNK": "400072000800" + }, + { + "TYPE": "ShopItem", + "UNK": "400073000700" + }, + { + "TYPE": "ShopItem", + "UNK": "400074000700" + }, + { + "TYPE": "ShopItem", + "UNK": "400075000700" + }, + { + "TYPE": "ShopItem", + "UNK": "400076000700" + }, + { + "TYPE": "ShopItem", + "UNK": "400078000700" + }, + { + "TYPE": "ShopItem", + "UNK": "400079000700" + }, + { + "TYPE": "ShopItem", + "UNK": "40007A000700" + }, + { + "TYPE": "ShopItem", + "UNK": "40007B000700" + }, + { + "TYPE": "ShopItem", + "UNK": "40007C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "40007D000700" + }, + { + "TYPE": "ShopItem", + "UNK": "40007E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "40007F000800" + }, + { + "TYPE": "ShopItem", + "UNK": "400080000800" + }, + { + "TYPE": "ShopItem", + "UNK": "400081000800" + }, + { + "TYPE": "ShopItem", + "UNK": "400083000800" + }, + { + "TYPE": "ShopItem", + "UNK": "400084000800" + }, + { + "TYPE": "ShopItem", + "UNK": "400086000700" + }, + { + "TYPE": "ShopItem", + "UNK": "400087000700" + }, + { + "TYPE": "ShopItem", + "UNK": "400088000700" + }, + { + "TYPE": "ShopItem", + "UNK": "40008C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "40008D000700" + }, + { + "TYPE": "ShopItem", + "UNK": "40008E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "40008F000700" + }, + { + "TYPE": "ShopItem", + "UNK": "400090000800" + }, + { + "TYPE": "ShopItem", + "UNK": "400091000800" + }, + { + "TYPE": "ShopItem", + "UNK": "400092000800" + }, + { + "TYPE": "ShopItem", + "UNK": "400094000800" + }, + { + "TYPE": "ShopItem", + "UNK": "400095000800" + }, + { + "TYPE": "ShopItem", + "UNK": "400096000800" + }, + { + "TYPE": "ShopItem", + "UNK": "400097000700" + }, + { + "TYPE": "ShopItem", + "UNK": "400098000700" + }, + { + "TYPE": "ShopItem", + "UNK": "400099000700" + }, + { + "TYPE": "ShopItem", + "UNK": "40009A000700" + }, + { + "TYPE": "ShopItem", + "UNK": "40009B000700" + }, + { + "TYPE": "ShopItem", + "UNK": "40009C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "4000A0000700" + }, + { + "TYPE": "ShopItem", + "UNK": "4000A1000700" + }, + { + "TYPE": "ShopItem", + "UNK": "4000A2000700" + }, + { + "TYPE": "ShopItem", + "UNK": "4000A3000700" + }, + { + "TYPE": "ShopItem", + "UNK": "4000A4000700" + }, + { + "TYPE": "ShopItem", + "UNK": "4000A5000800" + }, + { + "TYPE": "ShopItem", + "UNK": "4000A6000800" + }, + { + "TYPE": "ShopItem", + "UNK": "4000A7000800" + }, + { + "TYPE": "ShopItem", + "UNK": "4000A9000800" + }, + { + "TYPE": "ShopItem", + "UNK": "4000AA000800" + }, + { + "TYPE": "ShopItem", + "UNK": "4000AB000800" + }, + { + "TYPE": "ShopItem", + "UNK": "4000AC000700" + }, + { + "TYPE": "ShopItem", + "UNK": "4000AD000700" + }, + { + "TYPE": "ShopItem", + "UNK": "4000AE000700" + }, + { + "TYPE": "ShopItem", + "UNK": "4000AF000700" + }, + { + "TYPE": "ShopItem", + "UNK": "4000B0000700" + }, + { + "TYPE": "ShopTitle", + "ID": 65, + "UNK0": 8, + "STRING": "Micht's Pawn Shop", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "410014000500" + }, + { + "TYPE": "ShopItem", + "UNK": "410015000500" + }, + { + "TYPE": "ShopItem", + "UNK": "410016000500" + }, + { + "TYPE": "ShopItem", + "UNK": "410017000500" + }, + { + "TYPE": "ShopItem", + "UNK": "410018000500" + }, + { + "TYPE": "ShopItem", + "UNK": "410019000500" + }, + { + "TYPE": "ShopItem", + "UNK": "4100C3000500" + }, + { + "TYPE": "ShopItem", + "UNK": "4100BE000500" + }, + { + "TYPE": "ShopItem", + "UNK": "410000000600" + }, + { + "TYPE": "ShopItem", + "UNK": "410001000600" + }, + { + "TYPE": "ShopItem", + "UNK": "410002000600" + }, + { + "TYPE": "ShopItem", + "UNK": "410003000600" + }, + { + "TYPE": "ShopItem", + "UNK": "410004000600" + }, + { + "TYPE": "ShopItem", + "UNK": "410005000600" + }, + { + "TYPE": "ShopItem", + "UNK": "410006000600" + }, + { + "TYPE": "ShopItem", + "UNK": "410007000600" + }, + { + "TYPE": "ShopItem", + "UNK": "410008000600" + }, + { + "TYPE": "ShopItem", + "UNK": "410009000600" + }, + { + "TYPE": "ShopItem", + "UNK": "41000A000600" + }, + { + "TYPE": "ShopItem", + "UNK": "41000B000600" + }, + { + "TYPE": "ShopItem", + "UNK": "41000C000600" + }, + { + "TYPE": "ShopItem", + "UNK": "41000D000600" + }, + { + "TYPE": "ShopItem", + "UNK": "41000E000600" + }, + { + "TYPE": "ShopItem", + "UNK": "41000F000600" + }, + { + "TYPE": "ShopItem", + "UNK": "410010000600" + }, + { + "TYPE": "ShopItem", + "UNK": "410011000600" + }, + { + "TYPE": "ShopItem", + "UNK": "410012000600" + }, + { + "TYPE": "ShopItem", + "UNK": "410013000600" + }, + { + "TYPE": "ShopItem", + "UNK": "4100BF000600" + }, + { + "TYPE": "ShopItem", + "UNK": "4100C0000600" + }, + { + "TYPE": "ShopItem", + "UNK": "4100C1000600" + }, + { + "TYPE": "ShopItem", + "UNK": "41001E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "41001F000700" + }, + { + "TYPE": "ShopItem", + "UNK": "410020000700" + }, + { + "TYPE": "ShopItem", + "UNK": "410021000700" + }, + { + "TYPE": "ShopItem", + "UNK": "410022000700" + }, + { + "TYPE": "ShopItem", + "UNK": "410023000800" + }, + { + "TYPE": "ShopItem", + "UNK": "410024000800" + }, + { + "TYPE": "ShopItem", + "UNK": "410025000800" + }, + { + "TYPE": "ShopItem", + "UNK": "410026000800" + }, + { + "TYPE": "ShopItem", + "UNK": "410027000800" + }, + { + "TYPE": "ShopItem", + "UNK": "410028000800" + }, + { + "TYPE": "ShopItem", + "UNK": "410029000800" + }, + { + "TYPE": "ShopItem", + "UNK": "41002A000800" + }, + { + "TYPE": "ShopItem", + "UNK": "41002B000800" + }, + { + "TYPE": "ShopItem", + "UNK": "41002C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "41002D000700" + }, + { + "TYPE": "ShopItem", + "UNK": "41002E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "41002F000700" + }, + { + "TYPE": "ShopItem", + "UNK": "410032000700" + }, + { + "TYPE": "ShopItem", + "UNK": "410033000700" + }, + { + "TYPE": "ShopItem", + "UNK": "410034000700" + }, + { + "TYPE": "ShopItem", + "UNK": "410035000700" + }, + { + "TYPE": "ShopItem", + "UNK": "410036000700" + }, + { + "TYPE": "ShopItem", + "UNK": "410037000700" + }, + { + "TYPE": "ShopItem", + "UNK": "410038000700" + }, + { + "TYPE": "ShopItem", + "UNK": "410039000800" + }, + { + "TYPE": "ShopItem", + "UNK": "41003A000800" + }, + { + "TYPE": "ShopItem", + "UNK": "41003B000800" + }, + { + "TYPE": "ShopItem", + "UNK": "41003C000800" + }, + { + "TYPE": "ShopItem", + "UNK": "41003D000800" + }, + { + "TYPE": "ShopItem", + "UNK": "41003E000800" + }, + { + "TYPE": "ShopItem", + "UNK": "41003F000800" + }, + { + "TYPE": "ShopItem", + "UNK": "410040000800" + }, + { + "TYPE": "ShopItem", + "UNK": "410041000800" + }, + { + "TYPE": "ShopItem", + "UNK": "410042000800" + }, + { + "TYPE": "ShopItem", + "UNK": "410043000700" + }, + { + "TYPE": "ShopItem", + "UNK": "410044000700" + }, + { + "TYPE": "ShopItem", + "UNK": "410045000700" + }, + { + "TYPE": "ShopItem", + "UNK": "410046000700" + }, + { + "TYPE": "ShopItem", + "UNK": "41004B000700" + }, + { + "TYPE": "ShopItem", + "UNK": "41004C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "41004D000700" + }, + { + "TYPE": "ShopItem", + "UNK": "41004E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "41004F000700" + }, + { + "TYPE": "ShopItem", + "UNK": "410050000800" + }, + { + "TYPE": "ShopItem", + "UNK": "410051000800" + }, + { + "TYPE": "ShopItem", + "UNK": "410052000800" + }, + { + "TYPE": "ShopItem", + "UNK": "410053000800" + }, + { + "TYPE": "ShopItem", + "UNK": "410054000800" + }, + { + "TYPE": "ShopItem", + "UNK": "410055000800" + }, + { + "TYPE": "ShopItem", + "UNK": "410056000800" + }, + { + "TYPE": "ShopItem", + "UNK": "410057000800" + }, + { + "TYPE": "ShopItem", + "UNK": "410058000800" + }, + { + "TYPE": "ShopItem", + "UNK": "410059000800" + }, + { + "TYPE": "ShopItem", + "UNK": "41005A000700" + }, + { + "TYPE": "ShopItem", + "UNK": "41005B000700" + }, + { + "TYPE": "ShopItem", + "UNK": "41005C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "41005D000700" + }, + { + "TYPE": "ShopItem", + "UNK": "41005E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "410064000700" + }, + { + "TYPE": "ShopItem", + "UNK": "410065000700" + }, + { + "TYPE": "ShopItem", + "UNK": "410066000700" + }, + { + "TYPE": "ShopItem", + "UNK": "410067000700" + }, + { + "TYPE": "ShopItem", + "UNK": "410068000700" + }, + { + "TYPE": "ShopItem", + "UNK": "410069000700" + }, + { + "TYPE": "ShopItem", + "UNK": "41006A000700" + }, + { + "TYPE": "ShopItem", + "UNK": "41006B000800" + }, + { + "TYPE": "ShopItem", + "UNK": "41006C000800" + }, + { + "TYPE": "ShopItem", + "UNK": "41006D000800" + }, + { + "TYPE": "ShopItem", + "UNK": "41006E000800" + }, + { + "TYPE": "ShopItem", + "UNK": "41006F000800" + }, + { + "TYPE": "ShopItem", + "UNK": "410070000800" + }, + { + "TYPE": "ShopItem", + "UNK": "410071000800" + }, + { + "TYPE": "ShopItem", + "UNK": "410072000800" + }, + { + "TYPE": "ShopItem", + "UNK": "410073000700" + }, + { + "TYPE": "ShopItem", + "UNK": "410074000700" + }, + { + "TYPE": "ShopItem", + "UNK": "410075000700" + }, + { + "TYPE": "ShopItem", + "UNK": "410076000700" + }, + { + "TYPE": "ShopItem", + "UNK": "410078000700" + }, + { + "TYPE": "ShopItem", + "UNK": "410079000700" + }, + { + "TYPE": "ShopItem", + "UNK": "41007A000700" + }, + { + "TYPE": "ShopItem", + "UNK": "41007B000700" + }, + { + "TYPE": "ShopItem", + "UNK": "41007C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "41007D000700" + }, + { + "TYPE": "ShopItem", + "UNK": "41007E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "41007F000800" + }, + { + "TYPE": "ShopItem", + "UNK": "410080000800" + }, + { + "TYPE": "ShopItem", + "UNK": "410081000800" + }, + { + "TYPE": "ShopItem", + "UNK": "410082000800" + }, + { + "TYPE": "ShopItem", + "UNK": "410083000800" + }, + { + "TYPE": "ShopItem", + "UNK": "410084000800" + }, + { + "TYPE": "ShopItem", + "UNK": "410085000800" + }, + { + "TYPE": "ShopItem", + "UNK": "410086000700" + }, + { + "TYPE": "ShopItem", + "UNK": "410087000700" + }, + { + "TYPE": "ShopItem", + "UNK": "410088000700" + }, + { + "TYPE": "ShopItem", + "UNK": "41008C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "41008D000700" + }, + { + "TYPE": "ShopItem", + "UNK": "41008E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "41008F000700" + }, + { + "TYPE": "ShopItem", + "UNK": "410090000800" + }, + { + "TYPE": "ShopItem", + "UNK": "410091000800" + }, + { + "TYPE": "ShopItem", + "UNK": "410092000800" + }, + { + "TYPE": "ShopItem", + "UNK": "410093000800" + }, + { + "TYPE": "ShopItem", + "UNK": "410094000800" + }, + { + "TYPE": "ShopItem", + "UNK": "410095000800" + }, + { + "TYPE": "ShopItem", + "UNK": "410096000800" + }, + { + "TYPE": "ShopItem", + "UNK": "410097000700" + }, + { + "TYPE": "ShopItem", + "UNK": "410098000700" + }, + { + "TYPE": "ShopItem", + "UNK": "410099000700" + }, + { + "TYPE": "ShopItem", + "UNK": "41009A000700" + }, + { + "TYPE": "ShopItem", + "UNK": "41009B000700" + }, + { + "TYPE": "ShopItem", + "UNK": "41009C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "4100A0000700" + }, + { + "TYPE": "ShopItem", + "UNK": "4100A1000700" + }, + { + "TYPE": "ShopItem", + "UNK": "4100A2000700" + }, + { + "TYPE": "ShopItem", + "UNK": "4100A3000700" + }, + { + "TYPE": "ShopItem", + "UNK": "4100A4000700" + }, + { + "TYPE": "ShopItem", + "UNK": "4100A5000800" + }, + { + "TYPE": "ShopItem", + "UNK": "4100A6000800" + }, + { + "TYPE": "ShopItem", + "UNK": "4100A7000800" + }, + { + "TYPE": "ShopItem", + "UNK": "4100A8000800" + }, + { + "TYPE": "ShopItem", + "UNK": "4100A9000800" + }, + { + "TYPE": "ShopItem", + "UNK": "4100AA000800" + }, + { + "TYPE": "ShopItem", + "UNK": "4100AB000800" + }, + { + "TYPE": "ShopItem", + "UNK": "4100AC000700" + }, + { + "TYPE": "ShopItem", + "UNK": "4100AD000700" + }, + { + "TYPE": "ShopItem", + "UNK": "4100AE000700" + }, + { + "TYPE": "ShopItem", + "UNK": "4100AF000700" + }, + { + "TYPE": "ShopItem", + "UNK": "4100B0000700" + }, + { + "TYPE": "ShopTitle", + "ID": 66, + "UNK0": 9, + "STRING": "Micht's Pawn Shop", + "UNK1": "020202020303030a" + }, + { + "TYPE": "HoriItem", + "UNK": "42004C0600000000001E00FFFF" + }, + { + "TYPE": "HoriItem", + "UNK": "42004D0600000000001E00FFFF" + }, + { + "TYPE": "HoriItem", + "UNK": "42004E0600000000001E00FFFF" + }, + { + "TYPE": "HoriItem", + "UNK": "42004F0600000000001E00FFFF" + }, + { + "TYPE": "HoriItem", + "UNK": "4200500600000000001E00FFFF" + }, + { + "TYPE": "HoriItem", + "UNK": "4200510600000000001E00FFFF" + }, + { + "TYPE": "HoriItem", + "UNK": "4200DE07000C0000013200FFFF" + }, + { + "TYPE": "HoriItem", + "UNK": "4200E307000E0000013200FFFF" + }, + { + "TYPE": "HoriItem", + "UNK": "4200E00700100000013200FFFF" + }, + { + "TYPE": "HoriItem", + "UNK": "42004608000A0000015000FFFF" + }, + { + "TYPE": "HoriItem", + "UNK": "42004908000C0000015000FFFF" + }, + { + "TYPE": "HoriItem", + "UNK": "4200470800100000015000FFFF" + }, + { + "TYPE": "HoriItem", + "UNK": "42008E08000E0000015000FFFF" + }, + { + "TYPE": "HoriItem", + "UNK": "42009008000C0000015000FFFF" + }, + { + "TYPE": "HoriItem", + "UNK": "42008F0818100000015000FFFF" + }, + { + "TYPE": "HoriItem", + "UNK": "4200B10800080000015000FFFF" + }, + { + "TYPE": "HoriItem", + "UNK": "4200B408000A0000015000FFFF" + }, + { + "TYPE": "HoriItem", + "UNK": "4200B20800100000015000FFFF" + }, + { + "TYPE": "HoriItem", + "UNK": "4200B30818100000015000FFFF" + }, + { + "TYPE": "HoriItem", + "UNK": "4200D10800060000015000FFFF" + }, + { + "TYPE": "HoriItem", + "UNK": "4200D408000E0000015000FFFF" + }, + { + "TYPE": "HoriItem", + "UNK": "4200D30818100000015000FFFF" + }, + { + "TYPE": "HoriItem", + "UNK": "4200EF08000E0000015000FFFF" + }, + { + "TYPE": "HoriItem", + "UNK": "4200F00818100000015000FFFF" + }, + { + "TYPE": "HoriItem", + "UNK": "42000D0900100000015000FFFF" + }, + { + "TYPE": "HoriItem", + "UNK": "42000E0918100000015000FFFF" + }, + { + "TYPE": "HoriItem", + "UNK": "4200350100060000010A00FFFF" + }, + { + "TYPE": "HoriItem", + "UNK": "4200360100060000010A00FFFF" + }, + { + "TYPE": "HoriItem", + "UNK": "4200370100080000010A00FFFF" + }, + { + "TYPE": "HoriItem", + "UNK": "4200380100080000010A00FFFF" + }, + { + "TYPE": "HoriItem", + "UNK": "42003901000A0000010A00FFFF" + }, + { + "TYPE": "HoriItem", + "UNK": "42003A01000A0000010A00FFFF" + }, + { + "TYPE": "HoriItem", + "UNK": "42003B01000A0000010A00FFFF" + }, + { + "TYPE": "HoriItem", + "UNK": "42003C01000C0000010A00FFFF" + }, + { + "TYPE": "HoriItem", + "UNK": "42003D01000C0000010A00FFFF" + }, + { + "TYPE": "HoriItem", + "UNK": "42003E01000E0000010A00FFFF" + }, + { + "TYPE": "HoriItem", + "UNK": "42003F01000E0000010A00FFFF" + }, + { + "TYPE": "HoriItem", + "UNK": "4200400100100000010A00FFFF" + }, + { + "TYPE": "HoriItem", + "UNK": "4200410100100000010A00FFFF" + }, + { + "TYPE": "HoriItem", + "UNK": "4200420106100000010A00FFFF" + }, + { + "TYPE": "HoriItem", + "UNK": "42002101000600000264000000" + }, + { + "TYPE": "HoriItem", + "UNK": "42002201000600000264000100" + }, + { + "TYPE": "HoriItem", + "UNK": "42002301000600000264000200" + }, + { + "TYPE": "HoriItem", + "UNK": "42002401000800000264000300" + }, + { + "TYPE": "HoriItem", + "UNK": "42002501000800000264000400" + }, + { + "TYPE": "HoriItem", + "UNK": "42002601000800000264000500" + }, + { + "TYPE": "HoriItem", + "UNK": "42002701000A00000264000600" + }, + { + "TYPE": "HoriItem", + "UNK": "42002801000A00000264000700" + }, + { + "TYPE": "HoriItem", + "UNK": "42002901000A00000264000800" + }, + { + "TYPE": "HoriItem", + "UNK": "42002A01000C00000264000900" + }, + { + "TYPE": "HoriItem", + "UNK": "42002B01000C00000264000A00" + }, + { + "TYPE": "HoriItem", + "UNK": "42002C01000C00000264000B00" + }, + { + "TYPE": "HoriItem", + "UNK": "42002D01000E00000264000C00" + }, + { + "TYPE": "HoriItem", + "UNK": "42002E01000E00000264000D00" + }, + { + "TYPE": "HoriItem", + "UNK": "42002F01000E00000264000E00" + }, + { + "TYPE": "HoriItem", + "UNK": "42003001001000000264000F00" + }, + { + "TYPE": "HoriItem", + "UNK": "42003101001000000264001000" + }, + { + "TYPE": "HoriItem", + "UNK": "42003201181000000264001100" + }, + { + "TYPE": "HoriItem", + "UNK": "42003301181000000264001200" + }, + { + "TYPE": "HoriItem", + "UNK": "42003401181000000264001300" + }, + { + "TYPE": "ShopTitle", + "ID": 67, + "UNK0": 0, + "STRING": "Lizzie's Ceramics Stall", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "430060020000" + }, + { + "TYPE": "ShopItem", + "UNK": "430061020000" + }, + { + "TYPE": "ShopItem", + "UNK": "430081020000" + }, + { + "TYPE": "ShopTitle", + "ID": 68, + "UNK0": 0, + "STRING": "Baroc's Jewelry Stall", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "44005D020000" + }, + { + "TYPE": "ShopItem", + "UNK": "44005E020000" + }, + { + "TYPE": "ShopItem", + "UNK": "44005F020000" + }, + { + "TYPE": "ShopTitle", + "ID": 69, + "UNK0": 1, + "STRING": "Lymon's Ingredients Stall", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "450040060000" + }, + { + "TYPE": "ShopItem", + "UNK": "450041060000" + }, + { + "TYPE": "ShopItem", + "UNK": "450042060000" + }, + { + "TYPE": "ShopItem", + "UNK": "450043060000" + }, + { + "TYPE": "ShopItem", + "UNK": "450044060000" + }, + { + "TYPE": "ShopItem", + "UNK": "450045060000" + }, + { + "TYPE": "ShopItem", + "UNK": "450046060000" + }, + { + "TYPE": "ShopItem", + "UNK": "450049060000" + }, + { + "TYPE": "ShopItem", + "UNK": "45004A060000" + }, + { + "TYPE": "ShopItem", + "UNK": "45004B060000" + }, + { + "TYPE": "ShopTitle", + "ID": 70, + "UNK0": 0, + "STRING": "Hofen's Stuffed Toy Stall", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "460082020000" + }, + { + "TYPE": "ShopItem", + "UNK": "460083020000" + }, + { + "TYPE": "ShopItem", + "UNK": "460084020000" + }, + { + "TYPE": "ShopTitle", + "ID": 71, + "UNK0": 1, + "STRING": "Luce's Honey Stall", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "470048060000" + }, + { + "TYPE": "ShopTitle", + "ID": 72, + "UNK0": 1, + "STRING": "Flint's Drugstore", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "480000000000" + }, + { + "TYPE": "ShopItem", + "UNK": "480003000000" + }, + { + "TYPE": "ShopItem", + "UNK": "480006000000" + }, + { + "TYPE": "ShopItem", + "UNK": "48000B000000" + }, + { + "TYPE": "ShopItem", + "UNK": "48000C000000" + }, + { + "TYPE": "ShopItem", + "UNK": "48000D000000" + }, + { + "TYPE": "ShopItem", + "UNK": "48000E000000" + }, + { + "TYPE": "ShopItem", + "UNK": "48000F000000" + }, + { + "TYPE": "ShopItem", + "UNK": "480010000000" + }, + { + "TYPE": "ShopItem", + "UNK": "480011000000" + }, + { + "TYPE": "ShopItem", + "UNK": "480012000000" + }, + { + "TYPE": "ShopItem", + "UNK": "480013000000" + }, + { + "TYPE": "ShopItem", + "UNK": "480014000000" + }, + { + "TYPE": "ShopTitle", + "ID": 73, + "UNK0": 0, + "STRING": "Tommy's Imported Goods", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "490085020000" + }, + { + "TYPE": "ShopItem", + "UNK": "490047060000" + }, + { + "TYPE": "ShopItem", + "UNK": "49000F010000" + }, + { + "TYPE": "ShopItem", + "UNK": "490010010000" + }, + { + "TYPE": "ShopTitle", + "ID": 74, + "UNK0": 1, + "STRING": "Chris the Newsboy", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "4A0004010000" + }, + { + "TYPE": "ShopTitle", + "ID": 75, + "UNK0": 7, + "STRING": "Weathercock Inn", + "UNK1": "646402020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "4B00F0050000" + }, + { + "TYPE": "ShopItem", + "UNK": "4B0005060000" + }, + { + "TYPE": "ShopItem", + "UNK": "4B0006060000" + }, + { + "TYPE": "ShopTitle", + "ID": 76, + "UNK0": 0, + "STRING": "Oddvin's Arms & Orbal Factory", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "4C00EA030000" + }, + { + "TYPE": "ShopItem", + "UNK": "4C0008040000" + }, + { + "TYPE": "ShopItem", + "UNK": "4C0026040000" + }, + { + "TYPE": "ShopItem", + "UNK": "4C0044040000" + }, + { + "TYPE": "ShopItem", + "UNK": "4C00F7010000" + }, + { + "TYPE": "ShopItem", + "UNK": "4C0029020000" + }, + { + "TYPE": "ShopTitle", + "ID": 77, + "UNK0": 3, + "STRING": "Oddvin's Arms & Orbal Factory", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "4D0034080200" + }, + { + "TYPE": "ShopItem", + "UNK": "4D0035080200" + }, + { + "TYPE": "ShopItem", + "UNK": "4D003A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "4D003D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "4D0057080200" + }, + { + "TYPE": "ShopItem", + "UNK": "4D0058080200" + }, + { + "TYPE": "ShopItem", + "UNK": "4D005C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "4D005F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "4D0061080200" + }, + { + "TYPE": "ShopItem", + "UNK": "4D0063080200" + }, + { + "TYPE": "ShopItem", + "UNK": "4D007A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "4D007B080200" + }, + { + "TYPE": "ShopItem", + "UNK": "4D0082080200" + }, + { + "TYPE": "ShopItem", + "UNK": "4D0084080200" + }, + { + "TYPE": "ShopItem", + "UNK": "4D009D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "4D009E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "4D00A2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "4D00A5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "4D00A7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "4D00C0080200" + }, + { + "TYPE": "ShopItem", + "UNK": "4D00C7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "4D00CA080200" + }, + { + "TYPE": "ShopItem", + "UNK": "4D00CC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "4D00DE080200" + }, + { + "TYPE": "ShopItem", + "UNK": "4D00E5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "4D00E7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "4D00FC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "4D0000090200" + }, + { + "TYPE": "ShopItem", + "UNK": "4D0003090200" + }, + { + "TYPE": "ShopItem", + "UNK": "4D0005090200" + }, + { + "TYPE": "ShopItem", + "UNK": "4D0030090400" + }, + { + "TYPE": "ShopItem", + "UNK": "4D0031090400" + }, + { + "TYPE": "ShopTitle", + "ID": 78, + "UNK0": 4, + "STRING": "Oddvin's Arms & Orbal Factory", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "4E00C9000100" + }, + { + "TYPE": "ShopItem", + "UNK": "4E00D2000100" + }, + { + "TYPE": "ShopItem", + "UNK": "4E00D8000100" + }, + { + "TYPE": "ShopItem", + "UNK": "4E00E1000100" + }, + { + "TYPE": "ShopTitle", + "ID": 79, + "UNK0": 5, + "STRING": "Oddvin's Arms & Orbal Factory", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "4F00D5070300" + }, + { + "TYPE": "ShopItem", + "UNK": "4F0003000000" + }, + { + "TYPE": "ShopTitle", + "ID": 80, + "UNK0": 2, + "STRING": "Orbment Charging Station", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "500034080200" + }, + { + "TYPE": "ShopItem", + "UNK": "500035080200" + }, + { + "TYPE": "ShopItem", + "UNK": "50003A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "50003D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "500057080200" + }, + { + "TYPE": "ShopItem", + "UNK": "500058080200" + }, + { + "TYPE": "ShopItem", + "UNK": "50005C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "50005F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "500061080200" + }, + { + "TYPE": "ShopItem", + "UNK": "500063080200" + }, + { + "TYPE": "ShopItem", + "UNK": "50007A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "50007B080200" + }, + { + "TYPE": "ShopItem", + "UNK": "500082080200" + }, + { + "TYPE": "ShopItem", + "UNK": "500084080200" + }, + { + "TYPE": "ShopItem", + "UNK": "50009D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "50009E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5000A2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5000A5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5000A7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5000C0080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5000C7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5000CA080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5000CC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5000DE080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5000E5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5000E7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5000FC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "500000090200" + }, + { + "TYPE": "ShopItem", + "UNK": "500003090200" + }, + { + "TYPE": "ShopItem", + "UNK": "500005090200" + }, + { + "TYPE": "ShopTitle", + "ID": 81, + "UNK0": 0, + "STRING": "Christie's Galleria", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "510000000000" + }, + { + "TYPE": "ShopItem", + "UNK": "510001000000" + }, + { + "TYPE": "ShopItem", + "UNK": "510003000000" + }, + { + "TYPE": "ShopItem", + "UNK": "510004000000" + }, + { + "TYPE": "ShopItem", + "UNK": "510006000000" + }, + { + "TYPE": "ShopItem", + "UNK": "510007000000" + }, + { + "TYPE": "ShopItem", + "UNK": "51000B000000" + }, + { + "TYPE": "ShopItem", + "UNK": "51000C000000" + }, + { + "TYPE": "ShopItem", + "UNK": "51000D000000" + }, + { + "TYPE": "ShopItem", + "UNK": "51000E000000" + }, + { + "TYPE": "ShopItem", + "UNK": "51000F000000" + }, + { + "TYPE": "ShopItem", + "UNK": "510010000000" + }, + { + "TYPE": "ShopItem", + "UNK": "510011000000" + }, + { + "TYPE": "ShopItem", + "UNK": "510012000000" + }, + { + "TYPE": "ShopItem", + "UNK": "510013000000" + }, + { + "TYPE": "ShopItem", + "UNK": "510014000000" + }, + { + "TYPE": "ShopItem", + "UNK": "510015000000" + }, + { + "TYPE": "ShopItem", + "UNK": "510016000000" + }, + { + "TYPE": "ShopItem", + "UNK": "510017000000" + }, + { + "TYPE": "ShopItem", + "UNK": "510018000000" + }, + { + "TYPE": "ShopItem", + "UNK": "510067020000" + }, + { + "TYPE": "ShopItem", + "UNK": "510068020000" + }, + { + "TYPE": "ShopItem", + "UNK": "510069020000" + }, + { + "TYPE": "ShopItem", + "UNK": "51006A020000" + }, + { + "TYPE": "ShopTitle", + "ID": 82, + "UNK0": 0, + "STRING": "Henderson & Co. General Goods", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "520000000000" + }, + { + "TYPE": "ShopItem", + "UNK": "520001000000" + }, + { + "TYPE": "ShopItem", + "UNK": "520003000000" + }, + { + "TYPE": "ShopItem", + "UNK": "520004000000" + }, + { + "TYPE": "ShopItem", + "UNK": "520006000000" + }, + { + "TYPE": "ShopItem", + "UNK": "520007000000" + }, + { + "TYPE": "ShopItem", + "UNK": "52000B000000" + }, + { + "TYPE": "ShopItem", + "UNK": "52000C000000" + }, + { + "TYPE": "ShopItem", + "UNK": "52000D000000" + }, + { + "TYPE": "ShopItem", + "UNK": "52000E000000" + }, + { + "TYPE": "ShopItem", + "UNK": "52000F000000" + }, + { + "TYPE": "ShopItem", + "UNK": "520010000000" + }, + { + "TYPE": "ShopItem", + "UNK": "520011000000" + }, + { + "TYPE": "ShopItem", + "UNK": "520012000000" + }, + { + "TYPE": "ShopItem", + "UNK": "520013000000" + }, + { + "TYPE": "ShopItem", + "UNK": "520014000000" + }, + { + "TYPE": "ShopItem", + "UNK": "520015000000" + }, + { + "TYPE": "ShopItem", + "UNK": "520016000000" + }, + { + "TYPE": "ShopItem", + "UNK": "520017000000" + }, + { + "TYPE": "ShopItem", + "UNK": "520018000000" + }, + { + "TYPE": "ShopItem", + "UNK": "520040060000" + }, + { + "TYPE": "ShopItem", + "UNK": "520041060000" + }, + { + "TYPE": "ShopItem", + "UNK": "520042060000" + }, + { + "TYPE": "ShopItem", + "UNK": "520043060000" + }, + { + "TYPE": "ShopItem", + "UNK": "520044060000" + }, + { + "TYPE": "ShopItem", + "UNK": "520045060000" + }, + { + "TYPE": "ShopItem", + "UNK": "520046060000" + }, + { + "TYPE": "ShopItem", + "UNK": "520047060000" + }, + { + "TYPE": "ShopItem", + "UNK": "520048060000" + }, + { + "TYPE": "ShopItem", + "UNK": "520049060000" + }, + { + "TYPE": "ShopItem", + "UNK": "52004A060000" + }, + { + "TYPE": "ShopItem", + "UNK": "52004B060000" + }, + { + "TYPE": "ShopItem", + "UNK": "520058020000" + }, + { + "TYPE": "ShopItem", + "UNK": "520059020000" + }, + { + "TYPE": "ShopItem", + "UNK": "52005A020000" + }, + { + "TYPE": "ShopItem", + "UNK": "52005B020000" + }, + { + "TYPE": "ShopItem", + "UNK": "52005C020000" + }, + { + "TYPE": "ShopItem", + "UNK": "52005D020000" + }, + { + "TYPE": "ShopItem", + "UNK": "52005E020000" + }, + { + "TYPE": "ShopItem", + "UNK": "52005F020000" + }, + { + "TYPE": "ShopItem", + "UNK": "52007B020000" + }, + { + "TYPE": "ShopItem", + "UNK": "520086020000" + }, + { + "TYPE": "ShopTitle", + "ID": 83, + "UNK0": 0, + "STRING": "Club Lexington", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "5300ED030000" + }, + { + "TYPE": "ShopItem", + "UNK": "530029040000" + }, + { + "TYPE": "ShopItem", + "UNK": "530065040000" + }, + { + "TYPE": "ShopItem", + "UNK": "5300A1040000" + }, + { + "TYPE": "ShopItem", + "UNK": "5300BF040000" + }, + { + "TYPE": "ShopItem", + "UNK": "53008A020000" + }, + { + "TYPE": "ShopTitle", + "ID": 84, + "UNK0": 1, + "STRING": "Fortnum Books", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "540005010000" + }, + { + "TYPE": "ShopItem", + "UNK": "540011010000" + }, + { + "TYPE": "ShopItem", + "UNK": "540012010000" + }, + { + "TYPE": "ShopTitle", + "ID": 85, + "UNK0": 0, + "STRING": "Boutique - Camellia", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "5500F8010000" + }, + { + "TYPE": "ShopItem", + "UNK": "55006B020000" + }, + { + "TYPE": "ShopItem", + "UNK": "55006C020000" + }, + { + "TYPE": "ShopTitle", + "ID": 86, + "UNK0": 0, + "STRING": "Tricolor Shoes", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "56002A020000" + }, + { + "TYPE": "ShopItem", + "UNK": "56006D020000" + }, + { + "TYPE": "ShopTitle", + "ID": 87, + "UNK0": 6, + "STRING": "Hotel Esmeralda", + "UNK1": "c8c802020303030a" + }, + { + "TYPE": "ShopTitle", + "ID": 88, + "UNK0": 1, + "STRING": "Sorciere Restaurant", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "5800F5050000" + }, + { + "TYPE": "ShopItem", + "UNK": "580009060000" + }, + { + "TYPE": "ShopItem", + "UNK": "5800F4050000" + }, + { + "TYPE": "ShopItem", + "UNK": "580008060000" + }, + { + "TYPE": "ShopTitle", + "ID": 89, + "UNK0": 3, + "STRING": "Davos' Factory", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "590034080200" + }, + { + "TYPE": "ShopItem", + "UNK": "590035080200" + }, + { + "TYPE": "ShopItem", + "UNK": "590039080200" + }, + { + "TYPE": "ShopItem", + "UNK": "59003A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "59003D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "590040080200" + }, + { + "TYPE": "ShopItem", + "UNK": "590057080200" + }, + { + "TYPE": "ShopItem", + "UNK": "590058080200" + }, + { + "TYPE": "ShopItem", + "UNK": "59005C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "59005D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "59005F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "590061080200" + }, + { + "TYPE": "ShopItem", + "UNK": "590063080200" + }, + { + "TYPE": "ShopItem", + "UNK": "590066080200" + }, + { + "TYPE": "ShopItem", + "UNK": "59007A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "59007B080200" + }, + { + "TYPE": "ShopItem", + "UNK": "590080080200" + }, + { + "TYPE": "ShopItem", + "UNK": "590082080200" + }, + { + "TYPE": "ShopItem", + "UNK": "590084080200" + }, + { + "TYPE": "ShopItem", + "UNK": "590087080200" + }, + { + "TYPE": "ShopItem", + "UNK": "59009D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "59009E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5900A2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5900A5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5900A7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5900A8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5900C0080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5900C1080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5900C4080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5900C7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5900CA080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5900CC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5900DE080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5900DF080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5900E2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5900E5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5900E7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5900FC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5900FD080200" + }, + { + "TYPE": "ShopItem", + "UNK": "590000090200" + }, + { + "TYPE": "ShopItem", + "UNK": "590003090200" + }, + { + "TYPE": "ShopItem", + "UNK": "590005090200" + }, + { + "TYPE": "ShopItem", + "UNK": "590030090400" + }, + { + "TYPE": "ShopItem", + "UNK": "590031090400" + }, + { + "TYPE": "ShopTitle", + "ID": 90, + "UNK0": 4, + "STRING": "Davos' Factory", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "5A00CA000100" + }, + { + "TYPE": "ShopItem", + "UNK": "5A00D9000100" + }, + { + "TYPE": "ShopItem", + "UNK": "5A00E6000100" + }, + { + "TYPE": "ShopItem", + "UNK": "5A00EB000100" + }, + { + "TYPE": "ShopItem", + "UNK": "5A00F0000100" + }, + { + "TYPE": "ShopTitle", + "ID": 91, + "UNK0": 5, + "STRING": "Davos' Factory", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "5B00D5070300" + }, + { + "TYPE": "ShopItem", + "UNK": "5B00DA070300" + }, + { + "TYPE": "ShopItem", + "UNK": "5B0003000000" + }, + { + "TYPE": "ShopTitle", + "ID": 92, + "UNK0": 2, + "STRING": "Orbment Charging Station", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "5C0034080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5C0035080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5C0039080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5C003A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5C003D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5C0040080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5C0057080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5C0058080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5C005C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5C005D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5C005F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5C0061080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5C0063080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5C0066080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5C007A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5C007B080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5C0080080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5C0082080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5C0084080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5C0087080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5C009D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5C009E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5C00A2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5C00A5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5C00A7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5C00A8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5C00C0080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5C00C1080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5C00C4080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5C00C7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5C00CA080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5C00CC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5C00DE080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5C00DF080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5C00E2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5C00E5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5C00E7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5C00FC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5C00FD080200" + }, + { + "TYPE": "ShopItem", + "UNK": "5C0000090200" + }, + { + "TYPE": "ShopItem", + "UNK": "5C0003090200" + }, + { + "TYPE": "ShopItem", + "UNK": "5C0005090200" + }, + { + "TYPE": "ShopTitle", + "ID": 93, + "UNK0": 7, + "STRING": "Alouette Inn", + "UNK1": "646402020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "5D0004060000" + }, + { + "TYPE": "ShopItem", + "UNK": "5D000A060000" + }, + { + "TYPE": "ShopTitle", + "ID": 94, + "UNK0": 0, + "STRING": "Turner's Jewelers", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "5E0072020000" + }, + { + "TYPE": "ShopItem", + "UNK": "5E0073020000" + }, + { + "TYPE": "ShopItem", + "UNK": "5E0074020000" + }, + { + "TYPE": "ShopItem", + "UNK": "5E0075020000" + }, + { + "TYPE": "ShopTitle", + "ID": 95, + "UNK0": 0, + "STRING": "Valenty Tailoring", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "5F00F9010000" + }, + { + "TYPE": "ShopItem", + "UNK": "5F00FA010000" + }, + { + "TYPE": "ShopItem", + "UNK": "5F00FB010000" + }, + { + "TYPE": "ShopItem", + "UNK": "5F002B020000" + }, + { + "TYPE": "ShopItem", + "UNK": "5F002C020000" + }, + { + "TYPE": "ShopItem", + "UNK": "5F002D020000" + }, + { + "TYPE": "ShopTitle", + "ID": 96, + "UNK0": 7, + "STRING": "Rest Area - Crescent Moon", + "UNK1": "646402020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "6000F3050000" + }, + { + "TYPE": "ShopItem", + "UNK": "6000F2050000" + }, + { + "TYPE": "ShopTitle", + "ID": 97, + "UNK0": 1, + "STRING": "Zender Gate - Mess Hall", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "61000C060000" + }, + { + "TYPE": "ShopItem", + "UNK": "6100F8050000" + }, + { + "TYPE": "ShopItem", + "UNK": "610006060000" + }, + { + "TYPE": "ShopTitle", + "ID": 98, + "UNK0": 3, + "STRING": "Zender Gate - Store", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "620034080200" + }, + { + "TYPE": "ShopItem", + "UNK": "620035080200" + }, + { + "TYPE": "ShopItem", + "UNK": "620036080200" + }, + { + "TYPE": "ShopItem", + "UNK": "620039080200" + }, + { + "TYPE": "ShopItem", + "UNK": "62003A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "62003D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "62003E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "620040080200" + }, + { + "TYPE": "ShopItem", + "UNK": "620041080200" + }, + { + "TYPE": "ShopItem", + "UNK": "620057080200" + }, + { + "TYPE": "ShopItem", + "UNK": "620058080200" + }, + { + "TYPE": "ShopItem", + "UNK": "620059080200" + }, + { + "TYPE": "ShopItem", + "UNK": "62005C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "62005D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "62005F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "620061080200" + }, + { + "TYPE": "ShopItem", + "UNK": "620063080200" + }, + { + "TYPE": "ShopItem", + "UNK": "620064080200" + }, + { + "TYPE": "ShopItem", + "UNK": "620066080200" + }, + { + "TYPE": "ShopItem", + "UNK": "620067080200" + }, + { + "TYPE": "ShopItem", + "UNK": "62007A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "62007B080200" + }, + { + "TYPE": "ShopItem", + "UNK": "62007C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "620080080200" + }, + { + "TYPE": "ShopItem", + "UNK": "620081080200" + }, + { + "TYPE": "ShopItem", + "UNK": "620082080200" + }, + { + "TYPE": "ShopItem", + "UNK": "620084080200" + }, + { + "TYPE": "ShopItem", + "UNK": "620085080200" + }, + { + "TYPE": "ShopItem", + "UNK": "620087080200" + }, + { + "TYPE": "ShopItem", + "UNK": "620088080200" + }, + { + "TYPE": "ShopItem", + "UNK": "62009D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "62009E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "62009F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6200A2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6200A4080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6200A5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6200A7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6200A8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6200AA080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6200AB080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6200C0080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6200C1080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6200C4080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6200C5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6200C7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6200C8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6200CA080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6200CC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6200DE080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6200DF080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6200E3080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6200E2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6200E5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6200E7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6200FC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6200FD080200" + }, + { + "TYPE": "ShopItem", + "UNK": "620000090200" + }, + { + "TYPE": "ShopItem", + "UNK": "620001090200" + }, + { + "TYPE": "ShopItem", + "UNK": "620003090200" + }, + { + "TYPE": "ShopItem", + "UNK": "620005090200" + }, + { + "TYPE": "ShopItem", + "UNK": "620006090200" + }, + { + "TYPE": "ShopItem", + "UNK": "620030090400" + }, + { + "TYPE": "ShopItem", + "UNK": "620031090400" + }, + { + "TYPE": "ShopTitle", + "ID": 99, + "UNK0": 4, + "STRING": "Zender Gate - Store", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "6300CB000100" + }, + { + "TYPE": "ShopItem", + "UNK": "6300D3000100" + }, + { + "TYPE": "ShopItem", + "UNK": "6300DA000100" + }, + { + "TYPE": "ShopItem", + "UNK": "6300EC000100" + }, + { + "TYPE": "ShopItem", + "UNK": "6300F6000100" + }, + { + "TYPE": "ShopTitle", + "ID": 100, + "UNK0": 5, + "STRING": "Zender Gate - Store", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "6400D5070300" + }, + { + "TYPE": "ShopItem", + "UNK": "6400DA070300" + }, + { + "TYPE": "ShopItem", + "UNK": "6400DD070300" + }, + { + "TYPE": "ShopItem", + "UNK": "6400F0030000" + }, + { + "TYPE": "ShopItem", + "UNK": "64000E040000" + }, + { + "TYPE": "ShopItem", + "UNK": "64002C040000" + }, + { + "TYPE": "ShopItem", + "UNK": "6400A4040000" + }, + { + "TYPE": "ShopItem", + "UNK": "6400E0040000" + }, + { + "TYPE": "ShopItem", + "UNK": "6400FC010000" + }, + { + "TYPE": "ShopItem", + "UNK": "64002E020000" + }, + { + "TYPE": "ShopItem", + "UNK": "640058020000" + }, + { + "TYPE": "ShopItem", + "UNK": "640059020000" + }, + { + "TYPE": "ShopItem", + "UNK": "64005A020000" + }, + { + "TYPE": "ShopItem", + "UNK": "64005B020000" + }, + { + "TYPE": "ShopItem", + "UNK": "64005C020000" + }, + { + "TYPE": "ShopItem", + "UNK": "64005D020000" + }, + { + "TYPE": "ShopItem", + "UNK": "64005E020000" + }, + { + "TYPE": "ShopItem", + "UNK": "64005F020000" + }, + { + "TYPE": "ShopItem", + "UNK": "640062020000" + }, + { + "TYPE": "ShopItem", + "UNK": "640072020000" + }, + { + "TYPE": "ShopItem", + "UNK": "640073020000" + }, + { + "TYPE": "ShopItem", + "UNK": "640074020000" + }, + { + "TYPE": "ShopItem", + "UNK": "640075020000" + }, + { + "TYPE": "ShopItem", + "UNK": "64007B020000" + }, + { + "TYPE": "ShopItem", + "UNK": "640000000000" + }, + { + "TYPE": "ShopItem", + "UNK": "640001000000" + }, + { + "TYPE": "ShopItem", + "UNK": "640003000000" + }, + { + "TYPE": "ShopItem", + "UNK": "640004000000" + }, + { + "TYPE": "ShopItem", + "UNK": "640006000000" + }, + { + "TYPE": "ShopItem", + "UNK": "640007000000" + }, + { + "TYPE": "ShopItem", + "UNK": "64000B000000" + }, + { + "TYPE": "ShopItem", + "UNK": "64000C000000" + }, + { + "TYPE": "ShopItem", + "UNK": "64000D000000" + }, + { + "TYPE": "ShopItem", + "UNK": "64000E000000" + }, + { + "TYPE": "ShopItem", + "UNK": "64000F000000" + }, + { + "TYPE": "ShopItem", + "UNK": "640010000000" + }, + { + "TYPE": "ShopItem", + "UNK": "640011000000" + }, + { + "TYPE": "ShopItem", + "UNK": "640012000000" + }, + { + "TYPE": "ShopItem", + "UNK": "640013000000" + }, + { + "TYPE": "ShopItem", + "UNK": "640014000000" + }, + { + "TYPE": "ShopItem", + "UNK": "640015000000" + }, + { + "TYPE": "ShopItem", + "UNK": "640016000000" + }, + { + "TYPE": "ShopItem", + "UNK": "640017000000" + }, + { + "TYPE": "ShopItem", + "UNK": "640018000000" + }, + { + "TYPE": "ShopItem", + "UNK": "640040060000" + }, + { + "TYPE": "ShopItem", + "UNK": "640041060000" + }, + { + "TYPE": "ShopItem", + "UNK": "640042060000" + }, + { + "TYPE": "ShopItem", + "UNK": "640043060000" + }, + { + "TYPE": "ShopItem", + "UNK": "640044060000" + }, + { + "TYPE": "ShopItem", + "UNK": "640045060000" + }, + { + "TYPE": "ShopItem", + "UNK": "640046060000" + }, + { + "TYPE": "ShopItem", + "UNK": "640047060000" + }, + { + "TYPE": "ShopItem", + "UNK": "640048060000" + }, + { + "TYPE": "ShopItem", + "UNK": "640049060000" + }, + { + "TYPE": "ShopItem", + "UNK": "64004A060000" + }, + { + "TYPE": "ShopItem", + "UNK": "64004B060000" + }, + { + "TYPE": "ShopTitle", + "ID": 101, + "UNK0": 0, + "STRING": "Kilte's Store", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "6500F0030000" + }, + { + "TYPE": "ShopItem", + "UNK": "65000E040000" + }, + { + "TYPE": "ShopItem", + "UNK": "65002C040000" + }, + { + "TYPE": "ShopItem", + "UNK": "6500A4040000" + }, + { + "TYPE": "ShopItem", + "UNK": "6500E0040000" + }, + { + "TYPE": "ShopItem", + "UNK": "6500FC010000" + }, + { + "TYPE": "ShopItem", + "UNK": "6500FD010000" + }, + { + "TYPE": "ShopItem", + "UNK": "6500FE010000" + }, + { + "TYPE": "ShopItem", + "UNK": "65002E020000" + }, + { + "TYPE": "ShopItem", + "UNK": "65002F020000" + }, + { + "TYPE": "ShopItem", + "UNK": "650030020000" + }, + { + "TYPE": "ShopItem", + "UNK": "650058020000" + }, + { + "TYPE": "ShopItem", + "UNK": "650059020000" + }, + { + "TYPE": "ShopItem", + "UNK": "65005A020000" + }, + { + "TYPE": "ShopItem", + "UNK": "65005B020000" + }, + { + "TYPE": "ShopItem", + "UNK": "65005C020000" + }, + { + "TYPE": "ShopItem", + "UNK": "65005D020000" + }, + { + "TYPE": "ShopItem", + "UNK": "65005E020000" + }, + { + "TYPE": "ShopItem", + "UNK": "65005F020000" + }, + { + "TYPE": "ShopItem", + "UNK": "650062020000" + }, + { + "TYPE": "ShopItem", + "UNK": "65007B020000" + }, + { + "TYPE": "ShopItem", + "UNK": "65008B020000" + }, + { + "TYPE": "ShopItem", + "UNK": "650000000000" + }, + { + "TYPE": "ShopItem", + "UNK": "650001000000" + }, + { + "TYPE": "ShopItem", + "UNK": "650003000000" + }, + { + "TYPE": "ShopItem", + "UNK": "650004000000" + }, + { + "TYPE": "ShopItem", + "UNK": "650006000000" + }, + { + "TYPE": "ShopItem", + "UNK": "650007000000" + }, + { + "TYPE": "ShopItem", + "UNK": "65000B000000" + }, + { + "TYPE": "ShopItem", + "UNK": "65000C000000" + }, + { + "TYPE": "ShopItem", + "UNK": "65000D000000" + }, + { + "TYPE": "ShopItem", + "UNK": "65000E000000" + }, + { + "TYPE": "ShopItem", + "UNK": "65000F000000" + }, + { + "TYPE": "ShopItem", + "UNK": "650010000000" + }, + { + "TYPE": "ShopItem", + "UNK": "650011000000" + }, + { + "TYPE": "ShopItem", + "UNK": "650012000000" + }, + { + "TYPE": "ShopItem", + "UNK": "650013000000" + }, + { + "TYPE": "ShopItem", + "UNK": "650014000000" + }, + { + "TYPE": "ShopItem", + "UNK": "650015000000" + }, + { + "TYPE": "ShopItem", + "UNK": "650016000000" + }, + { + "TYPE": "ShopItem", + "UNK": "650017000000" + }, + { + "TYPE": "ShopItem", + "UNK": "650018000000" + }, + { + "TYPE": "ShopItem", + "UNK": "650040060000" + }, + { + "TYPE": "ShopItem", + "UNK": "650041060000" + }, + { + "TYPE": "ShopItem", + "UNK": "650042060000" + }, + { + "TYPE": "ShopItem", + "UNK": "650043060000" + }, + { + "TYPE": "ShopItem", + "UNK": "650044060000" + }, + { + "TYPE": "ShopItem", + "UNK": "650045060000" + }, + { + "TYPE": "ShopItem", + "UNK": "650046060000" + }, + { + "TYPE": "ShopItem", + "UNK": "650047060000" + }, + { + "TYPE": "ShopItem", + "UNK": "650048060000" + }, + { + "TYPE": "ShopItem", + "UNK": "650049060000" + }, + { + "TYPE": "ShopItem", + "UNK": "65004A060000" + }, + { + "TYPE": "ShopItem", + "UNK": "65004B060000" + }, + { + "TYPE": "ShopItem", + "UNK": "650013010000" + }, + { + "TYPE": "ShopItem", + "UNK": "650006010000" + }, + { + "TYPE": "ShopTitle", + "ID": 102, + "UNK0": 3, + "STRING": "Norton's Orbal Factory", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "660034080200" + }, + { + "TYPE": "ShopItem", + "UNK": "660035080200" + }, + { + "TYPE": "ShopItem", + "UNK": "660036080200" + }, + { + "TYPE": "ShopItem", + "UNK": "660039080200" + }, + { + "TYPE": "ShopItem", + "UNK": "66003A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "66003D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "66003E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "660040080200" + }, + { + "TYPE": "ShopItem", + "UNK": "660041080200" + }, + { + "TYPE": "ShopItem", + "UNK": "660057080200" + }, + { + "TYPE": "ShopItem", + "UNK": "660058080200" + }, + { + "TYPE": "ShopItem", + "UNK": "660059080200" + }, + { + "TYPE": "ShopItem", + "UNK": "66005C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "66005D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "66005F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "660061080200" + }, + { + "TYPE": "ShopItem", + "UNK": "660063080200" + }, + { + "TYPE": "ShopItem", + "UNK": "660064080200" + }, + { + "TYPE": "ShopItem", + "UNK": "660066080200" + }, + { + "TYPE": "ShopItem", + "UNK": "660067080200" + }, + { + "TYPE": "ShopItem", + "UNK": "66007A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "66007B080200" + }, + { + "TYPE": "ShopItem", + "UNK": "66007C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "660080080200" + }, + { + "TYPE": "ShopItem", + "UNK": "660081080200" + }, + { + "TYPE": "ShopItem", + "UNK": "660082080200" + }, + { + "TYPE": "ShopItem", + "UNK": "660084080200" + }, + { + "TYPE": "ShopItem", + "UNK": "660085080200" + }, + { + "TYPE": "ShopItem", + "UNK": "660087080200" + }, + { + "TYPE": "ShopItem", + "UNK": "660088080200" + }, + { + "TYPE": "ShopItem", + "UNK": "66009D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "66009E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "66009F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6600A2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6600A4080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6600A5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6600A7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6600A8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6600AA080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6600AB080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6600C0080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6600C1080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6600C4080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6600C5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6600C7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6600C8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6600CA080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6600CC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6600DE080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6600DF080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6600E3080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6600E2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6600E5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6600E7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6600FC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6600FD080200" + }, + { + "TYPE": "ShopItem", + "UNK": "660000090200" + }, + { + "TYPE": "ShopItem", + "UNK": "660001090200" + }, + { + "TYPE": "ShopItem", + "UNK": "660003090200" + }, + { + "TYPE": "ShopItem", + "UNK": "660005090200" + }, + { + "TYPE": "ShopItem", + "UNK": "660006090200" + }, + { + "TYPE": "ShopTitle", + "ID": 103, + "UNK0": 4, + "STRING": "Norton's Orbal Factory", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "6700CB000100" + }, + { + "TYPE": "ShopItem", + "UNK": "6700D3000100" + }, + { + "TYPE": "ShopItem", + "UNK": "6700DA000100" + }, + { + "TYPE": "ShopItem", + "UNK": "6700EC000100" + }, + { + "TYPE": "ShopItem", + "UNK": "6700F6000100" + }, + { + "TYPE": "ShopTitle", + "ID": 104, + "UNK0": 3, + "STRING": "Imperial Army Supply Point", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "680034080200" + }, + { + "TYPE": "ShopItem", + "UNK": "680035080200" + }, + { + "TYPE": "ShopItem", + "UNK": "680036080200" + }, + { + "TYPE": "ShopItem", + "UNK": "680039080200" + }, + { + "TYPE": "ShopItem", + "UNK": "68003A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "68003D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "68003E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "680040080200" + }, + { + "TYPE": "ShopItem", + "UNK": "680041080200" + }, + { + "TYPE": "ShopItem", + "UNK": "680057080200" + }, + { + "TYPE": "ShopItem", + "UNK": "680058080200" + }, + { + "TYPE": "ShopItem", + "UNK": "680059080200" + }, + { + "TYPE": "ShopItem", + "UNK": "68005C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "68005D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "68005F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "680061080200" + }, + { + "TYPE": "ShopItem", + "UNK": "680063080200" + }, + { + "TYPE": "ShopItem", + "UNK": "680064080200" + }, + { + "TYPE": "ShopItem", + "UNK": "680066080200" + }, + { + "TYPE": "ShopItem", + "UNK": "680067080200" + }, + { + "TYPE": "ShopItem", + "UNK": "68007A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "68007B080200" + }, + { + "TYPE": "ShopItem", + "UNK": "68007C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "680080080200" + }, + { + "TYPE": "ShopItem", + "UNK": "680081080200" + }, + { + "TYPE": "ShopItem", + "UNK": "680082080200" + }, + { + "TYPE": "ShopItem", + "UNK": "680084080200" + }, + { + "TYPE": "ShopItem", + "UNK": "680085080200" + }, + { + "TYPE": "ShopItem", + "UNK": "680087080200" + }, + { + "TYPE": "ShopItem", + "UNK": "680088080200" + }, + { + "TYPE": "ShopItem", + "UNK": "68009D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "68009E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "68009F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6800A2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6800A4080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6800A5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6800A7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6800A8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6800AA080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6800AB080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6800C0080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6800C1080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6800C4080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6800C5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6800C7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6800C8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6800CA080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6800CC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6800DE080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6800DF080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6800E3080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6800E2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6800E5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6800E7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6800FC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6800FD080200" + }, + { + "TYPE": "ShopItem", + "UNK": "680000090200" + }, + { + "TYPE": "ShopItem", + "UNK": "680001090200" + }, + { + "TYPE": "ShopItem", + "UNK": "680003090200" + }, + { + "TYPE": "ShopItem", + "UNK": "680005090200" + }, + { + "TYPE": "ShopItem", + "UNK": "680006090200" + }, + { + "TYPE": "ShopItem", + "UNK": "680030090400" + }, + { + "TYPE": "ShopItem", + "UNK": "680031090400" + }, + { + "TYPE": "ShopTitle", + "ID": 105, + "UNK0": 4, + "STRING": "Imperial Army Supply Point", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "6900CB000100" + }, + { + "TYPE": "ShopItem", + "UNK": "6900D3000100" + }, + { + "TYPE": "ShopItem", + "UNK": "6900DA000100" + }, + { + "TYPE": "ShopItem", + "UNK": "6900EC000100" + }, + { + "TYPE": "ShopItem", + "UNK": "6900F6000100" + }, + { + "TYPE": "ShopTitle", + "ID": 106, + "UNK0": 5, + "STRING": "Imperial Army Supply Point", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "6A00D5070300" + }, + { + "TYPE": "ShopItem", + "UNK": "6A00DA070300" + }, + { + "TYPE": "ShopItem", + "UNK": "6A00DD070300" + }, + { + "TYPE": "ShopItem", + "UNK": "6A00F0030000" + }, + { + "TYPE": "ShopItem", + "UNK": "6A000E040000" + }, + { + "TYPE": "ShopItem", + "UNK": "6A002C040000" + }, + { + "TYPE": "ShopItem", + "UNK": "6A00A4040000" + }, + { + "TYPE": "ShopItem", + "UNK": "6A00E0040000" + }, + { + "TYPE": "ShopItem", + "UNK": "6A00FC010000" + }, + { + "TYPE": "ShopItem", + "UNK": "6A002E020000" + }, + { + "TYPE": "ShopItem", + "UNK": "6A0058020000" + }, + { + "TYPE": "ShopItem", + "UNK": "6A0059020000" + }, + { + "TYPE": "ShopItem", + "UNK": "6A005A020000" + }, + { + "TYPE": "ShopItem", + "UNK": "6A005B020000" + }, + { + "TYPE": "ShopItem", + "UNK": "6A005C020000" + }, + { + "TYPE": "ShopItem", + "UNK": "6A005D020000" + }, + { + "TYPE": "ShopItem", + "UNK": "6A005E020000" + }, + { + "TYPE": "ShopItem", + "UNK": "6A005F020000" + }, + { + "TYPE": "ShopItem", + "UNK": "6A0062020000" + }, + { + "TYPE": "ShopItem", + "UNK": "6A0072020000" + }, + { + "TYPE": "ShopItem", + "UNK": "6A0073020000" + }, + { + "TYPE": "ShopItem", + "UNK": "6A0074020000" + }, + { + "TYPE": "ShopItem", + "UNK": "6A0075020000" + }, + { + "TYPE": "ShopItem", + "UNK": "6A007B020000" + }, + { + "TYPE": "ShopItem", + "UNK": "6A0000000000" + }, + { + "TYPE": "ShopItem", + "UNK": "6A0001000000" + }, + { + "TYPE": "ShopItem", + "UNK": "6A0003000000" + }, + { + "TYPE": "ShopItem", + "UNK": "6A0004000000" + }, + { + "TYPE": "ShopItem", + "UNK": "6A0006000000" + }, + { + "TYPE": "ShopItem", + "UNK": "6A0007000000" + }, + { + "TYPE": "ShopItem", + "UNK": "6A000B000000" + }, + { + "TYPE": "ShopItem", + "UNK": "6A000C000000" + }, + { + "TYPE": "ShopItem", + "UNK": "6A000D000000" + }, + { + "TYPE": "ShopItem", + "UNK": "6A000E000000" + }, + { + "TYPE": "ShopItem", + "UNK": "6A000F000000" + }, + { + "TYPE": "ShopItem", + "UNK": "6A0010000000" + }, + { + "TYPE": "ShopItem", + "UNK": "6A0011000000" + }, + { + "TYPE": "ShopItem", + "UNK": "6A0012000000" + }, + { + "TYPE": "ShopItem", + "UNK": "6A0013000000" + }, + { + "TYPE": "ShopItem", + "UNK": "6A0014000000" + }, + { + "TYPE": "ShopItem", + "UNK": "6A0015000000" + }, + { + "TYPE": "ShopItem", + "UNK": "6A0016000000" + }, + { + "TYPE": "ShopItem", + "UNK": "6A0017000000" + }, + { + "TYPE": "ShopItem", + "UNK": "6A0018000000" + }, + { + "TYPE": "ShopItem", + "UNK": "6A0040060000" + }, + { + "TYPE": "ShopItem", + "UNK": "6A0041060000" + }, + { + "TYPE": "ShopItem", + "UNK": "6A0042060000" + }, + { + "TYPE": "ShopItem", + "UNK": "6A0043060000" + }, + { + "TYPE": "ShopItem", + "UNK": "6A0044060000" + }, + { + "TYPE": "ShopItem", + "UNK": "6A0045060000" + }, + { + "TYPE": "ShopItem", + "UNK": "6A0046060000" + }, + { + "TYPE": "ShopItem", + "UNK": "6A0047060000" + }, + { + "TYPE": "ShopItem", + "UNK": "6A0048060000" + }, + { + "TYPE": "ShopItem", + "UNK": "6A0049060000" + }, + { + "TYPE": "ShopItem", + "UNK": "6A004A060000" + }, + { + "TYPE": "ShopItem", + "UNK": "6A004B060000" + }, + { + "TYPE": "ShopTitle", + "ID": 107, + "UNK0": 3, + "STRING": "Gwyn's Orbal Factory", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "6B0034080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6B0035080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6B0036080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6B0039080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6B003A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6B003D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6B003E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6B0040080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6B0041080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6B0057080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6B0058080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6B0059080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6B005C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6B005D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6B005F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6B0061080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6B0063080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6B0064080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6B0066080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6B0067080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6B007A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6B007B080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6B007C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6B0080080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6B0081080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6B0082080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6B0084080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6B0085080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6B0087080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6B0088080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6B009D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6B009E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6B009F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6B00A2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6B00A4080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6B00A5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6B00A7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6B00A8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6B00AA080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6B00AB080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6B00C0080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6B00C1080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6B00C4080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6B00C5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6B00C7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6B00C8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6B00CA080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6B00CC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6B00DE080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6B00DF080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6B00E3080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6B00E2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6B00E5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6B00E7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6B00FC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6B00FD080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6B0000090200" + }, + { + "TYPE": "ShopItem", + "UNK": "6B0001090200" + }, + { + "TYPE": "ShopItem", + "UNK": "6B0003090200" + }, + { + "TYPE": "ShopItem", + "UNK": "6B0005090200" + }, + { + "TYPE": "ShopItem", + "UNK": "6B0006090200" + }, + { + "TYPE": "ShopTitle", + "ID": 108, + "UNK0": 4, + "STRING": "Gwyn's Orbal Factory", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "6C00CB000100" + }, + { + "TYPE": "ShopItem", + "UNK": "6C00D3000100" + }, + { + "TYPE": "ShopItem", + "UNK": "6C00DA000100" + }, + { + "TYPE": "ShopItem", + "UNK": "6C00EC000100" + }, + { + "TYPE": "ShopItem", + "UNK": "6C00F6000100" + }, + { + "TYPE": "ShopTitle", + "ID": 109, + "UNK0": 2, + "STRING": "Orbment Charging Station", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "6D0034080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6D0035080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6D0036080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6D0039080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6D003A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6D003D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6D003E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6D0040080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6D0041080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6D0057080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6D0058080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6D0059080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6D005C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6D005D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6D005F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6D0061080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6D0063080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6D0064080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6D0066080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6D0067080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6D007A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6D007B080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6D007C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6D0080080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6D0081080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6D0082080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6D0084080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6D0085080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6D0087080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6D0088080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6D009D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6D009E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6D009F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6D00A2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6D00A4080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6D00A5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6D00A7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6D00A8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6D00AA080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6D00AB080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6D00C0080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6D00C1080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6D00C4080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6D00C5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6D00C7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6D00C8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6D00CA080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6D00CC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6D00DE080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6D00DF080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6D00E3080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6D00E2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6D00E5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6D00E7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6D00FC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6D00FD080200" + }, + { + "TYPE": "ShopItem", + "UNK": "6D0000090200" + }, + { + "TYPE": "ShopItem", + "UNK": "6D0001090200" + }, + { + "TYPE": "ShopItem", + "UNK": "6D0003090200" + }, + { + "TYPE": "ShopItem", + "UNK": "6D0005090200" + }, + { + "TYPE": "ShopItem", + "UNK": "6D0006090200" + }, + { + "TYPE": "ShopTitle", + "ID": 110, + "UNK0": 0, + "STRING": "Boutique - Le Sage", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "6E00FF010000" + }, + { + "TYPE": "ShopItem", + "UNK": "6E0000020000" + }, + { + "TYPE": "ShopItem", + "UNK": "6E0002020000" + }, + { + "TYPE": "ShopItem", + "UNK": "6E0034020000" + }, + { + "TYPE": "ShopItem", + "UNK": "6E0067020000" + }, + { + "TYPE": "ShopItem", + "UNK": "6E0068020000" + }, + { + "TYPE": "ShopItem", + "UNK": "6E0069020000" + }, + { + "TYPE": "ShopItem", + "UNK": "6E006A020000" + }, + { + "TYPE": "ShopItem", + "UNK": "6E006B020000" + }, + { + "TYPE": "ShopItem", + "UNK": "6E006C020000" + }, + { + "TYPE": "ShopItem", + "UNK": "6E006D020000" + }, + { + "TYPE": "ShopItem", + "UNK": "6E006E020000" + }, + { + "TYPE": "ShopItem", + "UNK": "6E006F020000" + }, + { + "TYPE": "ShopItem", + "UNK": "6E0070020000" + }, + { + "TYPE": "ShopItem", + "UNK": "6E0071020000" + }, + { + "TYPE": "ShopTitle", + "ID": 111, + "UNK0": 0, + "STRING": "Lepanto & Co. General Goods", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "6F0058020000" + }, + { + "TYPE": "ShopItem", + "UNK": "6F0059020000" + }, + { + "TYPE": "ShopItem", + "UNK": "6F005A020000" + }, + { + "TYPE": "ShopItem", + "UNK": "6F005B020000" + }, + { + "TYPE": "ShopItem", + "UNK": "6F005C020000" + }, + { + "TYPE": "ShopItem", + "UNK": "6F005D020000" + }, + { + "TYPE": "ShopItem", + "UNK": "6F005E020000" + }, + { + "TYPE": "ShopItem", + "UNK": "6F005F020000" + }, + { + "TYPE": "ShopItem", + "UNK": "6F0060020000" + }, + { + "TYPE": "ShopItem", + "UNK": "6F0061020000" + }, + { + "TYPE": "ShopItem", + "UNK": "6F0062020000" + }, + { + "TYPE": "ShopItem", + "UNK": "6F0072020000" + }, + { + "TYPE": "ShopItem", + "UNK": "6F0073020000" + }, + { + "TYPE": "ShopItem", + "UNK": "6F0074020000" + }, + { + "TYPE": "ShopItem", + "UNK": "6F0075020000" + }, + { + "TYPE": "ShopItem", + "UNK": "6F007B020000" + }, + { + "TYPE": "ShopItem", + "UNK": "6F0087020000" + }, + { + "TYPE": "ShopItem", + "UNK": "6F008C020000" + }, + { + "TYPE": "ShopItem", + "UNK": "6F008D020000" + }, + { + "TYPE": "ShopTitle", + "ID": 112, + "UNK0": 1, + "STRING": "Alterna Bookstore", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "700007010000" + }, + { + "TYPE": "ShopItem", + "UNK": "700014010000" + }, + { + "TYPE": "ShopItem", + "UNK": "700015010000" + }, + { + "TYPE": "ShopItem", + "UNK": "700016010000" + }, + { + "TYPE": "ShopTitle", + "ID": 113, + "UNK0": 1, + "STRING": "Alterna Bookstore", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "710008010000" + }, + { + "TYPE": "ShopItem", + "UNK": "710014010000" + }, + { + "TYPE": "ShopItem", + "UNK": "710015010000" + }, + { + "TYPE": "ShopItem", + "UNK": "710016010000" + }, + { + "TYPE": "ShopTitle", + "ID": 114, + "UNK0": 1, + "STRING": "Flint's Drugstore", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "720000000000" + }, + { + "TYPE": "ShopItem", + "UNK": "720001000000" + }, + { + "TYPE": "ShopItem", + "UNK": "720003000000" + }, + { + "TYPE": "ShopItem", + "UNK": "720004000000" + }, + { + "TYPE": "ShopItem", + "UNK": "720006000000" + }, + { + "TYPE": "ShopItem", + "UNK": "720007000000" + }, + { + "TYPE": "ShopItem", + "UNK": "72000B000000" + }, + { + "TYPE": "ShopItem", + "UNK": "72000C000000" + }, + { + "TYPE": "ShopItem", + "UNK": "72000D000000" + }, + { + "TYPE": "ShopItem", + "UNK": "72000E000000" + }, + { + "TYPE": "ShopItem", + "UNK": "72000F000000" + }, + { + "TYPE": "ShopItem", + "UNK": "720010000000" + }, + { + "TYPE": "ShopItem", + "UNK": "720011000000" + }, + { + "TYPE": "ShopItem", + "UNK": "720012000000" + }, + { + "TYPE": "ShopItem", + "UNK": "720013000000" + }, + { + "TYPE": "ShopItem", + "UNK": "720014000000" + }, + { + "TYPE": "ShopItem", + "UNK": "720015000000" + }, + { + "TYPE": "ShopItem", + "UNK": "720016000000" + }, + { + "TYPE": "ShopItem", + "UNK": "720017000000" + }, + { + "TYPE": "ShopItem", + "UNK": "720018000000" + }, + { + "TYPE": "ShopTitle", + "ID": 115, + "UNK0": 1, + "STRING": "Weston House Whole Foods", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "730040060000" + }, + { + "TYPE": "ShopItem", + "UNK": "730041060000" + }, + { + "TYPE": "ShopItem", + "UNK": "730042060000" + }, + { + "TYPE": "ShopItem", + "UNK": "730043060000" + }, + { + "TYPE": "ShopItem", + "UNK": "730044060000" + }, + { + "TYPE": "ShopItem", + "UNK": "730045060000" + }, + { + "TYPE": "ShopItem", + "UNK": "730046060000" + }, + { + "TYPE": "ShopItem", + "UNK": "730047060000" + }, + { + "TYPE": "ShopItem", + "UNK": "730048060000" + }, + { + "TYPE": "ShopItem", + "UNK": "730049060000" + }, + { + "TYPE": "ShopItem", + "UNK": "73004A060000" + }, + { + "TYPE": "ShopItem", + "UNK": "73004B060000" + }, + { + "TYPE": "ShopTitle", + "ID": 116, + "UNK0": 1, + "STRING": "Mimosa Cafe", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "7400F9050000" + }, + { + "TYPE": "ShopItem", + "UNK": "740006060000" + }, + { + "TYPE": "ShopItem", + "UNK": "74000A060000" + }, + { + "TYPE": "ShopTitle", + "ID": 117, + "UNK0": 0, + "STRING": "Watson's Weapons & Armor", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "7500F3030000" + }, + { + "TYPE": "ShopItem", + "UNK": "75002F040000" + }, + { + "TYPE": "ShopItem", + "UNK": "75004D040000" + }, + { + "TYPE": "ShopItem", + "UNK": "75006B040000" + }, + { + "TYPE": "ShopItem", + "UNK": "7500C5040000" + }, + { + "TYPE": "ShopItem", + "UNK": "750001020000" + }, + { + "TYPE": "ShopItem", + "UNK": "750033020000" + }, + { + "TYPE": "ShopTitle", + "ID": 118, + "UNK0": 3, + "STRING": "Lumiere Orbal Factory", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "760034080200" + }, + { + "TYPE": "ShopItem", + "UNK": "760035080200" + }, + { + "TYPE": "ShopItem", + "UNK": "760036080200" + }, + { + "TYPE": "ShopItem", + "UNK": "760039080200" + }, + { + "TYPE": "ShopItem", + "UNK": "76003A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "76003B080200" + }, + { + "TYPE": "ShopItem", + "UNK": "76003D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "76003E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "760040080200" + }, + { + "TYPE": "ShopItem", + "UNK": "760041080200" + }, + { + "TYPE": "ShopItem", + "UNK": "760058080200" + }, + { + "TYPE": "ShopItem", + "UNK": "760059080200" + }, + { + "TYPE": "ShopItem", + "UNK": "76005C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "76005D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "76005E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "76005F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "760060080200" + }, + { + "TYPE": "ShopItem", + "UNK": "760061080200" + }, + { + "TYPE": "ShopItem", + "UNK": "760062080200" + }, + { + "TYPE": "ShopItem", + "UNK": "760063080200" + }, + { + "TYPE": "ShopItem", + "UNK": "760064080200" + }, + { + "TYPE": "ShopItem", + "UNK": "760066080200" + }, + { + "TYPE": "ShopItem", + "UNK": "760067080200" + }, + { + "TYPE": "ShopItem", + "UNK": "76007A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "76007B080200" + }, + { + "TYPE": "ShopItem", + "UNK": "76007C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "76007D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "760080080200" + }, + { + "TYPE": "ShopItem", + "UNK": "760081080200" + }, + { + "TYPE": "ShopItem", + "UNK": "760082080200" + }, + { + "TYPE": "ShopItem", + "UNK": "760083080200" + }, + { + "TYPE": "ShopItem", + "UNK": "760084080200" + }, + { + "TYPE": "ShopItem", + "UNK": "760085080200" + }, + { + "TYPE": "ShopItem", + "UNK": "760087080200" + }, + { + "TYPE": "ShopItem", + "UNK": "760088080200" + }, + { + "TYPE": "ShopItem", + "UNK": "76009D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "76009E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "76009F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7600A2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7600A3080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7600A4080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7600A5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7600A6080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7600A7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7600A8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7600AA080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7600AB080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7600C0080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7600C1080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7600C2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7600C4080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7600C5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7600C7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7600C8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7600CA080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7600CB080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7600CC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7600CD080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7600DE080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7600DF080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7600E0080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7600E2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7600E3080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7600E5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7600E6080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7600E7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7600E8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7600FC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7600FD080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7600FE080200" + }, + { + "TYPE": "ShopItem", + "UNK": "760000090200" + }, + { + "TYPE": "ShopItem", + "UNK": "760001090200" + }, + { + "TYPE": "ShopItem", + "UNK": "760002090200" + }, + { + "TYPE": "ShopItem", + "UNK": "760003090200" + }, + { + "TYPE": "ShopItem", + "UNK": "760004090200" + }, + { + "TYPE": "ShopItem", + "UNK": "760005090200" + }, + { + "TYPE": "ShopItem", + "UNK": "760006090200" + }, + { + "TYPE": "ShopItem", + "UNK": "760030090400" + }, + { + "TYPE": "ShopItem", + "UNK": "760031090400" + }, + { + "TYPE": "ShopTitle", + "ID": 119, + "UNK0": 2, + "STRING": "Orbment Charging Station", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "770034080200" + }, + { + "TYPE": "ShopItem", + "UNK": "770035080200" + }, + { + "TYPE": "ShopItem", + "UNK": "770036080200" + }, + { + "TYPE": "ShopItem", + "UNK": "770039080200" + }, + { + "TYPE": "ShopItem", + "UNK": "77003A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "77003B080200" + }, + { + "TYPE": "ShopItem", + "UNK": "77003D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "77003E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "770040080200" + }, + { + "TYPE": "ShopItem", + "UNK": "770041080200" + }, + { + "TYPE": "ShopItem", + "UNK": "770058080200" + }, + { + "TYPE": "ShopItem", + "UNK": "770059080200" + }, + { + "TYPE": "ShopItem", + "UNK": "77005C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "77005D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "77005E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "77005F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "770060080200" + }, + { + "TYPE": "ShopItem", + "UNK": "770061080200" + }, + { + "TYPE": "ShopItem", + "UNK": "770062080200" + }, + { + "TYPE": "ShopItem", + "UNK": "770063080200" + }, + { + "TYPE": "ShopItem", + "UNK": "770064080200" + }, + { + "TYPE": "ShopItem", + "UNK": "770066080200" + }, + { + "TYPE": "ShopItem", + "UNK": "770067080200" + }, + { + "TYPE": "ShopItem", + "UNK": "77007A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "77007B080200" + }, + { + "TYPE": "ShopItem", + "UNK": "77007C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "77007D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "770080080200" + }, + { + "TYPE": "ShopItem", + "UNK": "770081080200" + }, + { + "TYPE": "ShopItem", + "UNK": "770082080200" + }, + { + "TYPE": "ShopItem", + "UNK": "770083080200" + }, + { + "TYPE": "ShopItem", + "UNK": "770084080200" + }, + { + "TYPE": "ShopItem", + "UNK": "770085080200" + }, + { + "TYPE": "ShopItem", + "UNK": "770087080200" + }, + { + "TYPE": "ShopItem", + "UNK": "770088080200" + }, + { + "TYPE": "ShopItem", + "UNK": "77009D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "77009E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "77009F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7700A2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7700A3080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7700A4080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7700A5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7700A6080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7700A7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7700A8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7700AA080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7700AB080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7700C0080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7700C1080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7700C2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7700C4080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7700C5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7700C7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7700C8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7700CA080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7700CB080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7700CC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7700CD080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7700DE080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7700DF080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7700E0080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7700E2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7700E3080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7700E5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7700E6080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7700E7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7700E8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7700FC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7700FD080200" + }, + { + "TYPE": "ShopItem", + "UNK": "7700FE080200" + }, + { + "TYPE": "ShopItem", + "UNK": "770000090200" + }, + { + "TYPE": "ShopItem", + "UNK": "770001090200" + }, + { + "TYPE": "ShopItem", + "UNK": "770002090200" + }, + { + "TYPE": "ShopItem", + "UNK": "770003090200" + }, + { + "TYPE": "ShopItem", + "UNK": "770004090200" + }, + { + "TYPE": "ShopItem", + "UNK": "770005090200" + }, + { + "TYPE": "ShopItem", + "UNK": "770006090200" + }, + { + "TYPE": "ShopTitle", + "ID": 120, + "UNK0": 4, + "STRING": "Lumiere Orbal Factory", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "7800CC000100" + }, + { + "TYPE": "ShopItem", + "UNK": "7800DB000100" + }, + { + "TYPE": "ShopItem", + "UNK": "7800E2000100" + }, + { + "TYPE": "ShopItem", + "UNK": "7800E7000100" + }, + { + "TYPE": "ShopItem", + "UNK": "7800F1000100" + }, + { + "TYPE": "ShopTitle", + "ID": 121, + "UNK0": 5, + "STRING": "Lumiere Orbal Factory", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "7900D5070300" + }, + { + "TYPE": "ShopItem", + "UNK": "7900DA070300" + }, + { + "TYPE": "ShopItem", + "UNK": "7900DD070300" + }, + { + "TYPE": "ShopItem", + "UNK": "7900DF070300" + }, + { + "TYPE": "ShopItem", + "UNK": "790003000000" + }, + { + "TYPE": "ShopItem", + "UNK": "790004000000" + }, + { + "TYPE": "ShopTitle", + "ID": 122, + "UNK0": 1, + "STRING": "Concert Cafe - Etoile", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "7A00F8050000" + }, + { + "TYPE": "ShopItem", + "UNK": "7A00F0050000" + }, + { + "TYPE": "ShopItem", + "UNK": "7A0008060000" + }, + { + "TYPE": "ShopTitle", + "ID": 123, + "UNK0": 1, + "STRING": "Gamgee's Pub", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "7B00FB050000" + }, + { + "TYPE": "ShopItem", + "UNK": "7B000F060000" + }, + { + "TYPE": "ShopItem", + "UNK": "7B00F2050000" + }, + { + "TYPE": "ShopTitle", + "ID": 124, + "UNK0": 8, + "STRING": "Emmrod's Used Goods", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0014000500" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0015000500" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0016000500" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0017000500" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0018000500" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0019000500" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0000000600" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0001000600" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0002000600" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0003000600" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0004000600" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0005000600" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0006000600" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0007000600" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0008000600" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0009000600" + }, + { + "TYPE": "ShopItem", + "UNK": "7C000A000600" + }, + { + "TYPE": "ShopItem", + "UNK": "7C000B000600" + }, + { + "TYPE": "ShopItem", + "UNK": "7C000C000600" + }, + { + "TYPE": "ShopItem", + "UNK": "7C000D000600" + }, + { + "TYPE": "ShopItem", + "UNK": "7C000E000600" + }, + { + "TYPE": "ShopItem", + "UNK": "7C000F000600" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0010000600" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0011000600" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0012000600" + }, + { + "TYPE": "ShopItem", + "UNK": "7C001E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "7C001F000700" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0021000700" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0022000700" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0023000800" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0024000800" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0025000800" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0028000800" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0029000800" + }, + { + "TYPE": "ShopItem", + "UNK": "7C002A000800" + }, + { + "TYPE": "ShopItem", + "UNK": "7C002C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "7C002D000700" + }, + { + "TYPE": "ShopItem", + "UNK": "7C002E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0032000700" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0033000700" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0034000700" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0035000700" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0037000700" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0038000700" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0039000800" + }, + { + "TYPE": "ShopItem", + "UNK": "7C003A000800" + }, + { + "TYPE": "ShopItem", + "UNK": "7C003B000800" + }, + { + "TYPE": "ShopItem", + "UNK": "7C003E000800" + }, + { + "TYPE": "ShopItem", + "UNK": "7C003F000800" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0041000800" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0043000700" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0044000700" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0045000700" + }, + { + "TYPE": "ShopItem", + "UNK": "7C004B000700" + }, + { + "TYPE": "ShopItem", + "UNK": "7C004C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "7C004E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "7C004F000700" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0050000800" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0051000800" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0052000800" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0056000800" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0057000800" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0058000800" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0059000800" + }, + { + "TYPE": "ShopItem", + "UNK": "7C005A000700" + }, + { + "TYPE": "ShopItem", + "UNK": "7C005B000700" + }, + { + "TYPE": "ShopItem", + "UNK": "7C005C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "7C005D000700" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0064000700" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0065000700" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0066000700" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0067000700" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0069000700" + }, + { + "TYPE": "ShopItem", + "UNK": "7C006A000700" + }, + { + "TYPE": "ShopItem", + "UNK": "7C006B000800" + }, + { + "TYPE": "ShopItem", + "UNK": "7C006C000800" + }, + { + "TYPE": "ShopItem", + "UNK": "7C006D000800" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0070000800" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0072000800" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0073000700" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0074000700" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0075000700" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0078000700" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0079000700" + }, + { + "TYPE": "ShopItem", + "UNK": "7C007B000700" + }, + { + "TYPE": "ShopItem", + "UNK": "7C007C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "7C007D000700" + }, + { + "TYPE": "ShopItem", + "UNK": "7C007E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "7C007F000800" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0080000800" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0081000800" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0083000800" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0084000800" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0087000700" + }, + { + "TYPE": "ShopItem", + "UNK": "7C008C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "7C008D000700" + }, + { + "TYPE": "ShopItem", + "UNK": "7C008E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "7C008F000700" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0090000800" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0091000800" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0092000800" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0094000800" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0095000800" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0097000700" + }, + { + "TYPE": "ShopItem", + "UNK": "7C0098000700" + }, + { + "TYPE": "ShopItem", + "UNK": "7C009B000700" + }, + { + "TYPE": "ShopItem", + "UNK": "7C00A0000700" + }, + { + "TYPE": "ShopItem", + "UNK": "7C00A1000700" + }, + { + "TYPE": "ShopItem", + "UNK": "7C00A2000700" + }, + { + "TYPE": "ShopItem", + "UNK": "7C00A3000700" + }, + { + "TYPE": "ShopItem", + "UNK": "7C00A5000800" + }, + { + "TYPE": "ShopItem", + "UNK": "7C00A6000800" + }, + { + "TYPE": "ShopItem", + "UNK": "7C00A7000800" + }, + { + "TYPE": "ShopItem", + "UNK": "7C00A9000800" + }, + { + "TYPE": "ShopItem", + "UNK": "7C00AA000800" + }, + { + "TYPE": "ShopItem", + "UNK": "7C00AC000700" + }, + { + "TYPE": "ShopTitle", + "ID": 125, + "UNK0": 1, + "STRING": "Jasmine's Gelato Stall", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "7D0015060000" + }, + { + "TYPE": "ShopItem", + "UNK": "7D001A000000" + }, + { + "TYPE": "ShopItem", + "UNK": "7D001B000000" + }, + { + "TYPE": "ShopTitle", + "ID": 126, + "UNK0": 1, + "STRING": "Brecker's Steak Stall", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "7E0013060000" + }, + { + "TYPE": "ShopItem", + "UNK": "7E001D000000" + }, + { + "TYPE": "ShopItem", + "UNK": "7E001E000000" + }, + { + "TYPE": "ShopTitle", + "ID": 127, + "UNK0": 1, + "STRING": "Layton's Crepe Stall", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "7F001F000000" + }, + { + "TYPE": "ShopItem", + "UNK": "7F0020000000" + }, + { + "TYPE": "ShopTitle", + "ID": 128, + "UNK0": 1, + "STRING": "Concert Cafe - Etoile", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "80001C000000" + }, + { + "TYPE": "ShopTitle", + "ID": 129, + "UNK0": 0, + "STRING": "San Corries Jewelers", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "810076020000" + }, + { + "TYPE": "ShopItem", + "UNK": "810077020000" + }, + { + "TYPE": "ShopItem", + "UNK": "810078020000" + }, + { + "TYPE": "ShopItem", + "UNK": "810079020000" + }, + { + "TYPE": "ShopTitle", + "ID": 130, + "UNK0": 1, + "STRING": "Corba's Snack Stall", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "820007060000" + }, + { + "TYPE": "ShopItem", + "UNK": "820020000000" + }, + { + "TYPE": "ShopTitle", + "ID": 131, + "UNK0": 1, + "STRING": "Jonathan's Juice Stall", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "8300F2050000" + }, + { + "TYPE": "ShopItem", + "UNK": "830021000000" + }, + { + "TYPE": "ShopItem", + "UNK": "830022000000" + }, + { + "TYPE": "ShopTitle", + "ID": 132, + "UNK0": 3, + "STRING": "Watteau's Store", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "840034080200" + }, + { + "TYPE": "ShopItem", + "UNK": "840035080200" + }, + { + "TYPE": "ShopItem", + "UNK": "840036080200" + }, + { + "TYPE": "ShopItem", + "UNK": "840037080200" + }, + { + "TYPE": "ShopItem", + "UNK": "840039080200" + }, + { + "TYPE": "ShopItem", + "UNK": "84003A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "84003B080200" + }, + { + "TYPE": "ShopItem", + "UNK": "84003D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "84003E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "84003F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "840040080200" + }, + { + "TYPE": "ShopItem", + "UNK": "840041080200" + }, + { + "TYPE": "ShopItem", + "UNK": "840057080200" + }, + { + "TYPE": "ShopItem", + "UNK": "840058080200" + }, + { + "TYPE": "ShopItem", + "UNK": "840059080200" + }, + { + "TYPE": "ShopItem", + "UNK": "84005A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "84005C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "84005D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "84005E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "84005F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "840060080200" + }, + { + "TYPE": "ShopItem", + "UNK": "840061080200" + }, + { + "TYPE": "ShopItem", + "UNK": "840062080200" + }, + { + "TYPE": "ShopItem", + "UNK": "840063080200" + }, + { + "TYPE": "ShopItem", + "UNK": "840064080200" + }, + { + "TYPE": "ShopItem", + "UNK": "840065080200" + }, + { + "TYPE": "ShopItem", + "UNK": "840066080200" + }, + { + "TYPE": "ShopItem", + "UNK": "840067080200" + }, + { + "TYPE": "ShopItem", + "UNK": "84007A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "84007B080200" + }, + { + "TYPE": "ShopItem", + "UNK": "84007C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "84007D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "84007E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "840080080200" + }, + { + "TYPE": "ShopItem", + "UNK": "840081080200" + }, + { + "TYPE": "ShopItem", + "UNK": "840082080200" + }, + { + "TYPE": "ShopItem", + "UNK": "840083080200" + }, + { + "TYPE": "ShopItem", + "UNK": "840084080200" + }, + { + "TYPE": "ShopItem", + "UNK": "840085080200" + }, + { + "TYPE": "ShopItem", + "UNK": "840086080200" + }, + { + "TYPE": "ShopItem", + "UNK": "840087080200" + }, + { + "TYPE": "ShopItem", + "UNK": "840088080200" + }, + { + "TYPE": "ShopItem", + "UNK": "84009D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "84009E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "84009F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8400A0080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8400A2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8400A3080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8400A4080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8400A5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8400A6080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8400A7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8400A8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8400A9080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8400AA080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8400AB080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8400C0080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8400C1080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8400C2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8400C4080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8400C5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8400C6080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8400C7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8400C8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8400C9080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8400CA080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8400CB080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8400CC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8400CD080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8400DE080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8400DF080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8400E0080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8400E2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8400E3080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8400E5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8400E6080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8400E7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8400E8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8400FC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8400FD080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8400FE080200" + }, + { + "TYPE": "ShopItem", + "UNK": "840000090200" + }, + { + "TYPE": "ShopItem", + "UNK": "840001090200" + }, + { + "TYPE": "ShopItem", + "UNK": "840002090200" + }, + { + "TYPE": "ShopItem", + "UNK": "840003090200" + }, + { + "TYPE": "ShopItem", + "UNK": "840004090200" + }, + { + "TYPE": "ShopItem", + "UNK": "840005090200" + }, + { + "TYPE": "ShopItem", + "UNK": "840006090200" + }, + { + "TYPE": "ShopItem", + "UNK": "840007090200" + }, + { + "TYPE": "ShopItem", + "UNK": "840030090400" + }, + { + "TYPE": "ShopItem", + "UNK": "840031090400" + }, + { + "TYPE": "ShopTitle", + "ID": 133, + "UNK0": 2, + "STRING": "Orbment Charging Station", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "850034080200" + }, + { + "TYPE": "ShopItem", + "UNK": "850035080200" + }, + { + "TYPE": "ShopItem", + "UNK": "850036080200" + }, + { + "TYPE": "ShopItem", + "UNK": "850037080200" + }, + { + "TYPE": "ShopItem", + "UNK": "850039080200" + }, + { + "TYPE": "ShopItem", + "UNK": "85003A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "85003B080200" + }, + { + "TYPE": "ShopItem", + "UNK": "85003D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "85003E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "85003F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "850040080200" + }, + { + "TYPE": "ShopItem", + "UNK": "850041080200" + }, + { + "TYPE": "ShopItem", + "UNK": "850057080200" + }, + { + "TYPE": "ShopItem", + "UNK": "850058080200" + }, + { + "TYPE": "ShopItem", + "UNK": "850059080200" + }, + { + "TYPE": "ShopItem", + "UNK": "85005A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "85005C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "85005D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "85005E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "85005F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "850060080200" + }, + { + "TYPE": "ShopItem", + "UNK": "850061080200" + }, + { + "TYPE": "ShopItem", + "UNK": "850062080200" + }, + { + "TYPE": "ShopItem", + "UNK": "850063080200" + }, + { + "TYPE": "ShopItem", + "UNK": "850064080200" + }, + { + "TYPE": "ShopItem", + "UNK": "850065080200" + }, + { + "TYPE": "ShopItem", + "UNK": "850066080200" + }, + { + "TYPE": "ShopItem", + "UNK": "850067080200" + }, + { + "TYPE": "ShopItem", + "UNK": "85007A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "85007B080200" + }, + { + "TYPE": "ShopItem", + "UNK": "85007C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "85007D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "85007E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "850080080200" + }, + { + "TYPE": "ShopItem", + "UNK": "850081080200" + }, + { + "TYPE": "ShopItem", + "UNK": "850082080200" + }, + { + "TYPE": "ShopItem", + "UNK": "850083080200" + }, + { + "TYPE": "ShopItem", + "UNK": "850084080200" + }, + { + "TYPE": "ShopItem", + "UNK": "850085080200" + }, + { + "TYPE": "ShopItem", + "UNK": "850086080200" + }, + { + "TYPE": "ShopItem", + "UNK": "850087080200" + }, + { + "TYPE": "ShopItem", + "UNK": "850088080200" + }, + { + "TYPE": "ShopItem", + "UNK": "85009D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "85009E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "85009F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8500A0080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8500A2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8500A3080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8500A4080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8500A5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8500A6080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8500A7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8500A8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8500A9080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8500AA080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8500AB080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8500C0080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8500C1080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8500C2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8500C4080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8500C5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8500C6080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8500C7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8500C8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8500C9080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8500CA080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8500CB080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8500CC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8500CD080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8500DE080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8500DF080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8500E0080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8500E2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8500E3080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8500E5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8500E6080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8500E7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8500E8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8500FC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8500FD080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8500FE080200" + }, + { + "TYPE": "ShopItem", + "UNK": "850000090200" + }, + { + "TYPE": "ShopItem", + "UNK": "850001090200" + }, + { + "TYPE": "ShopItem", + "UNK": "850002090200" + }, + { + "TYPE": "ShopItem", + "UNK": "850003090200" + }, + { + "TYPE": "ShopItem", + "UNK": "850004090200" + }, + { + "TYPE": "ShopItem", + "UNK": "850005090200" + }, + { + "TYPE": "ShopItem", + "UNK": "850006090200" + }, + { + "TYPE": "ShopItem", + "UNK": "850007090200" + }, + { + "TYPE": "ShopTitle", + "ID": 134, + "UNK0": 4, + "STRING": "Watteau's Store", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "8600CD000100" + }, + { + "TYPE": "ShopItem", + "UNK": "8600DC000100" + }, + { + "TYPE": "ShopItem", + "UNK": "8600E3000100" + }, + { + "TYPE": "ShopItem", + "UNK": "8600ED000100" + }, + { + "TYPE": "ShopItem", + "UNK": "8600F7000100" + }, + { + "TYPE": "ShopItem", + "UNK": "8600FB000100" + }, + { + "TYPE": "ShopTitle", + "ID": 135, + "UNK0": 5, + "STRING": "Watteau's Store", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "8700F6030000" + }, + { + "TYPE": "ShopItem", + "UNK": "870032040000" + }, + { + "TYPE": "ShopItem", + "UNK": "870050040000" + }, + { + "TYPE": "ShopItem", + "UNK": "8700AA040000" + }, + { + "TYPE": "ShopItem", + "UNK": "8700E6040000" + }, + { + "TYPE": "ShopItem", + "UNK": "870004050000" + }, + { + "TYPE": "ShopItem", + "UNK": "870003020000" + }, + { + "TYPE": "ShopItem", + "UNK": "870004020000" + }, + { + "TYPE": "ShopItem", + "UNK": "870036020000" + }, + { + "TYPE": "ShopItem", + "UNK": "870037020000" + }, + { + "TYPE": "ShopItem", + "UNK": "8700D5070300" + }, + { + "TYPE": "ShopItem", + "UNK": "8700DA070300" + }, + { + "TYPE": "ShopItem", + "UNK": "8700DD070300" + }, + { + "TYPE": "ShopItem", + "UNK": "8700DF070300" + }, + { + "TYPE": "ShopItem", + "UNK": "8700E2070300" + }, + { + "TYPE": "ShopItem", + "UNK": "870003000000" + }, + { + "TYPE": "ShopItem", + "UNK": "870004000000" + }, + { + "TYPE": "ShopTitle", + "ID": 136, + "UNK0": 0, + "STRING": "Watteau's Store", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "880058020000" + }, + { + "TYPE": "ShopItem", + "UNK": "880059020000" + }, + { + "TYPE": "ShopItem", + "UNK": "88005A020000" + }, + { + "TYPE": "ShopItem", + "UNK": "88005B020000" + }, + { + "TYPE": "ShopItem", + "UNK": "88005C020000" + }, + { + "TYPE": "ShopItem", + "UNK": "88005D020000" + }, + { + "TYPE": "ShopItem", + "UNK": "88005E020000" + }, + { + "TYPE": "ShopItem", + "UNK": "88005F020000" + }, + { + "TYPE": "ShopItem", + "UNK": "880060020000" + }, + { + "TYPE": "ShopItem", + "UNK": "880061020000" + }, + { + "TYPE": "ShopItem", + "UNK": "880062020000" + }, + { + "TYPE": "ShopItem", + "UNK": "880072020000" + }, + { + "TYPE": "ShopItem", + "UNK": "880073020000" + }, + { + "TYPE": "ShopItem", + "UNK": "880074020000" + }, + { + "TYPE": "ShopItem", + "UNK": "880075020000" + }, + { + "TYPE": "ShopItem", + "UNK": "88007B020000" + }, + { + "TYPE": "ShopItem", + "UNK": "88008E020000" + }, + { + "TYPE": "ShopItem", + "UNK": "880000000000" + }, + { + "TYPE": "ShopItem", + "UNK": "880001000000" + }, + { + "TYPE": "ShopItem", + "UNK": "880003000000" + }, + { + "TYPE": "ShopItem", + "UNK": "880004000000" + }, + { + "TYPE": "ShopItem", + "UNK": "880006000000" + }, + { + "TYPE": "ShopItem", + "UNK": "880007000000" + }, + { + "TYPE": "ShopItem", + "UNK": "88000B000000" + }, + { + "TYPE": "ShopItem", + "UNK": "88000C000000" + }, + { + "TYPE": "ShopItem", + "UNK": "88000D000000" + }, + { + "TYPE": "ShopItem", + "UNK": "88000E000000" + }, + { + "TYPE": "ShopItem", + "UNK": "88000F000000" + }, + { + "TYPE": "ShopItem", + "UNK": "880010000000" + }, + { + "TYPE": "ShopItem", + "UNK": "880011000000" + }, + { + "TYPE": "ShopItem", + "UNK": "880012000000" + }, + { + "TYPE": "ShopItem", + "UNK": "880013000000" + }, + { + "TYPE": "ShopItem", + "UNK": "880014000000" + }, + { + "TYPE": "ShopItem", + "UNK": "880015000000" + }, + { + "TYPE": "ShopItem", + "UNK": "880016000000" + }, + { + "TYPE": "ShopItem", + "UNK": "880017000000" + }, + { + "TYPE": "ShopItem", + "UNK": "880018000000" + }, + { + "TYPE": "ShopItem", + "UNK": "880040060000" + }, + { + "TYPE": "ShopItem", + "UNK": "880041060000" + }, + { + "TYPE": "ShopItem", + "UNK": "880042060000" + }, + { + "TYPE": "ShopItem", + "UNK": "880043060000" + }, + { + "TYPE": "ShopItem", + "UNK": "880044060000" + }, + { + "TYPE": "ShopItem", + "UNK": "880045060000" + }, + { + "TYPE": "ShopItem", + "UNK": "880046060000" + }, + { + "TYPE": "ShopItem", + "UNK": "880047060000" + }, + { + "TYPE": "ShopItem", + "UNK": "880048060000" + }, + { + "TYPE": "ShopItem", + "UNK": "880049060000" + }, + { + "TYPE": "ShopItem", + "UNK": "88004A060000" + }, + { + "TYPE": "ShopItem", + "UNK": "88004B060000" + }, + { + "TYPE": "ShopItem", + "UNK": "880009010000" + }, + { + "TYPE": "ShopItem", + "UNK": "880017010000" + }, + { + "TYPE": "ShopTitle", + "ID": 137, + "UNK0": 7, + "STRING": "Aprikoze Inn", + "UNK1": "646402020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "890011060000" + }, + { + "TYPE": "ShopItem", + "UNK": "890008060000" + }, + { + "TYPE": "ShopTitle", + "ID": 138, + "UNK0": 3, + "STRING": "Garrelia Fortress - Supplies", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "8A0034080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A0035080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A0036080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A0037080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A0039080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A003A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A003B080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A003D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A003E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A003F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A0040080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A0041080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A0057080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A0058080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A0059080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A005A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A005C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A005D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A005E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A005F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A0060080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A0061080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A0062080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A0063080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A0064080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A0065080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A0066080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A0067080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A007A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A007B080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A007C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A007D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A007E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A0080080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A0081080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A0082080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A0083080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A0084080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A0085080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A0086080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A0087080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A0088080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A009D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A009E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A009F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A00A0080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A00A2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A00A3080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A00A4080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A00A5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A00A6080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A00A7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A00A8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A00A9080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A00AA080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A00AB080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A00C0080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A00C1080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A00C2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A00C4080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A00C5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A00C6080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A00C7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A00C8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A00C9080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A00CA080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A00CB080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A00CC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A00CD080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A00DE080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A00DF080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A00E0080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A00E2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A00E3080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A00E5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A00E6080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A00E7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A00E8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A00FC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A00FD080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A00FE080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A0000090200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A0001090200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A0002090200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A0003090200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A0004090200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A0005090200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A0006090200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A0007090200" + }, + { + "TYPE": "ShopItem", + "UNK": "8A0030090400" + }, + { + "TYPE": "ShopItem", + "UNK": "8A0031090400" + }, + { + "TYPE": "ShopTitle", + "ID": 139, + "UNK0": 4, + "STRING": "Garrelia Fortress - Supplies", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "8B00CD000100" + }, + { + "TYPE": "ShopItem", + "UNK": "8B00DC000100" + }, + { + "TYPE": "ShopItem", + "UNK": "8B00E3000100" + }, + { + "TYPE": "ShopItem", + "UNK": "8B00ED000100" + }, + { + "TYPE": "ShopItem", + "UNK": "8B00F7000100" + }, + { + "TYPE": "ShopItem", + "UNK": "8B00FB000100" + }, + { + "TYPE": "ShopTitle", + "ID": 140, + "UNK0": 5, + "STRING": "Garrelia Fortress - Supplies", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "8C00F6030000" + }, + { + "TYPE": "ShopItem", + "UNK": "8C0032040000" + }, + { + "TYPE": "ShopItem", + "UNK": "8C0050040000" + }, + { + "TYPE": "ShopItem", + "UNK": "8C00AA040000" + }, + { + "TYPE": "ShopItem", + "UNK": "8C00E6040000" + }, + { + "TYPE": "ShopItem", + "UNK": "8C0004050000" + }, + { + "TYPE": "ShopItem", + "UNK": "8C0003020000" + }, + { + "TYPE": "ShopItem", + "UNK": "8C0036020000" + }, + { + "TYPE": "ShopItem", + "UNK": "8C0058020000" + }, + { + "TYPE": "ShopItem", + "UNK": "8C0059020000" + }, + { + "TYPE": "ShopItem", + "UNK": "8C005A020000" + }, + { + "TYPE": "ShopItem", + "UNK": "8C005B020000" + }, + { + "TYPE": "ShopItem", + "UNK": "8C005C020000" + }, + { + "TYPE": "ShopItem", + "UNK": "8C005D020000" + }, + { + "TYPE": "ShopItem", + "UNK": "8C005E020000" + }, + { + "TYPE": "ShopItem", + "UNK": "8C005F020000" + }, + { + "TYPE": "ShopItem", + "UNK": "8C0060020000" + }, + { + "TYPE": "ShopItem", + "UNK": "8C0061020000" + }, + { + "TYPE": "ShopItem", + "UNK": "8C0062020000" + }, + { + "TYPE": "ShopItem", + "UNK": "8C0072020000" + }, + { + "TYPE": "ShopItem", + "UNK": "8C0073020000" + }, + { + "TYPE": "ShopItem", + "UNK": "8C0074020000" + }, + { + "TYPE": "ShopItem", + "UNK": "8C0075020000" + }, + { + "TYPE": "ShopItem", + "UNK": "8C007B020000" + }, + { + "TYPE": "ShopItem", + "UNK": "8C0000000000" + }, + { + "TYPE": "ShopItem", + "UNK": "8C0001000000" + }, + { + "TYPE": "ShopItem", + "UNK": "8C0003000000" + }, + { + "TYPE": "ShopItem", + "UNK": "8C0004000000" + }, + { + "TYPE": "ShopItem", + "UNK": "8C0006000000" + }, + { + "TYPE": "ShopItem", + "UNK": "8C0007000000" + }, + { + "TYPE": "ShopItem", + "UNK": "8C000B000000" + }, + { + "TYPE": "ShopItem", + "UNK": "8C000C000000" + }, + { + "TYPE": "ShopItem", + "UNK": "8C000D000000" + }, + { + "TYPE": "ShopItem", + "UNK": "8C000E000000" + }, + { + "TYPE": "ShopItem", + "UNK": "8C000F000000" + }, + { + "TYPE": "ShopItem", + "UNK": "8C0010000000" + }, + { + "TYPE": "ShopItem", + "UNK": "8C0011000000" + }, + { + "TYPE": "ShopItem", + "UNK": "8C0012000000" + }, + { + "TYPE": "ShopItem", + "UNK": "8C0013000000" + }, + { + "TYPE": "ShopItem", + "UNK": "8C0014000000" + }, + { + "TYPE": "ShopItem", + "UNK": "8C0015000000" + }, + { + "TYPE": "ShopItem", + "UNK": "8C0016000000" + }, + { + "TYPE": "ShopItem", + "UNK": "8C0017000000" + }, + { + "TYPE": "ShopItem", + "UNK": "8C0018000000" + }, + { + "TYPE": "ShopItem", + "UNK": "8C0040060000" + }, + { + "TYPE": "ShopItem", + "UNK": "8C0041060000" + }, + { + "TYPE": "ShopItem", + "UNK": "8C0042060000" + }, + { + "TYPE": "ShopItem", + "UNK": "8C0043060000" + }, + { + "TYPE": "ShopItem", + "UNK": "8C0044060000" + }, + { + "TYPE": "ShopItem", + "UNK": "8C0045060000" + }, + { + "TYPE": "ShopItem", + "UNK": "8C0046060000" + }, + { + "TYPE": "ShopItem", + "UNK": "8C0047060000" + }, + { + "TYPE": "ShopItem", + "UNK": "8C0048060000" + }, + { + "TYPE": "ShopItem", + "UNK": "8C0049060000" + }, + { + "TYPE": "ShopItem", + "UNK": "8C004A060000" + }, + { + "TYPE": "ShopItem", + "UNK": "8C004B060000" + }, + { + "TYPE": "ShopItem", + "UNK": "8C00D5070300" + }, + { + "TYPE": "ShopItem", + "UNK": "8C00DA070300" + }, + { + "TYPE": "ShopItem", + "UNK": "8C00DD070300" + }, + { + "TYPE": "ShopItem", + "UNK": "8C00DF070300" + }, + { + "TYPE": "ShopItem", + "UNK": "8C00E2070300" + }, + { + "TYPE": "ShopItem", + "UNK": "8C000A010000" + }, + { + "TYPE": "ShopTitle", + "ID": 141, + "UNK0": 7, + "STRING": "Garrelia Fortress - Mess Hall", + "UNK1": "646402020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "8D0012060000" + }, + { + "TYPE": "ShopItem", + "UNK": "8D000D060000" + }, + { + "TYPE": "ShopTitle", + "ID": 142, + "UNK0": 1, + "STRING": "Courageous - Supply Room", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "8E0000000000" + }, + { + "TYPE": "ShopItem", + "UNK": "8E0001000000" + }, + { + "TYPE": "ShopItem", + "UNK": "8E0003000000" + }, + { + "TYPE": "ShopItem", + "UNK": "8E0004000000" + }, + { + "TYPE": "ShopItem", + "UNK": "8E0006000000" + }, + { + "TYPE": "ShopItem", + "UNK": "8E0007000000" + }, + { + "TYPE": "ShopItem", + "UNK": "8E000B000000" + }, + { + "TYPE": "ShopItem", + "UNK": "8E000C000000" + }, + { + "TYPE": "ShopItem", + "UNK": "8E000D000000" + }, + { + "TYPE": "ShopItem", + "UNK": "8E000E000000" + }, + { + "TYPE": "ShopItem", + "UNK": "8E000F000000" + }, + { + "TYPE": "ShopItem", + "UNK": "8E0010000000" + }, + { + "TYPE": "ShopItem", + "UNK": "8E0011000000" + }, + { + "TYPE": "ShopItem", + "UNK": "8E0012000000" + }, + { + "TYPE": "ShopItem", + "UNK": "8E0013000000" + }, + { + "TYPE": "ShopItem", + "UNK": "8E0014000000" + }, + { + "TYPE": "ShopItem", + "UNK": "8E0015000000" + }, + { + "TYPE": "ShopItem", + "UNK": "8E0016000000" + }, + { + "TYPE": "ShopItem", + "UNK": "8E0017000000" + }, + { + "TYPE": "ShopItem", + "UNK": "8E0018000000" + }, + { + "TYPE": "ShopItem", + "UNK": "8E0040060000" + }, + { + "TYPE": "ShopItem", + "UNK": "8E0041060000" + }, + { + "TYPE": "ShopItem", + "UNK": "8E0042060000" + }, + { + "TYPE": "ShopItem", + "UNK": "8E0043060000" + }, + { + "TYPE": "ShopItem", + "UNK": "8E0044060000" + }, + { + "TYPE": "ShopItem", + "UNK": "8E0045060000" + }, + { + "TYPE": "ShopItem", + "UNK": "8E0046060000" + }, + { + "TYPE": "ShopItem", + "UNK": "8E0047060000" + }, + { + "TYPE": "ShopItem", + "UNK": "8E0048060000" + }, + { + "TYPE": "ShopItem", + "UNK": "8E0049060000" + }, + { + "TYPE": "ShopItem", + "UNK": "8E004A060000" + }, + { + "TYPE": "ShopItem", + "UNK": "8E004B060000" + }, + { + "TYPE": "ShopTitle", + "ID": 143, + "UNK0": 3, + "STRING": "RF Store", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "8F0034080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F0035080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F0036080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F0037080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F0038080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F0039080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F003A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F003B080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F003D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F003E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F003F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F0040080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F0041080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F0057080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F0058080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F0059080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F005A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F005B080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F005C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F005D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F005E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F005F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F0060080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F0061080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F0062080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F0063080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F0064080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F0065080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F0066080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F0067080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F007A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F007B080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F007C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F007D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F007E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F007F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F0080080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F0081080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F0082080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F0083080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F0084080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F0085080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F0086080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F0087080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F0088080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F009D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F009E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F009F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F00A0080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F00A1080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F00A2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F00A3080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F00A4080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F00A5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F00A6080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F00A7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F00A8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F00A9080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F00AA080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F00AB080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F00C0080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F00C1080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F00C2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F00C4080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F00C5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F00C6080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F00C7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F00C8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F00C9080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F00CA080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F00CB080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F00CC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F00CD080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F00DE080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F00DF080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F00E0080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F00E2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F00E3080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F00E4080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F00E5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F00E6080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F00E7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F00E8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F00FC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F00FD080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F00FE080200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F0000090200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F0001090200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F0002090200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F0003090200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F0004090200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F0005090200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F0006090200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F0007090200" + }, + { + "TYPE": "ShopItem", + "UNK": "8F0030090400" + }, + { + "TYPE": "ShopItem", + "UNK": "8F0031090400" + }, + { + "TYPE": "ShopTitle", + "ID": 144, + "UNK0": 2, + "STRING": "Orbment Charging Station", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "900034080200" + }, + { + "TYPE": "ShopItem", + "UNK": "900035080200" + }, + { + "TYPE": "ShopItem", + "UNK": "900036080200" + }, + { + "TYPE": "ShopItem", + "UNK": "900037080200" + }, + { + "TYPE": "ShopItem", + "UNK": "900038080200" + }, + { + "TYPE": "ShopItem", + "UNK": "900039080200" + }, + { + "TYPE": "ShopItem", + "UNK": "90003A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "90003B080200" + }, + { + "TYPE": "ShopItem", + "UNK": "90003D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "90003E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "90003F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "900040080200" + }, + { + "TYPE": "ShopItem", + "UNK": "900041080200" + }, + { + "TYPE": "ShopItem", + "UNK": "900057080200" + }, + { + "TYPE": "ShopItem", + "UNK": "900058080200" + }, + { + "TYPE": "ShopItem", + "UNK": "900059080200" + }, + { + "TYPE": "ShopItem", + "UNK": "90005A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "90005B080200" + }, + { + "TYPE": "ShopItem", + "UNK": "90005C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "90005D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "90005E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "90005F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "900060080200" + }, + { + "TYPE": "ShopItem", + "UNK": "900061080200" + }, + { + "TYPE": "ShopItem", + "UNK": "900062080200" + }, + { + "TYPE": "ShopItem", + "UNK": "900063080200" + }, + { + "TYPE": "ShopItem", + "UNK": "900064080200" + }, + { + "TYPE": "ShopItem", + "UNK": "900065080200" + }, + { + "TYPE": "ShopItem", + "UNK": "900066080200" + }, + { + "TYPE": "ShopItem", + "UNK": "900067080200" + }, + { + "TYPE": "ShopItem", + "UNK": "90007A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "90007B080200" + }, + { + "TYPE": "ShopItem", + "UNK": "90007C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "90007D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "90007E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "90007F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "900080080200" + }, + { + "TYPE": "ShopItem", + "UNK": "900081080200" + }, + { + "TYPE": "ShopItem", + "UNK": "900082080200" + }, + { + "TYPE": "ShopItem", + "UNK": "900083080200" + }, + { + "TYPE": "ShopItem", + "UNK": "900084080200" + }, + { + "TYPE": "ShopItem", + "UNK": "900085080200" + }, + { + "TYPE": "ShopItem", + "UNK": "900086080200" + }, + { + "TYPE": "ShopItem", + "UNK": "900087080200" + }, + { + "TYPE": "ShopItem", + "UNK": "900088080200" + }, + { + "TYPE": "ShopItem", + "UNK": "90009D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "90009E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "90009F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "9000A0080200" + }, + { + "TYPE": "ShopItem", + "UNK": "9000A1080200" + }, + { + "TYPE": "ShopItem", + "UNK": "9000A2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "9000A3080200" + }, + { + "TYPE": "ShopItem", + "UNK": "9000A4080200" + }, + { + "TYPE": "ShopItem", + "UNK": "9000A5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "9000A6080200" + }, + { + "TYPE": "ShopItem", + "UNK": "9000A7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "9000A8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "9000A9080200" + }, + { + "TYPE": "ShopItem", + "UNK": "9000AA080200" + }, + { + "TYPE": "ShopItem", + "UNK": "9000AB080200" + }, + { + "TYPE": "ShopItem", + "UNK": "9000C0080200" + }, + { + "TYPE": "ShopItem", + "UNK": "9000C1080200" + }, + { + "TYPE": "ShopItem", + "UNK": "9000C2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "9000C4080200" + }, + { + "TYPE": "ShopItem", + "UNK": "9000C5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "9000C6080200" + }, + { + "TYPE": "ShopItem", + "UNK": "9000C7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "9000C8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "9000C9080200" + }, + { + "TYPE": "ShopItem", + "UNK": "9000CA080200" + }, + { + "TYPE": "ShopItem", + "UNK": "9000CB080200" + }, + { + "TYPE": "ShopItem", + "UNK": "9000CC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "9000CD080200" + }, + { + "TYPE": "ShopItem", + "UNK": "9000DE080200" + }, + { + "TYPE": "ShopItem", + "UNK": "9000DF080200" + }, + { + "TYPE": "ShopItem", + "UNK": "9000E0080200" + }, + { + "TYPE": "ShopItem", + "UNK": "9000E2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "9000E3080200" + }, + { + "TYPE": "ShopItem", + "UNK": "9000E4080200" + }, + { + "TYPE": "ShopItem", + "UNK": "9000E5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "9000E6080200" + }, + { + "TYPE": "ShopItem", + "UNK": "9000E7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "9000E8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "9000FC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "9000FD080200" + }, + { + "TYPE": "ShopItem", + "UNK": "9000FE080200" + }, + { + "TYPE": "ShopItem", + "UNK": "900000090200" + }, + { + "TYPE": "ShopItem", + "UNK": "900001090200" + }, + { + "TYPE": "ShopItem", + "UNK": "900002090200" + }, + { + "TYPE": "ShopItem", + "UNK": "900003090200" + }, + { + "TYPE": "ShopItem", + "UNK": "900004090200" + }, + { + "TYPE": "ShopItem", + "UNK": "900005090200" + }, + { + "TYPE": "ShopItem", + "UNK": "900006090200" + }, + { + "TYPE": "ShopItem", + "UNK": "900007090200" + }, + { + "TYPE": "ShopTitle", + "ID": 145, + "UNK0": 4, + "STRING": "RF Store", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "9100CE000100" + }, + { + "TYPE": "ShopItem", + "UNK": "9100D4000100" + }, + { + "TYPE": "ShopItem", + "UNK": "9100DD000100" + }, + { + "TYPE": "ShopItem", + "UNK": "9100E8000100" + }, + { + "TYPE": "ShopItem", + "UNK": "9100F2000100" + }, + { + "TYPE": "ShopItem", + "UNK": "910000010100" + }, + { + "TYPE": "ShopTitle", + "ID": 146, + "UNK0": 5, + "STRING": "RF Store", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "9200D5070300" + }, + { + "TYPE": "ShopItem", + "UNK": "9200DA070300" + }, + { + "TYPE": "ShopItem", + "UNK": "9200DD070300" + }, + { + "TYPE": "ShopItem", + "UNK": "9200DF070300" + }, + { + "TYPE": "ShopItem", + "UNK": "9200E2070300" + }, + { + "TYPE": "ShopItem", + "UNK": "9200E6070300" + }, + { + "TYPE": "ShopItem", + "UNK": "920003000000" + }, + { + "TYPE": "ShopItem", + "UNK": "920004000000" + }, + { + "TYPE": "ShopTitle", + "ID": 147, + "UNK0": 0, + "STRING": "RF Arms", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "9300F9030000" + }, + { + "TYPE": "ShopItem", + "UNK": "930017040000" + }, + { + "TYPE": "ShopItem", + "UNK": "930035040000" + }, + { + "TYPE": "ShopItem", + "UNK": "930071040000" + }, + { + "TYPE": "ShopItem", + "UNK": "9300CB040000" + }, + { + "TYPE": "ShopItem", + "UNK": "930025050000" + }, + { + "TYPE": "ShopItem", + "UNK": "930006020000" + }, + { + "TYPE": "ShopItem", + "UNK": "930007020000" + }, + { + "TYPE": "ShopItem", + "UNK": "930008020000" + }, + { + "TYPE": "ShopItem", + "UNK": "930039020000" + }, + { + "TYPE": "ShopItem", + "UNK": "93003A020000" + }, + { + "TYPE": "ShopItem", + "UNK": "93003B020000" + }, + { + "TYPE": "ShopTitle", + "ID": 148, + "UNK0": 0, + "STRING": "Boronia's General Goods", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "940058020000" + }, + { + "TYPE": "ShopItem", + "UNK": "940059020000" + }, + { + "TYPE": "ShopItem", + "UNK": "94005A020000" + }, + { + "TYPE": "ShopItem", + "UNK": "94005B020000" + }, + { + "TYPE": "ShopItem", + "UNK": "94005C020000" + }, + { + "TYPE": "ShopItem", + "UNK": "94005D020000" + }, + { + "TYPE": "ShopItem", + "UNK": "94005E020000" + }, + { + "TYPE": "ShopItem", + "UNK": "94005F020000" + }, + { + "TYPE": "ShopItem", + "UNK": "940060020000" + }, + { + "TYPE": "ShopItem", + "UNK": "940061020000" + }, + { + "TYPE": "ShopItem", + "UNK": "940062020000" + }, + { + "TYPE": "ShopItem", + "UNK": "940072020000" + }, + { + "TYPE": "ShopItem", + "UNK": "940073020000" + }, + { + "TYPE": "ShopItem", + "UNK": "940074020000" + }, + { + "TYPE": "ShopItem", + "UNK": "940075020000" + }, + { + "TYPE": "ShopItem", + "UNK": "94007B020000" + }, + { + "TYPE": "ShopItem", + "UNK": "940088020000" + }, + { + "TYPE": "ShopItem", + "UNK": "940000000000" + }, + { + "TYPE": "ShopItem", + "UNK": "940001000000" + }, + { + "TYPE": "ShopItem", + "UNK": "940003000000" + }, + { + "TYPE": "ShopItem", + "UNK": "940004000000" + }, + { + "TYPE": "ShopItem", + "UNK": "940006000000" + }, + { + "TYPE": "ShopItem", + "UNK": "940007000000" + }, + { + "TYPE": "ShopItem", + "UNK": "94000B000000" + }, + { + "TYPE": "ShopItem", + "UNK": "94000C000000" + }, + { + "TYPE": "ShopItem", + "UNK": "94000D000000" + }, + { + "TYPE": "ShopItem", + "UNK": "94000E000000" + }, + { + "TYPE": "ShopItem", + "UNK": "94000F000000" + }, + { + "TYPE": "ShopItem", + "UNK": "940010000000" + }, + { + "TYPE": "ShopItem", + "UNK": "940011000000" + }, + { + "TYPE": "ShopItem", + "UNK": "940012000000" + }, + { + "TYPE": "ShopItem", + "UNK": "940013000000" + }, + { + "TYPE": "ShopItem", + "UNK": "940014000000" + }, + { + "TYPE": "ShopItem", + "UNK": "940015000000" + }, + { + "TYPE": "ShopItem", + "UNK": "940016000000" + }, + { + "TYPE": "ShopItem", + "UNK": "940017000000" + }, + { + "TYPE": "ShopItem", + "UNK": "940018000000" + }, + { + "TYPE": "ShopItem", + "UNK": "940040060000" + }, + { + "TYPE": "ShopItem", + "UNK": "940041060000" + }, + { + "TYPE": "ShopItem", + "UNK": "940042060000" + }, + { + "TYPE": "ShopItem", + "UNK": "940043060000" + }, + { + "TYPE": "ShopItem", + "UNK": "940044060000" + }, + { + "TYPE": "ShopItem", + "UNK": "940045060000" + }, + { + "TYPE": "ShopItem", + "UNK": "940046060000" + }, + { + "TYPE": "ShopItem", + "UNK": "940047060000" + }, + { + "TYPE": "ShopItem", + "UNK": "940048060000" + }, + { + "TYPE": "ShopItem", + "UNK": "940049060000" + }, + { + "TYPE": "ShopItem", + "UNK": "94004A060000" + }, + { + "TYPE": "ShopItem", + "UNK": "94004B060000" + }, + { + "TYPE": "ShopItem", + "UNK": "940018010000" + }, + { + "TYPE": "ShopItem", + "UNK": "940019010000" + }, + { + "TYPE": "ShopItem", + "UNK": "94000B010000" + }, + { + "TYPE": "ShopTitle", + "ID": 149, + "UNK0": 0, + "STRING": "Boronia's General Goods", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "950058020000" + }, + { + "TYPE": "ShopItem", + "UNK": "950059020000" + }, + { + "TYPE": "ShopItem", + "UNK": "95005A020000" + }, + { + "TYPE": "ShopItem", + "UNK": "95005B020000" + }, + { + "TYPE": "ShopItem", + "UNK": "95005C020000" + }, + { + "TYPE": "ShopItem", + "UNK": "95005D020000" + }, + { + "TYPE": "ShopItem", + "UNK": "95005E020000" + }, + { + "TYPE": "ShopItem", + "UNK": "95005F020000" + }, + { + "TYPE": "ShopItem", + "UNK": "950060020000" + }, + { + "TYPE": "ShopItem", + "UNK": "950061020000" + }, + { + "TYPE": "ShopItem", + "UNK": "950062020000" + }, + { + "TYPE": "ShopItem", + "UNK": "950072020000" + }, + { + "TYPE": "ShopItem", + "UNK": "950073020000" + }, + { + "TYPE": "ShopItem", + "UNK": "950074020000" + }, + { + "TYPE": "ShopItem", + "UNK": "950075020000" + }, + { + "TYPE": "ShopItem", + "UNK": "95007B020000" + }, + { + "TYPE": "ShopItem", + "UNK": "950000000000" + }, + { + "TYPE": "ShopItem", + "UNK": "950001000000" + }, + { + "TYPE": "ShopItem", + "UNK": "950003000000" + }, + { + "TYPE": "ShopItem", + "UNK": "950004000000" + }, + { + "TYPE": "ShopItem", + "UNK": "950006000000" + }, + { + "TYPE": "ShopItem", + "UNK": "950007000000" + }, + { + "TYPE": "ShopItem", + "UNK": "95000B000000" + }, + { + "TYPE": "ShopItem", + "UNK": "95000C000000" + }, + { + "TYPE": "ShopItem", + "UNK": "95000D000000" + }, + { + "TYPE": "ShopItem", + "UNK": "95000E000000" + }, + { + "TYPE": "ShopItem", + "UNK": "95000F000000" + }, + { + "TYPE": "ShopItem", + "UNK": "950010000000" + }, + { + "TYPE": "ShopItem", + "UNK": "950011000000" + }, + { + "TYPE": "ShopItem", + "UNK": "950012000000" + }, + { + "TYPE": "ShopItem", + "UNK": "950013000000" + }, + { + "TYPE": "ShopItem", + "UNK": "950014000000" + }, + { + "TYPE": "ShopItem", + "UNK": "950015000000" + }, + { + "TYPE": "ShopItem", + "UNK": "950016000000" + }, + { + "TYPE": "ShopItem", + "UNK": "950017000000" + }, + { + "TYPE": "ShopItem", + "UNK": "950018000000" + }, + { + "TYPE": "ShopItem", + "UNK": "950040060000" + }, + { + "TYPE": "ShopItem", + "UNK": "950041060000" + }, + { + "TYPE": "ShopItem", + "UNK": "950042060000" + }, + { + "TYPE": "ShopItem", + "UNK": "950043060000" + }, + { + "TYPE": "ShopItem", + "UNK": "950044060000" + }, + { + "TYPE": "ShopItem", + "UNK": "950045060000" + }, + { + "TYPE": "ShopItem", + "UNK": "950046060000" + }, + { + "TYPE": "ShopItem", + "UNK": "950047060000" + }, + { + "TYPE": "ShopItem", + "UNK": "950048060000" + }, + { + "TYPE": "ShopItem", + "UNK": "950049060000" + }, + { + "TYPE": "ShopItem", + "UNK": "95004A060000" + }, + { + "TYPE": "ShopItem", + "UNK": "95004B060000" + }, + { + "TYPE": "ShopItem", + "UNK": "950018010000" + }, + { + "TYPE": "ShopItem", + "UNK": "950019010000" + }, + { + "TYPE": "ShopItem", + "UNK": "95000C010000" + }, + { + "TYPE": "ShopTitle", + "ID": 150, + "UNK0": 1, + "STRING": "Dining Bar - F", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "960014060000" + }, + { + "TYPE": "ShopItem", + "UNK": "9600FB050000" + }, + { + "TYPE": "ShopTitle", + "ID": 151, + "UNK0": 6, + "STRING": "Hotel Lagrange", + "UNK1": "c8c802020303030a" + }, + { + "TYPE": "ShopTitle", + "ID": 152, + "UNK0": 1, + "STRING": "Dvance's Diner", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "980013060000" + }, + { + "TYPE": "ShopItem", + "UNK": "98000D060000" + }, + { + "TYPE": "ShopTitle", + "ID": 153, + "UNK0": 8, + "STRING": "Jackass' Repair Shop", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "990014000500" + }, + { + "TYPE": "ShopItem", + "UNK": "990015000500" + }, + { + "TYPE": "ShopItem", + "UNK": "990016000500" + }, + { + "TYPE": "ShopItem", + "UNK": "990017000500" + }, + { + "TYPE": "ShopItem", + "UNK": "990018000500" + }, + { + "TYPE": "ShopItem", + "UNK": "990019000500" + }, + { + "TYPE": "ShopItem", + "UNK": "990000000600" + }, + { + "TYPE": "ShopItem", + "UNK": "990001000600" + }, + { + "TYPE": "ShopItem", + "UNK": "990002000600" + }, + { + "TYPE": "ShopItem", + "UNK": "990003000600" + }, + { + "TYPE": "ShopItem", + "UNK": "990004000600" + }, + { + "TYPE": "ShopItem", + "UNK": "990005000600" + }, + { + "TYPE": "ShopItem", + "UNK": "990006000600" + }, + { + "TYPE": "ShopItem", + "UNK": "990007000600" + }, + { + "TYPE": "ShopItem", + "UNK": "990008000600" + }, + { + "TYPE": "ShopItem", + "UNK": "990009000600" + }, + { + "TYPE": "ShopItem", + "UNK": "99000A000600" + }, + { + "TYPE": "ShopItem", + "UNK": "99000B000600" + }, + { + "TYPE": "ShopItem", + "UNK": "99000C000600" + }, + { + "TYPE": "ShopItem", + "UNK": "99000D000600" + }, + { + "TYPE": "ShopItem", + "UNK": "99000E000600" + }, + { + "TYPE": "ShopItem", + "UNK": "99000F000600" + }, + { + "TYPE": "ShopItem", + "UNK": "990010000600" + }, + { + "TYPE": "ShopItem", + "UNK": "990011000600" + }, + { + "TYPE": "ShopItem", + "UNK": "990012000600" + }, + { + "TYPE": "ShopItem", + "UNK": "990013000600" + }, + { + "TYPE": "ShopItem", + "UNK": "99001E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "99001F000700" + }, + { + "TYPE": "ShopItem", + "UNK": "990020000700" + }, + { + "TYPE": "ShopItem", + "UNK": "990021000700" + }, + { + "TYPE": "ShopItem", + "UNK": "990022000700" + }, + { + "TYPE": "ShopItem", + "UNK": "990023000800" + }, + { + "TYPE": "ShopItem", + "UNK": "990024000800" + }, + { + "TYPE": "ShopItem", + "UNK": "990025000800" + }, + { + "TYPE": "ShopItem", + "UNK": "990026000800" + }, + { + "TYPE": "ShopItem", + "UNK": "990027000800" + }, + { + "TYPE": "ShopItem", + "UNK": "990028000800" + }, + { + "TYPE": "ShopItem", + "UNK": "990029000800" + }, + { + "TYPE": "ShopItem", + "UNK": "99002A000800" + }, + { + "TYPE": "ShopItem", + "UNK": "99002B000800" + }, + { + "TYPE": "ShopItem", + "UNK": "99002C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "99002D000700" + }, + { + "TYPE": "ShopItem", + "UNK": "99002E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "99002F000700" + }, + { + "TYPE": "ShopItem", + "UNK": "990032000700" + }, + { + "TYPE": "ShopItem", + "UNK": "990033000700" + }, + { + "TYPE": "ShopItem", + "UNK": "990034000700" + }, + { + "TYPE": "ShopItem", + "UNK": "990035000700" + }, + { + "TYPE": "ShopItem", + "UNK": "990036000700" + }, + { + "TYPE": "ShopItem", + "UNK": "990037000700" + }, + { + "TYPE": "ShopItem", + "UNK": "990038000700" + }, + { + "TYPE": "ShopItem", + "UNK": "990039000800" + }, + { + "TYPE": "ShopItem", + "UNK": "99003A000800" + }, + { + "TYPE": "ShopItem", + "UNK": "99003B000800" + }, + { + "TYPE": "ShopItem", + "UNK": "99003C000800" + }, + { + "TYPE": "ShopItem", + "UNK": "99003D000800" + }, + { + "TYPE": "ShopItem", + "UNK": "99003E000800" + }, + { + "TYPE": "ShopItem", + "UNK": "99003F000800" + }, + { + "TYPE": "ShopItem", + "UNK": "990040000800" + }, + { + "TYPE": "ShopItem", + "UNK": "990041000800" + }, + { + "TYPE": "ShopItem", + "UNK": "990042000800" + }, + { + "TYPE": "ShopItem", + "UNK": "990043000700" + }, + { + "TYPE": "ShopItem", + "UNK": "990044000700" + }, + { + "TYPE": "ShopItem", + "UNK": "990045000700" + }, + { + "TYPE": "ShopItem", + "UNK": "990046000700" + }, + { + "TYPE": "ShopItem", + "UNK": "99004B000700" + }, + { + "TYPE": "ShopItem", + "UNK": "99004C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "99004D000700" + }, + { + "TYPE": "ShopItem", + "UNK": "99004E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "99004F000700" + }, + { + "TYPE": "ShopItem", + "UNK": "990050000800" + }, + { + "TYPE": "ShopItem", + "UNK": "990051000800" + }, + { + "TYPE": "ShopItem", + "UNK": "990052000800" + }, + { + "TYPE": "ShopItem", + "UNK": "990053000800" + }, + { + "TYPE": "ShopItem", + "UNK": "990054000800" + }, + { + "TYPE": "ShopItem", + "UNK": "990055000800" + }, + { + "TYPE": "ShopItem", + "UNK": "990056000800" + }, + { + "TYPE": "ShopItem", + "UNK": "990057000800" + }, + { + "TYPE": "ShopItem", + "UNK": "990058000800" + }, + { + "TYPE": "ShopItem", + "UNK": "990059000800" + }, + { + "TYPE": "ShopItem", + "UNK": "99005A000700" + }, + { + "TYPE": "ShopItem", + "UNK": "99005B000700" + }, + { + "TYPE": "ShopItem", + "UNK": "99005C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "99005D000700" + }, + { + "TYPE": "ShopItem", + "UNK": "99005E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "990064000700" + }, + { + "TYPE": "ShopItem", + "UNK": "990065000700" + }, + { + "TYPE": "ShopItem", + "UNK": "990066000700" + }, + { + "TYPE": "ShopItem", + "UNK": "990067000700" + }, + { + "TYPE": "ShopItem", + "UNK": "990068000700" + }, + { + "TYPE": "ShopItem", + "UNK": "990069000700" + }, + { + "TYPE": "ShopItem", + "UNK": "99006A000700" + }, + { + "TYPE": "ShopItem", + "UNK": "99006B000800" + }, + { + "TYPE": "ShopItem", + "UNK": "99006C000800" + }, + { + "TYPE": "ShopItem", + "UNK": "99006D000800" + }, + { + "TYPE": "ShopItem", + "UNK": "99006E000800" + }, + { + "TYPE": "ShopItem", + "UNK": "99006F000800" + }, + { + "TYPE": "ShopItem", + "UNK": "990070000800" + }, + { + "TYPE": "ShopItem", + "UNK": "990071000800" + }, + { + "TYPE": "ShopItem", + "UNK": "990072000800" + }, + { + "TYPE": "ShopItem", + "UNK": "990073000700" + }, + { + "TYPE": "ShopItem", + "UNK": "990074000700" + }, + { + "TYPE": "ShopItem", + "UNK": "990075000700" + }, + { + "TYPE": "ShopItem", + "UNK": "990076000700" + }, + { + "TYPE": "ShopItem", + "UNK": "990078000700" + }, + { + "TYPE": "ShopItem", + "UNK": "990079000700" + }, + { + "TYPE": "ShopItem", + "UNK": "99007A000700" + }, + { + "TYPE": "ShopItem", + "UNK": "99007B000700" + }, + { + "TYPE": "ShopItem", + "UNK": "99007C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "99007D000700" + }, + { + "TYPE": "ShopItem", + "UNK": "99007E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "99007F000800" + }, + { + "TYPE": "ShopItem", + "UNK": "990080000800" + }, + { + "TYPE": "ShopItem", + "UNK": "990081000800" + }, + { + "TYPE": "ShopItem", + "UNK": "990082000800" + }, + { + "TYPE": "ShopItem", + "UNK": "990083000800" + }, + { + "TYPE": "ShopItem", + "UNK": "990084000800" + }, + { + "TYPE": "ShopItem", + "UNK": "990085000800" + }, + { + "TYPE": "ShopItem", + "UNK": "990086000700" + }, + { + "TYPE": "ShopItem", + "UNK": "990087000700" + }, + { + "TYPE": "ShopItem", + "UNK": "990088000700" + }, + { + "TYPE": "ShopItem", + "UNK": "99008C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "99008D000700" + }, + { + "TYPE": "ShopItem", + "UNK": "99008E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "99008F000700" + }, + { + "TYPE": "ShopItem", + "UNK": "990090000800" + }, + { + "TYPE": "ShopItem", + "UNK": "990091000800" + }, + { + "TYPE": "ShopItem", + "UNK": "990092000800" + }, + { + "TYPE": "ShopItem", + "UNK": "990093000800" + }, + { + "TYPE": "ShopItem", + "UNK": "990094000800" + }, + { + "TYPE": "ShopItem", + "UNK": "990095000800" + }, + { + "TYPE": "ShopItem", + "UNK": "990096000800" + }, + { + "TYPE": "ShopItem", + "UNK": "990097000700" + }, + { + "TYPE": "ShopItem", + "UNK": "990098000700" + }, + { + "TYPE": "ShopItem", + "UNK": "990099000700" + }, + { + "TYPE": "ShopItem", + "UNK": "99009A000700" + }, + { + "TYPE": "ShopItem", + "UNK": "99009B000700" + }, + { + "TYPE": "ShopItem", + "UNK": "99009C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "9900A0000700" + }, + { + "TYPE": "ShopItem", + "UNK": "9900A1000700" + }, + { + "TYPE": "ShopItem", + "UNK": "9900A2000700" + }, + { + "TYPE": "ShopItem", + "UNK": "9900A3000700" + }, + { + "TYPE": "ShopItem", + "UNK": "9900A4000700" + }, + { + "TYPE": "ShopItem", + "UNK": "9900A5000800" + }, + { + "TYPE": "ShopItem", + "UNK": "9900A6000800" + }, + { + "TYPE": "ShopItem", + "UNK": "9900A7000800" + }, + { + "TYPE": "ShopItem", + "UNK": "9900A8000800" + }, + { + "TYPE": "ShopItem", + "UNK": "9900A9000800" + }, + { + "TYPE": "ShopItem", + "UNK": "9900AA000800" + }, + { + "TYPE": "ShopItem", + "UNK": "9900AB000800" + }, + { + "TYPE": "ShopItem", + "UNK": "9900AC000700" + }, + { + "TYPE": "ShopItem", + "UNK": "9900AD000700" + }, + { + "TYPE": "ShopItem", + "UNK": "9900AE000700" + }, + { + "TYPE": "ShopItem", + "UNK": "9900AF000700" + }, + { + "TYPE": "ShopItem", + "UNK": "9900B0000700" + }, + { + "TYPE": "ShopTitle", + "ID": 154, + "UNK0": 0, + "STRING": "Reinford Company", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "9A0090020000" + }, + { + "TYPE": "ShopTitle", + "ID": 155, + "UNK0": 1, + "STRING": "Gardening Club's Stall", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "9B0043060000" + }, + { + "TYPE": "ShopItem", + "UNK": "9B0044060000" + }, + { + "TYPE": "ShopItem", + "UNK": "9B0045060000" + }, + { + "TYPE": "ShopItem", + "UNK": "9B0046060000" + }, + { + "TYPE": "ShopItem", + "UNK": "9B0047060000" + }, + { + "TYPE": "ShopTitle", + "ID": 156, + "UNK0": 1, + "STRING": "Gelato Stall", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "9C0001060000" + }, + { + "TYPE": "ShopItem", + "UNK": "9C001A000000" + }, + { + "TYPE": "ShopItem", + "UNK": "9C001B000000" + }, + { + "TYPE": "ShopTitle", + "ID": 157, + "UNK0": 1, + "STRING": "Juice Stall", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "9D0000060000" + }, + { + "TYPE": "ShopItem", + "UNK": "9D0021000000" + }, + { + "TYPE": "ShopItem", + "UNK": "9D0022000000" + }, + { + "TYPE": "ShopTitle", + "ID": 158, + "UNK0": 1, + "STRING": "Crepe Stall", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "9E0025000000" + }, + { + "TYPE": "ShopItem", + "UNK": "9E001F000000" + }, + { + "TYPE": "ShopItem", + "UNK": "9E0020000000" + }, + { + "TYPE": "ShopItem", + "UNK": "9E00F6050000" + }, + { + "TYPE": "ShopTitle", + "ID": 159, + "UNK0": 1, + "STRING": "Juice Stall", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "9F00F9050000" + }, + { + "TYPE": "ShopItem", + "UNK": "9F00F4050000" + }, + { + "TYPE": "ShopItem", + "UNK": "9F00F2050000" + }, + { + "TYPE": "ShopTitle", + "ID": 160, + "UNK0": 1, + "STRING": "Becky's Stall", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "A00023000000" + }, + { + "TYPE": "ShopItem", + "UNK": "A0001D000000" + }, + { + "TYPE": "ShopItem", + "UNK": "A0001E000000" + }, + { + "TYPE": "ShopTitle", + "ID": 161, + "UNK0": 1, + "STRING": "Hugo's Stall", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "A10024000000" + }, + { + "TYPE": "ShopItem", + "UNK": "A1001F000000" + }, + { + "TYPE": "ShopItem", + "UNK": "A10020000000" + }, + { + "TYPE": "ShopTitle", + "ID": 162, + "UNK0": 3, + "STRING": "Engineering Club", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "A20034080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A20035080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A20036080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A20037080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A20038080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A20039080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A2003A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A2003B080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A2003D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A2003E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A2003F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A20040080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A20041080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A20057080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A20058080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A20059080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A2005A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A2005B080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A2005C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A2005D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A2005E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A2005F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A20060080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A20061080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A20062080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A20063080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A20064080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A20065080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A20066080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A20067080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A2007A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A2007B080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A2007C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A2007D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A2007E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A2007F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A20080080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A20081080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A20082080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A20083080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A20084080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A20085080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A20086080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A20087080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A20088080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A2009D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A2009E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A2009F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A200A0080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A200A1080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A200A2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A200A3080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A200A4080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A200A5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A200A6080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A200A7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A200A8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A200A9080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A200AA080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A200AB080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A200C0080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A200C1080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A200C2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A200C4080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A200C5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A200C6080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A200C7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A200C8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A200C9080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A200CA080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A200CB080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A200CC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A200CD080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A200DE080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A200DF080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A200E0080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A200E2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A200E3080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A200E5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A200E6080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A200E7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A200E8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A200FC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A200FD080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A200FE080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A20000090200" + }, + { + "TYPE": "ShopItem", + "UNK": "A20001090200" + }, + { + "TYPE": "ShopItem", + "UNK": "A20002090200" + }, + { + "TYPE": "ShopItem", + "UNK": "A20003090200" + }, + { + "TYPE": "ShopItem", + "UNK": "A20004090200" + }, + { + "TYPE": "ShopItem", + "UNK": "A20005090200" + }, + { + "TYPE": "ShopItem", + "UNK": "A20006090200" + }, + { + "TYPE": "ShopItem", + "UNK": "A20007090200" + }, + { + "TYPE": "ShopItem", + "UNK": "A20030090400" + }, + { + "TYPE": "ShopItem", + "UNK": "A20031090400" + }, + { + "TYPE": "ShopTitle", + "ID": 163, + "UNK0": 4, + "STRING": "Engineering Club", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "A300CE000100" + }, + { + "TYPE": "ShopItem", + "UNK": "A300D4000100" + }, + { + "TYPE": "ShopItem", + "UNK": "A300DD000100" + }, + { + "TYPE": "ShopItem", + "UNK": "A300E8000100" + }, + { + "TYPE": "ShopItem", + "UNK": "A300F2000100" + }, + { + "TYPE": "ShopItem", + "UNK": "A30000010100" + }, + { + "TYPE": "ShopTitle", + "ID": 164, + "UNK0": 5, + "STRING": "Engineering Club", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "A400F9030000" + }, + { + "TYPE": "ShopItem", + "UNK": "A40017040000" + }, + { + "TYPE": "ShopItem", + "UNK": "A40035040000" + }, + { + "TYPE": "ShopItem", + "UNK": "A40071040000" + }, + { + "TYPE": "ShopItem", + "UNK": "A400CB040000" + }, + { + "TYPE": "ShopItem", + "UNK": "A40025050000" + }, + { + "TYPE": "ShopItem", + "UNK": "A40006020000" + }, + { + "TYPE": "ShopItem", + "UNK": "A40039020000" + }, + { + "TYPE": "ShopItem", + "UNK": "A40058020000" + }, + { + "TYPE": "ShopItem", + "UNK": "A40059020000" + }, + { + "TYPE": "ShopItem", + "UNK": "A4005A020000" + }, + { + "TYPE": "ShopItem", + "UNK": "A4005B020000" + }, + { + "TYPE": "ShopItem", + "UNK": "A4005C020000" + }, + { + "TYPE": "ShopItem", + "UNK": "A4005D020000" + }, + { + "TYPE": "ShopItem", + "UNK": "A4005E020000" + }, + { + "TYPE": "ShopItem", + "UNK": "A4005F020000" + }, + { + "TYPE": "ShopItem", + "UNK": "A40060020000" + }, + { + "TYPE": "ShopItem", + "UNK": "A40061020000" + }, + { + "TYPE": "ShopItem", + "UNK": "A40062020000" + }, + { + "TYPE": "ShopItem", + "UNK": "A40072020000" + }, + { + "TYPE": "ShopItem", + "UNK": "A40073020000" + }, + { + "TYPE": "ShopItem", + "UNK": "A40074020000" + }, + { + "TYPE": "ShopItem", + "UNK": "A40075020000" + }, + { + "TYPE": "ShopItem", + "UNK": "A4007B020000" + }, + { + "TYPE": "ShopItem", + "UNK": "A40000000000" + }, + { + "TYPE": "ShopItem", + "UNK": "A40001000000" + }, + { + "TYPE": "ShopItem", + "UNK": "A40003000000" + }, + { + "TYPE": "ShopItem", + "UNK": "A40004000000" + }, + { + "TYPE": "ShopItem", + "UNK": "A40006000000" + }, + { + "TYPE": "ShopItem", + "UNK": "A40007000000" + }, + { + "TYPE": "ShopItem", + "UNK": "A4000B000000" + }, + { + "TYPE": "ShopItem", + "UNK": "A4000C000000" + }, + { + "TYPE": "ShopItem", + "UNK": "A4000D000000" + }, + { + "TYPE": "ShopItem", + "UNK": "A4000E000000" + }, + { + "TYPE": "ShopItem", + "UNK": "A4000F000000" + }, + { + "TYPE": "ShopItem", + "UNK": "A40010000000" + }, + { + "TYPE": "ShopItem", + "UNK": "A40011000000" + }, + { + "TYPE": "ShopItem", + "UNK": "A40012000000" + }, + { + "TYPE": "ShopItem", + "UNK": "A40013000000" + }, + { + "TYPE": "ShopItem", + "UNK": "A40014000000" + }, + { + "TYPE": "ShopItem", + "UNK": "A40015000000" + }, + { + "TYPE": "ShopItem", + "UNK": "A40016000000" + }, + { + "TYPE": "ShopItem", + "UNK": "A40017000000" + }, + { + "TYPE": "ShopItem", + "UNK": "A40018000000" + }, + { + "TYPE": "ShopItem", + "UNK": "A40040060000" + }, + { + "TYPE": "ShopItem", + "UNK": "A40041060000" + }, + { + "TYPE": "ShopItem", + "UNK": "A40042060000" + }, + { + "TYPE": "ShopItem", + "UNK": "A40043060000" + }, + { + "TYPE": "ShopItem", + "UNK": "A40044060000" + }, + { + "TYPE": "ShopItem", + "UNK": "A40045060000" + }, + { + "TYPE": "ShopItem", + "UNK": "A40046060000" + }, + { + "TYPE": "ShopItem", + "UNK": "A40047060000" + }, + { + "TYPE": "ShopItem", + "UNK": "A40048060000" + }, + { + "TYPE": "ShopItem", + "UNK": "A40049060000" + }, + { + "TYPE": "ShopItem", + "UNK": "A4004A060000" + }, + { + "TYPE": "ShopItem", + "UNK": "A4004B060000" + }, + { + "TYPE": "ShopItem", + "UNK": "A400D5070300" + }, + { + "TYPE": "ShopItem", + "UNK": "A400DA070300" + }, + { + "TYPE": "ShopItem", + "UNK": "A400DD070300" + }, + { + "TYPE": "ShopItem", + "UNK": "A400DF070300" + }, + { + "TYPE": "ShopItem", + "UNK": "A400E2070300" + }, + { + "TYPE": "ShopItem", + "UNK": "A400E6070300" + }, + { + "TYPE": "ShopTitle", + "ID": 165, + "UNK0": 3, + "STRING": "Engineering Club", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "A50034080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A50035080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A50036080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A50037080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A50038080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A50039080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A5003A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A5003B080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A5003C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A5003D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A5003E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A5003F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A50040080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A50041080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A5005C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A5005D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A5005E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A5005F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A50060080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A50061080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A50062080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A50063080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A50064080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A50065080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A50066080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A50067080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A5007A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A5007B080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A5007C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A5007D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A5007E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A5007F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A50080080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A50081080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A50082080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A50083080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A50084080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A50085080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A50086080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A50087080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A50088080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A5009D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A5009E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A5009F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A500A0080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A500A1080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A500A2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A500A3080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A500A4080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A500A5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A500A6080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A500A7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A500A8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A500A9080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A500AA080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A500AB080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A500C0080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A500C1080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A500C2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A500C3080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A500C4080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A500C5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A500C6080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A500C7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A500C8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A500C9080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A500CA080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A500CB080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A500CC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A500CD080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A500DE080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A500DF080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A500E0080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A500E1080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A500E2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A500E3080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A500E4080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A500E5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A500E6080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A500E7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A500E8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A500FC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A500FD080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A500FE080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A500FF080200" + }, + { + "TYPE": "ShopItem", + "UNK": "A50000090200" + }, + { + "TYPE": "ShopItem", + "UNK": "A50001090200" + }, + { + "TYPE": "ShopItem", + "UNK": "A50002090200" + }, + { + "TYPE": "ShopItem", + "UNK": "A50003090200" + }, + { + "TYPE": "ShopItem", + "UNK": "A50004090200" + }, + { + "TYPE": "ShopItem", + "UNK": "A50005090200" + }, + { + "TYPE": "ShopItem", + "UNK": "A50006090200" + }, + { + "TYPE": "ShopItem", + "UNK": "A50007090200" + }, + { + "TYPE": "ShopItem", + "UNK": "A50030090400" + }, + { + "TYPE": "ShopItem", + "UNK": "A50031090400" + }, + { + "TYPE": "ShopTitle", + "ID": 166, + "UNK0": 4, + "STRING": "Engineering Club", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "A600CE000100" + }, + { + "TYPE": "ShopItem", + "UNK": "A600D4000100" + }, + { + "TYPE": "ShopItem", + "UNK": "A600DD000100" + }, + { + "TYPE": "ShopItem", + "UNK": "A600E8000100" + }, + { + "TYPE": "ShopItem", + "UNK": "A600F2000100" + }, + { + "TYPE": "ShopItem", + "UNK": "A60000010100" + }, + { + "TYPE": "ShopTitle", + "ID": 167, + "UNK0": 4, + "STRING": "Engineering Club", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "A700CE000100" + }, + { + "TYPE": "ShopItem", + "UNK": "A700D4000100" + }, + { + "TYPE": "ShopItem", + "UNK": "A700DD000100" + }, + { + "TYPE": "ShopItem", + "UNK": "A700E8000100" + }, + { + "TYPE": "ShopItem", + "UNK": "A700F2000100" + }, + { + "TYPE": "ShopItem", + "UNK": "A70000010100" + }, + { + "TYPE": "ShopItem", + "UNK": "A700CF000100" + }, + { + "TYPE": "ShopItem", + "UNK": "A700D5000100" + }, + { + "TYPE": "ShopItem", + "UNK": "A700DE000100" + }, + { + "TYPE": "ShopItem", + "UNK": "A700DF000100" + }, + { + "TYPE": "ShopItem", + "UNK": "A700E4000100" + }, + { + "TYPE": "ShopItem", + "UNK": "A700E9000100" + }, + { + "TYPE": "ShopItem", + "UNK": "A700EE000100" + }, + { + "TYPE": "ShopItem", + "UNK": "A700F3000100" + }, + { + "TYPE": "ShopItem", + "UNK": "A700F8000100" + }, + { + "TYPE": "ShopItem", + "UNK": "A700FC000100" + }, + { + "TYPE": "ShopItem", + "UNK": "A70001010100" + }, + { + "TYPE": "ShopTitle", + "ID": 168, + "UNK0": 5, + "STRING": "Engineering Club", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "A800D5070300" + }, + { + "TYPE": "ShopItem", + "UNK": "A800DA070300" + }, + { + "TYPE": "ShopItem", + "UNK": "A800DD070300" + }, + { + "TYPE": "ShopItem", + "UNK": "A800DF070300" + }, + { + "TYPE": "ShopItem", + "UNK": "A800E2070300" + }, + { + "TYPE": "ShopItem", + "UNK": "A800E6070300" + }, + { + "TYPE": "ShopItem", + "UNK": "A800E9070300" + }, + { + "TYPE": "ShopItem", + "UNK": "A80003000000" + }, + { + "TYPE": "ShopItem", + "UNK": "A80004000000" + }, + { + "TYPE": "ShopTitle", + "ID": 169, + "UNK0": 6, + "STRING": "Der Himmel Hotel", + "UNK1": "c8c802020303030a" + }, + { + "TYPE": "ShopTitle", + "ID": 170, + "UNK0": 10, + "STRING": "Imperial Fishing Club", + "UNK1": "0000000000000000" + }, + { + "TYPE": "FPointItem", + "UNK": "AA0000000A000000" + }, + { + "TYPE": "FPointItem", + "UNK": "AA00030014000000" + }, + { + "TYPE": "FPointItem", + "UNK": "AA007C021E000000" + }, + { + "TYPE": "FPointItem", + "UNK": "AA00660832000000" + }, + { + "TYPE": "ShopTitle", + "ID": 171, + "UNK0": 10, + "STRING": "Imperial Fishing Club", + "UNK1": "0000000000000000" + }, + { + "TYPE": "FPointItem", + "UNK": "AB00CA000A000000" + }, + { + "TYPE": "FPointItem", + "UNK": "AB0000000A000000" + }, + { + "TYPE": "FPointItem", + "UNK": "AB0001001E000000" + }, + { + "TYPE": "FPointItem", + "UNK": "AB00030014000000" + }, + { + "TYPE": "FPointItem", + "UNK": "AB0004003C000000" + }, + { + "TYPE": "FPointItem", + "UNK": "AB007C021E000000" + }, + { + "TYPE": "FPointItem", + "UNK": "AB007D0250000000" + }, + { + "TYPE": "FPointItem", + "UNK": "AB00660832000000" + }, + { + "TYPE": "FPointItem", + "UNK": "AB006E0896007B01" + }, + { + "TYPE": "ShopTitle", + "ID": 172, + "UNK0": 10, + "STRING": "Imperial Fishing Club", + "UNK1": "0000000000000000" + }, + { + "TYPE": "FPointItem", + "UNK": "AC00CA000A000000" + }, + { + "TYPE": "FPointItem", + "UNK": "AC00CB000A000000" + }, + { + "TYPE": "FPointItem", + "UNK": "AC0000000A000000" + }, + { + "TYPE": "FPointItem", + "UNK": "AC0001001E000000" + }, + { + "TYPE": "FPointItem", + "UNK": "AC00020032000000" + }, + { + "TYPE": "FPointItem", + "UNK": "AC00030014000000" + }, + { + "TYPE": "FPointItem", + "UNK": "AC0004003C000000" + }, + { + "TYPE": "FPointItem", + "UNK": "AC00050064000000" + }, + { + "TYPE": "FPointItem", + "UNK": "AC007C021E000000" + }, + { + "TYPE": "FPointItem", + "UNK": "AC007D0250000000" + }, + { + "TYPE": "FPointItem", + "UNK": "AC007E0278000000" + }, + { + "TYPE": "FPointItem", + "UNK": "AC00660832000000" + }, + { + "TYPE": "FPointItem", + "UNK": "AC006E0896007B01" + }, + { + "TYPE": "FPointItem", + "UNK": "AC006C082C017C01" + }, + { + "TYPE": "ShopTitle", + "ID": 173, + "UNK0": 10, + "STRING": "Imperial Fishing Club", + "UNK1": "0000000000000000" + }, + { + "TYPE": "FPointItem", + "UNK": "AD00CA000A000000" + }, + { + "TYPE": "FPointItem", + "UNK": "AD00CB000A000000" + }, + { + "TYPE": "FPointItem", + "UNK": "AD0000000A000000" + }, + { + "TYPE": "FPointItem", + "UNK": "AD0001001E000000" + }, + { + "TYPE": "FPointItem", + "UNK": "AD00020032000000" + }, + { + "TYPE": "FPointItem", + "UNK": "AD00030014000000" + }, + { + "TYPE": "FPointItem", + "UNK": "AD0004003C000000" + }, + { + "TYPE": "FPointItem", + "UNK": "AD00050064000000" + }, + { + "TYPE": "FPointItem", + "UNK": "AD007C021E000000" + }, + { + "TYPE": "FPointItem", + "UNK": "AD007D0250000000" + }, + { + "TYPE": "FPointItem", + "UNK": "AD007E0278000000" + }, + { + "TYPE": "FPointItem", + "UNK": "AD00660832000000" + }, + { + "TYPE": "FPointItem", + "UNK": "AD006E0896007B01" + }, + { + "TYPE": "FPointItem", + "UNK": "AD006C082C017C01" + }, + { + "TYPE": "FPointItem", + "UNK": "AD00E707F4017D01" + }, + { + "TYPE": "ShopTitle", + "ID": 174, + "UNK0": 11, + "STRING": "Orbment Charging Station", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "AE00C8000100" + }, + { + "TYPE": "ShopItem", + "UNK": "AE00D7000100" + }, + { + "TYPE": "ShopItem", + "UNK": "AE00F5000100" + }, + { + "TYPE": "ShopTitle", + "ID": 175, + "UNK0": 11, + "STRING": "Orbment Charging Station", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "AF00C9000100" + }, + { + "TYPE": "ShopItem", + "UNK": "AF00D2000100" + }, + { + "TYPE": "ShopItem", + "UNK": "AF00D8000100" + }, + { + "TYPE": "ShopItem", + "UNK": "AF00E1000100" + }, + { + "TYPE": "ShopTitle", + "ID": 176, + "UNK0": 11, + "STRING": "Orbment Charging Station", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "B000CA000100" + }, + { + "TYPE": "ShopItem", + "UNK": "B000D9000100" + }, + { + "TYPE": "ShopItem", + "UNK": "B000E6000100" + }, + { + "TYPE": "ShopItem", + "UNK": "B000EB000100" + }, + { + "TYPE": "ShopItem", + "UNK": "B000F0000100" + }, + { + "TYPE": "ShopTitle", + "ID": 177, + "UNK0": 11, + "STRING": "Orbment Charging Station", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "B100CB000100" + }, + { + "TYPE": "ShopItem", + "UNK": "B100D3000100" + }, + { + "TYPE": "ShopItem", + "UNK": "B100DA000100" + }, + { + "TYPE": "ShopItem", + "UNK": "B100EC000100" + }, + { + "TYPE": "ShopItem", + "UNK": "B100F6000100" + }, + { + "TYPE": "ShopTitle", + "ID": 178, + "UNK0": 11, + "STRING": "Orbment Charging Station", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "B200CC000100" + }, + { + "TYPE": "ShopItem", + "UNK": "B200DB000100" + }, + { + "TYPE": "ShopItem", + "UNK": "B200E2000100" + }, + { + "TYPE": "ShopItem", + "UNK": "B200E7000100" + }, + { + "TYPE": "ShopItem", + "UNK": "B200F1000100" + }, + { + "TYPE": "ShopTitle", + "ID": 179, + "UNK0": 11, + "STRING": "Orbment Charging Station", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "B300CD000100" + }, + { + "TYPE": "ShopItem", + "UNK": "B300DC000100" + }, + { + "TYPE": "ShopItem", + "UNK": "B300E3000100" + }, + { + "TYPE": "ShopItem", + "UNK": "B300ED000100" + }, + { + "TYPE": "ShopItem", + "UNK": "B300F7000100" + }, + { + "TYPE": "ShopItem", + "UNK": "B300FB000100" + }, + { + "TYPE": "ShopTitle", + "ID": 180, + "UNK0": 11, + "STRING": "Orbment Charging Station", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "B400CE000100" + }, + { + "TYPE": "ShopItem", + "UNK": "B400D4000100" + }, + { + "TYPE": "ShopItem", + "UNK": "B400DD000100" + }, + { + "TYPE": "ShopItem", + "UNK": "B400E8000100" + }, + { + "TYPE": "ShopItem", + "UNK": "B400F2000100" + }, + { + "TYPE": "ShopItem", + "UNK": "B40000010100" + }, + { + "TYPE": "ShopTitle", + "ID": 181, + "UNK0": 11, + "STRING": "Orbment Charging Station", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "B500C9000100" + }, + { + "TYPE": "ShopItem", + "UNK": "B500D2000100" + }, + { + "TYPE": "ShopItem", + "UNK": "B500D8000100" + }, + { + "TYPE": "ShopItem", + "UNK": "B500E1000100" + }, + { + "TYPE": "ShopTitle", + "ID": 182, + "UNK0": 11, + "STRING": "Orbment Charging Station", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "B600CA000100" + }, + { + "TYPE": "ShopItem", + "UNK": "B600D9000100" + }, + { + "TYPE": "ShopItem", + "UNK": "B600E6000100" + }, + { + "TYPE": "ShopItem", + "UNK": "B600EB000100" + }, + { + "TYPE": "ShopItem", + "UNK": "B600F0000100" + }, + { + "TYPE": "ShopTitle", + "ID": 183, + "UNK0": 11, + "STRING": "Orbment Charging Station", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "B700CB000100" + }, + { + "TYPE": "ShopItem", + "UNK": "B700D3000100" + }, + { + "TYPE": "ShopItem", + "UNK": "B700DA000100" + }, + { + "TYPE": "ShopItem", + "UNK": "B700EC000100" + }, + { + "TYPE": "ShopItem", + "UNK": "B700F6000100" + }, + { + "TYPE": "ShopTitle", + "ID": 184, + "UNK0": 11, + "STRING": "Orbment Charging Station", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "B800CC000100" + }, + { + "TYPE": "ShopItem", + "UNK": "B800DB000100" + }, + { + "TYPE": "ShopItem", + "UNK": "B800E2000100" + }, + { + "TYPE": "ShopItem", + "UNK": "B800E7000100" + }, + { + "TYPE": "ShopItem", + "UNK": "B800F1000100" + }, + { + "TYPE": "ShopTitle", + "ID": 185, + "UNK0": 11, + "STRING": "Orbment Charging Station", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "B900CD000100" + }, + { + "TYPE": "ShopItem", + "UNK": "B900DC000100" + }, + { + "TYPE": "ShopItem", + "UNK": "B900E3000100" + }, + { + "TYPE": "ShopItem", + "UNK": "B900ED000100" + }, + { + "TYPE": "ShopItem", + "UNK": "B900F7000100" + }, + { + "TYPE": "ShopItem", + "UNK": "B900FB000100" + }, + { + "TYPE": "ShopTitle", + "ID": 186, + "UNK0": 11, + "STRING": "Orbment Charging Station", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "BA00CE000100" + }, + { + "TYPE": "ShopItem", + "UNK": "BA00D4000100" + }, + { + "TYPE": "ShopItem", + "UNK": "BA00DD000100" + }, + { + "TYPE": "ShopItem", + "UNK": "BA00E8000100" + }, + { + "TYPE": "ShopItem", + "UNK": "BA00F2000100" + }, + { + "TYPE": "ShopItem", + "UNK": "BA0000010100" + }, + { + "TYPE": "ShopTitle", + "ID": 187, + "UNK0": 3, + "STRING": "Orbment Maintenance Device", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "BB0034080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB0035080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB0036080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB0039080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB003A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB003D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB003E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB0040080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB0041080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB0057080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB0058080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB0059080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB005C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB005D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB005F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB0061080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB0063080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB0064080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB0066080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB0067080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB007A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB007B080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB007C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB0080080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB0081080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB0082080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB0084080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB0085080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB0087080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB0088080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB009D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB009E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB009F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB00A2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB00A4080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB00A5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB00A7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB00A8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB00AA080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB00AB080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB00C0080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB00C1080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB00C4080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB00C5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB00C7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB00C8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB00CA080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB00CC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB00DE080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB00DF080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB00E3080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB00E2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB00E5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB00E7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB00FC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB00FD080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB0000090200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB0001090200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB0003090200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB0005090200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB0006090200" + }, + { + "TYPE": "ShopItem", + "UNK": "BB0030090400" + }, + { + "TYPE": "ShopItem", + "UNK": "BB0031090400" + }, + { + "TYPE": "ShopTitle", + "ID": 188, + "UNK0": 11, + "STRING": "Orbment Maintenance Device", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "BC00CB000100" + }, + { + "TYPE": "ShopItem", + "UNK": "BC00D3000100" + }, + { + "TYPE": "ShopItem", + "UNK": "BC00DA000100" + }, + { + "TYPE": "ShopItem", + "UNK": "BC00EC000100" + }, + { + "TYPE": "ShopItem", + "UNK": "BC00F6000100" + }, + { + "TYPE": "ShopTitle", + "ID": 189, + "UNK0": 2, + "STRING": "Orbment Maintenance Device", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "BD0034080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD0035080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD0036080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD0037080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD0038080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD0039080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD003A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD003B080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD003D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD003E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD003F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD0040080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD0041080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD0057080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD0058080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD0059080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD005A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD005B080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD005C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD005D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD005E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD005F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD0060080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD0061080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD0062080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD0063080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD0064080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD0065080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD0066080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD0067080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD007A080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD007B080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD007C080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD007D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD007E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD007F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD0080080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD0081080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD0082080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD0083080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD0084080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD0085080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD0086080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD0087080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD0088080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD009D080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD009E080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD009F080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD00A0080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD00A1080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD00A2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD00A3080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD00A4080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD00A5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD00A6080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD00A7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD00A8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD00A9080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD00AA080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD00AB080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD00C0080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD00C1080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD00C2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD00C4080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD00C5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD00C6080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD00C7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD00C8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD00C9080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD00CA080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD00CB080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD00CC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD00CD080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD00DE080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD00DF080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD00E0080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD00E2080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD00E3080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD00E4080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD00E5080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD00E6080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD00E7080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD00E8080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD00FC080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD00FD080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD00FE080200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD0000090200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD0001090200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD0002090200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD0003090200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD0004090200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD0005090200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD0006090200" + }, + { + "TYPE": "ShopItem", + "UNK": "BD0007090200" + }, + { + "TYPE": "ShopTitle", + "ID": 190, + "UNK0": 11, + "STRING": "Orbment Maintenance Device", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "BE00CE000100" + }, + { + "TYPE": "ShopItem", + "UNK": "BE00D4000100" + }, + { + "TYPE": "ShopItem", + "UNK": "BE00DD000100" + }, + { + "TYPE": "ShopItem", + "UNK": "BE00E8000100" + }, + { + "TYPE": "ShopItem", + "UNK": "BE00F2000100" + }, + { + "TYPE": "ShopItem", + "UNK": "BE0000010100" + }, + { + "TYPE": "ShopTitle", + "ID": 191, + "UNK0": 0, + "STRING": "Sharon's Makeshift Store", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "BF00F9030000" + }, + { + "TYPE": "ShopItem", + "UNK": "BF0017040000" + }, + { + "TYPE": "ShopItem", + "UNK": "BF0035040000" + }, + { + "TYPE": "ShopItem", + "UNK": "BF0071040000" + }, + { + "TYPE": "ShopItem", + "UNK": "BF00CB040000" + }, + { + "TYPE": "ShopItem", + "UNK": "BF0025050000" + }, + { + "TYPE": "ShopItem", + "UNK": "BF0006020000" + }, + { + "TYPE": "ShopItem", + "UNK": "BF0007020000" + }, + { + "TYPE": "ShopItem", + "UNK": "BF0008020000" + }, + { + "TYPE": "ShopItem", + "UNK": "BF0039020000" + }, + { + "TYPE": "ShopItem", + "UNK": "BF003A020000" + }, + { + "TYPE": "ShopItem", + "UNK": "BF003B020000" + }, + { + "TYPE": "ShopTitle", + "ID": 192, + "UNK0": 8, + "STRING": "Micht's Pawn Shop", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "C00014000500" + }, + { + "TYPE": "ShopItem", + "UNK": "C00016000500" + }, + { + "TYPE": "ShopItem", + "UNK": "C00018000500" + }, + { + "TYPE": "ShopItem", + "UNK": "C000C3000500" + }, + { + "TYPE": "ShopItem", + "UNK": "C000C2000500" + }, + { + "TYPE": "ShopItem", + "UNK": "C000BE000500" + }, + { + "TYPE": "ShopItem", + "UNK": "C00000000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C00001000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C00002000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C00003000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C0000B000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C000BF000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C000C0000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C000C1000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C0001E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C00023000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C00029000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C00034000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C00039000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C0003E000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C0004B000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C00050000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C00058000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C00064000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C0006B000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C00078000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C000A0000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C000A9000800" + }, + { + "TYPE": "ShopTitle", + "ID": 193, + "UNK0": 8, + "STRING": "Micht's Pawn Shop", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "C10014000500" + }, + { + "TYPE": "ShopItem", + "UNK": "C10016000500" + }, + { + "TYPE": "ShopItem", + "UNK": "C10018000500" + }, + { + "TYPE": "ShopItem", + "UNK": "C100C3000500" + }, + { + "TYPE": "ShopItem", + "UNK": "C100C2000500" + }, + { + "TYPE": "ShopItem", + "UNK": "C100BE000500" + }, + { + "TYPE": "ShopItem", + "UNK": "C10000000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C10001000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C10002000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C10003000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C10004000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C10005000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C10006000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C10007000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C1000B000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C1000C000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C1000D000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C100BF000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C100C0000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C100C1000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C1001E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C10021000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C10023000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C10024000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C10029000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C10032000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C10034000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C10039000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C1003A000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C1003E000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C10041000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C1004B000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C1004E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C10050000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C10051000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C10058000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C10064000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C10066000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C10069000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C1006B000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C1006C000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C10070000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C10078000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C1007B000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C1007D000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C1007F000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C1008C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C1008E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C10090000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C10097000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C100A0000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C100A1000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C100A5000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C100A9000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C100AC000700" + }, + { + "TYPE": "ShopTitle", + "ID": 194, + "UNK0": 8, + "STRING": "Micht's Pawn Shop", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "C20014000500" + }, + { + "TYPE": "ShopItem", + "UNK": "C20016000500" + }, + { + "TYPE": "ShopItem", + "UNK": "C20018000500" + }, + { + "TYPE": "ShopItem", + "UNK": "C200C3000500" + }, + { + "TYPE": "ShopItem", + "UNK": "C200C2000500" + }, + { + "TYPE": "ShopItem", + "UNK": "C200BE000500" + }, + { + "TYPE": "ShopItem", + "UNK": "C20000000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C20001000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C20002000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C20003000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C20004000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C20005000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C20006000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C20007000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C20008000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C20009000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C2000B000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C2000C000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C2000D000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C2000E000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C200BF000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C200C0000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C200C1000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C2001E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C20021000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C20022000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C20023000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C20024000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C20028000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C20029000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C2002C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C20032000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C20034000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C20037000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C20038000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C20039000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C2003A000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C2003E000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C2003F000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C20041000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C20043000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C20044000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C2004B000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C2004E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C2004F000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C20050000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C20051000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C20056000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C20058000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C2005A000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C2005B000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C20064000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C20066000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C20069000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C2006A000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C2006B000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C2006C000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C20070000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C20073000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C20078000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C2007B000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C2007D000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C2007F000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C20080000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C20083000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C2008C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C2008E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C20090000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C20091000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C20094000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C20097000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C20098000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C200A0000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C200A1000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C200A5000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C200A6000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C200A9000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C200AC000700" + }, + { + "TYPE": "ShopTitle", + "ID": 195, + "UNK0": 8, + "STRING": "Micht's Pawn Shop", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "C30014000500" + }, + { + "TYPE": "ShopItem", + "UNK": "C30015000500" + }, + { + "TYPE": "ShopItem", + "UNK": "C30016000500" + }, + { + "TYPE": "ShopItem", + "UNK": "C30017000500" + }, + { + "TYPE": "ShopItem", + "UNK": "C30018000500" + }, + { + "TYPE": "ShopItem", + "UNK": "C30019000500" + }, + { + "TYPE": "ShopItem", + "UNK": "C300C3000500" + }, + { + "TYPE": "ShopItem", + "UNK": "C300C2000500" + }, + { + "TYPE": "ShopItem", + "UNK": "C300BE000500" + }, + { + "TYPE": "ShopItem", + "UNK": "C30000000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C30001000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C30002000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C30003000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C30004000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C30005000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C30006000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C30007000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C30008000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C30009000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C3000A000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C3000B000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C3000C000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C3000D000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C3000E000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C300BF000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C300C0000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C300C1000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C3001E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C3001F000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C30021000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C30022000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C30023000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C30024000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C30025000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C30028000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C30029000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C3002A000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C3002C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C3002E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C30032000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C30033000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C30034000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C30035000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C30037000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C30038000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C30039000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C3003A000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C3003B000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C3003E000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C3003F000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C30041000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C30043000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C30044000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C30045000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C3004B000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C3004C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C3004E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C3004F000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C30050000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C30051000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C30052000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C30056000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C30057000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C30058000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C30059000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C3005A000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C3005B000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C3005C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C3005D000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C30064000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C30065000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C30066000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C30067000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C30069000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C3006A000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C3006B000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C3006C000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C3006D000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C30070000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C30072000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C30073000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C30074000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C30075000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C30078000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C30079000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C3007B000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C3007C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C3007D000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C3007E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C3007F000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C30080000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C30083000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C30084000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C30087000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C3008C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C3008D000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C3008E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C3008F000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C30090000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C30091000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C30094000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C30095000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C30097000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C30098000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C3009B000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C300A0000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C300A1000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C300A2000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C300A3000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C300A5000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C300A6000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C300A9000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C300AA000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C300AB000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C300AC000700" + }, + { + "TYPE": "ShopTitle", + "ID": 196, + "UNK0": 8, + "STRING": "Micht's Pawn Shop", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "C40014000500" + }, + { + "TYPE": "ShopItem", + "UNK": "C40015000500" + }, + { + "TYPE": "ShopItem", + "UNK": "C40016000500" + }, + { + "TYPE": "ShopItem", + "UNK": "C40017000500" + }, + { + "TYPE": "ShopItem", + "UNK": "C40018000500" + }, + { + "TYPE": "ShopItem", + "UNK": "C40019000500" + }, + { + "TYPE": "ShopItem", + "UNK": "C400C3000500" + }, + { + "TYPE": "ShopItem", + "UNK": "C400C2000500" + }, + { + "TYPE": "ShopItem", + "UNK": "C400BE000500" + }, + { + "TYPE": "ShopItem", + "UNK": "C40000000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C40001000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C40002000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C40003000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C40004000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C40005000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C40006000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C40007000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C40008000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C40009000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C4000A000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C4000B000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C4000C000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C4000D000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C4000E000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C4000F000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C40010000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C40011000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C40012000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C400BF000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C400C0000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C400C1000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C4001E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C4001F000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C40021000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C40022000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C40023000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C40024000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C40025000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C40028000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C40029000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C4002A000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C4002C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C4002D000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C4002E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C4002F000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C40032000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C40033000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C40034000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C40035000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C40037000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C40038000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C40039000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C4003A000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C4003B000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C4003E000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C4003F000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C40040000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C40041000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C40042000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C40043000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C40044000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C40045000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C40046000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C4004B000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C4004C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C4004E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C4004F000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C40050000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C40051000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C40052000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C40053000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C40056000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C40057000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C40058000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C40059000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C4005A000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C4005B000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C4005C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C4005D000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C4005E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C40064000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C40065000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C40066000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C40067000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C40068000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C40069000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C4006A000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C4006B000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C4006C000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C4006D000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C40070000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C40071000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C40072000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C40073000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C40074000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C40075000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C40076000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C40078000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C40079000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C4007B000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C4007C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C4007D000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C4007E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C4007F000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C40080000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C40081000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C40083000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C40084000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C40086000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C40087000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C4008C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C4008D000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C4008E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C4008F000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C40090000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C40091000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C40092000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C40094000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C40095000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C40097000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C40098000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C40099000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C4009A000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C4009B000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C400A0000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C400A1000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C400A2000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C400A3000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C400A5000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C400A6000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C400A7000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C400A9000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C400AA000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C400AB000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C400AC000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C400AD000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C400AF000700" + }, + { + "TYPE": "ShopTitle", + "ID": 197, + "UNK0": 8, + "STRING": "Micht's Pawn Shop", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "C50014000500" + }, + { + "TYPE": "ShopItem", + "UNK": "C50015000500" + }, + { + "TYPE": "ShopItem", + "UNK": "C50016000500" + }, + { + "TYPE": "ShopItem", + "UNK": "C50017000500" + }, + { + "TYPE": "ShopItem", + "UNK": "C50018000500" + }, + { + "TYPE": "ShopItem", + "UNK": "C50019000500" + }, + { + "TYPE": "ShopItem", + "UNK": "C500C3000500" + }, + { + "TYPE": "ShopItem", + "UNK": "C500C2000500" + }, + { + "TYPE": "ShopItem", + "UNK": "C500BE000500" + }, + { + "TYPE": "ShopItem", + "UNK": "C50000000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C50001000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C50002000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C50003000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C50004000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C50005000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C50006000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C50007000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C50008000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C50009000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C5000A000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C5000B000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C5000C000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C5000D000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C5000E000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C5000F000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C50010000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C50011000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C50012000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C500BF000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C500C0000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C500C1000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C5001E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C5001F000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C50020000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C50021000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C50022000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C50023000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C50024000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C50025000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C50026000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C50028000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C50029000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C5002A000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C5002C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C5002D000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C5002E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C5002F000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C50032000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C50033000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C50034000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C50035000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C50036000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C50037000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C50038000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C50039000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C5003A000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C5003B000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C5003C000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C5003E000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C5003F000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C50040000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C50041000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C50042000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C50043000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C50044000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C50045000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C50046000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C5004B000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C5004C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C5004D000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C5004E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C5004F000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C50050000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C50051000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C50052000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C50053000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C50054000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C50056000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C50057000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C50058000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C50059000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C5005A000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C5005B000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C5005C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C5005D000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C5005E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C50064000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C50065000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C50066000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C50067000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C50068000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C50069000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C5006A000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C5006B000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C5006C000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C5006D000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C5006E000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C50070000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C50071000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C50072000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C50073000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C50074000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C50075000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C50076000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C50078000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C50079000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C5007A000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C5007B000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C5007C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C5007D000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C5007E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C5007F000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C50080000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C50081000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C50083000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C50084000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C50086000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C50087000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C50088000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C5008C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C5008D000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C5008E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C5008F000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C50090000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C50091000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C50092000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C50094000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C50095000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C50096000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C50097000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C50098000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C50099000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C5009A000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C5009B000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C5009C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C500A0000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C500A1000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C500A2000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C500A3000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C500A4000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C500A5000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C500A6000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C500A7000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C500A9000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C500AA000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C500AB000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C500AC000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C500AD000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C500AE000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C500AF000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C500B0000700" + }, + { + "TYPE": "ShopTitle", + "ID": 198, + "UNK0": 8, + "STRING": "Micht's Pawn Shop", + "UNK1": "020202020303030a" + }, + { + "TYPE": "ShopItem", + "UNK": "C60014000500" + }, + { + "TYPE": "ShopItem", + "UNK": "C60015000500" + }, + { + "TYPE": "ShopItem", + "UNK": "C60016000500" + }, + { + "TYPE": "ShopItem", + "UNK": "C60017000500" + }, + { + "TYPE": "ShopItem", + "UNK": "C60018000500" + }, + { + "TYPE": "ShopItem", + "UNK": "C60019000500" + }, + { + "TYPE": "ShopItem", + "UNK": "C600C3000500" + }, + { + "TYPE": "ShopItem", + "UNK": "C600C2000500" + }, + { + "TYPE": "ShopItem", + "UNK": "C600BE000500" + }, + { + "TYPE": "ShopItem", + "UNK": "C60000000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C60001000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C60002000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C60003000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C60004000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C60005000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C60006000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C60007000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C60008000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C60009000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C6000A000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C6000B000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C6000C000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C6000D000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C6000E000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C6000F000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C60010000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C60011000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C60012000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C60013000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C600BF000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C600C0000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C600C1000600" + }, + { + "TYPE": "ShopItem", + "UNK": "C6001E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C6001F000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C60020000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C60021000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C60022000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C60023000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C60024000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C60025000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C60026000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C60027000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C60028000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C60029000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C6002A000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C6002B000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C6002C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C6002D000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C6002E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C6002F000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C60032000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C60033000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C60034000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C60035000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C60036000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C60037000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C60038000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C60039000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C6003A000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C6003B000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C6003C000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C6003D000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C6003E000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C6003F000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C60040000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C60041000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C60042000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C60043000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C60044000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C60045000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C60046000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C6004B000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C6004C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C6004D000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C6004E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C6004F000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C60050000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C60051000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C60052000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C60053000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C60054000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C60055000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C60056000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C60057000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C60058000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C60059000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C6005A000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C6005B000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C6005C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C6005D000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C6005E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C60064000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C60065000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C60066000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C60067000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C60068000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C60069000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C6006A000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C6006B000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C6006C000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C6006D000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C6006E000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C6006F000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C60070000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C60071000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C60072000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C60073000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C60074000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C60075000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C60076000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C60078000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C60079000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C6007A000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C6007B000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C6007C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C6007D000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C6007E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C6007F000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C60080000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C60081000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C60082000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C60083000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C60084000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C60085000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C60086000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C60087000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C60088000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C6008C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C6008D000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C6008E000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C6008F000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C60090000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C60091000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C60092000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C60093000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C60094000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C60095000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C60096000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C60097000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C60098000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C60099000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C6009A000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C6009B000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C6009C000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C600A0000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C600A1000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C600A2000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C600A3000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C600A4000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C600A5000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C600A6000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C600A7000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C600A8000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C600A9000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C600AA000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C600AB000800" + }, + { + "TYPE": "ShopItem", + "UNK": "C600AC000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C600AD000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C600AE000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C600AF000700" + }, + { + "TYPE": "ShopItem", + "UNK": "C600B0000700" + } +] \ No newline at end of file diff --git a/text/jsons/t_status.json b/text/jsons/t_status.json new file mode 100644 index 0000000..546719d --- /dev/null +++ b/text/jsons/t_status.json @@ -0,0 +1,618 @@ +[ + { + "TYPE": "growth", + "UNK": "0000000053020080ED423800A470B5403100B81E9D4032001F85A34032001F85A3401C00CDCCCC3D1200CDCCCC3D3A000000003F070000000000" + }, + { + "TYPE": "growth", + "UNK": "01000000C7010000B44232001F85A34029001F8583403B00CDCCBC403800A470B5401D00CDCCCC3D1100CDCCCC3D37000000003F050000000000" + }, + { + "TYPE": "growth", + "UNK": "02000000CC01CDCCB8422C00E17A8C402800D7A380403C0014AEBF403B00CDCCBC401700CDCCCC3D0F00CDCCCC3D35000000003F050000000000" + }, + { + "TYPE": "growth", + "UNK": "030000003A02AE47E5423B00CDCCBC403300CDCCA4402B009A9989402B009A9989401800CDCCCC3D1000CDCCCC3D33000000003F060000000000" + }, + { + "TYPE": "growth", + "UNK": "04000000FE01AE47CC423300CDCCA4403000713D9A403300CDCCA4403100B81E9D401D00CDCCCC3D0E00CDCCCC3D31000000003F050000000000" + }, + { + "TYPE": "growth", + "UNK": "05000000B8019A19B142270048E17A402A00666686403E008FC2C5403A001F85BB401900CDCCCC3D0E00CDCCCC3D32000000003F040000000000" + }, + { + "TYPE": "growth", + "UNK": "060000000D028FC2D04235009A99B1402C00E17A8C403900713DBA403900713DBA401800CDCCCC3D1200CDCCCC3D38000000003F060000000000" + }, + { + "TYPE": "growth", + "UNK": "07000000B301D7A3AA4234000000B0402B009A9989402C00E17A8C402A00666686401C00CDCCCC3D1400CDCCCC3D3C000000003F080000000000" + }, + { + "TYPE": "growth", + "UNK": "080000008A02C33502433900713DBA403A001F85BB402A006666864029001F8583401A00CDCCCC3D1100CDCCCC3D34000000003F060000000000" + }, + { + "TYPE": "growth", + "UNK": "090000009A01713DA3423A001F85BB403C0014AEBF403000713D9A403C0014AEBF401700CDCCCC3D0D00CDCCCC3D30000000003F060000000000" + }, + { + "TYPE": "growth", + "UNK": "0A00000012020080D442360048E1B24032001F85A3403A001F85BB403300CDCCA4401E00CDCCCC3D1000CDCCCC3D39000000003F060000000000" + }, + { + "TYPE": "growth", + "UNK": "0B00000058020000F0423C0014AEBF403900713DBA403800A470B5403700F628B4401B00CDCCCC3D1300CDCCCC3D3B000000003F070000000000" + }, + { + "TYPE": "growth", + "UNK": "0C00000049020080E8423700F628B4403800A470B5403100B81E9D402C00E17A8C401900CDCCCC3D1300CDCCCC3D36000000003F070000000000" + }, + { + "TYPE": "status", + "STRING1": "ply000", + "STRING2": "C_PLY000", + "STRING3": "ply000", + "UNK0": [ + 1.0, + 1.625, + 0.5 + ], + "UNK1": "000000000000c0400100010000010000000000000000000000000000000000000000000000000000000000000000000064646464646464646464646464646464646464646464640064006400640000000000000000000000000000000000803f0000803f3000", + "STRINGS": [ + "0", + "0" + ] + }, + { + "TYPE": "status", + "STRING1": "ply001", + "STRING2": "C_PLY001", + "STRING3": "ply001", + "UNK0": [ + 1.0, + 1.5750000476837158, + 0.5 + ], + "UNK1": "000000000000c0400100010001010000000000000000000000000000000000000000000000000000000000000000000064646464646464646464646464646464646464646464640064006400640000000000000000000000000000000000803f0000803f3000", + "STRINGS": [ + "0", + "0" + ] + }, + { + "TYPE": "status", + "STRING1": "ply002", + "STRING2": "C_PLY002", + "STRING3": "ply002", + "UNK0": [ + 1.0, + 1.600000023841858, + 0.5 + ], + "UNK1": "000000000000c0400100010000010000000000000000000000000000000000000000000000000000000000000000000064646464646464646464646464646464646464646464640064006400640000000000000000000000000000000000803f0000803f3000", + "STRINGS": [ + "0", + "0" + ] + }, + { + "TYPE": "status", + "STRING1": "ply003", + "STRING2": "C_PLY003", + "STRING3": "ply003", + "UNK0": [ + 1.0, + 1.625, + 0.5 + ], + "UNK1": "000000000000c0400100010001010000000000000000000000000000000000000000000000000000000000000000000064646464646464646464646464646464646464646464640064006400640000000000000000000000000000000000803f0000803f3000", + "STRINGS": [ + "0", + "0" + ] + }, + { + "TYPE": "status", + "STRING1": "ply004", + "STRING2": "C_PLY004", + "STRING3": "ply004", + "UNK0": [ + 1.0, + 1.75, + 0.5 + ], + "UNK1": "000000000000c0400100010000010000000000000000000000000000000000000000000000000000000000000000000064646464646464646464646464646464646464646464640064006400640000000000000000000000000000000000803f0000803f3000", + "STRINGS": [ + "0", + "0" + ] + }, + { + "TYPE": "status", + "STRING1": "ply005", + "STRING2": "C_PLY005", + "STRING3": "ply005", + "UNK0": [ + 1.0, + 1.625, + 0.5 + ], + "UNK1": "000000000000c0400100010001010000000000000000000000000000000000000000000000000000000000000000000064646464646464646464646464646464646464646464640064006400640000000000000000000000000000000000803f0000803f3000", + "STRINGS": [ + "0", + "0" + ] + }, + { + "TYPE": "status", + "STRING1": "ply006", + "STRING2": "C_PLY006", + "STRING3": "ply006", + "UNK0": [ + 1.0, + 1.774999976158142, + 0.5 + ], + "UNK1": "000000000000c0400100010000010000000000000000000000000000000000000000000000000000000000000000000064646464646464646464646464646464646464646464640064006400640000000000000000000000000000000000803f0000803f3000", + "STRINGS": [ + "0", + "0" + ] + }, + { + "TYPE": "status", + "STRING1": "ply007", + "STRING2": "C_PLY007", + "STRING3": "ply007", + "UNK0": [ + 1.0, + 1.524999976158142, + 0.5 + ], + "UNK1": "000000000000c0400100010001010000000000000000000000000000000000000000000000000000000000000000000064646464646464646464646464646464646464646464640064006400640000000000000000000000000000000000803f0000803f3000", + "STRINGS": [ + "0", + "0" + ] + }, + { + "TYPE": "status", + "STRING1": "ply008", + "STRING2": "C_PLY008", + "STRING3": "ply008", + "UNK0": [ + 1.0, + 1.8250000476837158, + 0.5 + ], + "UNK1": "000000000000c0400100010000010000000000000000000000000000000000000000000000000000000000000000000064646464646464646464646464646464646464646464640064006400640000000000000000000000000000000000803f0000803f3000", + "STRINGS": [ + "0", + "0" + ] + }, + { + "TYPE": "status", + "STRING1": "ply009", + "STRING2": "C_PLY009", + "STRING3": "ply009", + "UNK0": [ + 1.0, + 1.4500000476837158, + 0.5 + ], + "UNK1": "000000000000c0400100010001010000000000000000000000000000000000000000000000000000000000000000000064646464646464646464646464646464646464646464640064006400640000000000000000000000000000000000803f0000803f3000", + "STRINGS": [ + "0", + "0" + ] + }, + { + "TYPE": "status", + "STRING1": "ply010", + "STRING2": "C_PLY010", + "STRING3": "ply010", + "UNK0": [ + 1.0, + 1.7999999523162842, + 0.5 + ], + "UNK1": "000000000000c0400100010000010000000000000000000000000000000000000000000000000000000000000000000064646464646464646464646464646464646464646464640064006400640000000000000000000000000000000000803f0000803f3000", + "STRINGS": [ + "0", + "0" + ] + }, + { + "TYPE": "status", + "STRING1": "ply011", + "STRING2": "C_NPC000", + "STRING3": "npc000", + "UNK0": [ + 1.0, + 1.6749999523162842, + 0.5 + ], + "UNK1": "000000000000c0400100010001010000000000000000000000000000000000000000000000000000000000000000000064646464646464646464646464646464646464646464640064006400640000000000000000000000000000000000803f0000803f3000", + "STRINGS": [ + "0", + "0" + ] + }, + { + "TYPE": "status", + "STRING1": "ply012", + "STRING2": "C_NPC002", + "STRING3": "npc002", + "UNK0": [ + 1.0, + 1.600000023841858, + 0.5 + ], + "UNK1": "000000000000c0400100010001010000000000000000000000000000000000000000000000000000000000000000000064646464646464646464646464646464646464646464640064006400640000000000000000000000000000000000803f0000803f3000", + "STRINGS": [ + "0", + "0" + ] + }, + { + "TYPE": "status", + "STRING1": "npc051", + "STRING2": "C_NPC051", + "STRING3": "npc051", + "UNK0": [ + 1.0, + 2.0, + 0.25 + ], + "UNK1": "000000000000c0400100010000010000000000000000000000000000000000000000000000000000000000000000000064646464646464646464646464646464646464646464640064006400640000000000000000000000000000000000803f0000803f3000", + "STRINGS": [ + "0", + "0" + ] + }, + { + "TYPE": "status", + "STRING1": "npc600", + "STRING2": "C_NPC600", + "STRING3": "npc600", + "UNK0": [ + 1.0, + 4.0, + 2.0 + ], + "UNK1": "000000000000c0400100010000010000000000000000000000000000000000000000000000000000000000000000000064646464646464646464646464646464646464646464640064006400640000000000000000000000000000000000803f0000803f3000", + "STRINGS": [ + "0", + "0" + ] + }, + { + "TYPE": "status", + "STRING1": "ply011a", + "STRING2": "C_NPC000", + "STRING3": "npc000", + "UNK0": [ + 1.0, + 1.6749999523162842, + 0.5 + ], + "UNK1": "000000000000c040010001000131f64a0000f64a0000f401f401c800c800ee02670258025302240063003c00070000006464646464646400000000000000000000000000000032000a000a000a0000000000000000000f27000f27000000803f0000803f4d45475500", + "STRINGS": [ + "Instructor Sara", + "Class VII's homeroom teacher.\nWields both a blade and gun,\noverwhelming foes with her\nunrelenting assault." + ] + }, + { + "TYPE": "status", + "STRING1": "ply009a", + "STRING2": "C_PLY009", + "STRING3": "ply009", + "UNK0": [ + 1.0, + 1.4500000476837158, + 0.5 + ], + "UNK1": "000000000000c04002000100011e444800004448000012021202c800c80077027b020e013101210014005a000800f301646464646464641414141414141400141400141400143200320032000a0000000000000000000f27000f27000000803f0000803f4d454700", + "STRINGS": [ + "Millium", + "A mysterious girl. Gives\norders to the silver combat\npuppet with her, overpowering\nfoes with powerful strikes." + ] + }, + { + "TYPE": "status", + "STRING1": "ply003a", + "STRING2": "C_PLY003", + "STRING3": "ply003", + "UNK0": [ + 1.0, + 1.625, + 0.5 + ], + "UNK1": "000000000000c04002000100011f7a1f00007a1f000000020002c800c8000c02ef01d500d5001a001200440009007c01646464646464643232323232323232323232323200323200320032000a0000000000000000000f27000f27000000803f0000803f4d4500", + "STRINGS": [ + "Laura", + "A swordsman of the Arseid\nschool. Wields an imposing\ntwo-handed sword, but seems\nto be out of sync with Fie." + ] + }, + { + "TYPE": "status", + "STRING1": "ply007a", + "STRING2": "C_PLY007", + "STRING3": "ply007", + "UNK0": [ + 1.0, + 1.524999976158142, + 0.5 + ], + "UNK1": "000000000000c04001000100011f021800000218000012021202c800c800fa01cf01d800d1001e0016004d000b007c0164646464646464323232323232323232323232320032320032000a00320000000000000000000f27000f27000000803f0000803f4d4500", + "STRINGS": [ + "Fie", + "A petite former jaeger.\nHer agility is her greatest \nstrength, but she doesn't get\nalong very well with Laura." + ] + }, + { + "TYPE": "status", + "STRING1": "ply000a", + "STRING2": "C_PLY000", + "STRING3": "ply000", + "UNK0": [ + 1.0, + 1.625, + 0.5 + ], + "UNK1": "000000000000c040010001000027f4290000f429000044024402c800c80030020d021b011b011f00150054000b007c0164646464646464323232323232323232323232320032320064006400640000000000000000000f27000f27000000803f0000803f4d4500", + "STRINGS": [ + "Rean", + "Practitioner of the Eight\nLeaves One Blade school,\nwhich he studied under the\nSword Hermit, Yun Ka-fai." + ] + }, + { + "TYPE": "status", + "STRING1": "ply004a", + "STRING2": "C_PLY004", + "STRING3": "ply004", + "UNK0": [ + 1.0, + 1.75, + 0.5 + ], + "UNK1": "000000000000c0400600030000279e2400009e2400003e023e02c800c8001802090224014501200011004a0008007c0164646464646464323232323232323232323232320032640064006400640000000000000000000f27000f27000000803f0000803f4d4500", + "STRINGS": [ + "Machias", + "Class VII's vice president.\nUses special bullets loaded\ninto his shotgun to break\nthrough enemy ranks." + ] + }, + { + "TYPE": "status", + "STRING1": "ply002a", + "STRING2": "C_PLY002", + "STRING3": "ply002", + "UNK0": [ + 1.0, + 1.600000023841858, + 0.5 + ], + "UNK1": "000000000000c040040003000029c3150000c315000065026502c8000000620280024b0247021a0012004d000b00900164646464646464323232323232323232323232320032320032003200640000000000000000000f27000f27000000803f0000803f4d4500", + "STRINGS": [ + "Elliot", + "A red-headed boy who loves\nmusic. The melodies he plays\non his orbal staff heal allies\nand disrupt enemy attacks." + ] + }, + { + "TYPE": "status", + "STRING1": "ply004b", + "STRING2": "C_PLY004", + "STRING3": "ply004", + "UNK0": [ + 1.0, + 1.75, + 0.5 + ], + "UNK1": "000000000000c040060003000029d3170000d317000044024402c800000086027702be01b3012000110049000b00900164646464646464323232323232323232323232320032320032003200320000000000000000000f27000f27000000803f0000803f4d4500", + "STRINGS": [ + "Machias", + "Class VII's vice president.\nUses special bullets loaded\ninto his shotgun to break\nthrough enemy ranks." + ] + }, + { + "TYPE": "status", + "STRING1": "ply006a", + "STRING2": "C_PLY006", + "STRING3": "ply006", + "UNK0": [ + 1.0, + 1.774999976158142, + 0.5 + ], + "UNK1": "000000000000c040010001000029671700006717000095029502c800000097026202420242021b00150050000c00900164646464646464323232323232323232323232320032320032003200320000000000000000000f27000f27000000803f0000803f4d4500", + "STRINGS": [ + "Jusis", + "Second son of Duke Albarea.\nHis traditional court fencing\nskills guide his allies to\nvictory." + ] + }, + { + "TYPE": "status", + "STRING1": "ply008a", + "STRING2": "C_PLY008", + "STRING3": "ply008", + "UNK0": [ + 1.0, + 1.8250000476837158, + 0.5 + ], + "UNK1": "000000000000c040030001000029b91b0000b91b0000ea01ea01c8000000a602a80291018d011d0014004c000c0090016464646464646432323232323232323232323232003232000a003200320000000000000000000f27000f27000000803f0000803f4d4500", + "STRINGS": [ + "Gaius", + "An exchange student from the\nNord Highlands. Skewers foes\nwith his cross-shaped spear." + ] + }, + { + "TYPE": "status", + "STRING1": "ply001a", + "STRING2": "C_PLY001", + "STRING3": "ply001", + "UNK0": [ + 1.0, + 1.5750000476837158, + 0.5 + ], + "UNK1": "000000000000c040060001000029ff140000ff1400005c025c02c8000000840287021b013b02200014004f000b00900164646464646464323232323232323232323232320032320032003200320000000000000000000f27000f27000000803f0000803f4d4500", + "STRINGS": [ + "Alisa", + "Daughter of the Reinford \nfamily. Her orbal bow allows\nher to provide her allies with\npowerful support from afar." + ] + }, + { + "TYPE": "status", + "STRING1": "ply003b", + "STRING2": "C_PLY003", + "STRING3": "ply003", + "UNK0": [ + 1.0, + 1.625, + 0.5 + ], + "UNK1": "000000000000c0400200010000291a1900001a1900000d020d02c8000000ab02b802ce0096011b0013004b000c009001646464646464643232323232323232323232323200323200320032000a0000000000000000000f27000f27000000803f0000803f4d4500", + "STRINGS": [ + "Laura", + "A swordsman of the Arseid\nschool. Wields an imposing\ntwo-handed sword and tears\nthrough enemy ranks." + ] + }, + { + "TYPE": "status", + "STRING1": "ply005a", + "STRING2": "C_PLY005", + "STRING3": "ply005", + "UNK0": [ + 1.0, + 1.625, + 0.5 + ], + "UNK1": "000000000000c0400400030000295414000054140000d102d102c8000000450259022801a8021c0011004a000a00900164646464646464323232323232323232323232320032640032003200320000000000000000000f27000f27000000803f0000803f4d4500", + "STRINGS": [ + "Emma", + "Class VII's president with the\nschool's top marks. Uses\npowerful arts while supporting\nher allies with her staff." + ] + }, + { + "TYPE": "status", + "STRING1": "ply007b", + "STRING2": "C_PLY007", + "STRING3": "ply007", + "UNK0": [ + 1.0, + 1.524999976158142, + 0.5 + ], + "UNK1": "000000000000c040010001000029391400003914000012021202c800000095025e02d200f5011f00170059000d00900164646464646464323232323232323232323232320032320032000a00320000000000000000000f27000f27000000803f0000803f4d4500", + "STRINGS": [ + "Fie", + "A petite former jaeger. Her\nagility and skill with her\ngunswords let her swiftly\napproach and eliminate foes." + ] + }, + { + "TYPE": "status", + "STRING1": "ply011b", + "STRING2": "C_NPC000", + "STRING3": "npc000", + "UNK0": [ + 1.0, + 1.6749999523162842, + 0.5 + ], + "UNK1": "000000000000c0400100010001376a7200006a720000f401f401c8006400ab0338035802530224001900550007003e086464646464646414141432321414003214001414003232000a000a000a0000000000000000000f27000f27000000803f0000803f4d454700", + "STRINGS": [ + "Instructor Sara", + "Class VII's homeroom teacher.\nA former bracer known as the\n'Purple Lightning.' Dominates\nenemies with her blade and gun." + ] + }, + { + "TYPE": "status", + "STRING1": "ply012a", + "STRING2": "C_NPC002", + "STRING3": "npc002", + "UNK0": [ + 1.0, + 1.600000023841858, + 0.5 + ], + "UNK1": "000000000000c0400100010001386653000066530000f401f401c800b4008b03390358025802280014005a0007000a086464646464646432141414321414001432003214001432000a000a000a0000000000000000000f27000f27000000803f0000803f4d454700", + "STRINGS": [ + "Angelica", + "Daughter of Marquis Rogner.\nHer carefree exterior belies\nher bone-shattering punches\nand kicks." + ] + }, + { + "TYPE": "weapon_attribute", + "UNK": "000019000000CDCC4C3E0000803F0000C03F" + }, + { + "TYPE": "weapon_attribute", + "UNK": "010000001900000000000000003F00000041" + }, + { + "TYPE": "weapon_attribute", + "UNK": "020003030505000000000000003F00008040" + }, + { + "TYPE": "weapon_attribute", + "UNK": "03000F00000F0000003F0000C03F00004040" + }, + { + "TYPE": "weapon_attribute", + "UNK": "040000000F0ACDCC4C3E0000803F0000C040" + }, + { + "TYPE": "weapon_attribute", + "UNK": "050003050503000000000000003F00008040" + }, + { + "TYPE": "weapon_attribute", + "UNK": "06000F0A0000CDCC4C3E0000803F0000C03F" + }, + { + "TYPE": "weapon_attribute", + "UNK": "07000A0A0A00CDCC4C3E0000803F00000041" + }, + { + "TYPE": "weapon_attribute", + "UNK": "0800001900000000003F0000004000008040" + }, + { + "TYPE": "weapon_attribute", + "UNK": "0900000000190000003F0000C03F00008040" + }, + { + "TYPE": "weapon_attribute", + "UNK": "0A00000F0F00CDCC4C3E0000003F00000041" + }, + { + "TYPE": "weapon_attribute", + "UNK": "0B000F0F0F00CDCC4C3E0000803F00000041" + }, + { + "TYPE": "weapon_attribute", + "UNK": "0C00000F000FCDCC4C3E0000003F0000C03F" + }, + { + "TYPE": "status_revise", + "UNK": "0000640064006400640064006400" + }, + { + "TYPE": "status_revise", + "UNK": "0100640064006400640064006400" + }, + { + "TYPE": "status_revise", + "UNK": "020055005A005A00640064001900" + }, + { + "TYPE": "status_revise", + "UNK": "0300460046004600460046001400" + } +] \ No newline at end of file diff --git a/text/jsons/t_text.json b/text/jsons/t_text.json new file mode 100644 index 0000000..feba592 --- /dev/null +++ b/text/jsons/t_text.json @@ -0,0 +1,2797 @@ +[ + { + "TYPE": "TextTableData", + "ID": 0, + "STRING": "Talk to" + }, + { + "TYPE": "TextTableData", + "ID": 1, + "STRING": "#160IRide Horse" + }, + { + "TYPE": "TextTableData", + "ID": 2, + "STRING": "#161IDismount" + }, + { + "TYPE": "TextTableData", + "ID": 3, + "STRING": "#166IDash" + }, + { + "TYPE": "TextTableData", + "ID": 4, + "STRING": "#160IClimb" + }, + { + "TYPE": "TextTableData", + "ID": 5, + "STRING": "#160IClimb Down" + }, + { + "TYPE": "TextTableData", + "ID": 6, + "STRING": "#160IOpen" + }, + { + "TYPE": "TextTableData", + "ID": 7, + "STRING": "#160IPick Up" + }, + { + "TYPE": "TextTableData", + "ID": 8, + "STRING": "#160IMove" + }, + { + "TYPE": "TextTableData", + "ID": 9, + "STRING": "#160IFish" + }, + { + "TYPE": "TextTableData", + "ID": 10, + "STRING": "#160IAttack" + }, + { + "TYPE": "TextTableData", + "ID": 11, + "STRING": "Characters you can meet" + }, + { + "TYPE": "TextTableData", + "ID": 12, + "STRING": "#162IRide Horse" + }, + { + "TYPE": "TextTableData", + "ID": 13, + "STRING": "#163IHide Icons" + }, + { + "TYPE": "TextTableData", + "ID": 14, + "STRING": "#162I: Investigate" + }, + { + "TYPE": "TextTableData", + "ID": 17, + "STRING": "Yes" + }, + { + "TYPE": "TextTableData", + "ID": 18, + "STRING": "No" + }, + { + "TYPE": "TextTableData", + "ID": 19, + "STRING": "#176IScroll #177ITurn camera #164I#166IZoom" + }, + { + "TYPE": "TextTableData", + "ID": 20, + "STRING": "Alisa R" + }, + { + "TYPE": "TextTableData", + "ID": 21, + "STRING": "#144ICurrent Location" + }, + { + "TYPE": "TextTableData", + "ID": 22, + "STRING": "#159IOrbment Charging Station" + }, + { + "TYPE": "TextTableData", + "ID": 23, + "STRING": "#149ITreasure Chest" + }, + { + "TYPE": "TextTableData", + "ID": 24, + "STRING": "#147IQuest Monster" + }, + { + "TYPE": "TextTableData", + "ID": 25, + "STRING": "#148IQuest Event" + }, + { + "TYPE": "TextTableData", + "ID": 26, + "STRING": "#154IStory Event" + }, + { + "TYPE": "TextTableData", + "ID": 27, + "STRING": "#155IBonding Event" + }, + { + "TYPE": "TextTableData", + "ID": 28, + "STRING": "#156IQuest Event" + }, + { + "TYPE": "TextTableData", + "ID": 15, + "STRING": "#160ISkip Event" + }, + { + "TYPE": "TextTableData", + "ID": 16, + "STRING": "- PAUSE -" + }, + { + "TYPE": "TextTableData", + "ID": 29, + "STRING": "Change equipment." + }, + { + "TYPE": "TextTableData", + "ID": 30, + "STRING": "Change quartz and use arts." + }, + { + "TYPE": "TextTableData", + "ID": 31, + "STRING": "Use items." + }, + { + "TYPE": "TextTableData", + "ID": 32, + "STRING": "Check status and crafts." + }, + { + "TYPE": "TextTableData", + "ID": 33, + "STRING": "Check combat links." + }, + { + "TYPE": "TextTableData", + "ID": 34, + "STRING": "Adjust party order and formation, and set links." + }, + { + "TYPE": "TextTableData", + "ID": 35, + "STRING": "View the contents of various notebooks." + }, + { + "TYPE": "TextTableData", + "ID": 36, + "STRING": "Save and load data, and alter the game's settings." + }, + { + "TYPE": "TextTableData", + "ID": 37, + "STRING": "Save data." + }, + { + "TYPE": "TextTableData", + "ID": 38, + "STRING": "Load data." + }, + { + "TYPE": "TextTableData", + "ID": 39, + "STRING": "Delete save data." + }, + { + "TYPE": "TextTableData", + "ID": 40, + "STRING": "Share saved data with the PlayStation㍻Vita version\nusing the PlayStation㊥Network." + }, + { + "TYPE": "TextTableData", + "ID": 41, + "STRING": "Share saved data with the PlayStation㍻3 version\nusing the PlayStation㊥Network." + }, + { + "TYPE": "TextTableData", + "ID": 42, + "STRING": "Change settings." + }, + { + "TYPE": "TextTableData", + "ID": 43, + "STRING": "Return to title screen." + }, + { + "TYPE": "TextTableData", + "ID": 44, + "STRING": "Return to title screen?\n(Any unsaved progress will be lost.)" + }, + { + "TYPE": "TextTableData", + "ID": 45, + "STRING": "View the achievements." + }, + { + "TYPE": "TextTableData", + "ID": 46, + "STRING": "Will upload current progress to the PlayStation㊥Network." + }, + { + "TYPE": "TextTableData", + "ID": 47, + "STRING": "Will download progress from the PlayStation㍻Vita version." + }, + { + "TYPE": "TextTableData", + "ID": 48, + "STRING": "Will download progress from the PlayStation㍻3 version." + }, + { + "TYPE": "TextTableData", + "ID": 49, + "STRING": "Adjust BGM volume." + }, + { + "TYPE": "TextTableData", + "ID": 50, + "STRING": "Adjust SE volume." + }, + { + "TYPE": "TextTableData", + "ID": 51, + "STRING": "Adjust voice volume." + }, + { + "TYPE": "TextTableData", + "ID": 52, + "STRING": "Change vertical camera settings." + }, + { + "TYPE": "TextTableData", + "ID": 53, + "STRING": "Change horizontal camera settings." + }, + { + "TYPE": "TextTableData", + "ID": 54, + "STRING": "Change what the ZL button does." + }, + { + "TYPE": "TextTableData", + "ID": 55, + "STRING": "Change what the ZR button does." + }, + { + "TYPE": "TextTableData", + "ID": 56, + "STRING": "Change minimap display." + }, + { + "TYPE": "TextTableData", + "ID": 57, + "STRING": "Turn controller vibration on or off.\n※ Vibration needs to be enabled in system settings first." + }, + { + "TYPE": "TextTableData", + "ID": 58, + "STRING": "Configure button settings." + }, + { + "TYPE": "TextTableData", + "ID": 59, + "STRING": "Turn on screen softening.\n※ This function only works when playing in TV mode." + }, + { + "TYPE": "TextTableData", + "ID": 60, + "STRING": "Adjust display settings." + }, + { + "TYPE": "TextTableData", + "ID": 61, + "STRING": "Change what the up directional button does." + }, + { + "TYPE": "TextTableData", + "ID": 62, + "STRING": "Change what the down directional button does." + }, + { + "TYPE": "TextTableData", + "ID": 63, + "STRING": "Change what the left directional button does." + }, + { + "TYPE": "TextTableData", + "ID": 64, + "STRING": "Change what the right directional button does." + }, + { + "TYPE": "TextTableData", + "ID": 65, + "STRING": "Change what the L button does." + }, + { + "TYPE": "TextTableData", + "ID": 66, + "STRING": "Change what the L button does." + }, + { + "TYPE": "TextTableData", + "ID": 67, + "STRING": "Remove" + }, + { + "TYPE": "TextTableData", + "ID": 68, + "STRING": "Remove" + }, + { + "TYPE": "TextTableData", + "ID": 69, + "STRING": "Equips a Weapon" + }, + { + "TYPE": "TextTableData", + "ID": 70, + "STRING": "Equips Clothing" + }, + { + "TYPE": "TextTableData", + "ID": 71, + "STRING": "Equips Footwear" + }, + { + "TYPE": "TextTableData", + "ID": 72, + "STRING": "Equips an Accessory" + }, + { + "TYPE": "TextTableData", + "ID": 73, + "STRING": "Equips a Costume" + }, + { + "TYPE": "TextTableData", + "ID": 74, + "STRING": "Equips an Attachment" + }, + { + "TYPE": "TextTableData", + "ID": 75, + "STRING": "#1CCannot equip now." + }, + { + "TYPE": "TextTableData", + "ID": 76, + "STRING": "×%2d" + }, + { + "TYPE": "TextTableData", + "ID": 77, + "STRING": "#1CNothing happened." + }, + { + "TYPE": "TextTableData", + "ID": 78, + "STRING": "#2C%s#1C x %d was thrown away." + }, + { + "TYPE": "TextTableData", + "ID": 79, + "STRING": "#1CIt had no effect." + }, + { + "TYPE": "TextTableData", + "ID": 80, + "STRING": "#1C%s recovered #2C%d#1C HP." + }, + { + "TYPE": "TextTableData", + "ID": 81, + "STRING": "#1C%s charged #2C%d#1C EP." + }, + { + "TYPE": "TextTableData", + "ID": 82, + "STRING": "#1C%s recovered #2C%d#1C CP." + }, + { + "TYPE": "TextTableData", + "ID": 83, + "STRING": "#1C%s is near death." + }, + { + "TYPE": "TextTableData", + "ID": 84, + "STRING": " will be used." + }, + { + "TYPE": "TextTableData", + "ID": 85, + "STRING": " has already been used." + }, + { + "TYPE": "TextTableData", + "ID": 86, + "STRING": "Use arts." + }, + { + "TYPE": "TextTableData", + "ID": 87, + "STRING": "Set quartz." + }, + { + "TYPE": "TextTableData", + "ID": 88, + "STRING": "#1CThis master quartz is already equipped." + }, + { + "TYPE": "TextTableData", + "ID": 89, + "STRING": "#1C%s is already using this master quartz.\nExchange master quartz?" + }, + { + "TYPE": "TextTableData", + "ID": 90, + "STRING": "#55INot set" + }, + { + "TYPE": "TextTableData", + "ID": 91, + "STRING": "Not set" + }, + { + "TYPE": "TextTableData", + "ID": 92, + "STRING": "#72IUnopened" + }, + { + "TYPE": "TextTableData", + "ID": 93, + "STRING": "#1CThis slot is unopened." + }, + { + "TYPE": "TextTableData", + "ID": 94, + "STRING": "#1CAutomatically set quartz in all empty slots?" + }, + { + "TYPE": "TextTableData", + "ID": 95, + "STRING": "#1CRemove all quartz?" + }, + { + "TYPE": "TextTableData", + "ID": 96, + "STRING": "#175I: Change Party Order" + }, + { + "TYPE": "TextTableData", + "ID": 97, + "STRING": "#168I: Save Menu" + }, + { + "TYPE": "TextTableData", + "ID": 98, + "STRING": "#160I: Switch" + }, + { + "TYPE": "TextTableData", + "ID": 99, + "STRING": "#162I: Change Leader" + }, + { + "TYPE": "TextTableData", + "ID": 100, + "STRING": "#177I: Rotate Character #180I#182I: Enlarge/Shrink" + }, + { + "TYPE": "TextTableData", + "ID": 101, + "STRING": "#177I: Rotate Character #162I+#164I#166I: Enlarge/Shrink" + }, + { + "TYPE": "TextTableData", + "ID": 102, + "STRING": "#162I: View Arts #168I: Auto-Equip #170I: Remove All" + }, + { + "TYPE": "TextTableData", + "ID": 103, + "STRING": "#160I: Move" + }, + { + "TYPE": "TextTableData", + "ID": 104, + "STRING": "#162I: Set Link" + }, + { + "TYPE": "TextTableData", + "ID": 105, + "STRING": "#162I: Sever Link" + }, + { + "TYPE": "TextTableData", + "ID": 106, + "STRING": "Use" + }, + { + "TYPE": "TextTableData", + "ID": 107, + "STRING": "Toss" + }, + { + "TYPE": "TextTableData", + "ID": 108, + "STRING": "????" + }, + { + "TYPE": "TextTableData", + "ID": 109, + "STRING": "★????" + }, + { + "TYPE": "TextTableData", + "ID": 110, + "STRING": "#1CClose the menu and begin the practical exam?" + }, + { + "TYPE": "TextTableData", + "ID": 111, + "STRING": "#1CYou cannot save right now." + }, + { + "TYPE": "TextTableData", + "ID": 112, + "STRING": "#1CYou cannot form a party consisting only of K.O.ed members." + }, + { + "TYPE": "TextTableData", + "ID": 113, + "STRING": "#1CBuy #2C%s#1C x %d#1C for #579c%d mira#1C?" + }, + { + "TYPE": "TextTableData", + "ID": 114, + "STRING": "#1CInsufficient mira." + }, + { + "TYPE": "TextTableData", + "ID": 115, + "STRING": "#1CCannot equip." + }, + { + "TYPE": "TextTableData", + "ID": 116, + "STRING": "#1CSell #2C%s#1C x %d#1C for #579c%d mira#1C?" + }, + { + "TYPE": "TextTableData", + "ID": 117, + "STRING": "#1CCannot sell." + }, + { + "TYPE": "TextTableData", + "ID": 118, + "STRING": "#1CInsufficient sepith." + }, + { + "TYPE": "TextTableData", + "ID": 119, + "STRING": "#1CInsufficient points." + }, + { + "TYPE": "TextTableData", + "ID": 120, + "STRING": "#1CExchange #2C%s#1C x %d \nfor #579c%d points#1C?" + }, + { + "TYPE": "TextTableData", + "ID": 121, + "STRING": "#1CMake #2C%s#1C x %d \nfor #579c%d mira #1C?" + }, + { + "TYPE": "TextTableData", + "ID": 122, + "STRING": "#1CInsufficient items." + }, + { + "TYPE": "TextTableData", + "ID": 123, + "STRING": "#1CIt will cost #579c%d mira#1C to spend the night.\nRest here?" + }, + { + "TYPE": "TextTableData", + "ID": 124, + "STRING": "#1CThis item is sold out." + }, + { + "TYPE": "TextTableData", + "ID": 125, + "STRING": "You cannot carry any more #2C%s#1C." + }, + { + "TYPE": "TextTableData", + "ID": 126, + "STRING": "#1CYou have too many of this item in your inventory\nto unequip it." + }, + { + "TYPE": "TextTableData", + "ID": 127, + "STRING": "#2C%s#1C x %d will be received in exchange." + }, + { + "TYPE": "TextTableData", + "ID": 128, + "STRING": "#1CSynthesize #2C%s#1C?" + }, + { + "TYPE": "TextTableData", + "ID": 129, + "STRING": "#1CSynthesized #2C%s#1C." + }, + { + "TYPE": "TextTableData", + "ID": 130, + "STRING": "Buy Items" + }, + { + "TYPE": "TextTableData", + "ID": 131, + "STRING": "Sell Items" + }, + { + "TYPE": "TextTableData", + "ID": 132, + "STRING": "Exchange Sepith for Mira" + }, + { + "TYPE": "TextTableData", + "ID": 133, + "STRING": "Change equipment." + }, + { + "TYPE": "TextTableData", + "ID": 134, + "STRING": "Synthesize Quartz" + }, + { + "TYPE": "TextTableData", + "ID": 135, + "STRING": "Open Slots" + }, + { + "TYPE": "TextTableData", + "ID": 136, + "STRING": "Buy Master Quartz" + }, + { + "TYPE": "TextTableData", + "ID": 137, + "STRING": "Buy ARCUS Covers" + }, + { + "TYPE": "TextTableData", + "ID": 138, + "STRING": "Set quartz." + }, + { + "TYPE": "TextTableData", + "ID": 139, + "STRING": "Customize Weapons" + }, + { + "TYPE": "TextTableData", + "ID": 140, + "STRING": "Rest and Recover" + }, + { + "TYPE": "TextTableData", + "ID": 141, + "STRING": "Exchange Items" + }, + { + "TYPE": "TextTableData", + "ID": 142, + "STRING": "Exchange Angler Points" + }, + { + "TYPE": "TextTableData", + "ID": 143, + "STRING": "End Transaction" + }, + { + "TYPE": "TextTableData", + "ID": 144, + "STRING": "#32IEarth Sepith" + }, + { + "TYPE": "TextTableData", + "ID": 145, + "STRING": "#33IWater Sepith" + }, + { + "TYPE": "TextTableData", + "ID": 146, + "STRING": "#34IFire Sepith" + }, + { + "TYPE": "TextTableData", + "ID": 147, + "STRING": "#35IWind Sepith" + }, + { + "TYPE": "TextTableData", + "ID": 148, + "STRING": "#36ITime Sepith" + }, + { + "TYPE": "TextTableData", + "ID": 149, + "STRING": "#37ISpace Sepith" + }, + { + "TYPE": "TextTableData", + "ID": 150, + "STRING": "#38IMirage Sepith" + }, + { + "TYPE": "TextTableData", + "ID": 151, + "STRING": "#39ISepith Mass" + }, + { + "TYPE": "TextTableData", + "ID": 152, + "STRING": "Total" + }, + { + "TYPE": "TextTableData", + "ID": 153, + "STRING": "Exchange" + }, + { + "TYPE": "TextTableData", + "ID": 154, + "STRING": "#1CSelect how many sepith to exchange for mira." + }, + { + "TYPE": "TextTableData", + "ID": 155, + "STRING": "#1CExchange this sepith for #579c%d mira#1C?" + }, + { + "TYPE": "TextTableData", + "ID": 156, + "STRING": "#94I = %3d mira" + }, + { + "TYPE": "TextTableData", + "ID": 157, + "STRING": "Already open" + }, + { + "TYPE": "TextTableData", + "ID": 158, + "STRING": "#72ICan be opened" + }, + { + "TYPE": "TextTableData", + "ID": 159, + "STRING": "#72I-------------" + }, + { + "TYPE": "TextTableData", + "ID": 160, + "STRING": "#1CThis slot has already been opened." + }, + { + "TYPE": "TextTableData", + "ID": 161, + "STRING": "#1CCannot be opened." + }, + { + "TYPE": "TextTableData", + "ID": 162, + "STRING": "#1COpen this slot?" + }, + { + "TYPE": "TextTableData", + "ID": 163, + "STRING": "Equip #2C%s#1C?" + }, + { + "TYPE": "TextTableData", + "ID": 164, + "STRING": "Unequip #2C%s#1C?" + }, + { + "TYPE": "TextTableData", + "ID": 165, + "STRING": "Buy #2C%s#1C for #579c%d mira#1C?\n※Can be equipped on all characters." + }, + { + "TYPE": "TextTableData", + "ID": 166, + "STRING": "Buy #2C%s#1C for #579c%d mira#1C?" + }, + { + "TYPE": "TextTableData", + "ID": 423, + "STRING": "#1CCustomize %s's weapon into\n#2C%s#1C for #579c%d mira#1C?" + }, + { + "TYPE": "TextTableData", + "ID": 424, + "STRING": "#1CCustomize which weapon?" + }, + { + "TYPE": "TextTableData", + "ID": 425, + "STRING": "Obtained #2C#%dI%s#0C x%d" + }, + { + "TYPE": "TextTableData", + "ID": 426, + "STRING": "#2C#%dI%s#0C x%d" + }, + { + "TYPE": "TextTableData", + "ID": 427, + "STRING": "0" + }, + { + "TYPE": "TextTableData", + "ID": 428, + "STRING": "#1CCostumes can be changed by selecting EQUIP in \nthe Camp Menu." + }, + { + "TYPE": "TextTableData", + "ID": 429, + "STRING": "#1CAttachments can be equipped by selecting\nEQUIP in the Camp Menu." + }, + { + "TYPE": "TextTableData", + "ID": 430, + "STRING": "#1CARCUS covers can be changed by selecting COVER\nin the shop menu of an orbal factory." + }, + { + "TYPE": "TextTableData", + "ID": 167, + "STRING": "#177I: Scroll through party" + }, + { + "TYPE": "TextTableData", + "ID": 168, + "STRING": "#162I: Change view #177I: Scroll through party" + }, + { + "TYPE": "TextTableData", + "ID": 169, + "STRING": "Exchange earth sepith for mira." + }, + { + "TYPE": "TextTableData", + "ID": 170, + "STRING": "Exchange water sepith for mira." + }, + { + "TYPE": "TextTableData", + "ID": 171, + "STRING": "Exchange fire sepith for mira." + }, + { + "TYPE": "TextTableData", + "ID": 172, + "STRING": "Exchange wind sepith for mira." + }, + { + "TYPE": "TextTableData", + "ID": 173, + "STRING": "Exchange time sepith for mira." + }, + { + "TYPE": "TextTableData", + "ID": 174, + "STRING": "Exchange space sepith for mira." + }, + { + "TYPE": "TextTableData", + "ID": 175, + "STRING": "Exchange mirage sepith for mira." + }, + { + "TYPE": "TextTableData", + "ID": 176, + "STRING": "Exchange sepith masses for mira." + }, + { + "TYPE": "TextTableData", + "ID": 177, + "STRING": "Exchange sepith for mira." + }, + { + "TYPE": "TextTableData", + "ID": 178, + "STRING": "Slot will be opened." + }, + { + "TYPE": "TextTableData", + "ID": 179, + "STRING": "This slot cannot be opened, as the orbal circuit\nleading to it is not connected." + }, + { + "TYPE": "TextTableData", + "ID": 180, + "STRING": "This slot has already been opened." + }, + { + "TYPE": "TextTableData", + "ID": 181, + "STRING": "#1CCheck all of the quests before continuing." + }, + { + "TYPE": "TextTableData", + "ID": 182, + "STRING": "[Viewed]" + }, + { + "TYPE": "TextTableData", + "ID": 183, + "STRING": "[Unread]" + }, + { + "TYPE": "TextTableData", + "ID": 184, + "STRING": "[Required]" + }, + { + "TYPE": "TextTableData", + "ID": 185, + "STRING": "#1CParty formation still needs changing." + }, + { + "TYPE": "TextTableData", + "ID": 186, + "STRING": "#1CFinalize party formation?" + }, + { + "TYPE": "TextTableData", + "ID": 187, + "STRING": "#1CYou cannot form a party consisting only of K.O.ed members." + }, + { + "TYPE": "TextTableData", + "ID": 238, + "STRING": "VOLUME" + }, + { + "TYPE": "TextTableData", + "ID": 239, + "STRING": "CAMERA SETTINGS" + }, + { + "TYPE": "TextTableData", + "ID": 240, + "STRING": "NOTEBOOK SHORTCUTS" + }, + { + "TYPE": "TextTableData", + "ID": 241, + "STRING": "MINIMAP" + }, + { + "TYPE": "TextTableData", + "ID": 242, + "STRING": "VIBRATION SETTINGS" + }, + { + "TYPE": "TextTableData", + "ID": 243, + "STRING": "BUTTON CONFIGURATIONS" + }, + { + "TYPE": "TextTableData", + "ID": 244, + "STRING": "TV MODE SETTINGS" + }, + { + "TYPE": "TextTableData", + "ID": 245, + "STRING": "Display Settings" + }, + { + "TYPE": "TextTableData", + "ID": 246, + "STRING": "BGM" + }, + { + "TYPE": "TextTableData", + "ID": 247, + "STRING": "Sound Effects" + }, + { + "TYPE": "TextTableData", + "ID": 248, + "STRING": "Voice" + }, + { + "TYPE": "TextTableData", + "ID": 249, + "STRING": "Vertical Camera" + }, + { + "TYPE": "TextTableData", + "ID": 250, + "STRING": "Horizontal Camera" + }, + { + "TYPE": "TextTableData", + "ID": 251, + "STRING": "ZL button" + }, + { + "TYPE": "TextTableData", + "ID": 252, + "STRING": "ZR button" + }, + { + "TYPE": "TextTableData", + "ID": 253, + "STRING": "Minimap Setting" + }, + { + "TYPE": "TextTableData", + "ID": 254, + "STRING": "Vibration Setting" + }, + { + "TYPE": "TextTableData", + "ID": 255, + "STRING": "Button Configurations" + }, + { + "TYPE": "TextTableData", + "ID": 256, + "STRING": "Anti-aliasing" + }, + { + "TYPE": "TextTableData", + "ID": 257, + "STRING": "Display Settings" + }, + { + "TYPE": "TextTableData", + "ID": 258, + "STRING": "D-Pad Up" + }, + { + "TYPE": "TextTableData", + "ID": 259, + "STRING": "D-Pad Down" + }, + { + "TYPE": "TextTableData", + "ID": 260, + "STRING": "D-Pad Left" + }, + { + "TYPE": "TextTableData", + "ID": 261, + "STRING": "D-Pad Right" + }, + { + "TYPE": "TextTableData", + "ID": 262, + "STRING": "L Button" + }, + { + "TYPE": "TextTableData", + "ID": 263, + "STRING": "L Button" + }, + { + "TYPE": "TextTableData", + "ID": 264, + "STRING": "Width" + }, + { + "TYPE": "TextTableData", + "ID": 265, + "STRING": "Height" + }, + { + "TYPE": "TextTableData", + "ID": 266, + "STRING": "Brightness" + }, + { + "TYPE": "TextTableData", + "ID": 267, + "STRING": "Return to default settings" + }, + { + "TYPE": "TextTableData", + "ID": 268, + "STRING": "#1CRevert display settings to default?" + }, + { + "TYPE": "TextTableData", + "ID": 269, + "STRING": "Normal" + }, + { + "TYPE": "TextTableData", + "ID": 270, + "STRING": "Inverted" + }, + { + "TYPE": "TextTableData", + "ID": 271, + "STRING": "Rotate" + }, + { + "TYPE": "TextTableData", + "ID": 272, + "STRING": "Fixed" + }, + { + "TYPE": "TextTableData", + "ID": 273, + "STRING": "On" + }, + { + "TYPE": "TextTableData", + "ID": 274, + "STRING": "Off" + }, + { + "TYPE": "TextTableData", + "ID": 275, + "STRING": "Main Notebook" + }, + { + "TYPE": "TextTableData", + "ID": 276, + "STRING": "Quest Notebook" + }, + { + "TYPE": "TextTableData", + "ID": 277, + "STRING": "Battle Notebook" + }, + { + "TYPE": "TextTableData", + "ID": 278, + "STRING": "Character Notebook" + }, + { + "TYPE": "TextTableData", + "ID": 279, + "STRING": "Recipe Book" + }, + { + "TYPE": "TextTableData", + "ID": 280, + "STRING": "Fishing Book" + }, + { + "TYPE": "TextTableData", + "ID": 281, + "STRING": "Books" + }, + { + "TYPE": "TextTableData", + "ID": 282, + "STRING": "Active Voice Notes" + }, + { + "TYPE": "TextTableData", + "ID": 283, + "STRING": "Help" + }, + { + "TYPE": "TextTableData", + "ID": 284, + "STRING": "Zoom In" + }, + { + "TYPE": "TextTableData", + "ID": 285, + "STRING": "Zoom Out" + }, + { + "TYPE": "TextTableData", + "ID": 286, + "STRING": "Zoom In/Out" + }, + { + "TYPE": "TextTableData", + "ID": 287, + "STRING": "Reset Camera" + }, + { + "TYPE": "TextTableData", + "ID": 288, + "STRING": "Turn Character" + }, + { + "TYPE": "TextTableData", + "ID": 289, + "STRING": "Change Leader (Next)" + }, + { + "TYPE": "TextTableData", + "ID": 290, + "STRING": "Change Leader (Previous)" + }, + { + "TYPE": "TextTableData", + "ID": 291, + "STRING": "Change Character" + }, + { + "TYPE": "TextTableData", + "ID": 292, + "STRING": "Reset Camera Angle" + }, + { + "TYPE": "TextTableData", + "ID": 293, + "STRING": "Camera Zoom Settings" + }, + { + "TYPE": "TextTableData", + "ID": 188, + "STRING": "????" + }, + { + "TYPE": "TextTableData", + "ID": 189, + "STRING": "…" + }, + { + "TYPE": "TextTableData", + "ID": 190, + "STRING": "Rean Schwarzer" + }, + { + "TYPE": "TextTableData", + "ID": 191, + "STRING": "Year 1 Class VII" + }, + { + "TYPE": "TextTableData", + "ID": 192, + "STRING": "Rank B7" + }, + { + "TYPE": "TextTableData", + "ID": 193, + "STRING": "Rank B6" + }, + { + "TYPE": "TextTableData", + "ID": 194, + "STRING": "Rank B5" + }, + { + "TYPE": "TextTableData", + "ID": 195, + "STRING": "Rank B4" + }, + { + "TYPE": "TextTableData", + "ID": 196, + "STRING": "Rank B3" + }, + { + "TYPE": "TextTableData", + "ID": 197, + "STRING": "Rank B2" + }, + { + "TYPE": "TextTableData", + "ID": 198, + "STRING": "Rank B1" + }, + { + "TYPE": "TextTableData", + "ID": 199, + "STRING": "Rank A7" + }, + { + "TYPE": "TextTableData", + "ID": 200, + "STRING": "Rank A6" + }, + { + "TYPE": "TextTableData", + "ID": 201, + "STRING": "Rank A5" + }, + { + "TYPE": "TextTableData", + "ID": 202, + "STRING": "Rank A4" + }, + { + "TYPE": "TextTableData", + "ID": 203, + "STRING": "Rank A3" + }, + { + "TYPE": "TextTableData", + "ID": 204, + "STRING": "Rank A2" + }, + { + "TYPE": "TextTableData", + "ID": 205, + "STRING": "Rank A1" + }, + { + "TYPE": "TextTableData", + "ID": 206, + "STRING": "Rank A0" + }, + { + "TYPE": "TextTableData", + "ID": 207, + "STRING": "---" + }, + { + "TYPE": "TextTableData", + "ID": 208, + "STRING": "Completed" + }, + { + "TYPE": "TextTableData", + "ID": 209, + "STRING": "Expired" + }, + { + "TYPE": "TextTableData", + "ID": 210, + "STRING": "Incomplete" + }, + { + "TYPE": "TextTableData", + "ID": 211, + "STRING": "Reported" + }, + { + "TYPE": "TextTableData", + "ID": 213, + "STRING": "Long" + }, + { + "TYPE": "TextTableData", + "ID": 214, + "STRING": "Medium" + }, + { + "TYPE": "TextTableData", + "ID": 215, + "STRING": "Short" + }, + { + "TYPE": "TextTableData", + "ID": 216, + "STRING": "-" + }, + { + "TYPE": "TextTableData", + "ID": 217, + "STRING": "#911c[Req.]" + }, + { + "TYPE": "TextTableData", + "ID": 218, + "STRING": "Completed" + }, + { + "TYPE": "TextTableData", + "ID": 219, + "STRING": "Reported" + }, + { + "TYPE": "TextTableData", + "ID": 220, + "STRING": "Expired" + }, + { + "TYPE": "TextTableData", + "ID": 221, + "STRING": "[%s]" + }, + { + "TYPE": "TextTableData", + "ID": 222, + "STRING": "#1CInsufficient ingredients." + }, + { + "TYPE": "TextTableData", + "ID": 223, + "STRING": "#1CYou can't make any more." + }, + { + "TYPE": "TextTableData", + "ID": 224, + "STRING": "Who will do the cooking?" + }, + { + "TYPE": "TextTableData", + "ID": 225, + "STRING": "Cooking" + }, + { + "TYPE": "TextTableData", + "ID": 226, + "STRING": "." + }, + { + "TYPE": "TextTableData", + "ID": 227, + "STRING": "Cooking complete!" + }, + { + "TYPE": "TextTableData", + "ID": 228, + "STRING": "Complete!" + }, + { + "TYPE": "TextTableData", + "ID": 229, + "STRING": "Complete!" + }, + { + "TYPE": "TextTableData", + "ID": 230, + "STRING": "Complete?" + }, + { + "TYPE": "TextTableData", + "ID": 231, + "STRING": "Complete!" + }, + { + "TYPE": "TextTableData", + "ID": 232, + "STRING": "x" + }, + { + "TYPE": "TextTableData", + "ID": 233, + "STRING": "White Angler" + }, + { + "TYPE": "TextTableData", + "ID": 234, + "STRING": "Brown Angler" + }, + { + "TYPE": "TextTableData", + "ID": 235, + "STRING": "Black Angler" + }, + { + "TYPE": "TextTableData", + "ID": 236, + "STRING": "Red Angler" + }, + { + "TYPE": "TextTableData", + "ID": 237, + "STRING": "Active Voice Record" + }, + { + "TYPE": "TextTableData", + "ID": 294, + "STRING": "New Save Data" + }, + { + "TYPE": "TextTableData", + "ID": 295, + "STRING": "The Legend of Heroes: Trails of Cold Steel Kai" + }, + { + "TYPE": "TextTableData", + "ID": 306, + "STRING": "System Data" + }, + { + "TYPE": "TextTableData", + "ID": 307, + "STRING": " The Legend of Heroes: Trails of Cold Steel Kai system data。\nHere are stored settings, etc." + }, + { + "TYPE": "TextTableData", + "ID": 308, + "STRING": "Playtime" + }, + { + "TYPE": "TextTableData", + "ID": 309, + "STRING": "Difficulty" + }, + { + "TYPE": "TextTableData", + "ID": 310, + "STRING": "Easy" + }, + { + "TYPE": "TextTableData", + "ID": 311, + "STRING": "Normal" + }, + { + "TYPE": "TextTableData", + "ID": 312, + "STRING": "Hard" + }, + { + "TYPE": "TextTableData", + "ID": 313, + "STRING": "Nightmare" + }, + { + "TYPE": "TextTableData", + "ID": 314, + "STRING": "Lv" + }, + { + "TYPE": "TextTableData", + "ID": 315, + "STRING": " " + }, + { + "TYPE": "TextTableData", + "ID": 316, + "STRING": "Party" + }, + { + "TYPE": "TextTableData", + "ID": 296, + "STRING": "." + }, + { + "TYPE": "TextTableData", + "ID": 297, + "STRING": "Prologue" + }, + { + "TYPE": "TextTableData", + "ID": 298, + "STRING": "Chapter 1" + }, + { + "TYPE": "TextTableData", + "ID": 299, + "STRING": "Chapter 2" + }, + { + "TYPE": "TextTableData", + "ID": 300, + "STRING": "Chapter 3" + }, + { + "TYPE": "TextTableData", + "ID": 301, + "STRING": "Chapter 4" + }, + { + "TYPE": "TextTableData", + "ID": 302, + "STRING": "Chapter 5" + }, + { + "TYPE": "TextTableData", + "ID": 303, + "STRING": "Chapter 6" + }, + { + "TYPE": "TextTableData", + "ID": 304, + "STRING": "Final Chapter" + }, + { + "TYPE": "TextTableData", + "ID": 305, + "STRING": "Clear Data" + }, + { + "TYPE": "TextTableData", + "ID": 317, + "STRING": "Saving system data..." + }, + { + "TYPE": "TextTableData", + "ID": 318, + "STRING": "Saving system data" + }, + { + "TYPE": "TextTableData", + "ID": 319, + "STRING": "Saving system data." + }, + { + "TYPE": "TextTableData", + "ID": 320, + "STRING": "Saving system data.." + }, + { + "TYPE": "TextTableData", + "ID": 321, + "STRING": "Loading system data..." + }, + { + "TYPE": "TextTableData", + "ID": 322, + "STRING": "Loading system data" + }, + { + "TYPE": "TextTableData", + "ID": 323, + "STRING": "Loading system data." + }, + { + "TYPE": "TextTableData", + "ID": 324, + "STRING": "Loading system data.." + }, + { + "TYPE": "TextTableData", + "ID": 325, + "STRING": "No system data exists." + }, + { + "TYPE": "TextTableData", + "ID": 326, + "STRING": "No system data exists. Continue anyway?" + }, + { + "TYPE": "TextTableData", + "ID": 327, + "STRING": "Could not load system data." + }, + { + "TYPE": "TextTableData", + "ID": 328, + "STRING": "Could not load system data. Continue anyway?" + }, + { + "TYPE": "TextTableData", + "ID": 329, + "STRING": "System data could not be overwritten, as it is damaged.\nDelete the system data and then try again." + }, + { + "TYPE": "TextTableData", + "ID": 330, + "STRING": "Save data could not be overwritten, as it is damaged.\nDelete the save data and then try again." + }, + { + "TYPE": "TextTableData", + "ID": 331, + "STRING": "It is not possible to load save data with a different\nowner." + }, + { + "TYPE": "TextTableData", + "ID": 332, + "STRING": "Cannot load this save data, as it contains downloadable \ncontent which hasn't been installed." + }, + { + "TYPE": "TextTableData", + "ID": 333, + "STRING": "Save" + }, + { + "TYPE": "TextTableData", + "ID": 334, + "STRING": "Load" + }, + { + "TYPE": "TextTableData", + "ID": 335, + "STRING": "Delete" + }, + { + "TYPE": "TextTableData", + "ID": 336, + "STRING": "#1CBefore beginning the game, you can select what to \ncarry over. The more times you clear the game, the \nmore you can carry over to your next playthrough." + }, + { + "TYPE": "TextTableData", + "ID": 337, + "STRING": "#1CInsufficient points." + }, + { + "TYPE": "TextTableData", + "ID": 338, + "STRING": "#1CReturn to title screen?" + }, + { + "TYPE": "TextTableData", + "ID": 339, + "STRING": "#1CRank increased to [%s].\nReceived #%dI#2C%s#1C as a perk." + }, + { + "TYPE": "TextTableData", + "ID": 340, + "STRING": "#160IContinue" + }, + { + "TYPE": "TextTableData", + "ID": 341, + "STRING": "Save" + }, + { + "TYPE": "TextTableData", + "ID": 342, + "STRING": "Delete Save Data" + }, + { + "TYPE": "TextTableData", + "ID": 343, + "STRING": "Continue" + }, + { + "TYPE": "TextTableData", + "ID": 344, + "STRING": "Cancel" + }, + { + "TYPE": "TextTableData", + "ID": 345, + "STRING": "Return to title screen" + }, + { + "TYPE": "TextTableData", + "ID": 346, + "STRING": "Go to the PlayStation㍻Store?" + }, + { + "TYPE": "TextTableData", + "ID": 347, + "STRING": "Checking downloadable content..." + }, + { + "TYPE": "TextTableData", + "ID": 348, + "STRING": "Checking downloadable content" + }, + { + "TYPE": "TextTableData", + "ID": 349, + "STRING": "Checking downloadable content." + }, + { + "TYPE": "TextTableData", + "ID": 350, + "STRING": "Checking downloadable content.." + }, + { + "TYPE": "TextTableData", + "ID": 351, + "STRING": "Obtaining trophy data..." + }, + { + "TYPE": "TextTableData", + "ID": 352, + "STRING": "Obtaining trophy data" + }, + { + "TYPE": "TextTableData", + "ID": 353, + "STRING": "Obtaining trophy data." + }, + { + "TYPE": "TextTableData", + "ID": 354, + "STRING": "Obtaining trophy data.." + }, + { + "TYPE": "TextTableData", + "ID": 355, + "STRING": "Upload current progress to PlayStation㊥Network?" + }, + { + "TYPE": "TextTableData", + "ID": 356, + "STRING": "Uploading data..." + }, + { + "TYPE": "TextTableData", + "ID": 357, + "STRING": "Uploading data" + }, + { + "TYPE": "TextTableData", + "ID": 358, + "STRING": "Uploading data." + }, + { + "TYPE": "TextTableData", + "ID": 359, + "STRING": "Uploading data.." + }, + { + "TYPE": "TextTableData", + "ID": 360, + "STRING": "Uploading data complete." + }, + { + "TYPE": "TextTableData", + "ID": 361, + "STRING": "Uploading data interrupted." + }, + { + "TYPE": "TextTableData", + "ID": 362, + "STRING": "#1CPlayStation㊥Network上にアップロードされている\nPlayStation㍻3版、PlayStation㍻Vita版\nのセーブデータを引き継ぐことができます。\n\n#0CPlayStation㊥Networkからゲームの進行状況を\nダウンロードしますか?" + }, + { + "TYPE": "TextTableData", + "ID": 363, + "STRING": "Downloading data..." + }, + { + "TYPE": "TextTableData", + "ID": 364, + "STRING": "Downloading data" + }, + { + "TYPE": "TextTableData", + "ID": 365, + "STRING": "Downloading data." + }, + { + "TYPE": "TextTableData", + "ID": 366, + "STRING": "Downloading data.." + }, + { + "TYPE": "TextTableData", + "ID": 367, + "STRING": "Downloading data complete." + }, + { + "TYPE": "TextTableData", + "ID": 368, + "STRING": "Downloading data interrupted." + }, + { + "TYPE": "TextTableData", + "ID": 369, + "STRING": "This Sony Entertainment Network account's parental \ncontrol settings do not allow it to go online. You cannot \nuse online services on this account." + }, + { + "TYPE": "TextTableData", + "ID": 370, + "STRING": "Signed out from the PlayStation㊥Network. To use Cross Save\nfunctionality, sign in to the PlayStation㊥Network." + }, + { + "TYPE": "TextTableData", + "ID": 371, + "STRING": "You are not signed in to the PlayStation㊥Network. To use\nCross Save functionality, sign in to the PlayStation㊥Network." + }, + { + "TYPE": "TextTableData", + "ID": 372, + "STRING": "Could not download data. To download progress data, you will\nfirst need to upload data from the PlayStation㍻Vita version." + }, + { + "TYPE": "TextTableData", + "ID": 373, + "STRING": "Could not download data. To download progress data, you will\nfirst need to upload data from the PlayStation㍻3 version." + }, + { + "TYPE": "TextTableData", + "ID": 374, + "STRING": "The Legend of Heroes: Trails of Cold Steel\nInstall Data" + }, + { + "TYPE": "TextTableData", + "ID": 375, + "STRING": "Insufficient free space on the hard drive. %dMB more is required.\nQuit the game and free up additional space to continue." + }, + { + "TYPE": "TextTableData", + "ID": 376, + "STRING": "Insufficient free space on the hard drive. %dKB more is required.\nQuit the game and free up additional space to continue." + }, + { + "TYPE": "TextTableData", + "ID": 377, + "STRING": "An error occurred when checking install data. \nQuitting the game." + }, + { + "TYPE": "TextTableData", + "ID": 378, + "STRING": "Install data is corrupted. \nQuit the game and delete the install data." + }, + { + "TYPE": "TextTableData", + "ID": 379, + "STRING": "Installing data. Do not turn off the system's power during the\ninstallation process." + }, + { + "TYPE": "TextTableData", + "ID": 380, + "STRING": "Commence installation process." + }, + { + "TYPE": "TextTableData", + "ID": 381, + "STRING": "Installing data complete." + }, + { + "TYPE": "TextTableData", + "ID": 382, + "STRING": "An error occurred during the installation process.\nQuitting the game." + }, + { + "TYPE": "TextTableData", + "ID": 383, + "STRING": "Tampered-with data detected. Quitting the game." + }, + { + "TYPE": "TextTableData", + "ID": 384, + "STRING": "Next" + }, + { + "TYPE": "TextTableData", + "ID": 385, + "STRING": "Skip" + }, + { + "TYPE": "TextTableData", + "ID": 386, + "STRING": " can now be used." + }, + { + "TYPE": "TextTableData", + "ID": 387, + "STRING": "#1CAttempt to flee?\nChance: #2C%d%" + }, + { + "TYPE": "TextTableData", + "ID": 388, + "STRING": "#1CCouldn't flee!" + }, + { + "TYPE": "TextTableData", + "ID": 389, + "STRING": "Craft" + }, + { + "TYPE": "TextTableData", + "ID": 390, + "STRING": "Art" + }, + { + "TYPE": "TextTableData", + "ID": 391, + "STRING": "Item" + }, + { + "TYPE": "TextTableData", + "ID": 392, + "STRING": "The party was wiped out..." + }, + { + "TYPE": "TextTableData", + "ID": 393, + "STRING": "Retry" + }, + { + "TYPE": "TextTableData", + "ID": 394, + "STRING": "Weaken Enemies and Retry" + }, + { + "TYPE": "TextTableData", + "ID": 395, + "STRING": "Continue" + }, + { + "TYPE": "TextTableData", + "ID": 396, + "STRING": "Return to title screen" + }, + { + "TYPE": "TextTableData", + "ID": 397, + "STRING": "You were defeated." + }, + { + "TYPE": "TextTableData", + "ID": 398, + "STRING": "#1CChance: #2C%3d%" + }, + { + "TYPE": "TextTableData", + "ID": 399, + "STRING": "PSN" + }, + { + "TYPE": "TextTableData", + "ID": 400, + "STRING": "SEAL" + }, + { + "TYPE": "TextTableData", + "ID": 401, + "STRING": "MUTE" + }, + { + "TYPE": "TextTableData", + "ID": 402, + "STRING": "BLND" + }, + { + "TYPE": "TextTableData", + "ID": 403, + "STRING": "SLP" + }, + { + "TYPE": "TextTableData", + "ID": 404, + "STRING": "BURN" + }, + { + "TYPE": "TextTableData", + "ID": 405, + "STRING": "FRZ" + }, + { + "TYPE": "TextTableData", + "ID": 406, + "STRING": "PETR" + }, + { + "TYPE": "TextTableData", + "ID": 407, + "STRING": "FNT" + }, + { + "TYPE": "TextTableData", + "ID": 408, + "STRING": "CONF" + }, + { + "TYPE": "TextTableData", + "ID": 409, + "STRING": "DBLW" + }, + { + "TYPE": "TextTableData", + "ID": 410, + "STRING": "NMR" + }, + { + "TYPE": "TextTableData", + "ID": 411, + "STRING": "DLAY" + }, + { + "TYPE": "TextTableData", + "ID": 412, + "STRING": "VNSH" + }, + { + "TYPE": "TextTableData", + "ID": 413, + "STRING": "S-DWN" + }, + { + "TYPE": "TextTableData", + "ID": 414, + "STRING": "#2C#%dI%s#0C reached level %d!" + }, + { + "TYPE": "TextTableData", + "ID": 415, + "STRING": "Gained a new ability!" + }, + { + "TYPE": "TextTableData", + "ID": 416, + "STRING": "#1C%s and %s reached link level %d!" + }, + { + "TYPE": "TextTableData", + "ID": 417, + "STRING": "It had no effect..." + }, + { + "TYPE": "TextTableData", + "ID": 418, + "STRING": "View Specifics" + }, + { + "TYPE": "TextTableData", + "ID": 419, + "STRING": "Close" + }, + { + "TYPE": "TextTableData", + "ID": 420, + "STRING": "Condition met!" + }, + { + "TYPE": "TextTableData", + "ID": 421, + "STRING": "Rotate Character" + }, + { + "TYPE": "TextTableData", + "ID": 422, + "STRING": "." + }, + { + "TYPE": "TextTableData", + "ID": 431, + "STRING": "★★★" + }, + { + "TYPE": "TextTableData", + "ID": 432, + "STRING": "#147IShining Poms" + }, + { + "TYPE": "TextTableData", + "ID": 433, + "STRING": "#1CWhen you start a New Game+, all downloadable content\nwill be marked as unused. To use DLC items, reobtain\nthem from ITEM then DLC in the Camp Menu." + }, + { + "TYPE": "TextTableData", + "ID": 434, + "STRING": "Checking data..." + }, + { + "TYPE": "TextTableData", + "ID": 435, + "STRING": "Checking data" + }, + { + "TYPE": "TextTableData", + "ID": 436, + "STRING": "Checking data." + }, + { + "TYPE": "TextTableData", + "ID": 437, + "STRING": "Checking data.." + }, + { + "TYPE": "TextTableData", + "ID": 438, + "STRING": "#1Cデータのアップロードを開始します。\nPlayStation㊥Network上のデータは上書きされますが、よろしいですか?" + }, + { + "TYPE": "TextTableData", + "ID": 439, + "STRING": "#1CData download will commence.\nUnsaved progress will be lost. Proceed?" + }, + { + "TYPE": "TextTableData", + "ID": 440, + "STRING": "#1CData download will commence.\nProceed?" + }, + { + "TYPE": "TextTableData", + "ID": 441, + "STRING": "Time updated" + }, + { + "TYPE": "TextTableData", + "ID": 442, + "STRING": "#6CCurrent data" + }, + { + "TYPE": "TextTableData", + "ID": 443, + "STRING": "PSN上のデータ" + }, + { + "TYPE": "TextTableData", + "ID": 444, + "STRING": "PlayStation㍻3版" + }, + { + "TYPE": "TextTableData", + "ID": 445, + "STRING": "PlayStation㍻Vita版" + }, + { + "TYPE": "TextTableData", + "ID": 446, + "STRING": "PlayStation㍻4版" + }, + { + "TYPE": "TextTableData", + "ID": 447, + "STRING": "Preparing data necessary for this save file...\nPlease try again later." + }, + { + "TYPE": "TextTableData", + "ID": 448, + "STRING": "Preparing data for next story.\nPlease try again later." + }, + { + "TYPE": "TextTableData", + "ID": 449, + "STRING": "PlayStation㊥Networkを介して、セーブデータを共有します。" + }, + { + "TYPE": "TextTableData", + "ID": 450, + "STRING": "PlayStation㊥Networkにアップロードした進行状況を\nダウンロードします。" + }, + { + "TYPE": "TextTableData", + "ID": 451, + "STRING": "#1CData could not be downloaded.\nIn order to download your current progress,\nit is necessary to upload data again." + }, + { + "TYPE": "TextTableData", + "ID": 452, + "STRING": " " + }, + { + "TYPE": "TextTableData", + "ID": 453, + "STRING": "Turbo Mode" + }, + { + "TYPE": "TextTableData", + "ID": 454, + "STRING": "#1CWith save data from the Trails of Cold Steel 3,\nyou can start a game with special items.\n\n #1CSearch for save data?" + }, + { + "TYPE": "TextTableData", + "ID": 455, + "STRING": "#1CWith Trails of Cold Steel 3 #0Csave data,\nyou've earned 10 points to use in New Game +.\n\n#2C(The maximum amount of points is 15.)" + }, + { + "TYPE": "TextTableData", + "ID": 456, + "STRING": "Cold Steel Conqueror" + }, + { + "TYPE": "TextTableData", + "ID": 457, + "STRING": "Mastered Trails of Cold Steel and earned every trophy." + }, + { + "TYPE": "TextTableData", + "ID": 458, + "STRING": "Valedictorian" + }, + { + "TYPE": "TextTableData", + "ID": 459, + "STRING": "Achieved student rank A0." + }, + { + "TYPE": "TextTableData", + "ID": 460, + "STRING": "Heart of a Lion" + }, + { + "TYPE": "TextTableData", + "ID": 461, + "STRING": "Received the Lionheart Medal of Heroism from Principal Vandyck." + }, + { + "TYPE": "TextTableData", + "ID": 462, + "STRING": "Class Act" + }, + { + "TYPE": "TextTableData", + "ID": 463, + "STRING": "Completed all quests, both extra-curricular and during field studies." + }, + { + "TYPE": "TextTableData", + "ID": 464, + "STRING": "Field Guide to Erebonian Wildlife" + }, + { + "TYPE": "TextTableData", + "ID": 465, + "STRING": "Completely filled the monster guide." + }, + { + "TYPE": "TextTableData", + "ID": 466, + "STRING": "Cafeteria Commando" + }, + { + "TYPE": "TextTableData", + "ID": 467, + "STRING": "Obtained all recipes." + }, + { + "TYPE": "TextTableData", + "ID": 468, + "STRING": "Lake Lord" + }, + { + "TYPE": "TextTableData", + "ID": 469, + "STRING": "Caught all varieties of fish." + }, + { + "TYPE": "TextTableData", + "ID": 470, + "STRING": "Social Note-working" + }, + { + "TYPE": "TextTableData", + "ID": 471, + "STRING": "Completed all of the character profiles in the notebook." + }, + { + "TYPE": "TextTableData", + "ID": 472, + "STRING": "Honorary Literature Club Member" + }, + { + "TYPE": "TextTableData", + "ID": 473, + "STRING": "Completely filled the book section of the notebook." + }, + { + "TYPE": "TextTableData", + "ID": 474, + "STRING": "Chest Grabber" + }, + { + "TYPE": "TextTableData", + "ID": 475, + "STRING": "Opened every treasure chest in a single playthrough." + }, + { + "TYPE": "TextTableData", + "ID": 476, + "STRING": "More Like Rean QUARTZ-er" + }, + { + "TYPE": "TextTableData", + "ID": 477, + "STRING": "Gathered all 28 varieties of master quartz." + }, + { + "TYPE": "TextTableData", + "ID": 478, + "STRING": "Crown of Nightmares" + }, + { + "TYPE": "TextTableData", + "ID": 479, + "STRING": "Completed the game on nightmare difficulty." + }, + { + "TYPE": "TextTableData", + "ID": 480, + "STRING": "Crown of Fortitude" + }, + { + "TYPE": "TextTableData", + "ID": 481, + "STRING": "Completed the game on hard or nightmare difficulty." + }, + { + "TYPE": "TextTableData", + "ID": 482, + "STRING": "International Bank of Rean" + }, + { + "TYPE": "TextTableData", + "ID": 483, + "STRING": "Acquired over a million mira." + }, + { + "TYPE": "TextTableData", + "ID": 484, + "STRING": "Trails in the Couch" + }, + { + "TYPE": "TextTableData", + "ID": 485, + "STRING": "Played for over 100 hours." + }, + { + "TYPE": "TextTableData", + "ID": 486, + "STRING": "Flawless Jewel" + }, + { + "TYPE": "TextTableData", + "ID": 487, + "STRING": "Raised a master quartz to level 5." + }, + { + "TYPE": "TextTableData", + "ID": 488, + "STRING": "The Cutting Edge" + }, + { + "TYPE": "TextTableData", + "ID": 489, + "STRING": "Acquired the strongest weapon for any character." + }, + { + "TYPE": "TextTableData", + "ID": 490, + "STRING": "Frequent Fighter" + }, + { + "TYPE": "TextTableData", + "ID": 491, + "STRING": "Won 100 battles." + }, + { + "TYPE": "TextTableData", + "ID": 492, + "STRING": "Advanced Beatonomics" + }, + { + "TYPE": "TextTableData", + "ID": 493, + "STRING": "Won 500 battles." + }, + { + "TYPE": "TextTableData", + "ID": 494, + "STRING": "Neithardt Would Be Proud" + }, + { + "TYPE": "TextTableData", + "ID": 495, + "STRING": "Won 1000 battles." + }, + { + "TYPE": "TextTableData", + "ID": 496, + "STRING": "Quick as a Flash" + }, + { + "TYPE": "TextTableData", + "ID": 497, + "STRING": "Initiated 300 advantage encounters (including double and triple advantage)." + }, + { + "TYPE": "TextTableData", + "ID": 498, + "STRING": "Breakout Performance" + }, + { + "TYPE": "TextTableData", + "ID": 499, + "STRING": "Used 100 S-Breaks in battle." + }, + { + "TYPE": "TextTableData", + "ID": 500, + "STRING": "Can't Touch This!" + }, + { + "TYPE": "TextTableData", + "ID": 501, + "STRING": "Canceled enemy arts and crafts 100 times." + }, + { + "TYPE": "TextTableData", + "ID": 502, + "STRING": "Tactical Thinker" + }, + { + "TYPE": "TextTableData", + "ID": 503, + "STRING": "Won a battle with a tactical bonus of x2.0 or greater." + }, + { + "TYPE": "TextTableData", + "ID": 504, + "STRING": "Eightfold Obliteration" + }, + { + "TYPE": "TextTableData", + "ID": 505, + "STRING": "Defeated 8 enemies at once." + }, + { + "TYPE": "TextTableData", + "ID": 506, + "STRING": "Link Master" + }, + { + "TYPE": "TextTableData", + "ID": 507, + "STRING": "Raised any two characters to Link Level 5." + }, + { + "TYPE": "TextTableData", + "ID": 508, + "STRING": "Follow-Up Master" + }, + { + "TYPE": "TextTableData", + "ID": 509, + "STRING": "Used over 500 follow-up attacks in battle." + }, + { + "TYPE": "TextTableData", + "ID": 510, + "STRING": "Rush Master" + }, + { + "TYPE": "TextTableData", + "ID": 511, + "STRING": "Used Rush in battle 100 times." + }, + { + "TYPE": "TextTableData", + "ID": 512, + "STRING": "Burst Master" + }, + { + "TYPE": "TextTableData", + "ID": 513, + "STRING": "Used Burst in battle 50 times." + }, + { + "TYPE": "TextTableData", + "ID": 514, + "STRING": "Making the Grade" + }, + { + "TYPE": "TextTableData", + "ID": 515, + "STRING": "Earned an S-Rank on any chapter." + }, + { + "TYPE": "TextTableData", + "ID": 516, + "STRING": "R is for Romance" + }, + { + "TYPE": "TextTableData", + "ID": 517, + "STRING": "Forged a strong bond with Alisa." + }, + { + "TYPE": "TextTableData", + "ID": 518, + "STRING": "Music to My Ears" + }, + { + "TYPE": "TextTableData", + "ID": 519, + "STRING": "Forged a strong bond with Elliot." + }, + { + "TYPE": "TextTableData", + "ID": 520, + "STRING": "Here With You To Knight" + }, + { + "TYPE": "TextTableData", + "ID": 521, + "STRING": "Forged a strong bond with Laura." + }, + { + "TYPE": "TextTableData", + "ID": 522, + "STRING": "Equal Opportunity" + }, + { + "TYPE": "TextTableData", + "ID": 523, + "STRING": "Forged a strong bond with Machias." + }, + { + "TYPE": "TextTableData", + "ID": 524, + "STRING": "Magic Moment" + }, + { + "TYPE": "TextTableData", + "ID": 525, + "STRING": "Forged a strong bond with Emma." + }, + { + "TYPE": "TextTableData", + "ID": 526, + "STRING": "Noblesse Oblige" + }, + { + "TYPE": "TextTableData", + "ID": 527, + "STRING": "Forged a strong bond with Jusis." + }, + { + "TYPE": "TextTableData", + "ID": 528, + "STRING": "More Than a Fie-ling" + }, + { + "TYPE": "TextTableData", + "ID": 529, + "STRING": "Forged a strong bond with Fie." + }, + { + "TYPE": "TextTableData", + "ID": 530, + "STRING": "Wind Beneath My Wings" + }, + { + "TYPE": "TextTableData", + "ID": 531, + "STRING": "Forged a strong bond with Gaius." + }, + { + "TYPE": "TextTableData", + "ID": 532, + "STRING": "The Young and the Reckless" + }, + { + "TYPE": "TextTableData", + "ID": 533, + "STRING": "Forged a strong bond with Millium." + }, + { + "TYPE": "TextTableData", + "ID": 534, + "STRING": "Bad Crowmance" + }, + { + "TYPE": "TextTableData", + "ID": 535, + "STRING": "Forged a strong bond with Crow." + }, + { + "TYPE": "TextTableData", + "ID": 536, + "STRING": "Hot for Teacher" + }, + { + "TYPE": "TextTableData", + "ID": 537, + "STRING": "Forged a strong bond with Sara." + }, + { + "TYPE": "TextTableData", + "ID": 538, + "STRING": "Mentorship" + }, + { + "TYPE": "TextTableData", + "ID": 539, + "STRING": "Forged a strong bond with Towa." + }, + { + "TYPE": "TextTableData", + "ID": 540, + "STRING": "Freshman Orientation" + }, + { + "TYPE": "TextTableData", + "ID": 541, + "STRING": "Arrived in Trista for the first day of school." + }, + { + "TYPE": "TextTableData", + "ID": 542, + "STRING": "The Way to Thors" + }, + { + "TYPE": "TextTableData", + "ID": 543, + "STRING": "Completed the prologue." + }, + { + "TYPE": "TextTableData", + "ID": 544, + "STRING": "Unconventional Studies" + }, + { + "TYPE": "TextTableData", + "ID": 545, + "STRING": "Completed Chapter 1." + }, + { + "TYPE": "TextTableData", + "ID": 546, + "STRING": "The Verdant City" + }, + { + "TYPE": "TextTableData", + "ID": 547, + "STRING": "Completed Chapter 2." + }, + { + "TYPE": "TextTableData", + "ID": 548, + "STRING": "Beyond the Railways" + }, + { + "TYPE": "TextTableData", + "ID": 549, + "STRING": "Completed Chapter 3." + }, + { + "TYPE": "TextTableData", + "ID": 550, + "STRING": "A Midsummer's Revels" + }, + { + "TYPE": "TextTableData", + "ID": 551, + "STRING": "Completed Chapter 4." + }, + { + "TYPE": "TextTableData", + "ID": 552, + "STRING": "Signs and Omens" + }, + { + "TYPE": "TextTableData", + "ID": 553, + "STRING": "Completed Chapter 5." + }, + { + "TYPE": "TextTableData", + "ID": 554, + "STRING": "Progressive Chaos" + }, + { + "TYPE": "TextTableData", + "ID": 555, + "STRING": "Completed Chapter 6." + }, + { + "TYPE": "TextTableData", + "ID": 556, + "STRING": "Put to the Test" + }, + { + "TYPE": "TextTableData", + "ID": 557, + "STRING": "Complete the final chapter." + }, + { + "TYPE": "TextTableData", + "ID": 558, + "STRING": "Do you want to replace this save?" + }, + { + "TYPE": "TextTableData", + "ID": 559, + "STRING": "Do you want to delete this save?" + } +] \ No newline at end of file diff --git a/text/jsons/t_text_nx.json b/text/jsons/t_text_nx.json new file mode 100644 index 0000000..eccc1ab --- /dev/null +++ b/text/jsons/t_text_nx.json @@ -0,0 +1,2257 @@ +[ + { + "TYPE": "TextTableData", + "ID": 0, + "STRING": "Talk to" + }, + { + "TYPE": "TextTableData", + "ID": 1, + "STRING": "#160IRide Horse" + }, + { + "TYPE": "TextTableData", + "ID": 2, + "STRING": "#161IDismount" + }, + { + "TYPE": "TextTableData", + "ID": 3, + "STRING": "#166IDash" + }, + { + "TYPE": "TextTableData", + "ID": 4, + "STRING": "#160IClimb" + }, + { + "TYPE": "TextTableData", + "ID": 5, + "STRING": "#160IClimb Down" + }, + { + "TYPE": "TextTableData", + "ID": 6, + "STRING": "#160IOpen" + }, + { + "TYPE": "TextTableData", + "ID": 7, + "STRING": "#160IPick Up" + }, + { + "TYPE": "TextTableData", + "ID": 8, + "STRING": "#160IMove" + }, + { + "TYPE": "TextTableData", + "ID": 9, + "STRING": "#160IFish" + }, + { + "TYPE": "TextTableData", + "ID": 10, + "STRING": "#160IAttack" + }, + { + "TYPE": "TextTableData", + "ID": 11, + "STRING": "Characters you can meet" + }, + { + "TYPE": "TextTableData", + "ID": 12, + "STRING": "#162IRide Horse" + }, + { + "TYPE": "TextTableData", + "ID": 13, + "STRING": "#163IHide Icons" + }, + { + "TYPE": "TextTableData", + "ID": 14, + "STRING": "#162I: Investigate" + }, + { + "TYPE": "TextTableData", + "ID": 17, + "STRING": "Yes" + }, + { + "TYPE": "TextTableData", + "ID": 18, + "STRING": "No" + }, + { + "TYPE": "TextTableData", + "ID": 19, + "STRING": "#176IScroll #177ITurn camera #164I#166IZoom" + }, + { + "TYPE": "TextTableData", + "ID": 20, + "STRING": "Alisa R" + }, + { + "TYPE": "TextTableData", + "ID": 21, + "STRING": "#144ICurrent Location" + }, + { + "TYPE": "TextTableData", + "ID": 22, + "STRING": "#159IOrbment Charging Station" + }, + { + "TYPE": "TextTableData", + "ID": 23, + "STRING": "#149ITreasure Chest" + }, + { + "TYPE": "TextTableData", + "ID": 24, + "STRING": "#147IQuest Monster" + }, + { + "TYPE": "TextTableData", + "ID": 25, + "STRING": "#148IQuest Event" + }, + { + "TYPE": "TextTableData", + "ID": 26, + "STRING": "#154IStory Event" + }, + { + "TYPE": "TextTableData", + "ID": 27, + "STRING": "#155IBonding Event" + }, + { + "TYPE": "TextTableData", + "ID": 28, + "STRING": "#156IQuest Event" + }, + { + "TYPE": "TextTableData", + "ID": 15, + "STRING": "#160ISkip Event" + }, + { + "TYPE": "TextTableData", + "ID": 16, + "STRING": "- PAUSE -" + }, + { + "TYPE": "TextTableData", + "ID": 29, + "STRING": "Change equipment." + }, + { + "TYPE": "TextTableData", + "ID": 30, + "STRING": "Change quartz and use arts." + }, + { + "TYPE": "TextTableData", + "ID": 31, + "STRING": "Use items." + }, + { + "TYPE": "TextTableData", + "ID": 32, + "STRING": "Check status and crafts." + }, + { + "TYPE": "TextTableData", + "ID": 33, + "STRING": "Check combat links." + }, + { + "TYPE": "TextTableData", + "ID": 34, + "STRING": "Adjust party order and formation, and set links." + }, + { + "TYPE": "TextTableData", + "ID": 35, + "STRING": "View the contents of various notebooks." + }, + { + "TYPE": "TextTableData", + "ID": 36, + "STRING": "Save and load data, and alter the game's settings." + }, + { + "TYPE": "TextTableData", + "ID": 37, + "STRING": "Save data." + }, + { + "TYPE": "TextTableData", + "ID": 38, + "STRING": "Load data." + }, + { + "TYPE": "TextTableData", + "ID": 39, + "STRING": "Delete save data." + }, + { + "TYPE": "TextTableData", + "ID": 40, + "STRING": "PlayStation㊥Networkを介して、PlayStation㍻Vita版とセーブデータを\n共有します。" + }, + { + "TYPE": "TextTableData", + "ID": 41, + "STRING": "PlayStation㊥Networkを介して、PlayStation㍻3版とセーブデータを\n共有します。" + }, + { + "TYPE": "TextTableData", + "ID": 42, + "STRING": "Change settings." + }, + { + "TYPE": "TextTableData", + "ID": 43, + "STRING": "Return to title screen." + }, + { + "TYPE": "TextTableData", + "ID": 44, + "STRING": "Return to title screen?\n(Any unsaved progress will be lost.)" + }, + { + "TYPE": "TextTableData", + "ID": 45, + "STRING": "現在の進行状況をPlayStation㊥Networkに\nアップロードします。" + }, + { + "TYPE": "TextTableData", + "ID": 46, + "STRING": "Will download progress from the PlayStation㍻Vita version." + }, + { + "TYPE": "TextTableData", + "ID": 47, + "STRING": "Will download progress from the PlayStation㍻3 version." + }, + { + "TYPE": "TextTableData", + "ID": 48, + "STRING": "Adjust BGM volume." + }, + { + "TYPE": "TextTableData", + "ID": 49, + "STRING": "Adjust SE volume." + }, + { + "TYPE": "TextTableData", + "ID": 50, + "STRING": "Adjust voice volume." + }, + { + "TYPE": "TextTableData", + "ID": 51, + "STRING": "Change vertical camera settings." + }, + { + "TYPE": "TextTableData", + "ID": 52, + "STRING": "Change horizontal camera settings." + }, + { + "TYPE": "TextTableData", + "ID": 53, + "STRING": "Change what the ZL button does." + }, + { + "TYPE": "TextTableData", + "ID": 54, + "STRING": "Change what the ZR button does." + }, + { + "TYPE": "TextTableData", + "ID": 55, + "STRING": "Change minimap display." + }, + { + "TYPE": "TextTableData", + "ID": 56, + "STRING": "Turn controller vibration on or off.\n※Vibration needs to be enabled in system settings first." + }, + { + "TYPE": "TextTableData", + "ID": 57, + "STRING": "Configure button settings." + }, + { + "TYPE": "TextTableData", + "ID": 58, + "STRING": "Adjust display settings." + }, + { + "TYPE": "TextTableData", + "ID": 59, + "STRING": "Change what the up directional button does." + }, + { + "TYPE": "TextTableData", + "ID": 60, + "STRING": "Change what the down directional button does." + }, + { + "TYPE": "TextTableData", + "ID": 61, + "STRING": "Change what the left directional button does." + }, + { + "TYPE": "TextTableData", + "ID": 62, + "STRING": "Change what the right directional button does." + }, + { + "TYPE": "TextTableData", + "ID": 63, + "STRING": "Change what the L button does." + }, + { + "TYPE": "TextTableData", + "ID": 64, + "STRING": "Change what the L button does." + }, + { + "TYPE": "TextTableData", + "ID": 65, + "STRING": "Remove" + }, + { + "TYPE": "TextTableData", + "ID": 66, + "STRING": "Remove" + }, + { + "TYPE": "TextTableData", + "ID": 67, + "STRING": "Equips a Weapon" + }, + { + "TYPE": "TextTableData", + "ID": 68, + "STRING": "Equips Clothing" + }, + { + "TYPE": "TextTableData", + "ID": 69, + "STRING": "Equips Footwear" + }, + { + "TYPE": "TextTableData", + "ID": 70, + "STRING": "Equips an Accessory" + }, + { + "TYPE": "TextTableData", + "ID": 71, + "STRING": "Equips a Costume" + }, + { + "TYPE": "TextTableData", + "ID": 72, + "STRING": "Equips an Attachment" + }, + { + "TYPE": "TextTableData", + "ID": 73, + "STRING": "#1CCannot equip now." + }, + { + "TYPE": "TextTableData", + "ID": 74, + "STRING": "×%2d" + }, + { + "TYPE": "TextTableData", + "ID": 75, + "STRING": "#1CNothing happened." + }, + { + "TYPE": "TextTableData", + "ID": 76, + "STRING": "#2C%s#1C x %d was thrown away." + }, + { + "TYPE": "TextTableData", + "ID": 77, + "STRING": "#1CIt had no effect." + }, + { + "TYPE": "TextTableData", + "ID": 78, + "STRING": "#1C%s recovered #2C%d#1C HP." + }, + { + "TYPE": "TextTableData", + "ID": 79, + "STRING": "#1C%s charged #2C%d#1C EP." + }, + { + "TYPE": "TextTableData", + "ID": 80, + "STRING": "#1C%s recovered #2C%d#1C CP." + }, + { + "TYPE": "TextTableData", + "ID": 81, + "STRING": "#1C%s is near death." + }, + { + "TYPE": "TextTableData", + "ID": 82, + "STRING": " will be used." + }, + { + "TYPE": "TextTableData", + "ID": 83, + "STRING": " has already been used." + }, + { + "TYPE": "TextTableData", + "ID": 84, + "STRING": "Use arts." + }, + { + "TYPE": "TextTableData", + "ID": 85, + "STRING": "Set quartz." + }, + { + "TYPE": "TextTableData", + "ID": 86, + "STRING": "#1CThis master quartz is already equipped." + }, + { + "TYPE": "TextTableData", + "ID": 87, + "STRING": "#1C%s is already using this master quartz.\nExchange master quartz?" + }, + { + "TYPE": "TextTableData", + "ID": 88, + "STRING": "#55INot set" + }, + { + "TYPE": "TextTableData", + "ID": 89, + "STRING": "Not set" + }, + { + "TYPE": "TextTableData", + "ID": 90, + "STRING": "#72IUnopened" + }, + { + "TYPE": "TextTableData", + "ID": 91, + "STRING": "#1CThis slot is unopened." + }, + { + "TYPE": "TextTableData", + "ID": 92, + "STRING": "#1CAutomatically set quartz in all empty slots?" + }, + { + "TYPE": "TextTableData", + "ID": 93, + "STRING": "#1CRemove all quartz?" + }, + { + "TYPE": "TextTableData", + "ID": 94, + "STRING": "#175I: Change Party Order" + }, + { + "TYPE": "TextTableData", + "ID": 95, + "STRING": "#168I: Save Menu" + }, + { + "TYPE": "TextTableData", + "ID": 96, + "STRING": "#160I: Switch" + }, + { + "TYPE": "TextTableData", + "ID": 97, + "STRING": "#162I: Change Leader" + }, + { + "TYPE": "TextTableData", + "ID": 98, + "STRING": "#177I: Rotate Character #180I#182I: Enlarge/Shrink" + }, + { + "TYPE": "TextTableData", + "ID": 99, + "STRING": "#177I: Rotate Character #162I+#164I#166I: Enlarge/Shrink" + }, + { + "TYPE": "TextTableData", + "ID": 100, + "STRING": "#162I: View Arts #168I: Auto-Equip #170I: Remove All" + }, + { + "TYPE": "TextTableData", + "ID": 101, + "STRING": "#160I: Move" + }, + { + "TYPE": "TextTableData", + "ID": 102, + "STRING": "#162I: Set Link" + }, + { + "TYPE": "TextTableData", + "ID": 103, + "STRING": "#162I: Sever Link" + }, + { + "TYPE": "TextTableData", + "ID": 104, + "STRING": "Use" + }, + { + "TYPE": "TextTableData", + "ID": 105, + "STRING": "Toss" + }, + { + "TYPE": "TextTableData", + "ID": 106, + "STRING": "????" + }, + { + "TYPE": "TextTableData", + "ID": 107, + "STRING": "★????" + }, + { + "TYPE": "TextTableData", + "ID": 108, + "STRING": "#1CClose the menu and begin the practical exam?" + }, + { + "TYPE": "TextTableData", + "ID": 109, + "STRING": "#1CYou cannot save right now." + }, + { + "TYPE": "TextTableData", + "ID": 110, + "STRING": "#1CYou cannot form a party consisting only of K.O.ed members." + }, + { + "TYPE": "TextTableData", + "ID": 111, + "STRING": "#1CBuy #2C%s#1C x %d#1C for #579c%d mira#1C?" + }, + { + "TYPE": "TextTableData", + "ID": 112, + "STRING": "#1CInsufficient mira." + }, + { + "TYPE": "TextTableData", + "ID": 113, + "STRING": "#1CCannot equip." + }, + { + "TYPE": "TextTableData", + "ID": 114, + "STRING": "#1CSell #2C%s#1C x %d#1C for #579c%d mira#1C?" + }, + { + "TYPE": "TextTableData", + "ID": 115, + "STRING": "#1CCannot sell." + }, + { + "TYPE": "TextTableData", + "ID": 116, + "STRING": "#1CInsufficient sepith." + }, + { + "TYPE": "TextTableData", + "ID": 117, + "STRING": "#1CInsufficient points." + }, + { + "TYPE": "TextTableData", + "ID": 118, + "STRING": "#1CExchange #2C%s#1C x %d \nfor #579c%d points#1C?" + }, + { + "TYPE": "TextTableData", + "ID": 119, + "STRING": "#1CMake #2C%s#1C x %d \nfor #579c%d mira #1C?" + }, + { + "TYPE": "TextTableData", + "ID": 120, + "STRING": "#1CInsufficient items." + }, + { + "TYPE": "TextTableData", + "ID": 121, + "STRING": "#1CIt will cost #579c%d mira#1C to spend the night.\nRest here?" + }, + { + "TYPE": "TextTableData", + "ID": 122, + "STRING": "#1CThis item is sold out." + }, + { + "TYPE": "TextTableData", + "ID": 123, + "STRING": "You cannot carry any more #2C%s#1C." + }, + { + "TYPE": "TextTableData", + "ID": 124, + "STRING": "#1CYou have too many of this item in your inventory\nto unequip it." + }, + { + "TYPE": "TextTableData", + "ID": 125, + "STRING": "#2C%s#1C x %d will be received in exchange." + }, + { + "TYPE": "TextTableData", + "ID": 126, + "STRING": "#1CSynthesize #2C%s#1C?" + }, + { + "TYPE": "TextTableData", + "ID": 127, + "STRING": "#1CSynthesized #2C%s#1C." + }, + { + "TYPE": "TextTableData", + "ID": 128, + "STRING": "Buy Items" + }, + { + "TYPE": "TextTableData", + "ID": 129, + "STRING": "Sell Items" + }, + { + "TYPE": "TextTableData", + "ID": 130, + "STRING": "Exchange Sepith for Mira" + }, + { + "TYPE": "TextTableData", + "ID": 131, + "STRING": "Change equipment." + }, + { + "TYPE": "TextTableData", + "ID": 132, + "STRING": "Synthesize Quartz" + }, + { + "TYPE": "TextTableData", + "ID": 133, + "STRING": "Open Slots" + }, + { + "TYPE": "TextTableData", + "ID": 134, + "STRING": "Buy Master Quartz" + }, + { + "TYPE": "TextTableData", + "ID": 135, + "STRING": "Buy ARCUS Covers" + }, + { + "TYPE": "TextTableData", + "ID": 136, + "STRING": "Set quartz." + }, + { + "TYPE": "TextTableData", + "ID": 137, + "STRING": "Customize Weapons" + }, + { + "TYPE": "TextTableData", + "ID": 138, + "STRING": "Rest and Recover" + }, + { + "TYPE": "TextTableData", + "ID": 139, + "STRING": "Exchange Items" + }, + { + "TYPE": "TextTableData", + "ID": 140, + "STRING": "Exchange Angler Points" + }, + { + "TYPE": "TextTableData", + "ID": 141, + "STRING": "End Transaction" + }, + { + "TYPE": "TextTableData", + "ID": 142, + "STRING": "#32IEarth Sepith" + }, + { + "TYPE": "TextTableData", + "ID": 143, + "STRING": "#33IWater Sepith" + }, + { + "TYPE": "TextTableData", + "ID": 144, + "STRING": "#34IFire Sepith" + }, + { + "TYPE": "TextTableData", + "ID": 145, + "STRING": "#35IWind Sepith" + }, + { + "TYPE": "TextTableData", + "ID": 146, + "STRING": "#36ITime Sepith" + }, + { + "TYPE": "TextTableData", + "ID": 147, + "STRING": "#37ISpace Sepith" + }, + { + "TYPE": "TextTableData", + "ID": 148, + "STRING": "#38IMirage Sepith" + }, + { + "TYPE": "TextTableData", + "ID": 149, + "STRING": "#39ISepith Mass" + }, + { + "TYPE": "TextTableData", + "ID": 150, + "STRING": "Total" + }, + { + "TYPE": "TextTableData", + "ID": 151, + "STRING": "Exchange" + }, + { + "TYPE": "TextTableData", + "ID": 152, + "STRING": "#1CSelect how many sepith to exchange for mira." + }, + { + "TYPE": "TextTableData", + "ID": 153, + "STRING": "#1CExchange this sepith for #579c%d mira#1C?" + }, + { + "TYPE": "TextTableData", + "ID": 154, + "STRING": "#94I = %3d mira" + }, + { + "TYPE": "TextTableData", + "ID": 155, + "STRING": "Already open" + }, + { + "TYPE": "TextTableData", + "ID": 156, + "STRING": "#72ICan be opened" + }, + { + "TYPE": "TextTableData", + "ID": 157, + "STRING": "#72I-------------" + }, + { + "TYPE": "TextTableData", + "ID": 158, + "STRING": "#1CThis slot has already been opened." + }, + { + "TYPE": "TextTableData", + "ID": 159, + "STRING": "#1CCannot be opened." + }, + { + "TYPE": "TextTableData", + "ID": 160, + "STRING": "#1COpen this slot?" + }, + { + "TYPE": "TextTableData", + "ID": 161, + "STRING": "Equip #2C%s#1C?" + }, + { + "TYPE": "TextTableData", + "ID": 162, + "STRING": "Unequip #2C%s#1C?" + }, + { + "TYPE": "TextTableData", + "ID": 163, + "STRING": "Buy #2C%s#1C for #579c%d mira#1C?\n※Can be equipped on all characters." + }, + { + "TYPE": "TextTableData", + "ID": 164, + "STRING": "Buy #2C%s#1C for #579c%d mira#1C?" + }, + { + "TYPE": "TextTableData", + "ID": 419, + "STRING": "#1CCustomize %s's weapon into\n#2C%s#1C for #579c%d mira#1C?" + }, + { + "TYPE": "TextTableData", + "ID": 420, + "STRING": "#1CCustomize which weapon?" + }, + { + "TYPE": "TextTableData", + "ID": 421, + "STRING": "Obtained #2C#%dI%s#0C x%d" + }, + { + "TYPE": "TextTableData", + "ID": 422, + "STRING": "#2C#%dI%s#0C x%d" + }, + { + "TYPE": "TextTableData", + "ID": 423, + "STRING": "0" + }, + { + "TYPE": "TextTableData", + "ID": 424, + "STRING": "#1CCostumes can be changed by selecting EQUIP in \nthe Camp Menu." + }, + { + "TYPE": "TextTableData", + "ID": 425, + "STRING": "#1CAttachments can be equipped by selecting\nEQUIP in the Camp Menu." + }, + { + "TYPE": "TextTableData", + "ID": 426, + "STRING": "#1CARCUS covers can be changed by selecting COVER\nin the shop menu of an orbal factory." + }, + { + "TYPE": "TextTableData", + "ID": 165, + "STRING": "#177I: Scroll through party" + }, + { + "TYPE": "TextTableData", + "ID": 166, + "STRING": "#162I: Change view #177I: Scroll through party" + }, + { + "TYPE": "TextTableData", + "ID": 167, + "STRING": "Exchange earth sepith for mira." + }, + { + "TYPE": "TextTableData", + "ID": 168, + "STRING": "Exchange water sepith for mira." + }, + { + "TYPE": "TextTableData", + "ID": 169, + "STRING": "Exchange fire sepith for mira." + }, + { + "TYPE": "TextTableData", + "ID": 170, + "STRING": "Exchange wind sepith for mira." + }, + { + "TYPE": "TextTableData", + "ID": 171, + "STRING": "Exchange time sepith for mira." + }, + { + "TYPE": "TextTableData", + "ID": 172, + "STRING": "Exchange space sepith for mira." + }, + { + "TYPE": "TextTableData", + "ID": 173, + "STRING": "Exchange mirage sepith for mira." + }, + { + "TYPE": "TextTableData", + "ID": 174, + "STRING": "Exchange sepith masses for mira." + }, + { + "TYPE": "TextTableData", + "ID": 175, + "STRING": "Exchange sepith for mira." + }, + { + "TYPE": "TextTableData", + "ID": 176, + "STRING": "Slot will be opened." + }, + { + "TYPE": "TextTableData", + "ID": 177, + "STRING": "This slot cannot be opened, as the orbal circuit\nleading to it is not connected." + }, + { + "TYPE": "TextTableData", + "ID": 178, + "STRING": "This slot has already been opened." + }, + { + "TYPE": "TextTableData", + "ID": 179, + "STRING": "#1CCheck all of the quests before continuing." + }, + { + "TYPE": "TextTableData", + "ID": 180, + "STRING": "[Viewed]" + }, + { + "TYPE": "TextTableData", + "ID": 181, + "STRING": "[Unread]" + }, + { + "TYPE": "TextTableData", + "ID": 182, + "STRING": "[Required]" + }, + { + "TYPE": "TextTableData", + "ID": 183, + "STRING": "#1CParty formation still needs changing." + }, + { + "TYPE": "TextTableData", + "ID": 184, + "STRING": "#1CFinalize party formation?" + }, + { + "TYPE": "TextTableData", + "ID": 185, + "STRING": "#1CYou cannot form a party consisting only of K.O.ed members." + }, + { + "TYPE": "TextTableData", + "ID": 236, + "STRING": "Volume" + }, + { + "TYPE": "TextTableData", + "ID": 237, + "STRING": "Camera Settings" + }, + { + "TYPE": "TextTableData", + "ID": 238, + "STRING": "Notebook Shortcuts" + }, + { + "TYPE": "TextTableData", + "ID": 239, + "STRING": "Minimap" + }, + { + "TYPE": "TextTableData", + "ID": 240, + "STRING": "Vibration Settings" + }, + { + "TYPE": "TextTableData", + "ID": 241, + "STRING": "Button Configurations" + }, + { + "TYPE": "TextTableData", + "ID": 242, + "STRING": "Display Settings" + }, + { + "TYPE": "TextTableData", + "ID": 243, + "STRING": "BGM" + }, + { + "TYPE": "TextTableData", + "ID": 244, + "STRING": "Sound Effects" + }, + { + "TYPE": "TextTableData", + "ID": 245, + "STRING": "Voice" + }, + { + "TYPE": "TextTableData", + "ID": 246, + "STRING": "Vertical Camera" + }, + { + "TYPE": "TextTableData", + "ID": 247, + "STRING": "Horizontal Camera" + }, + { + "TYPE": "TextTableData", + "ID": 248, + "STRING": "ZL button" + }, + { + "TYPE": "TextTableData", + "ID": 249, + "STRING": "ZR button" + }, + { + "TYPE": "TextTableData", + "ID": 250, + "STRING": "Minimap Setting" + }, + { + "TYPE": "TextTableData", + "ID": 251, + "STRING": "Vibration Setting" + }, + { + "TYPE": "TextTableData", + "ID": 252, + "STRING": "Button Configurations" + }, + { + "TYPE": "TextTableData", + "ID": 253, + "STRING": "Display Settings" + }, + { + "TYPE": "TextTableData", + "ID": 254, + "STRING": "D-Pad Up" + }, + { + "TYPE": "TextTableData", + "ID": 255, + "STRING": "D-Pad Down" + }, + { + "TYPE": "TextTableData", + "ID": 256, + "STRING": "D-Pad Left" + }, + { + "TYPE": "TextTableData", + "ID": 257, + "STRING": "D-Pad Right" + }, + { + "TYPE": "TextTableData", + "ID": 258, + "STRING": "L Button" + }, + { + "TYPE": "TextTableData", + "ID": 259, + "STRING": "L Button" + }, + { + "TYPE": "TextTableData", + "ID": 260, + "STRING": "Width" + }, + { + "TYPE": "TextTableData", + "ID": 261, + "STRING": "Height" + }, + { + "TYPE": "TextTableData", + "ID": 262, + "STRING": "Brightness" + }, + { + "TYPE": "TextTableData", + "ID": 263, + "STRING": "Return to default settings" + }, + { + "TYPE": "TextTableData", + "ID": 264, + "STRING": "#1CRevert display settings to default?" + }, + { + "TYPE": "TextTableData", + "ID": 265, + "STRING": "Normal" + }, + { + "TYPE": "TextTableData", + "ID": 266, + "STRING": "Inverted" + }, + { + "TYPE": "TextTableData", + "ID": 267, + "STRING": "Rotate" + }, + { + "TYPE": "TextTableData", + "ID": 268, + "STRING": "Fixed" + }, + { + "TYPE": "TextTableData", + "ID": 269, + "STRING": "On" + }, + { + "TYPE": "TextTableData", + "ID": 270, + "STRING": "Off" + }, + { + "TYPE": "TextTableData", + "ID": 271, + "STRING": "Main Notebook" + }, + { + "TYPE": "TextTableData", + "ID": 272, + "STRING": "Quest Notebook" + }, + { + "TYPE": "TextTableData", + "ID": 273, + "STRING": "Battle Notebook" + }, + { + "TYPE": "TextTableData", + "ID": 274, + "STRING": "Character Notebook" + }, + { + "TYPE": "TextTableData", + "ID": 275, + "STRING": "Recipe Book" + }, + { + "TYPE": "TextTableData", + "ID": 276, + "STRING": "Fishing Book" + }, + { + "TYPE": "TextTableData", + "ID": 277, + "STRING": "Books" + }, + { + "TYPE": "TextTableData", + "ID": 278, + "STRING": "Active Voice Notes" + }, + { + "TYPE": "TextTableData", + "ID": 279, + "STRING": "Help" + }, + { + "TYPE": "TextTableData", + "ID": 280, + "STRING": "Zoom In" + }, + { + "TYPE": "TextTableData", + "ID": 281, + "STRING": "Zoom Out" + }, + { + "TYPE": "TextTableData", + "ID": 282, + "STRING": "Zoom In/Out" + }, + { + "TYPE": "TextTableData", + "ID": 283, + "STRING": "Reset Camera" + }, + { + "TYPE": "TextTableData", + "ID": 284, + "STRING": "Turn Character" + }, + { + "TYPE": "TextTableData", + "ID": 285, + "STRING": "Change Leader (Next)" + }, + { + "TYPE": "TextTableData", + "ID": 286, + "STRING": "Change Leader (Previous)" + }, + { + "TYPE": "TextTableData", + "ID": 287, + "STRING": "Change Character" + }, + { + "TYPE": "TextTableData", + "ID": 288, + "STRING": "Reset Camera Angle" + }, + { + "TYPE": "TextTableData", + "ID": 289, + "STRING": "Camera Zoom Settings" + }, + { + "TYPE": "TextTableData", + "ID": 186, + "STRING": "????" + }, + { + "TYPE": "TextTableData", + "ID": 187, + "STRING": "…" + }, + { + "TYPE": "TextTableData", + "ID": 188, + "STRING": "Rean Schwarzer" + }, + { + "TYPE": "TextTableData", + "ID": 189, + "STRING": "Year 1 Class VII" + }, + { + "TYPE": "TextTableData", + "ID": 190, + "STRING": "Rank B7" + }, + { + "TYPE": "TextTableData", + "ID": 191, + "STRING": "Rank B6" + }, + { + "TYPE": "TextTableData", + "ID": 192, + "STRING": "Rank B5" + }, + { + "TYPE": "TextTableData", + "ID": 193, + "STRING": "Rank B4" + }, + { + "TYPE": "TextTableData", + "ID": 194, + "STRING": "Rank B3" + }, + { + "TYPE": "TextTableData", + "ID": 195, + "STRING": "Rank B2" + }, + { + "TYPE": "TextTableData", + "ID": 196, + "STRING": "Rank B1" + }, + { + "TYPE": "TextTableData", + "ID": 197, + "STRING": "Rank A7" + }, + { + "TYPE": "TextTableData", + "ID": 198, + "STRING": "Rank A6" + }, + { + "TYPE": "TextTableData", + "ID": 199, + "STRING": "Rank A5" + }, + { + "TYPE": "TextTableData", + "ID": 200, + "STRING": "Rank A4" + }, + { + "TYPE": "TextTableData", + "ID": 201, + "STRING": "Rank A3" + }, + { + "TYPE": "TextTableData", + "ID": 202, + "STRING": "Rank A2" + }, + { + "TYPE": "TextTableData", + "ID": 203, + "STRING": "Rank A1" + }, + { + "TYPE": "TextTableData", + "ID": 204, + "STRING": "Rank A0" + }, + { + "TYPE": "TextTableData", + "ID": 205, + "STRING": "---" + }, + { + "TYPE": "TextTableData", + "ID": 206, + "STRING": "Completed" + }, + { + "TYPE": "TextTableData", + "ID": 207, + "STRING": "Expired" + }, + { + "TYPE": "TextTableData", + "ID": 208, + "STRING": "Incomplete" + }, + { + "TYPE": "TextTableData", + "ID": 209, + "STRING": "Reported" + }, + { + "TYPE": "TextTableData", + "ID": 211, + "STRING": "Long" + }, + { + "TYPE": "TextTableData", + "ID": 212, + "STRING": "Medium" + }, + { + "TYPE": "TextTableData", + "ID": 213, + "STRING": "Short" + }, + { + "TYPE": "TextTableData", + "ID": 214, + "STRING": "-" + }, + { + "TYPE": "TextTableData", + "ID": 215, + "STRING": "#911c[Req.]" + }, + { + "TYPE": "TextTableData", + "ID": 216, + "STRING": "Completed" + }, + { + "TYPE": "TextTableData", + "ID": 217, + "STRING": "Reported" + }, + { + "TYPE": "TextTableData", + "ID": 218, + "STRING": "Expired" + }, + { + "TYPE": "TextTableData", + "ID": 219, + "STRING": "[%s]" + }, + { + "TYPE": "TextTableData", + "ID": 220, + "STRING": "#1CInsufficient ingredients." + }, + { + "TYPE": "TextTableData", + "ID": 221, + "STRING": "#1CYou can't make any more." + }, + { + "TYPE": "TextTableData", + "ID": 222, + "STRING": "Who will do the cooking?" + }, + { + "TYPE": "TextTableData", + "ID": 223, + "STRING": "Cooking" + }, + { + "TYPE": "TextTableData", + "ID": 224, + "STRING": "." + }, + { + "TYPE": "TextTableData", + "ID": 225, + "STRING": "Cooking complete!" + }, + { + "TYPE": "TextTableData", + "ID": 226, + "STRING": "Complete!" + }, + { + "TYPE": "TextTableData", + "ID": 227, + "STRING": "Complete!" + }, + { + "TYPE": "TextTableData", + "ID": 228, + "STRING": "Complete?" + }, + { + "TYPE": "TextTableData", + "ID": 229, + "STRING": "Complete!" + }, + { + "TYPE": "TextTableData", + "ID": 230, + "STRING": "x" + }, + { + "TYPE": "TextTableData", + "ID": 231, + "STRING": "White Angler" + }, + { + "TYPE": "TextTableData", + "ID": 232, + "STRING": "Brown Angler" + }, + { + "TYPE": "TextTableData", + "ID": 233, + "STRING": "Black Angler" + }, + { + "TYPE": "TextTableData", + "ID": 234, + "STRING": "Red Angler" + }, + { + "TYPE": "TextTableData", + "ID": 235, + "STRING": "Active Voice Record" + }, + { + "TYPE": "TextTableData", + "ID": 290, + "STRING": "New Save Data" + }, + { + "TYPE": "TextTableData", + "ID": 291, + "STRING": "The Legend of Heroes: Trails of Cold Steel Kai" + }, + { + "TYPE": "TextTableData", + "ID": 302, + "STRING": "System Data" + }, + { + "TYPE": "TextTableData", + "ID": 303, + "STRING": " The Legend of Heroes: Trails of Cold Steel Kai system data。\nHere are stored settings, etc." + }, + { + "TYPE": "TextTableData", + "ID": 304, + "STRING": "Playtime" + }, + { + "TYPE": "TextTableData", + "ID": 305, + "STRING": "Difficulty" + }, + { + "TYPE": "TextTableData", + "ID": 306, + "STRING": "Easy" + }, + { + "TYPE": "TextTableData", + "ID": 307, + "STRING": "Normal" + }, + { + "TYPE": "TextTableData", + "ID": 308, + "STRING": "Hard" + }, + { + "TYPE": "TextTableData", + "ID": 309, + "STRING": "Nightmare" + }, + { + "TYPE": "TextTableData", + "ID": 310, + "STRING": "Lv" + }, + { + "TYPE": "TextTableData", + "ID": 311, + "STRING": " " + }, + { + "TYPE": "TextTableData", + "ID": 312, + "STRING": "Party" + }, + { + "TYPE": "TextTableData", + "ID": 292, + "STRING": "." + }, + { + "TYPE": "TextTableData", + "ID": 293, + "STRING": "Prologue" + }, + { + "TYPE": "TextTableData", + "ID": 294, + "STRING": "Chapter 1" + }, + { + "TYPE": "TextTableData", + "ID": 295, + "STRING": "Chapter 2" + }, + { + "TYPE": "TextTableData", + "ID": 296, + "STRING": "Chapter 3" + }, + { + "TYPE": "TextTableData", + "ID": 297, + "STRING": "Chapter 4" + }, + { + "TYPE": "TextTableData", + "ID": 298, + "STRING": "Chapter 5" + }, + { + "TYPE": "TextTableData", + "ID": 299, + "STRING": "Chapter 6" + }, + { + "TYPE": "TextTableData", + "ID": 300, + "STRING": "Final Chapter" + }, + { + "TYPE": "TextTableData", + "ID": 301, + "STRING": "Clear Data" + }, + { + "TYPE": "TextTableData", + "ID": 313, + "STRING": "Saving system data..." + }, + { + "TYPE": "TextTableData", + "ID": 314, + "STRING": "Saving system data" + }, + { + "TYPE": "TextTableData", + "ID": 315, + "STRING": "Saving system data." + }, + { + "TYPE": "TextTableData", + "ID": 316, + "STRING": "Saving system data.." + }, + { + "TYPE": "TextTableData", + "ID": 317, + "STRING": "Loading system data..." + }, + { + "TYPE": "TextTableData", + "ID": 318, + "STRING": "Loading system data" + }, + { + "TYPE": "TextTableData", + "ID": 319, + "STRING": "Loading system data." + }, + { + "TYPE": "TextTableData", + "ID": 320, + "STRING": "Loading system data.." + }, + { + "TYPE": "TextTableData", + "ID": 321, + "STRING": "No system data exists." + }, + { + "TYPE": "TextTableData", + "ID": 322, + "STRING": "No system data exists. Continue anyway?" + }, + { + "TYPE": "TextTableData", + "ID": 323, + "STRING": "Could not load system data." + }, + { + "TYPE": "TextTableData", + "ID": 324, + "STRING": "Could not load system data. Continue anyway?" + }, + { + "TYPE": "TextTableData", + "ID": 325, + "STRING": "System data could not be overwritten, as it is damaged.\nDelete the system data and then try again." + }, + { + "TYPE": "TextTableData", + "ID": 326, + "STRING": "Save data could not be overwritten, as it is damaged.\nDelete the save data and then try again." + }, + { + "TYPE": "TextTableData", + "ID": 327, + "STRING": "It is not possible to load save data with a different\nowner." + }, + { + "TYPE": "TextTableData", + "ID": 328, + "STRING": "Cannot load this save data, as it contains downloadable \ncontent which hasn't been installed." + }, + { + "TYPE": "TextTableData", + "ID": 329, + "STRING": "Save" + }, + { + "TYPE": "TextTableData", + "ID": 330, + "STRING": "Load" + }, + { + "TYPE": "TextTableData", + "ID": 331, + "STRING": "Delete" + }, + { + "TYPE": "TextTableData", + "ID": 332, + "STRING": "#1CBefore beginning the game, you can select what to \ncarry over. The more times you clear the game, the \nmore you can carry over to your next playthrough." + }, + { + "TYPE": "TextTableData", + "ID": 333, + "STRING": "#1CInsufficient points." + }, + { + "TYPE": "TextTableData", + "ID": 334, + "STRING": "#1CReturn to title screen?" + }, + { + "TYPE": "TextTableData", + "ID": 335, + "STRING": "#1CRank increased to [%s].\nReceived #%dI#2C%s#1C as a perk." + }, + { + "TYPE": "TextTableData", + "ID": 336, + "STRING": "#160IContinue" + }, + { + "TYPE": "TextTableData", + "ID": 337, + "STRING": "Save" + }, + { + "TYPE": "TextTableData", + "ID": 338, + "STRING": "Delete Save Data" + }, + { + "TYPE": "TextTableData", + "ID": 339, + "STRING": "Continue" + }, + { + "TYPE": "TextTableData", + "ID": 340, + "STRING": "Cancel" + }, + { + "TYPE": "TextTableData", + "ID": 341, + "STRING": "Return to title screen" + }, + { + "TYPE": "TextTableData", + "ID": 342, + "STRING": "Go to the PlayStation㍻Store?" + }, + { + "TYPE": "TextTableData", + "ID": 343, + "STRING": "Checking downloadable content..." + }, + { + "TYPE": "TextTableData", + "ID": 344, + "STRING": "Checking downloadable content" + }, + { + "TYPE": "TextTableData", + "ID": 345, + "STRING": "Checking downloadable content." + }, + { + "TYPE": "TextTableData", + "ID": 346, + "STRING": "Checking downloadable content.." + }, + { + "TYPE": "TextTableData", + "ID": 347, + "STRING": "Obtaining trophy data..." + }, + { + "TYPE": "TextTableData", + "ID": 348, + "STRING": "Obtaining trophy data" + }, + { + "TYPE": "TextTableData", + "ID": 349, + "STRING": "Obtaining trophy data." + }, + { + "TYPE": "TextTableData", + "ID": 350, + "STRING": "Obtaining trophy data.." + }, + { + "TYPE": "TextTableData", + "ID": 351, + "STRING": "現在の進行状況をPlayStation㊥Network上へ\nアップロードしますか?" + }, + { + "TYPE": "TextTableData", + "ID": 352, + "STRING": "Uploading data..." + }, + { + "TYPE": "TextTableData", + "ID": 353, + "STRING": "Uploading data" + }, + { + "TYPE": "TextTableData", + "ID": 354, + "STRING": "Uploading data." + }, + { + "TYPE": "TextTableData", + "ID": 355, + "STRING": "Uploading data.." + }, + { + "TYPE": "TextTableData", + "ID": 356, + "STRING": "Uploading data complete." + }, + { + "TYPE": "TextTableData", + "ID": 357, + "STRING": "Uploading data interrupted." + }, + { + "TYPE": "TextTableData", + "ID": 358, + "STRING": "#1CPlayStation㊥Network上にアップロードされている\nPlayStation㍻3版、PlayStation㍻Vita版\nのセーブデータを引き継ぐことができます。\n\n#0CPlayStation㊥Networkからゲームの進行状況を\nダウンロードしますか?" + }, + { + "TYPE": "TextTableData", + "ID": 359, + "STRING": "Downloading data..." + }, + { + "TYPE": "TextTableData", + "ID": 360, + "STRING": "Downloading data" + }, + { + "TYPE": "TextTableData", + "ID": 361, + "STRING": "Downloading data." + }, + { + "TYPE": "TextTableData", + "ID": 362, + "STRING": "Downloading data.." + }, + { + "TYPE": "TextTableData", + "ID": 363, + "STRING": "Downloading data complete." + }, + { + "TYPE": "TextTableData", + "ID": 364, + "STRING": "Downloading data interrupted." + }, + { + "TYPE": "TextTableData", + "ID": 365, + "STRING": "This Sony Entertainment Network account's parental \ncontrol settings do not allow it to go online. You cannot \nuse online services on this account." + }, + { + "TYPE": "TextTableData", + "ID": 366, + "STRING": "PlayStation㊥Networkからサインアウトしました。\nセーブデータ引継ぎを利用するには、PlayStation㊥Networkに\n接続しサインインしてください。" + }, + { + "TYPE": "TextTableData", + "ID": 367, + "STRING": "PlayStation㊥Networkにサインインしていません。\nセーブデータ引継ぎを利用するには、PlayStation㊥Networkに\n接続しサインインしてください。" + }, + { + "TYPE": "TextTableData", + "ID": 368, + "STRING": "Could not download data. To download progress data, you will\nfirst need to upload data from the PlayStation㍻Vita version." + }, + { + "TYPE": "TextTableData", + "ID": 369, + "STRING": "Could not download data. To download progress data, you will\nfirst need to upload data from the PlayStation㍻3 version." + }, + { + "TYPE": "TextTableData", + "ID": 370, + "STRING": "The Legend of Heroes: Trails of Cold Steel\nInstall Data" + }, + { + "TYPE": "TextTableData", + "ID": 371, + "STRING": "Insufficient free space on the hard drive. %dMB more is required.\nQuit the game and free up additional space to continue." + }, + { + "TYPE": "TextTableData", + "ID": 372, + "STRING": "Insufficient free space on the hard drive. %dKB more is required.\nQuit the game and free up additional space to continue." + }, + { + "TYPE": "TextTableData", + "ID": 373, + "STRING": "An error occurred when checking install data. \nQuitting the game." + }, + { + "TYPE": "TextTableData", + "ID": 374, + "STRING": "Install data is corrupted. \nQuit the game and delete the install data." + }, + { + "TYPE": "TextTableData", + "ID": 375, + "STRING": "Installing data. Do not turn off the system's power during the\ninstallation process." + }, + { + "TYPE": "TextTableData", + "ID": 376, + "STRING": "Commence installation process." + }, + { + "TYPE": "TextTableData", + "ID": 377, + "STRING": "Installing data complete." + }, + { + "TYPE": "TextTableData", + "ID": 378, + "STRING": "An error occurred during the installation process.\nQuitting the game." + }, + { + "TYPE": "TextTableData", + "ID": 379, + "STRING": "Tampered-with data detected. Quitting the game." + }, + { + "TYPE": "TextTableData", + "ID": 380, + "STRING": "Next" + }, + { + "TYPE": "TextTableData", + "ID": 381, + "STRING": "Skip" + }, + { + "TYPE": "TextTableData", + "ID": 382, + "STRING": " can now be used." + }, + { + "TYPE": "TextTableData", + "ID": 383, + "STRING": "#1CAttempt to flee?\nChance: #2C%d%" + }, + { + "TYPE": "TextTableData", + "ID": 384, + "STRING": "#1CCouldn't flee!" + }, + { + "TYPE": "TextTableData", + "ID": 385, + "STRING": "Craft" + }, + { + "TYPE": "TextTableData", + "ID": 386, + "STRING": "Art" + }, + { + "TYPE": "TextTableData", + "ID": 387, + "STRING": "Item" + }, + { + "TYPE": "TextTableData", + "ID": 388, + "STRING": "The party was wiped out..." + }, + { + "TYPE": "TextTableData", + "ID": 389, + "STRING": "Retry" + }, + { + "TYPE": "TextTableData", + "ID": 390, + "STRING": "Weaken Enemies and Retry" + }, + { + "TYPE": "TextTableData", + "ID": 391, + "STRING": "Continue" + }, + { + "TYPE": "TextTableData", + "ID": 392, + "STRING": "Return to title screen" + }, + { + "TYPE": "TextTableData", + "ID": 393, + "STRING": "You were defeated." + }, + { + "TYPE": "TextTableData", + "ID": 394, + "STRING": "#1CChance: #2C%3d%" + }, + { + "TYPE": "TextTableData", + "ID": 395, + "STRING": "PSN" + }, + { + "TYPE": "TextTableData", + "ID": 396, + "STRING": "SEAL" + }, + { + "TYPE": "TextTableData", + "ID": 397, + "STRING": "MUTE" + }, + { + "TYPE": "TextTableData", + "ID": 398, + "STRING": "BLND" + }, + { + "TYPE": "TextTableData", + "ID": 399, + "STRING": "SLP" + }, + { + "TYPE": "TextTableData", + "ID": 400, + "STRING": "BURN" + }, + { + "TYPE": "TextTableData", + "ID": 401, + "STRING": "FRZ" + }, + { + "TYPE": "TextTableData", + "ID": 402, + "STRING": "PETR" + }, + { + "TYPE": "TextTableData", + "ID": 403, + "STRING": "FNT" + }, + { + "TYPE": "TextTableData", + "ID": 404, + "STRING": "CONF" + }, + { + "TYPE": "TextTableData", + "ID": 405, + "STRING": "DBLW" + }, + { + "TYPE": "TextTableData", + "ID": 406, + "STRING": "NMR" + }, + { + "TYPE": "TextTableData", + "ID": 407, + "STRING": "DLAY" + }, + { + "TYPE": "TextTableData", + "ID": 408, + "STRING": "VNSH" + }, + { + "TYPE": "TextTableData", + "ID": 409, + "STRING": "S-DWN" + }, + { + "TYPE": "TextTableData", + "ID": 410, + "STRING": "#2C#%dI%s#0C reached level %d!" + }, + { + "TYPE": "TextTableData", + "ID": 411, + "STRING": "Gained a new ability!" + }, + { + "TYPE": "TextTableData", + "ID": 412, + "STRING": "#1C%s and %s reached link level %d!" + }, + { + "TYPE": "TextTableData", + "ID": 413, + "STRING": "It had no effect..." + }, + { + "TYPE": "TextTableData", + "ID": 414, + "STRING": "View Specifics" + }, + { + "TYPE": "TextTableData", + "ID": 415, + "STRING": "Close" + }, + { + "TYPE": "TextTableData", + "ID": 416, + "STRING": "Condition met!" + }, + { + "TYPE": "TextTableData", + "ID": 417, + "STRING": "Rotate Character" + }, + { + "TYPE": "TextTableData", + "ID": 418, + "STRING": "." + }, + { + "TYPE": "TextTableData", + "ID": 427, + "STRING": "★★★" + }, + { + "TYPE": "TextTableData", + "ID": 428, + "STRING": "#147IShining Poms" + }, + { + "TYPE": "TextTableData", + "ID": 429, + "STRING": "#1CWhen you start a New Game+, all downloadable content\nwill be marked as unused. To use DLC items, reobtain\nthem from ITEM then DLC in the Camp Menu." + }, + { + "TYPE": "TextTableData", + "ID": 430, + "STRING": "Checking data..." + }, + { + "TYPE": "TextTableData", + "ID": 431, + "STRING": "Checking data" + }, + { + "TYPE": "TextTableData", + "ID": 432, + "STRING": "Checking data." + }, + { + "TYPE": "TextTableData", + "ID": 433, + "STRING": "Checking data.." + }, + { + "TYPE": "TextTableData", + "ID": 434, + "STRING": "#1Cデータのアップロードを開始します。\nPlayStation㊥Network上のデータは上書きされますが、よろしいですか?" + }, + { + "TYPE": "TextTableData", + "ID": 435, + "STRING": "#1CData download will commence.\nUnsaved progress will be lost. Proceed?" + }, + { + "TYPE": "TextTableData", + "ID": 436, + "STRING": "#1CData download will commence.\nProceed?" + }, + { + "TYPE": "TextTableData", + "ID": 437, + "STRING": "Time updated" + }, + { + "TYPE": "TextTableData", + "ID": 438, + "STRING": "#6CCurrent data" + }, + { + "TYPE": "TextTableData", + "ID": 439, + "STRING": "PSN上のデータ" + }, + { + "TYPE": "TextTableData", + "ID": 440, + "STRING": "PlayStation㍻3版" + }, + { + "TYPE": "TextTableData", + "ID": 441, + "STRING": "PlayStation㍻Vita版" + }, + { + "TYPE": "TextTableData", + "ID": 442, + "STRING": "PlayStation㍻4版" + }, + { + "TYPE": "TextTableData", + "ID": 443, + "STRING": "Preparing data necessary for this save file...\nPlease try again later." + }, + { + "TYPE": "TextTableData", + "ID": 444, + "STRING": "Preparing data for next story.\nPlease try again later." + }, + { + "TYPE": "TextTableData", + "ID": 445, + "STRING": "PlayStation㊥Networkを介して、セーブデータを共有します。" + }, + { + "TYPE": "TextTableData", + "ID": 446, + "STRING": "PlayStation㊥Networkにアップロードした進行状況を\nダウンロードします。" + }, + { + "TYPE": "TextTableData", + "ID": 447, + "STRING": "#1CData could not be downloaded.\nIn order to download your current progress,\nit is necessary to upload data again." + }, + { + "TYPE": "TextTableData", + "ID": 448, + "STRING": " " + }, + { + "TYPE": "TextTableData", + "ID": 449, + "STRING": "Turbo Mode" + }, + { + "TYPE": "TextTableData", + "ID": 450, + "STRING": "#1CWith save data from the Trails of Cold Steel 3,\nyou can start a game with special items.\n\n #1CSearch for save data?" + }, + { + "TYPE": "TextTableData", + "ID": 451, + "STRING": "#1CWith Trails of Cold Steel 3 #0Csave data,\nyou've earned 10 points to use in New Game +.\n\n#2C(The maximum amount of points is 15.)" + } +] \ No newline at end of file diff --git a/text_assembler.py b/text_assembler.py new file mode 100644 index 0000000..2b00638 --- /dev/null +++ b/text_assembler.py @@ -0,0 +1,224 @@ +import json +import glob +import os +import numpy + +def GenerateData(entry): + new_entry = [] + new_entry.append(entry["TYPE"].encode("UTF-8") + b"\x00") + temp = [] + match(entry["TYPE"]): + case "TextTableData": + temp.append(numpy.uint16(entry["ID"])) + temp.append(entry["STRING"].encode("UTF-8") + b"\x00") + case "ActiveVoiceTableData": + temp.append(numpy.uint16(entry["ID"])) + temp.append(entry["ASSET_SYMBOL"].encode("UTF-8") + b"\x00") + temp.append(numpy.uint32(entry["UNK0"])) + temp.append(entry["STRING"].encode("UTF-8") + b"\x00") + temp.append(numpy.float32(entry["UNK1"][0])) + temp.append(numpy.float32(entry["UNK1"][1])) + for i in range(0, 6): + temp.append(numpy.uint16(entry["UNK2"][i])) + + case "QSChapter": + temp.append(numpy.uint16(entry["ID"])) + temp.append(entry["STRING"].encode("UTF-8") + b"\x00") + + case "QSBook": + temp.append(numpy.uint16(entry["UNK0"])) + temp.append(numpy.uint16(entry["ID"])) + temp.append(entry["STRING"].encode("UTF-8") + b"\x00") + temp.append(entry["BOOK"].encode("UTF-8") + b"\x00") + temp.append(entry["BOOKDATA"].encode("UTF-8") + b"\x00") + temp.append(numpy.uint16(entry["ID2"])) + + case "TacticalBonus": + temp.append(numpy.uint16(entry["ID"])) + temp.append(entry["STRING"].encode("UTF-8") + b"\x00") + temp.append(numpy.float32(entry["UNK0"])) + temp.append(numpy.uint16(entry["UNK1"])) + + case "CardTableData": + temp.append(numpy.uint16(entry["ID"])) + temp.append(entry["STRING"].encode("UTF-8") + b"\x00") + temp.append(bytes.fromhex(entry["UNK0"])) + + case "dlc": + temp.append(numpy.uint16(entry["ID"])) + temp.append(entry["CONTENTID"].encode("UTF-8") + b"\x00") + temp.append(entry["GROUPID"].encode("UTF-8") + b"\x00") + temp.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + temp.append(entry["STRINGS"][1].encode("UTF-8") + b"\x00") + + case "text_lst": + temp.append(numpy.uint16(entry["ID"])) + temp.append(entry["STRING"].encode("UTF-8") + b"\x00") + + case "hkitugi_lst": + temp.append(numpy.uint16(entry["ID"])) + temp.append(numpy.uint16(entry["UNK0"])) + temp.append(numpy.uint16(entry["UNK1"])) + temp.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + temp.append(entry["STRINGS"][1].encode("UTF-8") + b"\x00") + + case "item": + temp.append(numpy.uint16(entry["ID"])) + temp.append(numpy.int16(entry["UNK0"])) + temp.append(entry["STRING"].encode("UTF-8") + b"\x00") + temp.append(bytes.fromhex(entry["UNK1"])) + temp.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + temp.append(entry["STRINGS"][1].encode("UTF-8") + b"\x00") + + case "MapJumpData": + temp.append(numpy.uint16(entry["ID"])) + temp.append(numpy.uint16(entry["UNK0"])) + temp.append(entry["STRING1"].encode("UTF-8") + b"\x00") + temp.append(bytes.fromhex(entry["UNK1"])) + temp.append(entry["STRING2"].encode("UTF-8") + b"\x00") + temp.append(entry["STRING3"].encode("UTF-8") + b"\x00") + temp.append(bytes.fromhex(entry["UNK2"])) + + case "LinkAbList": + temp.append(numpy.uint16(entry["UNK0"])) + temp.append(numpy.uint16(entry["ID"])) + temp.append(numpy.uint8(entry["UNK1"])) + temp.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + temp.append(entry["STRINGS"][1].encode("UTF-8") + b"\x00") + + case "magic": + temp.append(numpy.uint16(entry["ID"])) + temp.append(numpy.uint16(entry["UNK0"])) + temp.append(entry["GROUP"].encode("UTF-8") + b"\x00") + temp.append(bytes.fromhex(entry["UNK1"])) + temp.append(entry["NAMEID"].encode("UTF-8") + b"\x00") + temp.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + temp.append(entry["STRINGS"][1].encode("UTF-8") + b"\x00") + + case "MG02Text": + temp.append(numpy.uint16(entry["UNK0"])) + temp.append(numpy.uint16(entry["ID"])) + temp.append(numpy.uint16(entry["UNK1"])) + temp.append(entry["STRING"].encode("UTF-8") + b"\x00") + temp.append(numpy.uint16(entry["UNK2"])) + temp.append(numpy.int32(entry["UNK3"])) + + case "status": + temp.append(entry["STRING1"].encode("UTF-8") + b"\x00") + temp.append(entry["STRING2"].encode("UTF-8") + b"\x00") + temp.append(entry["STRING3"].encode("UTF-8") + b"\x00") + for i in range(0, 3): + temp.append(numpy.float32(entry["UNK0"][i])) + temp.append(bytes.fromhex(entry["UNK1"])) + temp.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + temp.append(entry["STRINGS"][1].encode("UTF-8") + b"\x00") + + case "MasterQuartzMemo": + temp.append(numpy.uint16(entry["UNK0"])) + temp.append(numpy.uint16(entry["ID"])) + temp.append(entry["STRING"].encode("UTF-8") + b"\x00") + + case "NameTableData": + temp.append(numpy.uint16(entry["ID"])) + temp.append(entry["STRING1"].encode("UTF-8") + b"\x00") + for i in range(0, 5): + temp.append(entry["STRING2"][i].encode("UTF-8") + b"\x00") + + case "NaviTextData": + temp.append(numpy.uint16(entry["ID"])) + temp.append(entry["STRING"].encode("UTF-8") + b"\x00") + temp.append(bytes.fromhex(entry["UNK0"])) + + case "QSCook": + temp.append(entry["STRING1"].encode("UTF-8") + b"\x00") + temp.append(bytes.fromhex(entry["UNK0"])) + temp.append(entry["STRINGS1"][0].encode("UTF-8") + b"\x00") + temp.append(entry["STRINGS1"][1].encode("UTF-8") + b"\x00") + temp.append(numpy.uint16(entry["UNK1"])) + temp.append(entry["STRINGS2"][0].encode("UTF-8") + b"\x00") + temp.append(entry["STRINGS2"][1].encode("UTF-8") + b"\x00") + temp.append(numpy.uint16(entry["UNK2"])) + temp.append(entry["STRINGS3"][0].encode("UTF-8") + b"\x00") + temp.append(entry["STRINGS3"][1].encode("UTF-8") + b"\x00") + temp.append(numpy.uint16(entry["UNK3"])) + temp.append(entry["STRINGS4"][0].encode("UTF-8") + b"\x00") + temp.append(entry["STRINGS4"][1].encode("UTF-8") + b"\x00") + temp.append(bytes.fromhex(entry["UNK4"])) + + case "QSChar": + temp.append(numpy.uint16(entry["ID"])) + temp.append(bytes.fromhex(entry["UNK0"])) + for i in range(0, 10): + temp.append(entry["STRINGS"][i].encode("UTF-8") + b"\x00") + + case "QSFish": + temp.append(numpy.uint16(entry["ID"])) + temp.append(entry["STRING1"].encode("UTF-8") + b"\x00") + temp.append(numpy.uint16(entry["UNK0"])) + for i in range(0, 3): + temp.append(numpy.float32(entry["UNK1"][i])) + temp.append(bytes.fromhex(entry["UNK2"])) + temp.append(entry["STRING2"].encode("UTF-8") + b"\x00") + temp.append(bytes.fromhex(entry["UNK3"])) + + case "QSHelp": + temp.append(numpy.uint16(entry["UNK0"])) + temp.append(numpy.uint16(entry["ID"])) + temp.append(entry["STRING"].encode("UTF-8") + b"\x00") + + case "PlaceTableData": + temp.append(numpy.uint16(entry["ID"])) + temp.append(numpy.uint16(entry["UNK0"])) + temp.append(entry["NAMEID"].encode("UTF-8") + b"\x00") + temp.append(entry["STRING1"].encode("UTF-8") + b"\x00") + temp.append(entry["STRING2"].encode("UTF-8") + b"\x00") + + case "QSRank": + temp.append(numpy.uint16(entry["ID"])) + temp.append(entry["STRING"].encode("UTF-8") + b"\x00") + temp.append(bytes.fromhex(entry["UNK0"])) + + case "ShopTitle": + temp.append(numpy.uint16(entry["ID"])) + temp.append(numpy.uint8(entry["UNK0"])) + temp.append(entry["STRING"].encode("UTF-8") + b"\x00") + temp.append(bytes.fromhex(entry["UNK1"])) + + case "QSTitle": + temp.append(numpy.uint16(entry["ID"])) + temp.append(numpy.uint8(entry["UNK0"])) + temp.append(entry["STRING"].encode("UTF-8") + b"\x00") + temp.append(entry["CATEGORY"].encode("UTF-8") + b"\x00") + temp.append(bytes.fromhex(entry["UNK1"])) + + case "QSText": + temp.append(numpy.uint16(entry["ID"])) + temp.append(numpy.uint8(entry["UNK0"])) + temp.append(entry["STRING"].encode("UTF-8") + b"\x00") + temp.append(numpy.uint8(entry["UNK1"])) + + case _: + temp.append(bytes.fromhex(entry["UNK"])) + + new_entry.append(numpy.uint16(len(b"".join(temp)))) + new_entry.append(b"".join(temp)) + return b"".join(new_entry) + +files = glob.glob("text/jsons/*.json") + +os.makedirs("text/nx", exist_ok=True) + +for i in range(0, len(files)): + print(files[i]) + file = open(files[i], "r", encoding="UTF-8") + dump = json.load(file) + file.close() + + OUTPUT = [] + for x in range(0, len(dump)): + OUTPUT.append(GenerateData(dump[x])) + + file_new = open("text/nx/%s.tbl" % files[i][11:-5], "wb") + file_new.write(numpy.uint16(len(dump))) + file_new.write(b"".join(OUTPUT)) + file_new.close() diff --git a/ui_assembler.py b/ui_assembler.py new file mode 100644 index 0000000..270484d --- /dev/null +++ b/ui_assembler.py @@ -0,0 +1,848 @@ +import glob +import os +import json +import sys +import numpy + +def WriteDialog(dialog): + entry = [] + for i in range(0, len(dialog["STRINGS"])): + size = len(dialog["STRINGS"][i]) + if (size < 5): + entry.append(dialog["STRINGS"][i].encode("UTF-8").replace(b"\n", b"\x01")) + continue + match(dialog["STRINGS"][i][0:5]): + case "NEW_L": + entry.append(numpy.uint8(1)) + case "CMD: ": + entry.append(numpy.uint8(int(dialog["STRINGS"][i].replace("CMD: ", "")))) + case "KEY_W": + entry.append(numpy.uint8(2)) + case "CLEAR": + entry.append(numpy.uint8(3)) + case "SHOW_": + entry.append(numpy.uint8(6)) + case "SET_C": + entry.append(numpy.uint8(7)) + case "ITEM_": + entry.append(numpy.uint8(0x10)) + entry.append(numpy.uint16(int(dialog["STRINGS"][i].replace("ITEM_ID: ", "")))) + case "VOICE": + entry.append(numpy.uint8(0x11)) + entry.append(numpy.uint32(int(dialog["STRINGS"][i].replace("VOICE_FILE_ID: ", "")))) + case "CMD12": + entry.append(numpy.uint32(int(dialog["STRINGS"][i].replace("CMD12_ARG: ", "")))) + case _: + entry.append(dialog["STRINGS"][i].encode("UTF-8").replace(b"\n", b"\x01")) + entry.append(b"\x00") + return b"".join(entry) + + +def CalcGoto(table): + entry = [] + for i in range(0, len(table)): + entry.append(numpy.uint8(table[i]["CONTROL"])) + if (table[i]["CONTROL"] in [2, 3, 4, 5, 6, 7, 8, 9, 0xA, 0xB, 0xC, 0xD, 0xE, 0x10, 0x11, 0x12, 0x13, 0x17, 0x22]): + continue + match(table[i]["CONTROL"]): + case 0: + entry.append(numpy.int32(table[i]["UNK"][0])) + case 0x1E: + entry.append(numpy.int16(table[i]["UNK"][0])) + case 0x1F: + entry.append(numpy.int8(table[i]["UNK"][0])) + case 0x20: + entry.append(numpy.int8(table[i]["UNK"][0])) + case 0x21: + entry.append(bytes.fromhex(table[i]["UNK"])) + case 0x23: + entry.append(numpy.int8(table[i]["UNK"][0])) + case 0x24: + entry.append(numpy.int32(table[i]["UNK"][0])) + case 0x25: + entry.append(numpy.int16(table[i]["UNK"][0])) + case 0x1C: + entry.append(GenerateCommand(table[i]["INSTRUCTION"])) + entry.append(numpy.uint8(1)) + return b"".join(entry) + +def GenerateCommand(entry, Offset_dict = None): + ret_entry = [] + match(entry["TYPE"]): + case "RETURN": + ret_entry.append(numpy.uint8(1)) + case "JUMP_TO_FUNCTION": + ret_entry.append(numpy.uint8(2)) + ret_entry.append(numpy.int8(entry["UNK"][0])) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + case "GOTO3": + ret_entry.append(numpy.uint8(3)) + if (Offset_dict == None): + ret_entry.append(numpy.uint32(0)) + else: + ret_entry.append(numpy.uint32(Offset_dict[entry["TO_LABEL"]])) + case "0x4": + ret_entry.append(numpy.uint8(4)) + ret_entry.append(numpy.int8(entry["UNK"][0])) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + case "GOTO5": + ret_entry.append(numpy.uint8(5)) + ret_entry.append(CalcGoto(entry["TABLE"])) + if (Offset_dict == None): + ret_entry.append(numpy.uint32(0)) + else: + ret_entry.append(numpy.uint32(Offset_dict[entry["TO_LABEL"]])) + + case "GOTO6": + ret_entry.append(numpy.uint8(6)) + ret_entry.append(CalcGoto(entry["TABLE"])) + ret_entry.append(numpy.uint8(len(entry["TO_LABELS"]))) + for i in range(0, len(entry["TO_LABELS"])): + ret_entry.append(numpy.uint16(entry["TO_LABELS"][i]["UNK"][0])) + if (Offset_dict == None): + ret_entry.append(numpy.uint32(0)) + else: + ret_entry.append(numpy.uint32(Offset_dict[entry["TO_LABELS"][i]["TO_LABEL"]])) + if (Offset_dict == None): + ret_entry.append(numpy.uint32(0)) + else: + ret_entry.append(numpy.uint32(Offset_dict[entry["TO_LABEL"]])) + case "0x7": + ret_entry.append(numpy.uint8(7)) + ret_entry.append(numpy.int32(entry["UNK"][0])) + case "0x8": + ret_entry.append(numpy.uint8(8)) + ret_entry.append(CalcGoto(entry["TABLE"])) + case "0xA": + ret_entry.append(numpy.uint8(0xA)) + ret_entry.append(numpy.int8(entry["UNK"][0])) + ret_entry.append(CalcGoto(entry["TABLE"])) + case "0xC": + ret_entry.append(numpy.uint8(0xC)) + ret_entry.append(numpy.int16(entry["UNK"][0])) + case "0xD": + ret_entry.append(numpy.uint8(0xD)) + ret_entry.append(numpy.int16(entry["UNK"][0])) + case "0xE": + ret_entry.append(numpy.uint8(0xE)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0xF": + ret_entry.append(numpy.uint8(0xF)) + ret_entry.append(numpy.int32(entry["UNK"][0])) + case "0x10": + ret_entry.append(numpy.uint8(0x10)) + ret_entry.append(numpy.int16(entry["UNK"][0])) + case "0x11": + ret_entry.append(numpy.uint8(0x11)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x12": + ret_entry.append(numpy.uint8(0x12)) + ret_entry.append(numpy.int8(entry["UNK"][0])) + ret_entry.append(CalcGoto(entry["TABLE"])) + case "0x13": + ret_entry.append(numpy.uint8(0x13)) + ret_entry.append(numpy.int8(entry["CONTROL"])) + ret_entry.append(bytes.fromhex(entry["UNK0"])) + if (entry["CONTROL"] == 0): + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + ret_entry.append(entry["STRINGS"][1].encode("UTF-8") + b"\x00") + elif (entry["CONTROL"] in [0xB, 0x22, 0x2B, 0x38, 0x3B]): + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + if (entry["CONTROL"] in [0xB, 0x22, 0x2B]): + ret_entry.append(bytes.fromhex(entry["UNK1"])) + case "0x14": + ret_entry.append(numpy.uint8(0x14)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + case "0x15": + ret_entry.append(numpy.uint8(0x15)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x16": + ret_entry.append(numpy.uint8(0x16)) + ret_entry.append(numpy.int8(entry["UNK"][0])) + case "0x17": + ret_entry.append(numpy.uint8(0x17)) + ret_entry.append(numpy.int8(entry["UNK"][0])) + case "TEXT18": + ret_entry.append(numpy.uint8(0x18)) + ret_entry.append(numpy.int16(entry["UNK"][0])) + ret_entry.append(WriteDialog(entry["DIALOG"])) + case "0x19": + ret_entry.append(numpy.uint8(0x19)) + ret_entry.append(numpy.int8(entry["CONTROL"])) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "MESSAGE": + ret_entry.append(numpy.uint8(0x1A)) + ret_entry.append(numpy.int16(entry["NAME_ID"])) + ret_entry.append(WriteDialog(entry["DIALOG"])) + case "0x1B": + ret_entry.append(numpy.uint8(0x1B)) + case "REMOVE_TEXT_BOX": + ret_entry.append(numpy.uint8(0x1C)) + case "OVERRIDE_DIALOG_SPEAKER": + ret_entry.append(numpy.uint8(0x1D)) + ret_entry.append(entry["NAME"][0].encode("UTF-8") + b"\x00") + ret_entry.append(numpy.int16(entry["UNK"][0])) + case "JUMP_TO_ID": + ret_entry.append(numpy.uint8(0x1E)) + for i in range(0, 2): + ret_entry.append(entry["STRINGS"][i].encode("UTF-8") + b"\x00") + case "0x1F": + ret_entry.append(numpy.uint8(0x1F)) + ret_entry.append(numpy.int8(entry["CONTROL"])) + ret_entry.append(numpy.int8(entry["CONTROL2"])) + if (entry["CONTROL"] != 3): + if (entry["CONTROL"] == 1): + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x20": + ret_entry.append(numpy.uint8(0x20)) + ret_entry.append(numpy.uint8(entry["SIZE_CHECK"])) + ret_entry.append(bytes.fromhex(entry["UNK0"])) + for i in range(0, 2): + ret_entry.append(entry["STRINGS"][i].encode("UTF-8") + b"\x00") + ret_entry.append(numpy.int8(entry["UNK1"][0])) + case "0x21": + ret_entry.append(numpy.uint8(0x21)) + ret_entry.append(numpy.uint8(entry["CONTROL"])) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x22": + ret_entry.append(numpy.uint8(0x22)) + ret_entry.append(numpy.int16(entry["UNK0"][0])) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + ret_entry.append(bytes.fromhex(entry["UNK1"])) + case "0x23": + ret_entry.append(numpy.uint8(0x23)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x24": + ret_entry.append(numpy.uint8(0x24)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + for i in range(0, 2): + ret_entry.append(entry["STRINGS"][i].encode("UTF-8") + b"\x00") + case "0x25": + ret_entry.append(numpy.uint8(0x25)) + ret_entry.append(bytes.fromhex(entry["UNK0"])) + for i in range(0, 2): + ret_entry.append(entry["STRINGS"][i].encode("UTF-8") + b"\x00") + ret_entry.append(bytes.fromhex(entry["UNK1"])) + case "0x26": + ret_entry.append(numpy.uint8(0x26)) + ret_entry.append(numpy.int8(entry["UNK"][0])) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + case "0x27": + ret_entry.append(numpy.uint8(0x27)) + ret_entry.append(numpy.uint8(entry["CONTROL"])) + if (entry["CONTROL"] in [0x11, 0x10, 0xF, 0xB, 0xD, 0xE, 0x12, 0x13, 0x14, 0xA, 0x15]): + ret_entry.append(bytes.fromhex(entry["UNK"])) + elif (entry["CONTROL"] == 0xC): + ret_entry.append(bytes.fromhex(entry["UNK0"])) + if (entry["CONTROL"] in [0xA, 0xC, 0x15]): + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + if (entry["CONTROL"] == 0xC): + ret_entry.append(bytes.fromhex(entry["UNK1"])) + case "0x28": + ret_entry.append(numpy.uint8(0x28)) + ret_entry.append(numpy.uint8(entry["CONTROL"])) + match(entry["CONTROL"]): + case 80: + ret_entry.append(numpy.int16(entry["UNK0"][0])) + ret_entry.append(entry["STRINGS1"][0].encode("UTF-8") + b"\x00") + ret_entry.append(bytes.fromhex(entry["UNK1"])) + ret_entry.append(entry["STRINGS2"][0].encode("UTF-8") + b"\x00") + case 100: + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + case _: + ret_entry.append(bytes.fromhex(entry["UNK"])) + if (entry["CONTROL"] == ord("i")): + for i in range(0, 2): + ret_entry.append(entry["STRINGS"][i].encode("UTF-8") + b"\x00") + elif (entry["CONTROL"] in [ord("\a"), 5]): + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + case "0x29": + ret_entry.append(numpy.uint8(0x29)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x2A": + ret_entry.append(numpy.uint8(0x2A)) + ret_entry.append(numpy.int16(entry["UNK"][0])) + case "0x2B": + ret_entry.append(numpy.uint8(0x2B)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x2C": + ret_entry.append(numpy.uint8(0x2C)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x2D": + ret_entry.append(numpy.uint8(0x2D)) + ret_entry.append(numpy.uint8(entry["CONTROL"])) + if (entry["CONTROL"] in [3, 0x14]): + ret_entry.append(bytes.fromhex(entry["UNK0"])) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + ret_entry.append(bytes.fromhex(entry["UNK1"])) + elif (entry["CONTROL"] in [0, 0x10]): + pass + else: + ret_entry.append(bytes.fromhex(entry["UNK0"])) + case "0x2E": + ret_entry.append(numpy.uint8(0x2E)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x2F": + ret_entry.append(numpy.uint8(0x2F)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + case "0x30": + ret_entry.append(numpy.uint8(0x30)) + ret_entry.append(numpy.uint8(entry["CONTROL"])) + if (entry["CONTROL"] != 7): + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x31": + ret_entry.append(numpy.uint8(0x31)) + ret_entry.append(numpy.uint8(entry["CONTROL"])) + ret_entry.append(bytes.fromhex(entry["UNK"])) + if (entry["CONTROL"] in [0, 0x32]): + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + case "0x32": + ret_entry.append(numpy.uint8(0x32)) + ret_entry.append(numpy.uint8(entry["CONTROL"])) + ret_entry.append(bytes.fromhex(entry["UNK"])) + if (entry["CONTROL"] in [1, 3, 4]): + for i in range(0, len(entry["STRINGS"])): + ret_entry.append(entry["STRINGS"][i].encode("UTF-8") + b"\x00") + case "0x33": + ret_entry.append(numpy.uint8(0x33)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x34": + ret_entry.append(numpy.uint8(0x34)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x35": + ret_entry.append(numpy.uint8(0x35)) + ret_entry.append(numpy.int16(entry["UNK"][0])) + case "0x36": + ret_entry.append(numpy.uint8(0x36)) + ret_entry.append(numpy.int16(entry["UNK0"][0])) + ret_entry.append(numpy.int16(entry["CONTROL"])) + ret_entry.append(bytes.fromhex(entry["UNK1"])) + case "0x37": + ret_entry.append(numpy.uint8(0x37)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x38": + ret_entry.append(numpy.uint8(0x38)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x39": + ret_entry.append(numpy.uint8(0x39)) + ret_entry.append(numpy.uint8(entry["CONTROL"])) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x3A": + ret_entry.append(numpy.uint8(0x3A)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x3B": + ret_entry.append(numpy.uint8(0x3B)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x3C": + ret_entry.append(numpy.uint8(0x3C)) + for i in range(0, 3): + ret_entry.append(numpy.uint16(entry["CONTROLS"][i])) + try: + ret_entry.append(bytes.fromhex(entry["UNK"])) + except: + pass + case "0x3D": + ret_entry.append(numpy.uint8(0x3D)) + ret_entry.append(numpy.int8(entry["UNK0"][0])) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + ret_entry.append(numpy.int16(entry["UNK1"][0])) + case "0x3E": + ret_entry.append(numpy.uint8(0x3E)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x3F": + ret_entry.append(numpy.uint8(0x3F)) + ret_entry.append(numpy.int8(entry["CONTROL"])) + try: + ret_entry.append(bytes.fromhex(entry["UNK"])) + except: + pass + case "0x40": + ret_entry.append(numpy.uint8(0x40)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x41": + ret_entry.append(numpy.uint8(0x41)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x42": + ret_entry.append(numpy.uint8(0x42)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x43": + ret_entry.append(numpy.uint8(0x43)) + ret_entry.append(numpy.int32(entry["UNK"][0])) + case "0x44": + ret_entry.append(numpy.uint8(0x44)) + ret_entry.append(numpy.int8(entry["CONTROL"])) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x45": + ret_entry.append(numpy.uint8(0x45)) + for i in range(0, 2): + ret_entry.append(entry["STRINGS"][i].encode("UTF-8") + b"\x00") + case "0x46": + ret_entry.append(numpy.uint8(0x46)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x47": + ret_entry.append(numpy.uint8(0x47)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x48": + ret_entry.append(numpy.uint8(0x48)) + ret_entry.append(numpy.int8(entry["UNK"][0])) + case "0x49": + ret_entry.append(numpy.uint8(0x49)) + ret_entry.append(numpy.uint8(entry["CONTROL"])) + if (entry["CONTROL"] in [0xB, 0xE, 0xF, 0x10, 0x11, 0x12, 0x16, 0x1D, 0x1E, 0x20, 0x25]): + pass + elif (entry["CONTROL"] in [10, 4, 3, 2, 1, 0]): + ret_entry.append(bytes.fromhex(entry["UNK"])) + else: + if (entry["CONTROL"] in [0xD, 0x14, 0x15, 0x19, 0x1C]): + for i in range(0, len(entry["STRINGS"])): + ret_entry.append(entry["STRINGS"][i].encode("UTF-8") + b"\x00") + if (entry["CONTROL"] in [0xD, 0x14, 0x17, 0x18, 0x1C, 0x21, 0x23, 0x24, 0x26, 0x28, 0x29]): + ret_entry.append(bytes.fromhex(entry["UNK"])) + if (entry["CONTROL"] == 0x26): + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + case "0x4A": + ret_entry.append(numpy.uint8(0x4A)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + case "0x4B": + ret_entry.append(numpy.uint8(0x4B)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x4C": + ret_entry.append(numpy.uint8(0x4C)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x4D": + ret_entry.append(numpy.uint8(0x4D)) + ret_entry.append(numpy.int8(entry["UNK"][0])) + case "0x4F": + ret_entry.append(numpy.uint8(0x4F)) + ret_entry.append(bytes.fromhex(entry["UNK0"])) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + ret_entry.append(bytes.fromhex(entry["UNK1"])) + case "0x51": + ret_entry.append(numpy.uint8(0x51)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + case "0x52": + ret_entry.append(numpy.uint8(0x52)) + ret_entry.append(numpy.int16(entry["UNK0"][0])) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + ret_entry.append(bytes.fromhex(entry["UNK1"])) + case "0x53": + ret_entry.append(numpy.uint8(0x53)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x55": + ret_entry.append(numpy.uint8(0x55)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + case "0x56": + ret_entry.append(numpy.uint8(0x56)) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + ret_entry.append(numpy.int16(entry["UNK"][0])) + case "0x57": + ret_entry.append(numpy.uint8(0x57)) + case "0x58": + ret_entry.append(numpy.uint8(0x58)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x59": + ret_entry.append(numpy.uint8(0x59)) + ret_entry.append(numpy.int16(entry["UNK"][0])) + case "0x5A": + ret_entry.append(numpy.uint8(0x5A)) + ret_entry.append(numpy.int8(entry["UNK0"][0])) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + ret_entry.append(numpy.int16(entry["UNK1"][0])) + case "0x5B": + ret_entry.append(numpy.uint8(0x5B)) + ret_entry.append(numpy.int8(entry["CONTROL"])) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x5C": + ret_entry.append(numpy.uint8(0x5C)) + ret_entry.append(numpy.int8(entry["CONTROL"])) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x5D": + ret_entry.append(numpy.uint8(0x5D)) + ret_entry.append(numpy.int8(entry["CONTROL"])) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + try: + ret_entry.append(bytes.fromhex(entry["UNK"])) + except: + pass + case "0x5E": + ret_entry.append(numpy.uint8(0x5E)) + ret_entry.append(numpy.int8(entry["CONTROL"])) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x5F": + ret_entry.append(numpy.uint8(0x5F)) + ret_entry.append(numpy.int16(entry["UNK0"])) + ret_entry.append(numpy.int8(entry["CONTROL"])) + if (entry["CONTROL"] != 1): + ret_entry.append(bytes.fromhex(entry["UNK1"])) + case "0x60": + ret_entry.append(numpy.uint8(0x60)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x61": + ret_entry.append(numpy.uint8(0x61)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x62": + ret_entry.append(numpy.uint8(0x62)) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x63": + ret_entry.append(numpy.uint8(0x63)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x64": + ret_entry.append(numpy.uint8(0x64)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x65": + ret_entry.append(numpy.uint8(0x65)) + ret_entry.append(numpy.int8(entry["CONTROL"])) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x66": + ret_entry.append(numpy.uint8(0x66)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x67": + ret_entry.append(numpy.uint8(0x67)) + ret_entry.append(numpy.uint16(entry["CONTROLS"][0])) + ret_entry.append(numpy.uint8(entry["CONTROLS"][1])) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x68": + ret_entry.append(numpy.uint8(0x68)) + ret_entry.append(numpy.int16(entry["UNK0"][0])) + ret_entry.append(numpy.int8(entry["CONTROL"])) + ret_entry.append(bytes.fromhex(entry["UNK1"])) + case "0x69": + ret_entry.append(numpy.uint8(0x69)) + ret_entry.append(numpy.int16(entry["UNK0"][0])) + ret_entry.append(numpy.int8(entry["CONTROL"])) + match(entry["CONTROL"]): + case 0: + ret_entry.append(bytes.fromhex(entry["UNK1"])) + case 2: + ret_entry.append(bytes.fromhex(entry["UNK1"])) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + case 3: + ret_entry.append(entry["STRINGS1"][0].encode("UTF-8") + b"\x00") + ret_entry.append(bytes.fromhex(entry["UNK1"])) + ret_entry.append(entry["STRINGS2"][0].encode("UTF-8") + b"\x00") + case 5: + ret_entry.append(bytes.fromhex(entry["UNK1"])) + case "0x6A": + ret_entry.append(numpy.uint8(0x6A)) + ret_entry.append(numpy.int8(entry["CONTROLS"][0])) + ret_entry.append(numpy.int8(entry["CONTROLS"][1])) + if(entry["CONTROLS"][0] == 1): + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + if(entry["CONTROLS"][0] != 3): + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x6B": + ret_entry.append(numpy.uint8(0x6B)) + ret_entry.append(numpy.int16(entry["UNK0"][0])) + for i in range(0, 2): + ret_entry.append(entry["STRINGS"][i].encode("UTF-8") + b"\x00") + ret_entry.append(numpy.int8(entry["UNK1"][0])) + case "0x6C": + ret_entry.append(numpy.uint8(0x6C)) + ret_entry.append(numpy.int16(entry["UNK"][0])) + case "0x6D": + ret_entry.append(numpy.uint8(0x6D)) + ret_entry.append(numpy.int8(entry["UNK"][0])) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + case "0x6E": + ret_entry.append(numpy.uint8(0x6E)) + ret_entry.append(numpy.uint8(entry["CONTROL"])) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x6F": + ret_entry.append(numpy.uint8(0x6F)) + ret_entry.append(numpy.int8(entry["CONTROL"])) + if (entry["CONTROL"] in [1, 2]): + ret_entry.append(numpy.int16(entry["UNK"][0])) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + case "0x70": + ret_entry.append(numpy.uint8(0x70)) + ret_entry.append(numpy.uint8(entry["CONTROL"])) + if (entry["CONTROL"] == 1): + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x71": + ret_entry.append(numpy.uint8(0x71)) + ret_entry.append(numpy.uint8(entry["CONTROL"])) + if (entry["CONTROL"] == 0): + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x72": + ret_entry.append(numpy.uint8(0x72)) + ret_entry.append(numpy.int16(entry["UNK"][0])) + case "0x73": + ret_entry.append(numpy.uint8(0x73)) + ret_entry.append(numpy.uint8(entry["CONTROL"])) + if (entry["CONTROL"] > 1): + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x74": + ret_entry.append(numpy.uint8(0x74)) + ret_entry.append(numpy.int8(entry["UNK"][0])) + case "0x77": + ret_entry.append(numpy.uint8(0x77)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x78": + ret_entry.append(numpy.uint8(0x78)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x79": + ret_entry.append(numpy.uint8(0x79)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x7A": + ret_entry.append(numpy.uint8(0x7A)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x7B": + ret_entry.append(numpy.uint8(0x7B)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + case "0x7D": + ret_entry.append(numpy.uint8(0x7D)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x7E": + ret_entry.append(numpy.uint8(0x7E)) + ret_entry.append(numpy.int16(entry["UNK"][0])) + case "0x7F": + ret_entry.append(numpy.uint8(0x7F)) + ret_entry.append(numpy.int8(entry["CONTROL"])) + ret_entry.append(bytes.fromhex(entry["UNK0"])) + for i in range(0, len(entry["STRINGS"])): + ret_entry.append(entry["STRINGS"][i].encode("UTF-8") + b"\x00") + if (entry["CONTROL"] not in [0, 1]): + ret_entry.append(bytes.fromhex(entry["UNK1"])) + case "0x81": + ret_entry.append(numpy.uint8(0x81)) + ret_entry.append(numpy.int8(entry["CONTROL"])) + if (entry["CONTROL"] in [0, 3, 4]): + ret_entry.append(numpy.int16(entry["UNK"][0])) + case "0x82": + ret_entry.append(numpy.uint8(0x82)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x83": + ret_entry.append(numpy.uint8(0x83)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x84": + ret_entry.append(numpy.uint8(0x84)) + case "0x85": + ret_entry.append(numpy.uint8(0x85)) + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + ret_entry.append(numpy.int32(entry["UNK"][0])) + case "0x86": + ret_entry.append(numpy.uint8(0x86)) + ret_entry.append(numpy.int8(entry["CONTROL"])) + try: + ret_entry.append(bytes.fromhex(entry["UNK"])) + except: + pass + case "0x87": + ret_entry.append(numpy.uint8(0x87)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x88": + ret_entry.append(numpy.uint8(0x88)) + ret_entry.append(numpy.int8(entry["CONTROL"])) + if (entry["CONTROL"] == 0): + ret_entry.append(numpy.int16(entry["UNK"][0])) + case "0x89": + ret_entry.append(numpy.uint8(0x89)) + ret_entry.append(numpy.int8(entry["CONTROL"])) + if (entry["CONTROL"] == 0): + ret_entry.append(numpy.int32(entry["UNK"][0])) + case "0x8A": + ret_entry.append(numpy.uint8(0x8A)) + ret_entry.append(numpy.int8(entry["CONTROL"])) + if (entry["CONTROL"] == 0): + for i in range(0, 2): + ret_entry.append(entry["STRINGS"][i].encode("UTF-8") + b"\x00") + case "0x8B": + ret_entry.append(numpy.uint8(0x8B)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x8C": + ret_entry.append(numpy.uint8(0x8C)) + ret_entry.append(numpy.int16(entry["UNK"][0])) + case "0x8D": + ret_entry.append(numpy.uint8(0x8D)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x8E": + ret_entry.append(numpy.uint8(0x8E)) + ret_entry.append(numpy.int16(entry["UNK"][0])) + case "0x90": + ret_entry.append(numpy.uint8(0x90)) + ret_entry.append(numpy.int8(entry["CONTROL"])) + if (entry["CONTROL"] == 0): + ret_entry.append(numpy.int16(entry["UNK"][0])) + case "0x91": + ret_entry.append(numpy.uint8(0x91)) + ret_entry.append(numpy.int8(entry["CONTROL"])) + if (entry["CONTROL"] == 0): + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x92": + ret_entry.append(numpy.uint8(0x92)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x93": + ret_entry.append(numpy.uint8(0x93)) + ret_entry.append(numpy.int8(entry["UNK"][0])) + case "0x94": + ret_entry.append(numpy.uint8(0x94)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x95": + ret_entry.append(numpy.uint8(0x95)) + case "0x96": + ret_entry.append(numpy.uint8(0x96)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x97": + ret_entry.append(numpy.uint8(0x97)) + ret_entry.append(numpy.int16(entry["UNK"][0])) + case "0x98": + ret_entry.append(numpy.uint8(0x98)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x99": + ret_entry.append(numpy.uint8(0x99)) + case "0x9A": + ret_entry.append(numpy.uint8(0x9A)) + ret_entry.append(numpy.uint8(entry["CONTROL"])) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x9B": + ret_entry.append(numpy.uint8(0x9B)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0x9E": + ret_entry.append(numpy.uint8(0x9E)) + ret_entry.append(numpy.int8(entry["UNK"][0])) + case "0x9F": + ret_entry.append(numpy.uint8(0x9F)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + for i in range(0, 2): + ret_entry.append(entry["STRINGS"][i].encode("UTF-8") + b"\x00") + case "0xA1": + ret_entry.append(numpy.uint8(0xA1)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0xA2": + ret_entry.append(numpy.uint8(0xA2)) + ret_entry.append(numpy.int16(entry["UNK"][0])) + case "0xA3": + ret_entry.append(numpy.uint8(0xA3)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0xA4": + ret_entry.append(numpy.uint8(0xA4)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "0xA5": + ret_entry.append(numpy.uint8(0xA5)) + ret_entry.append(numpy.int16(entry["UNK"][0])) + case "0xA6": + ret_entry.append(numpy.uint8(0xA6)) + ret_entry.append(numpy.int8(entry["CONTROL"])) + ret_entry.append(bytes.fromhex(entry["UNK"])) + if (entry["CONTROL"] == 0x32): + ret_entry.append(entry["STRINGS"][0].encode("UTF-8") + b"\x00") + case "0xFF": + ret_entry.append(numpy.int32(-1)) + ret_entry.append(bytes.fromhex(entry["UNK"])) + case "CREATE_MONSTERS": + try: + ret_entry.append(entry["MAP"].encode("UTF-8") + b"\x00") + except: + ret_entry.append(bytes.fromhex(entry["UNK0"])) + else: + ret_entry.append(b"\x00" * (0x10 - len(entry["MAP"].encode("UTF-8") + b"\x00"))) + ret_entry.append(bytes.fromhex(entry["UNK0"])) + table = entry["TABLE"] + for i in range(0, len(table)): + ret_entry.append(numpy.int32(table[i]["UNK0"][0])) + for x in range(0, 8): + ret_entry.append(table[i]['STRINGS1'][x].encode("UTF-8") + b"\x00") + ret_entry.append(b"\x00" * (0x10 - len(table[i]['STRINGS1'][x].encode("UTF-8") + b"\x00"))) + ret_entry.append(bytes.fromhex(table[i]["UNK1"])) + try: + ret_entry.append(table[i]['STRINGS2'][0].encode("UTF-8") + b"\x00") + except: + pass + else: + ret_entry.append(b"\x00" * (12 - len(table[i]['STRINGS1'][x].encode("UTF-8") + b"\x00"))) + try: + ret_entry.append(bytes.fromhex(entry["UNK1"])) + except: + ret_entry.append(numpy.uint32(1)) + case _: + print("UNKNOWN COMMAND: %s" % entry["TYPE"]) + sys.exit() + + return b"".join(ret_entry) + +files = glob.glob("scripts/ui/jsons/*.json") + +os.makedirs("scripts/ui/nx", exist_ok=True) +for i in range(0, len(files)): + print(files[i]) + file = open(files[i], "r", encoding="UTF-8") + DUMP = json.load(file) + file.close() + + # Write Header + file_new = open("scripts/ui/nx/%s.dat" % files[i][17:-5], "wb") + file_new.write(numpy.uint32(0x20)) #0x0 always starting with 0x20 + file_new.write(numpy.uint32(0x20)) #0x4 always starting with 0x20 + functions_pointer = 0x20 + len(DUMP["HEADER"]["ID"]) + 1 + file_new.write(numpy.uint32(functions_pointer)) #0x08 + size_of_functions_pointer_table = len(DUMP["FUNCTIONS"]) * 4 + file_new.write(numpy.uint32(size_of_functions_pointer_table)) #0x0C + file_new.write(numpy.uint32(functions_pointer + size_of_functions_pointer_table)) #0x10 + file_new.write(numpy.uint32(len(DUMP["FUNCTIONS"]))) #0x14 + keys = list(DUMP["FUNCTIONS"].keys()) + rekeys = [] + for x in range(0, len(keys)): + try: + int(keys[x]) + except: + rekeys.append(keys[x].encode("ASCII")) + else: + if (int(keys[x]) == x): + rekeys.append(b"") + else: + rekeys.append(keys[x].encode("ASCII")) + file_new.seek(4, 1) + file_new.write(numpy.uint32(int(DUMP["HEADER"]["TYPE"], base=16))) #0x1C + file_new.write(DUMP["HEADER"]["ID"].encode("ASCII") + b"\x00") + functions_pointer_table_ptr = file_new.tell() + file_new.seek(size_of_functions_pointer_table, 1) + functions_strings_table_ptr = file_new.tell() + functions_string_pointers = [] + entry = [] + for x in range(0, len(rekeys)): + file_new.write(numpy.uint16(functions_pointer + size_of_functions_pointer_table + (len(DUMP["FUNCTIONS"]) * 2) + len(b"".join(entry)))) + entry.append(rekeys[x] + b"\x00") + file_new.write(b"".join(entry)) + pos = file_new.tell() + file_new.seek(0x18) + file_new.write(numpy.uint32(pos)) + file_new.seek(pos) + while (file_new.tell() % 4 != 0): + file_new.write(b"\x00") + + #Write Commands + offset = file_new.tell() + Label_offsets = {} + for x in range(0, len(keys)): + COMMAND_BLOCK = [] + pos = file_new.tell() + file_new.seek(functions_pointer + (4 * x)) + file_new.write(numpy.uint32(pos)) + file_new.seek(pos) + temp = [] + for y in range(0, len(DUMP["FUNCTIONS"][keys[x]])): + entry = DUMP["FUNCTIONS"][keys[x]][y] + if (entry["TYPE"] != "CREATE_MONSTERS"): + Label_offsets[entry["LABEL"]] = offset + offset += len(GenerateCommand(entry)) + if (x != (len(keys) - 1)): + if (offset % 4 != 0): + offset += (4 - (offset % 4)) + for y in range(0, len(DUMP["FUNCTIONS"][keys[x]])): + entry = DUMP["FUNCTIONS"][keys[x]][y] + COMMAND_BLOCK.append(GenerateCommand(entry, Label_offsets)) + file_new.write(b"".join(COMMAND_BLOCK)) + if (x != (len(keys) - 1)): + while (file_new.tell() % 4 != 0): + file_new.write(b"\x00") + #print(Label_offsets) + file_new.close() \ No newline at end of file