├── .github └── workflows │ └── mirror-to-codecommit.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── TOD2_logo.png ├── current_font.png ├── dictionary ├── tod2_ansi.tbl ├── tod2_symbols.txt └── tod2_utf8.txt ├── docs ├── hextojpn │ ├── hextojpn.js │ ├── index.html │ ├── judas.png │ ├── manifest.json │ └── readme.md ├── index.html ├── jpntohex │ ├── index.html │ └── jpntohex.js └── style.css ├── ps2 ├── PyTOD2 │ ├── FPB.json │ ├── PyTOD2.py │ ├── TBL.json │ ├── bat │ │ ├── 01_extract_files.bat │ │ ├── 02_insert_files.bat │ │ ├── 03_pack_fpb.bat │ │ ├── 04_insert_font.bat │ │ ├── 05_extract_fpb.bat │ │ ├── 06_extract_scpk.bat │ │ ├── 09_pack_scpk.bat │ │ ├── 10_export_tbl.bat │ │ ├── 11_unpack_folders.bat │ │ ├── A_extract_pak1.bat │ │ ├── B_move_skits.bat │ │ ├── C_extract_sced.bat │ │ ├── D_insert_sced.bat │ │ ├── E_copy_sced_pak1.bat │ │ └── F_insert_pak1.bat │ ├── favicon.ico │ ├── font.bin │ ├── move_skits.py │ ├── readme.md │ └── tod2_ps2.py ├── archive │ ├── PyTOR2_old │ │ ├── v1 │ │ │ ├── extract_fpb.bat │ │ │ ├── extract_scpk.bat │ │ │ ├── pack_fpb.bat │ │ │ ├── pack_scpk.bat │ │ │ └── tod2_ps2.py │ │ ├── v2 │ │ │ ├── extract_fpb.bat │ │ │ ├── extract_sced.bat │ │ │ ├── extract_scpk.bat │ │ │ ├── insert_sced.bat │ │ │ ├── move_sced.bat │ │ │ ├── pack_fpb.bat │ │ │ ├── pack_scpk.bat │ │ │ ├── tbl.json │ │ │ └── tod2_ps2.py │ │ ├── v3 │ │ │ ├── extract_fpb.bat │ │ │ ├── extract_sced.bat │ │ │ ├── extract_scpk.bat │ │ │ ├── insert_sced.bat │ │ │ ├── move_sced.bat │ │ │ ├── pack_fpb.bat │ │ │ ├── pack_scpk.bat │ │ │ ├── readme.md │ │ │ ├── replace_sced.bat │ │ │ ├── sort_fpb.bat │ │ │ ├── tbl.json │ │ │ ├── tod2_ps2.py │ │ │ ├── tod2_sort_fpb.py │ │ │ └── tree.json │ │ ├── v4 │ │ │ ├── 01_extract_files.bat │ │ │ ├── 02_insert_files.bat │ │ │ ├── 03_pack_fpb.bat │ │ │ ├── readme.txt │ │ │ ├── tbl.json │ │ │ └── tod2_ps2.py │ │ ├── v5 │ │ │ ├── 01_extract_files.bat │ │ │ ├── 02_insert_files.bat │ │ │ ├── 03_pack_fpb.bat │ │ │ ├── 04_insert_font.bat │ │ │ ├── 05_extract_fpb.bat │ │ │ ├── 06_extract_scpk.bat │ │ │ ├── 07_extract_sced.bat │ │ │ ├── 08_insert_sced.bat │ │ │ ├── 09_pack_scpk.bat │ │ │ ├── 10_sort_fpb.bat │ │ │ ├── compression.json │ │ │ ├── tbl.json │ │ │ ├── tod2_ps2.py │ │ │ ├── tod2_ps2_sort.py │ │ │ └── tree.json │ │ ├── v6 │ │ │ ├── 01_extract_files.bat │ │ │ ├── 02_insert_files.bat │ │ │ ├── 03_pack_fpb.bat │ │ │ ├── 04_insert_font.bat │ │ │ ├── 05_extract_fpb.bat │ │ │ ├── 06_extract_scpk.bat │ │ │ ├── 07_extract_sced.bat │ │ │ ├── 08_insert_sced.bat │ │ │ ├── 09_pack_scpk.bat │ │ │ ├── 10_export_tbl.bat │ │ │ ├── 11_sort_fpb.bat │ │ │ ├── 12_move_sced.bat │ │ │ ├── 13_move_sced_pak1.bat │ │ │ ├── FPB.json │ │ │ ├── TBL.json │ │ │ ├── move_skits.py │ │ │ ├── pack_pak0.bat │ │ │ ├── pack_pak1.bat │ │ │ ├── pack_pak3.bat │ │ │ ├── tod2_ps2.py │ │ │ ├── tod2_ps2_sort.py │ │ │ ├── unpack_pak0.bat │ │ │ ├── unpack_pak1.bat │ │ │ └── unpack_pak3.bat │ │ ├── v7 │ │ │ ├── 01_extract_files.bat │ │ │ ├── 02_insert_files.bat │ │ │ ├── 03_pack_fpb.bat │ │ │ ├── 04_insert_font.bat │ │ │ ├── 05_extract_fpb.bat │ │ │ ├── 06_extract_scpk.bat │ │ │ ├── 07_extract_sced.bat │ │ │ ├── 08_insert_sced.bat │ │ │ ├── 09_pack_scpk.bat │ │ │ ├── 10_export_tbl.bat │ │ │ ├── 11_unpack_folders.bat │ │ │ ├── A_extract_pak1.bat │ │ │ ├── A_move_skits.bat │ │ │ ├── B_copy_sced_pak1.bat │ │ │ ├── B_repack_pak1.bat │ │ │ ├── FPB.json │ │ │ ├── TBL.json │ │ │ ├── backup_pak1.bat │ │ │ ├── compression.json │ │ │ ├── font.bin │ │ │ ├── pak1.py │ │ │ ├── rename_extension.bat │ │ │ ├── tod2_ps2.py │ │ │ ├── unpack_folders.py │ │ │ └── unpack_pak1.bat │ │ └── v8 │ │ │ ├── SCED.json │ │ │ ├── SCPK.json │ │ │ ├── compression.json │ │ │ ├── pak1.py │ │ │ └── unpack_folders.py │ ├── font1.tm2 │ ├── font2.tm2 │ ├── scenarios.txt │ └── skits.txt ├── scenarios │ ├── 06307_20.sced.txt │ ├── 06308_37.sced.txt │ ├── 06309_20.sced.txt │ ├── 06310_17.sced.txt │ ├── 06311_18.sced.txt │ ├── 06312_17.sced.txt │ ├── 06313_31.sced.txt │ ├── 06314_20.sced.txt │ ├── 06315_13.sced.txt │ ├── 06316_15.sced.txt │ ├── 06317_17.sced.txt │ ├── 06318_47.sced.txt │ ├── 06319_17.sced.txt │ ├── 06320_17.sced.txt │ ├── 06321_20.sced.txt │ ├── 06322_13.sced.txt │ ├── 06323_22.sced.txt │ ├── 06324_15.sced.txt │ ├── 06325_14.sced.txt │ ├── 06326_17.sced.txt │ ├── 06327_18.sced.txt │ ├── 06328_13.sced.txt │ ├── 06329_24.sced.txt │ ├── 06330_17.sced.txt │ ├── 06331_15.sced.txt │ ├── 06332_13.sced.txt │ ├── 06333_23.sced.txt │ ├── 06334_17.sced.txt │ ├── 06335_14.sced.txt │ ├── 06336_13.sced.txt │ ├── 06337_21.sced.txt │ ├── 06338_17.sced.txt │ ├── 06339_14.sced.txt │ ├── 06340_14.sced.txt │ ├── 06341_13.sced.txt │ ├── 06342_15.sced.txt │ ├── 06343_15.sced.txt │ ├── 06344_19.sced.txt │ ├── 06345_16.sced.txt │ ├── 06346_14.sced.txt │ ├── 06347_17.sced.txt │ ├── 06348_26.sced.txt │ ├── 06349_14.sced.txt │ ├── 06350_13.sced.txt │ ├── 06351_13.sced.txt │ ├── 06352_15.sced.txt │ ├── 06353_17.sced.txt │ ├── 06354_21.sced.txt │ ├── 06355_21.sced.txt │ ├── 06356_15.sced.txt │ ├── 06357_13.sced.txt │ ├── 06358_20.sced.txt │ ├── 06359_13.sced.txt │ ├── 06360_26.sced.txt │ ├── 06361_43.sced.txt │ ├── 06362_15.sced.txt │ ├── 06363_23.sced.txt │ ├── 06364_28.sced.txt │ ├── 06365_15.sced.txt │ ├── 06366_18.sced.txt │ ├── 06367_13.sced.txt │ ├── 06368_14.sced.txt │ ├── 06369_13.sced.txt │ ├── 06370_16.sced.txt │ ├── 06371_14.sced.txt │ ├── 06372_22.sced.txt │ ├── 06373_17.sced.txt │ ├── 06374_13.sced.txt │ ├── 06375_14.sced.txt │ ├── 06376_14.sced.txt │ ├── 06377_13.sced.txt │ ├── 06378_14.sced.txt │ ├── 06379_13.sced.txt │ ├── 06380_14.sced.txt │ ├── 06381_13.sced.txt │ ├── 06382_17.sced.txt │ ├── 06383_14.sced.txt │ ├── 06384_38.sced.txt │ ├── 06385_43.sced.txt │ ├── 06386_13.sced.txt │ ├── 06387_34.sced.txt │ ├── 06388_27.sced.txt │ ├── 06389_14.sced.txt │ ├── 06390_13.sced.txt │ ├── 06391_20.sced.txt │ ├── 06392_24.sced.txt │ ├── 06393_15.sced.txt │ ├── 06394_28.sced.txt │ ├── 06395_38.sced.txt │ ├── 06396_23.sced.txt │ ├── 06397_20.sced.txt │ ├── 06398_19.sced.txt │ ├── 06399_22.sced.txt │ ├── 06400_19.sced.txt │ ├── 06401_17.sced.txt │ ├── 06402_15.sced.txt │ ├── 06403_29.sced.txt │ ├── 06404_24.sced.txt │ ├── 06405_15.sced.txt │ ├── 06406_14.sced.txt │ ├── 06407_19.sced.txt │ ├── 06408_19.sced.txt │ ├── 06409_25.sced.txt │ ├── 06410_44.sced.txt │ ├── 06411_22.sced.txt │ ├── 06412_23.sced.txt │ ├── 06413_14.sced.txt │ ├── 06414_17.sced.txt │ ├── 06415_20.sced.txt │ ├── 06416_17.sced.txt │ ├── 06417_16.sced.txt │ ├── 06418_36.sced.txt │ ├── 06419_20.sced.txt │ ├── 06420_26.sced.txt │ ├── 06421_15.sced.txt │ ├── 06422_16.sced.txt │ ├── 06423_15.sced.txt │ ├── 06424_15.sced.txt │ ├── 06425_13.sced.txt │ ├── 06426_17.sced.txt │ ├── 06427_13.sced.txt │ ├── 06428_14.sced.txt │ ├── 06429_20.sced.txt │ ├── 06430_16.sced.txt │ ├── 06431_19.sced.txt │ ├── 06432_15.sced.txt │ ├── 06433_26.sced.txt │ ├── 06434_31.sced.txt │ ├── 06435_39.sced.txt │ ├── 06436_29.sced.txt │ ├── 06437_25.sced.txt │ ├── 06438_14.sced.txt │ ├── 06439_13.sced.txt │ ├── 06440_14.sced.txt │ ├── 06441_16.sced.txt │ ├── 06442_17.sced.txt │ ├── 06443_16.sced.txt │ ├── 06444_18.sced.txt │ ├── 06445_19.sced.txt │ ├── 06446_14.sced.txt │ ├── 06447_16.sced.txt │ ├── 06448_13.sced.txt │ ├── 06449_16.sced.txt │ ├── 06450_20.sced.txt │ ├── 06451_18.sced.txt │ ├── 06452_15.sced.txt │ ├── 06453_15.sced.txt │ ├── 06454_15.sced.txt │ ├── 06455_14.sced.txt │ ├── 06456_15.sced.txt │ ├── 06457_14.sced.txt │ ├── 06458_14.sced.txt │ ├── 06459_28.sced.txt │ ├── 06460_14.sced.txt │ ├── 06461_13.sced.txt │ ├── 06462_17.sced.txt │ ├── 06463_14.sced.txt │ ├── 06464_14.sced.txt │ ├── 06465_35.sced.txt │ ├── 06466_22.sced.txt │ ├── 06467_17.sced.txt │ ├── 06468_31.sced.txt │ ├── 06469_13.sced.txt │ ├── 06470_14.sced.txt │ ├── 06471_22.sced.txt │ ├── 06472_28.sced.txt │ ├── 06473_15.sced.txt │ ├── 06474_14.sced.txt │ ├── 06475_16.sced.txt │ ├── 06476_16.sced.txt │ ├── 06477_18.sced.txt │ ├── 06478_14.sced.txt │ ├── 06479_13.sced.txt │ ├── 06480_13.sced.txt │ ├── 06481_13.sced.txt │ ├── 06482_17.sced.txt │ ├── 06483_14.sced.txt │ ├── 06484_27.sced.txt │ ├── 06485_13.sced.txt │ ├── 06486_16.sced.txt │ ├── 06487_14.sced.txt │ ├── 06488_15.sced.txt │ ├── 06489_16.sced.txt │ ├── 06490_15.sced.txt │ ├── 06491_15.sced.txt │ ├── 06492_14.sced.txt │ ├── 06493_13.sced.txt │ ├── 06494_14.sced.txt │ ├── 06495_18.sced.txt │ ├── 06496_45.sced.txt │ ├── 06497_29.sced.txt │ ├── 06498_21.sced.txt │ ├── 06499_22.sced.txt │ ├── 06500_17.sced.txt │ ├── 06501_18.sced.txt │ ├── 06502_17.sced.txt │ ├── 06503_13.sced.txt │ ├── 06504_16.sced.txt │ ├── 06505_14.sced.txt │ ├── 06506_14.sced.txt │ ├── 06507_14.sced.txt │ ├── 06508_13.sced.txt │ ├── 06509_14.sced.txt │ ├── 06510_14.sced.txt │ ├── 06511_15.sced.txt │ ├── 06512_18.sced.txt │ ├── 06513_15.sced.txt │ ├── 06514_15.sced.txt │ ├── 06515_22.sced.txt │ ├── 06516_13.sced.txt │ ├── 06517_20.sced.txt │ ├── 06518_13.sced.txt │ ├── 06519_15.sced.txt │ ├── 06520_13.sced.txt │ ├── 06521_15.sced.txt │ ├── 06522_16.sced.txt │ ├── 06523_16.sced.txt │ ├── 06524_16.sced.txt │ ├── 06525_16.sced.txt │ ├── 06526_18.sced.txt │ ├── 06527_14.sced.txt │ ├── 06528_15.sced.txt │ ├── 06529_14.sced.txt │ ├── 06530_14.sced.txt │ ├── 06531_14.sced.txt │ ├── 06532_13.sced.txt │ ├── 06533_14.sced.txt │ ├── 06534_24.sced.txt │ ├── 06535_18.sced.txt │ ├── 06536_18.sced.txt │ ├── 06537_16.sced.txt │ ├── 06538_13.sced.txt │ ├── 06539_13.sced.txt │ ├── 06540_13.sced.txt │ ├── 06541_14.sced.txt │ ├── 06542_18.sced.txt │ ├── 06543_14.sced.txt │ ├── 06544_20.sced.txt │ ├── 06545_25.sced.txt │ ├── 06546_17.sced.txt │ ├── 06547_14.sced.txt │ ├── 06548_14.sced.txt │ ├── 06549_13.sced.txt │ ├── 06550_13.sced.txt │ ├── 06551_26.sced.txt │ ├── 06552_20.sced.txt │ ├── 06553_27.sced.txt │ ├── 06554_19.sced.txt │ ├── 06555_21.sced.txt │ ├── 06556_13.sced.txt │ ├── 06557_13.sced.txt │ ├── 06558_15.sced.txt │ ├── 06559_19.sced.txt │ ├── 06560_22.sced.txt │ ├── 06561_25.sced.txt │ ├── 06562_14.sced.txt │ ├── 06563_27.sced.txt │ ├── 06564_38.sced.txt │ ├── 06565_34.sced.txt │ ├── 06566_14.sced.txt │ ├── 06567_14.sced.txt │ ├── 06568_15.sced.txt │ ├── 06569_16.sced.txt │ ├── 06570_14.sced.txt │ ├── 06571_17.sced.txt │ ├── 06572_18.sced.txt │ ├── 06573_40.sced.txt │ ├── 06574_36.sced.txt │ ├── 06575_21.sced.txt │ ├── 06576_23.sced.txt │ ├── 06577_16.sced.txt │ ├── 06578_15.sced.txt │ ├── 06579_25.sced.txt │ ├── 06580_13.sced.txt │ ├── 06581_13.sced.txt │ ├── 06582_19.sced.txt │ ├── 06583_27.sced.txt │ ├── 06584_14.sced.txt │ ├── 06585_15.sced.txt │ ├── 06586_14.sced.txt │ ├── 06587_14.sced.txt │ ├── 06588_18.sced.txt │ ├── 06589_14.sced.txt │ ├── 06590_14.sced.txt │ ├── 06591_31.sced.txt │ ├── 06592_35.sced.txt │ ├── 06593_17.sced.txt │ ├── 06594_19.sced.txt │ ├── 06595_26.sced.txt │ ├── 06596_13.sced.txt │ ├── 06597_14.sced.txt │ ├── 06598_17.sced.txt │ ├── 06599_13.sced.txt │ ├── 06600_15.sced.txt │ ├── 06601_14.sced.txt │ ├── 06602_14.sced.txt │ ├── 06603_14.sced.txt │ ├── 06604_30.sced.txt │ ├── 06605_38.sced.txt │ ├── 06606_14.sced.txt │ ├── 06607_20.sced.txt │ ├── 06608_13.sced.txt │ ├── 06609_19.sced.txt │ ├── 06610_22.sced.txt │ ├── 06611_23.sced.txt │ ├── 06612_38.sced.txt │ ├── 06613_36.sced.txt │ ├── 06614_23.sced.txt │ ├── 06615_19.sced.txt │ ├── 06616_20.sced.txt │ ├── 06617_17.sced.txt │ ├── 06618_13.sced.txt │ ├── 06619_13.sced.txt │ ├── 06620_13.sced.txt │ ├── 06621_13.sced.txt │ ├── 06622_14.sced.txt │ ├── 06623_14.sced.txt │ ├── 06624_14.sced.txt │ ├── 06625_14.sced.txt │ ├── 06626_15.sced.txt │ ├── 06627_29.sced.txt │ ├── 06628_15.sced.txt │ ├── 06629_14.sced.txt │ ├── 06630_14.sced.txt │ ├── 06631_14.sced.txt │ ├── 06632_15.sced.txt │ ├── 06633_14.sced.txt │ ├── 06640_20.sced.txt │ ├── 06641_16.sced.txt │ ├── 06642_14.sced.txt │ ├── 06643_16.sced.txt │ ├── 06644_14.sced.txt │ ├── 06645_14.sced.txt │ ├── 06646_14.sced.txt │ ├── 06647_14.sced.txt │ ├── 06648_14.sced.txt │ ├── 06649_15.sced.txt │ ├── 06650_26.sced.txt │ ├── 06651_14.sced.txt │ ├── 06652_22.sced.txt │ ├── 06653_23.sced.txt │ ├── 06654_15.sced.txt │ ├── 06655_16.sced.txt │ ├── 06656_17.sced.txt │ ├── 06657_17.sced.txt │ ├── 06658_18.sced.txt │ ├── 06659_15.sced.txt │ ├── 06660_21.sced.txt │ ├── 06663_15.sced.txt │ ├── 06664_15.sced.txt │ ├── 06665_16.sced.txt │ ├── 06666_15.sced.txt │ ├── 06667_15.sced.txt │ ├── 06668_15.sced.txt │ ├── 06669_15.sced.txt │ ├── 06670_16.sced.txt │ ├── 06671_15.sced.txt │ ├── 06672_16.sced.txt │ ├── 06683_16.sced.txt │ ├── 06684_14.sced.txt │ ├── 06685_13.sced.txt │ ├── 06686_14.sced.txt │ ├── 06687_13.sced.txt │ ├── 06688_13.sced.txt │ ├── 06689_14.sced.txt │ ├── 06690_13.sced.txt │ ├── 06691_13.sced.txt │ ├── 06692_14.sced.txt │ ├── 06693_13.sced.txt │ ├── 06694_14.sced.txt │ ├── 06695_13.sced.txt │ ├── 06696_14.sced.txt │ ├── 06697_16.sced.txt │ ├── 06698_14.sced.txt │ ├── 06699_13.sced.txt │ ├── 06700_13.sced.txt │ ├── 06701_13.sced.txt │ ├── 06702_14.sced.txt │ ├── 06703_13.sced.txt │ ├── 06704_13.sced.txt │ ├── 06705_13.sced.txt │ ├── 06706_13.sced.txt │ ├── 06707_13.sced.txt │ ├── 06713_14.sced.txt │ ├── 06714_15.sced.txt │ ├── 06715_16.sced.txt │ ├── 06716_24.sced.txt │ ├── 06717_13.sced.txt │ ├── 06718_24.sced.txt │ ├── 06719_14.sced.txt │ ├── 06720_23.sced.txt │ ├── 06723_17.sced.txt │ ├── 06724_14.sced.txt │ ├── 06725_14.sced.txt │ ├── 06726_14.sced.txt │ ├── 06727_14.sced.txt │ ├── 06728_13.sced.txt │ ├── 06729_14.sced.txt │ ├── 06730_14.sced.txt │ ├── 06731_14.sced.txt │ ├── 06732_16.sced.txt │ ├── 06733_20.sced.txt │ ├── 06734_13.sced.txt │ ├── 06735_13.sced.txt │ ├── 06736_13.sced.txt │ ├── 06737_13.sced.txt │ ├── 06738_13.sced.txt │ ├── 06739_19.sced.txt │ ├── 06740_37.sced.txt │ ├── 06741_19.sced.txt │ ├── 06742_17.sced.txt │ ├── 06743_15.sced.txt │ ├── 06744_13.sced.txt │ ├── 06745_17.sced.txt │ ├── 06746_13.sced.txt │ ├── 06747_14.sced.txt │ ├── 06748_13.sced.txt │ ├── 06749_13.sced.txt │ ├── 06750_17.sced.txt │ ├── 06751_13.sced.txt │ ├── 06752_13.sced.txt │ ├── 06753_33.sced.txt │ ├── 06754_22.sced.txt │ ├── 06755_16.sced.txt │ ├── 06756_18.sced.txt │ ├── 06757_16.sced.txt │ ├── 06758_18.sced.txt │ ├── 06759_14.sced.txt │ ├── 06760_15.sced.txt │ ├── 06761_14.sced.txt │ ├── 06762_14.sced.txt │ ├── 06763_14.sced.txt │ ├── 06764_14.sced.txt │ ├── 06765_14.sced.txt │ ├── 06766_14.sced.txt │ ├── 06767_14.sced.txt │ ├── 06768_14.sced.txt │ ├── 06769_14.sced.txt │ ├── 06770_14.sced.txt │ ├── 06771_14.sced.txt │ ├── 06772_14.sced.txt │ ├── 06773_14.sced.txt │ ├── 06774_14.sced.txt │ ├── 06775_14.sced.txt │ ├── 06776_14.sced.txt │ ├── 06777_14.sced.txt │ ├── 06778_14.sced.txt │ ├── 06779_14.sced.txt │ ├── 06780_14.sced.txt │ ├── 06781_14.sced.txt │ ├── 06782_13.sced.txt │ ├── 06783_14.sced.txt │ ├── 06784_16.sced.txt │ ├── 06785_45.sced.txt │ ├── 06786_28.sced.txt │ ├── 06787_16.sced.txt │ ├── 06788_20.sced.txt │ ├── 06789_20.sced.txt │ └── 06790_24.sced.txt ├── scripts │ ├── MenuScripts │ │ ├── BaseScripts │ │ │ ├── .json │ │ │ ├── FunctionsReinsert.py │ │ │ ├── SLPS_251.72 │ │ │ ├── SLPS_original │ │ │ │ └── SLPS_251.72 │ │ │ ├── TOD2_All_Dump.txt │ │ │ ├── gsheet.json │ │ │ ├── memoryBanks.json │ │ │ ├── sectionsSLPS.json │ │ │ ├── sheets.googleapis.com-python.json │ │ │ ├── text.xlsx │ │ │ ├── token.pickle │ │ │ └── updateBlock.py │ │ ├── SLPS_251.72 │ │ └── TOD2_update_All.bat │ ├── SLPS_251.72 │ ├── abcde │ │ ├── Build_Run.py │ │ ├── Build_Run_AllTools.bat │ │ ├── Build_Run_Artes.bat │ │ ├── Build_Run_Menu4.bat │ │ ├── HelperFunctions.py │ │ ├── PushToGoogle.py │ │ ├── README.md │ │ ├── Run.py │ │ ├── Run_Menu3.bat │ │ ├── Run_Menu4.bat │ │ ├── Run_Menu5.bat │ │ ├── Run_Menu6.bat │ │ ├── Run_Menu7.bat │ │ ├── Run_Menu8.bat │ │ ├── Run_Names.bat │ │ ├── Run_SideMenu.bat │ │ ├── Run_Stuff1.bat │ │ ├── Run_Stuff2.bat │ │ ├── Run_TopMenu.bat │ │ ├── SLPS_251.72 │ │ ├── TOD2_AllTools_dump_cleaned.txt │ │ ├── TOD2_AllTools_script.txt │ │ ├── TOD2_Artes_dump_cleaned.txt │ │ ├── TOD2_Artes_script.txt │ │ ├── TOD2_ItemType_dump_cleaned.txt │ │ ├── TOD2_ItemType_script.txt │ │ ├── TOD2_Menu3_dump_cleaned.txt │ │ ├── TOD2_Menu3_script.txt │ │ ├── TOD2_Menu4_dump_cleaned.txt │ │ ├── TOD2_Menu4_script.txt │ │ ├── TOD2_Menu5_dump_cleaned.txt │ │ ├── TOD2_Menu5_script.txt │ │ ├── TOD2_Menu6_dump_cleaned.txt │ │ ├── TOD2_Menu6_script.txt │ │ ├── TOD2_Menu7_dump_cleaned.txt │ │ ├── TOD2_Menu7_script.txt │ │ ├── TOD2_Menu8_dump_cleaned.txt │ │ ├── TOD2_Menu8_script.txt │ │ ├── TOD2_Names_dump_cleaned.txt │ │ ├── TOD2_Names_script.txt │ │ ├── TOD2_SideMenu_dump_cleaned.txt │ │ ├── TOD2_SideMenu_script.txt │ │ ├── TOD2_Stuff1_dump_cleaned.txt │ │ ├── TOD2_Stuff1_script.txt │ │ ├── TOD2_Stuff2_dump_cleaned.txt │ │ ├── TOD2_Stuff2_script.txt │ │ ├── TOD2_TopMenu_dump_cleaned.txt │ │ ├── TOD2_TopMenu_script.txt │ │ ├── TOD2_dump.bat │ │ ├── TOD2_extract_Names.bat │ │ ├── TOD2_extract_item.bat │ │ ├── TOD2_item_dump.txt │ │ ├── TOD2_item_script.txt │ │ ├── abcde.pl │ │ ├── abcde │ │ │ ├── Atlas.pm │ │ │ ├── Cartographer.pm │ │ │ ├── Cartographer │ │ │ │ └── NES │ │ │ │ │ └── Battle_of_Olympus.pm │ │ │ ├── String │ │ │ │ └── BasicString.pm │ │ │ └── Table │ │ │ │ ├── AStarNode.pm │ │ │ │ ├── Table.pm │ │ │ │ └── Token.pm │ │ ├── cpan │ │ │ └── Hash │ │ │ │ └── PriorityQueue.pm │ │ ├── tod2_utf8.tbl │ │ └── tod2_utf8_backup.tbl │ ├── comptoe.exe │ ├── new_SLPS_251.72 │ ├── new_SLPS_251.72.bak0 │ └── new_SLPS_251.72.bak1 ├── skits │ ├── 00054_02.sced.txt │ ├── 00056_02.sced.txt │ ├── 00058_02.sced.txt │ ├── 00060_02.sced.txt │ ├── 00062_02.sced.txt │ ├── 00064_02.sced.txt │ ├── 00066_02.sced.txt │ ├── 00068_02.sced.txt │ ├── 00070_02.sced.txt │ ├── 00072_02.sced.txt │ ├── 00074_02.sced.txt │ ├── 00076_02.sced.txt │ ├── 00078_02.sced.txt │ ├── 00080_02.sced.txt │ ├── 00082_02.sced.txt │ ├── 00084_02.sced.txt │ ├── 00086_02.sced.txt │ ├── 00088_02.sced.txt │ ├── 00090_02.sced.txt │ ├── 00092_02.sced.txt │ ├── 00094_02.sced.txt │ ├── 00096_02.sced.txt │ ├── 00098_02.sced.txt │ ├── 00100_02.sced.txt │ ├── 00102_02.sced.txt │ ├── 00104_02.sced.txt │ ├── 00106_02.sced.txt │ ├── 00108_02.sced.txt │ ├── 00110_02.sced.txt │ ├── 00112_02.sced.txt │ ├── 00114_02.sced.txt │ ├── 00116_02.sced.txt │ ├── 00118_02.sced.txt │ ├── 00122_02.sced.txt │ ├── 00124_02.sced.txt │ ├── 00126_02.sced.txt │ ├── 00128_02.sced.txt │ ├── 00130_02.sced.txt │ ├── 00132_02.sced.txt │ ├── 00134_02.sced.txt │ ├── 00136_02.sced.txt │ ├── 00138_02.sced.txt │ ├── 00140_02.sced.txt │ ├── 00142_02.sced.txt │ ├── 00144_02.sced.txt │ ├── 00146_02.sced.txt │ ├── 00148_02.sced.txt │ ├── 00150_02.sced.txt │ ├── 00152_02.sced.txt │ ├── 00154_02.sced.txt │ ├── 00156_02.sced.txt │ ├── 00160_02.sced.txt │ ├── 00162_02.sced.txt │ ├── 00164_02.sced.txt │ ├── 00166_02.sced.txt │ ├── 00168_02.sced.txt │ ├── 00170_02.sced.txt │ ├── 00172_02.sced.txt │ ├── 00174_02.sced.txt │ ├── 00176_02.sced.txt │ ├── 00178_02.sced.txt │ ├── 00180_02.sced.txt │ ├── 00182_02.sced.txt │ ├── 00184_02.sced.txt │ ├── 00186_02.sced.txt │ ├── 00188_02.sced.txt │ ├── 00190_02.sced.txt │ ├── 00192_02.sced.txt │ ├── 00194_02.sced.txt │ ├── 00196_02.sced.txt │ ├── 00198_02.sced.txt │ ├── 00200_02.sced.txt │ ├── 00202_02.sced.txt │ ├── 00204_02.sced.txt │ ├── 00206_02.sced.txt │ ├── 00208_02.sced.txt │ ├── 00210_02.sced.txt │ ├── 00212_02.sced.txt │ ├── 00214_02.sced.txt │ ├── 00216_02.sced.txt │ ├── 00218_02.sced.txt │ ├── 00220_02.sced.txt │ ├── 00222_02.sced.txt │ ├── 00224_02.sced.txt │ ├── 00226_02.sced.txt │ ├── 00228_02.sced.txt │ ├── 00230_02.sced.txt │ ├── 00232_02.sced.txt │ ├── 00234_02.sced.txt │ ├── 00236_02.sced.txt │ ├── 00238_02.sced.txt │ ├── 00240_02.sced.txt │ ├── 00242_02.sced.txt │ ├── 00244_02.sced.txt │ ├── 00246_02.sced.txt │ ├── 00248_02.sced.txt │ ├── 00250_02.sced.txt │ ├── 00252_02.sced.txt │ ├── 00254_02.sced.txt │ ├── 00256_02.sced.txt │ ├── 00258_02.sced.txt │ ├── 00260_02.sced.txt │ ├── 00262_02.sced.txt │ ├── 00264_02.sced.txt │ ├── 00266_02.sced.txt │ ├── 00268_02.sced.txt │ ├── 00270_02.sced.txt │ ├── 00272_02.sced.txt │ ├── 00274_02.sced.txt │ ├── 00276_02.sced.txt │ ├── 00278_02.sced.txt │ ├── 00280_02.sced.txt │ ├── 00282_02.sced.txt │ ├── 00284_02.sced.txt │ ├── 00286_02.sced.txt │ ├── 00288_02.sced.txt │ ├── 00290_02.sced.txt │ ├── 00292_02.sced.txt │ ├── 00294_02.sced.txt │ ├── 00296_02.sced.txt │ ├── 00298_02.sced.txt │ ├── 00300_02.sced.txt │ ├── 00302_02.sced.txt │ ├── 00304_02.sced.txt │ ├── 00306_02.sced.txt │ ├── 00308_02.sced.txt │ ├── 00310_02.sced.txt │ ├── 00312_02.sced.txt │ ├── 00314_02.sced.txt │ ├── 00316_02.sced.txt │ ├── 00318_02.sced.txt │ ├── 00320_02.sced.txt │ ├── 00324_02.sced.txt │ ├── 00326_02.sced.txt │ ├── 00328_02.sced.txt │ ├── 00330_02.sced.txt │ ├── 00332_02.sced.txt │ ├── 00334_02.sced.txt │ ├── 00336_02.sced.txt │ ├── 00338_02.sced.txt │ ├── 00340_02.sced.txt │ ├── 00342_02.sced.txt │ ├── 00344_02.sced.txt │ ├── 00346_02.sced.txt │ ├── 00348_02.sced.txt │ ├── 00350_02.sced.txt │ ├── 00352_02.sced.txt │ ├── 00354_02.sced.txt │ ├── 00356_02.sced.txt │ ├── 00358_02.sced.txt │ ├── 00360_02.sced.txt │ ├── 00362_02.sced.txt │ ├── 00364_02.sced.txt │ ├── 00366_02.sced.txt │ ├── 00368_02.sced.txt │ ├── 00370_02.sced.txt │ ├── 00372_02.sced.txt │ ├── 00374_02.sced.txt │ ├── 00376_02.sced.txt │ ├── 00378_02.sced.txt │ ├── 00380_02.sced.txt │ ├── 00382_02.sced.txt │ ├── 00384_02.sced.txt │ ├── 00386_02.sced.txt │ ├── 00388_02.sced.txt │ ├── 00390_02.sced.txt │ ├── 00394_02.sced.txt │ ├── 00396_02.sced.txt │ ├── 00398_02.sced.txt │ ├── 00400_02.sced.txt │ ├── 00402_02.sced.txt │ ├── 00404_02.sced.txt │ ├── 00406_02.sced.txt │ ├── 00408_02.sced.txt │ ├── 00410_02.sced.txt │ ├── 00412_02.sced.txt │ ├── 00414_02.sced.txt │ ├── 00416_02.sced.txt │ ├── 00418_02.sced.txt │ ├── 00420_02.sced.txt │ ├── 00422_02.sced.txt │ ├── 00424_02.sced.txt │ ├── 00426_02.sced.txt │ ├── 00428_02.sced.txt │ ├── 00430_02.sced.txt │ ├── 00432_02.sced.txt │ ├── 00434_02.sced.txt │ ├── 00436_02.sced.txt │ ├── 00438_02.sced.txt │ ├── 00440_02.sced.txt │ ├── 00442_02.sced.txt │ ├── 00444_02.sced.txt │ ├── 00446_02.sced.txt │ ├── 00448_02.sced.txt │ ├── 00450_02.sced.txt │ ├── 00452_02.sced.txt │ ├── 00454_02.sced.txt │ ├── 00456_02.sced.txt │ ├── 00458_02.sced.txt │ ├── 00460_02.sced.txt │ ├── 00462_02.sced.txt │ ├── 00464_02.sced.txt │ ├── 00466_02.sced.txt │ ├── 00468_02.sced.txt │ ├── 00470_02.sced.txt │ ├── 00472_02.sced.txt │ ├── 00474_02.sced.txt │ ├── 00476_02.sced.txt │ ├── 00478_02.sced.txt │ ├── 00480_02.sced.txt │ ├── 00482_02.sced.txt │ ├── 00486_02.sced.txt │ ├── 00488_02.sced.txt │ ├── 00490_02.sced.txt │ ├── 00492_02.sced.txt │ ├── 00494_02.sced.txt │ ├── 00496_02.sced.txt │ ├── 00498_02.sced.txt │ ├── 00500_02.sced.txt │ ├── 00502_02.sced.txt │ ├── 00504_02.sced.txt │ ├── 00506_02.sced.txt │ ├── 00508_02.sced.txt │ ├── 00510_02.sced.txt │ ├── 00512_02.sced.txt │ ├── 00514_02.sced.txt │ ├── 00516_02.sced.txt │ ├── 00518_02.sced.txt │ ├── 00520_02.sced.txt │ ├── 00522_02.sced.txt │ ├── 00524_02.sced.txt │ ├── 00526_02.sced.txt │ ├── 00528_02.sced.txt │ ├── 00530_02.sced.txt │ ├── 00532_02.sced.txt │ ├── 00534_02.sced.txt │ ├── 00536_02.sced.txt │ ├── 00538_02.sced.txt │ ├── 00540_02.sced.txt │ ├── 00542_02.sced.txt │ ├── 00544_02.sced.txt │ ├── 00546_02.sced.txt │ ├── 00548_02.sced.txt │ ├── 00550_02.sced.txt │ ├── 00552_02.sced.txt │ ├── 00554_02.sced.txt │ ├── 00556_02.sced.txt │ ├── 00558_02.sced.txt │ ├── 00560_02.sced.txt │ ├── 00562_02.sced.txt │ ├── 00564_02.sced.txt │ ├── 00566_02.sced.txt │ ├── 00568_02.sced.txt │ ├── 00570_02.sced.txt │ ├── 00572_02.sced.txt │ ├── 00574_02.sced.txt │ ├── 00576_02.sced.txt │ ├── 00578_02.sced.txt │ ├── 00580_02.sced.txt │ ├── 00582_02.sced.txt │ ├── 00584_02.sced.txt │ ├── 00586_02.sced.txt │ ├── 00588_02.sced.txt │ ├── 00590_02.sced.txt │ ├── 00592_02.sced.txt │ ├── 00594_02.sced.txt │ ├── 00596_02.sced.txt │ ├── 00598_02.sced.txt │ ├── 00600_02.sced.txt │ ├── 00602_02.sced.txt │ ├── 00604_02.sced.txt │ ├── 00606_02.sced.txt │ ├── 00608_02.sced.txt │ ├── 00610_02.sced.txt │ ├── 00612_02.sced.txt │ ├── 00614_02.sced.txt │ ├── 00616_02.sced.txt │ ├── 00618_02.sced.txt │ ├── 00620_02.sced.txt │ ├── 00622_02.sced.txt │ ├── 00624_02.sced.txt │ ├── 00626_02.sced.txt │ ├── 00628_02.sced.txt │ ├── 00630_02.sced.txt │ ├── 00632_02.sced.txt │ ├── 00634_02.sced.txt │ ├── 00636_02.sced.txt │ ├── 00638_02.sced.txt │ ├── 00640_02.sced.txt │ ├── 00642_02.sced.txt │ ├── 00644_02.sced.txt │ ├── 00646_02.sced.txt │ ├── 00648_02.sced.txt │ ├── 00650_02.sced.txt │ ├── 00652_02.sced.txt │ ├── 00654_02.sced.txt │ ├── 00656_02.sced.txt │ ├── 00658_02.sced.txt │ ├── 00660_02.sced.txt │ ├── 00662_02.sced.txt │ ├── 00664_02.sced.txt │ ├── 00666_02.sced.txt │ ├── 00668_02.sced.txt │ ├── 00670_02.sced.txt │ ├── 00672_02.sced.txt │ ├── 00674_02.sced.txt │ ├── 00676_02.sced.txt │ ├── 00678_02.sced.txt │ ├── 00680_02.sced.txt │ ├── 00684_02.sced.txt │ ├── 00686_02.sced.txt │ ├── 00688_02.sced.txt │ ├── 00690_02.sced.txt │ ├── 00692_02.sced.txt │ ├── 00694_02.sced.txt │ ├── 00696_02.sced.txt │ ├── 00698_02.sced.txt │ ├── 00700_02.sced.txt │ ├── 00702_02.sced.txt │ ├── 00704_02.sced.txt │ ├── 00706_02.sced.txt │ ├── 00708_02.sced.txt │ ├── 00710_02.sced.txt │ ├── 00712_02.sced.txt │ ├── 00714_02.sced.txt │ ├── 00716_02.sced.txt │ ├── 00718_02.sced.txt │ ├── 00720_02.sced.txt │ ├── 00722_02.sced.txt │ ├── 00724_02.sced.txt │ ├── 00726_02.sced.txt │ ├── 00728_02.sced.txt │ ├── 00730_02.sced.txt │ ├── 00732_02.sced.txt │ ├── 00734_02.sced.txt │ ├── 00736_02.sced.txt │ ├── 00738_02.sced.txt │ ├── 00740_02.sced.txt │ ├── 00742_02.sced.txt │ ├── 00744_02.sced.txt │ ├── 00746_02.sced.txt │ ├── 00748_02.sced.txt │ ├── 00750_02.sced.txt │ ├── 00752_02.sced.txt │ ├── 00754_02.sced.txt │ ├── 00756_02.sced.txt │ ├── 00758_02.sced.txt │ ├── 00760_02.sced.txt │ ├── 00762_02.sced.txt │ ├── 00764_02.sced.txt │ ├── 00766_02.sced.txt │ ├── 00768_02.sced.txt │ ├── 00770_02.sced.txt │ ├── 00772_02.sced.txt │ ├── 00774_02.sced.txt │ ├── 00776_02.sced.txt │ ├── 00778_02.sced.txt │ ├── 00780_02.sced.txt │ ├── 00782_02.sced.txt │ ├── 00784_02.sced.txt │ ├── 00786_02.sced.txt │ ├── 00788_02.sced.txt │ ├── 00790_02.sced.txt │ ├── 00792_02.sced.txt │ ├── 00794_02.sced.txt │ ├── 00796_02.sced.txt │ ├── 00798_02.sced.txt │ ├── 00800_02.sced.txt │ ├── 00802_02.sced.txt │ ├── 00804_02.sced.txt │ ├── 00806_02.sced.txt │ ├── 00808_02.sced.txt │ ├── 00810_02.sced.txt │ ├── 00812_02.sced.txt │ ├── 00814_02.sced.txt │ ├── 00816_02.sced.txt │ ├── 00818_02.sced.txt │ ├── 00820_02.sced.txt │ ├── 00822_02.sced.txt │ ├── 00824_02.sced.txt │ ├── 00826_02.sced.txt │ ├── 00828_02.sced.txt │ ├── 00830_02.sced.txt │ ├── 00832_02.sced.txt │ ├── 00834_02.sced.txt │ ├── 00836_02.sced.txt │ ├── 00838_02.sced.txt │ ├── 00840_02.sced.txt │ ├── 00842_02.sced.txt │ ├── 00844_02.sced.txt │ ├── 00846_02.sced.txt │ ├── 00848_02.sced.txt │ ├── 00850_02.sced.txt │ ├── 00852_02.sced.txt │ ├── 00854_02.sced.txt │ ├── 00856_02.sced.txt │ ├── 00858_02.sced.txt │ ├── 00860_02.sced.txt │ ├── 00862_02.sced.txt │ ├── 00864_02.sced.txt │ ├── 00866_02.sced.txt │ ├── 00870_02.sced.txt │ ├── 00872_02.sced.txt │ ├── 00874_02.sced.txt │ ├── 00876_02.sced.txt │ ├── 00878_02.sced.txt │ ├── 00880_02.sced.txt │ ├── 00882_02.sced.txt │ ├── 00884_02.sced.txt │ ├── 00886_02.sced.txt │ ├── 00888_02.sced.txt │ ├── 00890_02.sced.txt │ ├── 00892_02.sced.txt │ ├── 00894_02.sced.txt │ ├── 00896_02.sced.txt │ ├── 00898_02.sced.txt │ ├── 00900_02.sced.txt │ ├── 00902_02.sced.txt │ ├── 00904_02.sced.txt │ ├── 00906_02.sced.txt │ ├── 00908_02.sced.txt │ ├── 00910_02.sced.txt │ ├── 00912_02.sced.txt │ ├── 00914_02.sced.txt │ ├── 00916_02.sced.txt │ ├── 00918_02.sced.txt │ ├── 00922_02.sced.txt │ ├── 00924_02.sced.txt │ ├── 00926_02.sced.txt │ ├── 00928_02.sced.txt │ ├── 00930_02.sced.txt │ ├── 00932_02.sced.txt │ ├── 00934_02.sced.txt │ ├── 00936_02.sced.txt │ ├── 00938_02.sced.txt │ ├── 00940_02.sced.txt │ ├── 00942_02.sced.txt │ ├── 00944_02.sced.txt │ ├── 00946_02.sced.txt │ ├── 00948_02.sced.txt │ ├── 00950_02.sced.txt │ ├── 00952_02.sced.txt │ ├── 00954_02.sced.txt │ ├── 00956_02.sced.txt │ ├── 00958_02.sced.txt │ ├── 00960_02.sced.txt │ ├── 00962_02.sced.txt │ ├── 00964_02.sced.txt │ ├── 00966_02.sced.txt │ ├── 00968_02.sced.txt │ ├── 00970_02.sced.txt │ ├── 00972_02.sced.txt │ ├── 00974_02.sced.txt │ ├── 00976_02.sced.txt │ ├── 00978_02.sced.txt │ ├── 00980_02.sced.txt │ ├── 00982_02.sced.txt │ ├── 00984_02.sced.txt │ ├── 00986_02.sced.txt │ ├── 00988_02.sced.txt │ ├── 00990_02.sced.txt │ ├── 00992_02.sced.txt │ ├── 00994_02.sced.txt │ ├── 00996_02.sced.txt │ ├── 00998_02.sced.txt │ ├── 01000_02.sced.txt │ ├── 01002_02.sced.txt │ ├── 01004_02.sced.txt │ ├── 01006_02.sced.txt │ ├── 01008_02.sced.txt │ ├── 01010_02.sced.txt │ ├── 01012_02.sced.txt │ ├── 01014_02.sced.txt │ ├── 01016_02.sced.txt │ ├── 01018_02.sced.txt │ ├── 01020_02.sced.txt │ ├── 01022_02.sced.txt │ ├── 01024_02.sced.txt │ ├── 01026_02.sced.txt │ ├── 01028_02.sced.txt │ ├── 01030_02.sced.txt │ ├── 01032_02.sced.txt │ ├── 01034_02.sced.txt │ ├── 01036_02.sced.txt │ ├── 01038_02.sced.txt │ ├── 01040_02.sced.txt │ ├── 01042_02.sced.txt │ ├── 01044_02.sced.txt │ ├── 01046_02.sced.txt │ ├── 01048_02.sced.txt │ ├── 01050_02.sced.txt │ ├── 01052_02.sced.txt │ ├── 01054_02.sced.txt │ ├── 01056_02.sced.txt │ ├── 01058_02.sced.txt │ ├── 01060_02.sced.txt │ ├── 01062_02.sced.txt │ ├── 01064_02.sced.txt │ ├── 01066_02.sced.txt │ ├── 01068_02.sced.txt │ ├── 01070_02.sced.txt │ ├── 01072_02.sced.txt │ ├── 01074_02.sced.txt │ ├── 01076_02.sced.txt │ ├── 01078_02.sced.txt │ ├── 01080_02.sced.txt │ ├── 01082_02.sced.txt │ ├── 01084_02.sced.txt │ ├── 01086_02.sced.txt │ ├── 01088_02.sced.txt │ ├── 01090_02.sced.txt │ ├── 01092_02.sced.txt │ ├── 01094_02.sced.txt │ ├── 01096_02.sced.txt │ ├── 01098_02.sced.txt │ ├── 01100_02.sced.txt │ ├── 01102_02.sced.txt │ ├── 01104_02.sced.txt │ ├── 01106_02.sced.txt │ ├── 01108_02.sced.txt │ ├── 01110_02.sced.txt │ ├── 01112_02.sced.txt │ ├── 01114_02.sced.txt │ ├── 01116_02.sced.txt │ ├── 01118_02.sced.txt │ ├── 01120_02.sced.txt │ ├── 01122_02.sced.txt │ ├── 01124_02.sced.txt │ ├── 01128_02.sced.txt │ ├── 01130_02.sced.txt │ ├── 01132_02.sced.txt │ ├── 01134_02.sced.txt │ ├── 01136_02.sced.txt │ ├── 01138_02.sced.txt │ ├── 01140_02.sced.txt │ ├── 01142_02.sced.txt │ ├── 01144_02.sced.txt │ ├── 01146_02.sced.txt │ ├── 01148_02.sced.txt │ ├── 01150_02.sced.txt │ ├── 01152_02.sced.txt │ ├── 01154_02.sced.txt │ ├── 01156_02.sced.txt │ ├── 01158_02.sced.txt │ ├── 01160_02.sced.txt │ ├── 01162_02.sced.txt │ ├── 01164_02.sced.txt │ ├── 01166_02.sced.txt │ ├── 01168_02.sced.txt │ ├── 01170_02.sced.txt │ ├── 01172_02.sced.txt │ ├── 01174_02.sced.txt │ ├── 01176_02.sced.txt │ ├── 01178_02.sced.txt │ ├── 01180_02.sced.txt │ ├── 01182_02.sced.txt │ ├── 01184_02.sced.txt │ ├── 01186_02.sced.txt │ ├── 01188_02.sced.txt │ ├── 01190_02.sced.txt │ ├── 01192_02.sced.txt │ ├── 01194_02.sced.txt │ ├── 01196_02.sced.txt │ ├── 01198_02.sced.txt │ ├── 01200_02.sced.txt │ ├── 01202_02.sced.txt │ ├── 01204_02.sced.txt │ ├── 01206_02.sced.txt │ ├── 01208_02.sced.txt │ ├── 01210_02.sced.txt │ ├── 01212_02.sced.txt │ ├── 01214_02.sced.txt │ ├── 01216_02.sced.txt │ ├── 01218_02.sced.txt │ ├── 01220_02.sced.txt │ ├── 01222_02.sced.txt │ ├── 01224_02.sced.txt │ ├── 01226_02.sced.txt │ ├── 01228_02.sced.txt │ ├── 01240_02.sced.txt │ ├── 01242_02.sced.txt │ ├── 01244_02.sced.txt │ ├── 01246_02.sced.txt │ ├── 01248_02.sced.txt │ ├── 01250_02.sced.txt │ ├── 01252_02.sced.txt │ ├── 01254_02.sced.txt │ ├── 01256_02.sced.txt │ ├── 01258_02.sced.txt │ ├── 01260_02.sced.txt │ ├── 01262_02.sced.txt │ ├── 01264_02.sced.txt │ ├── 01266_02.sced.txt │ ├── 01268_02.sced.txt │ ├── 01270_02.sced.txt │ ├── 01272_02.sced.txt │ ├── 01274_02.sced.txt │ ├── 01276_02.sced.txt │ ├── 01278_02.sced.txt │ ├── 01280_02.sced.txt │ ├── 01282_02.sced.txt │ ├── 01284_02.sced.txt │ ├── 01286_02.sced.txt │ ├── 01288_02.sced.txt │ ├── 01290_02.sced.txt │ ├── 01292_02.sced.txt │ ├── 01294_02.sced.txt │ ├── 01296_02.sced.txt │ └── 01298_02.sced.txt └── v9.7z ├── psp ├── PyTOD2 │ └── tod2_psp.py ├── archive │ ├── v1 │ │ ├── TOC.tsv │ │ ├── _setup.bat │ │ ├── readme.txt │ │ ├── setup.py │ │ ├── string_dump.py │ │ └── totals.tsv │ └── v2 │ │ ├── 01_unpack_fpb.py │ │ ├── 02_decompress_font.py │ │ ├── 03_unpack_scpk.py │ │ ├── 04_pack_scpk.py │ │ ├── 05_compress_font.py │ │ ├── 06_pack_fpb.py │ │ └── readme.md ├── readme.md └── scenarios │ ├── 6468.tsv │ ├── 6469.tsv │ ├── 6470.tsv │ ├── 6471.tsv │ ├── 6472.tsv │ ├── 6473.tsv │ ├── 6474.tsv │ ├── 6475.tsv │ ├── 6476.tsv │ ├── 6477.tsv │ ├── 6478.tsv │ ├── 6479.tsv │ ├── 6480.tsv │ ├── 6481.tsv │ ├── 6482.tsv │ ├── 6483.tsv │ ├── 6484.tsv │ ├── 6485.tsv │ ├── 6486.tsv │ ├── 6487.tsv │ ├── 6488.tsv │ ├── 6489.tsv │ ├── 6490.tsv │ ├── 6491.tsv │ ├── 6492.tsv │ ├── 6493.tsv │ ├── 6494.tsv │ ├── 6496.tsv │ ├── 6497.tsv │ ├── 6498.tsv │ ├── 6499.tsv │ ├── 6500.tsv │ ├── 6501.tsv │ ├── 6502.tsv │ ├── 6503.tsv │ ├── 6504.tsv │ ├── 6505.tsv │ ├── 6506.tsv │ ├── 6507.tsv │ ├── 6508.tsv │ ├── 6509.tsv │ ├── 6510.tsv │ ├── 6511.tsv │ ├── 6512.tsv │ ├── 6513.tsv │ ├── 6514.tsv │ ├── 6515.tsv │ ├── 6516.tsv │ ├── 6517.tsv │ ├── 6518.tsv │ ├── 6519.tsv │ ├── 6520.tsv │ ├── 6521.tsv │ ├── 6522.tsv │ ├── 6523.tsv │ ├── 6524.tsv │ ├── 6525.tsv │ ├── 6526.tsv │ ├── 6527.tsv │ ├── 6528.tsv │ ├── 6529.tsv │ ├── 6530.tsv │ ├── 6531.tsv │ ├── 6532.tsv │ ├── 6533.tsv │ ├── 6534.tsv │ ├── 6535.tsv │ ├── 6536.tsv │ ├── 6537.tsv │ ├── 6538.tsv │ ├── 6539.tsv │ ├── 6540.tsv │ ├── 6541.tsv │ ├── 6542.tsv │ ├── 6543.tsv │ ├── 6544.tsv │ ├── 6545.tsv │ ├── 6546.tsv │ ├── 6547.tsv │ ├── 6548.tsv │ ├── 6551.tsv │ ├── 6552.tsv │ ├── 6553.tsv │ ├── 6554.tsv │ ├── 6555.tsv │ ├── 6556.tsv │ ├── 6557.tsv │ ├── 6558.tsv │ ├── 6559.tsv │ ├── 6560.tsv │ ├── 6561.tsv │ ├── 6562.tsv │ ├── 6563.tsv │ ├── 6564.tsv │ ├── 6565.tsv │ ├── 6566.tsv │ ├── 6567.tsv │ ├── 6568.tsv │ ├── 6569.tsv │ ├── 6570.tsv │ ├── 6571.tsv │ ├── 6572.tsv │ ├── 6573.tsv │ ├── 6574.tsv │ ├── 6575.tsv │ ├── 6576.tsv │ ├── 6577.tsv │ ├── 6578.tsv │ ├── 6579.tsv │ ├── 6580.tsv │ ├── 6581.tsv │ ├── 6582.tsv │ ├── 6583.tsv │ ├── 6584.tsv │ ├── 6585.tsv │ ├── 6586.tsv │ ├── 6587.tsv │ ├── 6588.tsv │ ├── 6589.tsv │ ├── 6590.tsv │ ├── 6591.tsv │ ├── 6592.tsv │ ├── 6593.tsv │ ├── 6594.tsv │ ├── 6595.tsv │ ├── 6596.tsv │ ├── 6597.tsv │ ├── 6598.tsv │ ├── 6599.tsv │ ├── 6600.tsv │ ├── 6601.tsv │ ├── 6602.tsv │ ├── 6603.tsv │ ├── 6604.tsv │ ├── 6605.tsv │ ├── 6606.tsv │ ├── 6607.tsv │ ├── 6608.tsv │ ├── 6609.tsv │ ├── 6610.tsv │ ├── 6611.tsv │ ├── 6612.tsv │ ├── 6613.tsv │ ├── 6614.tsv │ ├── 6615.tsv │ ├── 6616.tsv │ ├── 6617.tsv │ ├── 6618.tsv │ ├── 6619.tsv │ ├── 6620.tsv │ ├── 6621.tsv │ ├── 6622.tsv │ ├── 6623.tsv │ ├── 6624.tsv │ ├── 6625.tsv │ ├── 6626.tsv │ ├── 6627.tsv │ ├── 6628.tsv │ ├── 6629.tsv │ ├── 6630.tsv │ ├── 6631.tsv │ ├── 6632.tsv │ ├── 6634.tsv │ ├── 6635.tsv │ ├── 6636.tsv │ ├── 6637.tsv │ ├── 6638.tsv │ ├── 6639.tsv │ ├── 6640.tsv │ ├── 6641.tsv │ ├── 6642.tsv │ ├── 6643.tsv │ ├── 6644.tsv │ ├── 6645.tsv │ ├── 6646.tsv │ ├── 6647.tsv │ ├── 6648.tsv │ ├── 6649.tsv │ ├── 6650.tsv │ ├── 6651.tsv │ ├── 6652.tsv │ ├── 6653.tsv │ ├── 6654.tsv │ ├── 6655.tsv │ ├── 6656.tsv │ ├── 6657.tsv │ ├── 6658.tsv │ ├── 6659.tsv │ ├── 6660.tsv │ ├── 6661.tsv │ ├── 6662.tsv │ ├── 6663.tsv │ ├── 6664.tsv │ ├── 6665.tsv │ ├── 6666.tsv │ ├── 6667.tsv │ ├── 6668.tsv │ ├── 6669.tsv │ ├── 6670.tsv │ ├── 6671.tsv │ ├── 6672.tsv │ ├── 6673.tsv │ ├── 6674.tsv │ ├── 6675.tsv │ ├── 6676.tsv │ ├── 6677.tsv │ ├── 6678.tsv │ ├── 6679.tsv │ ├── 6680.tsv │ ├── 6681.tsv │ ├── 6682.tsv │ ├── 6683.tsv │ ├── 6684.tsv │ ├── 6685.tsv │ ├── 6686.tsv │ ├── 6687.tsv │ ├── 6688.tsv │ ├── 6689.tsv │ ├── 6690.tsv │ ├── 6691.tsv │ ├── 6692.tsv │ ├── 6693.tsv │ ├── 6694.tsv │ ├── 6695.tsv │ ├── 6696.tsv │ ├── 6697.tsv │ ├── 6698.tsv │ ├── 6699.tsv │ ├── 6700.tsv │ ├── 6701.tsv │ ├── 6702.tsv │ ├── 6703.tsv │ ├── 6704.tsv │ ├── 6705.tsv │ ├── 6706.tsv │ ├── 6707.tsv │ ├── 6708.tsv │ ├── 6709.tsv │ ├── 6710.tsv │ ├── 6711.tsv │ ├── 6712.tsv │ ├── 6713.tsv │ ├── 6714.tsv │ ├── 6715.tsv │ ├── 6716.tsv │ ├── 6717.tsv │ ├── 6718.tsv │ ├── 6719.tsv │ ├── 6720.tsv │ ├── 6721.tsv │ ├── 6722.tsv │ ├── 6723.tsv │ ├── 6724.tsv │ ├── 6725.tsv │ ├── 6726.tsv │ ├── 6727.tsv │ ├── 6728.tsv │ ├── 6729.tsv │ ├── 6730.tsv │ ├── 6731.tsv │ ├── 6732.tsv │ ├── 6733.tsv │ ├── 6734.tsv │ ├── 6735.tsv │ ├── 6736.tsv │ ├── 6737.tsv │ ├── 6738.tsv │ ├── 6739.tsv │ ├── 6740.tsv │ ├── 6741.tsv │ ├── 6742.tsv │ ├── 6743.tsv │ ├── 6744.tsv │ ├── 6745.tsv │ ├── 6746.tsv │ ├── 6747.tsv │ ├── 6748.tsv │ ├── 6749.tsv │ ├── 6750.tsv │ ├── 6751.tsv │ ├── 6752.tsv │ ├── 6753.tsv │ ├── 6754.tsv │ ├── 6755.tsv │ ├── 6756.tsv │ ├── 6757.tsv │ ├── 6758.tsv │ ├── 6759.tsv │ ├── 6760.tsv │ ├── 6761.tsv │ ├── 6762.tsv │ ├── 6763.tsv │ ├── 6764.tsv │ ├── 6765.tsv │ ├── 6766.tsv │ ├── 6767.tsv │ ├── 6768.tsv │ ├── 6769.tsv │ ├── 6770.tsv │ ├── 6771.tsv │ ├── 6772.tsv │ ├── 6773.tsv │ ├── 6774.tsv │ ├── 6775.tsv │ ├── 6776.tsv │ ├── 6777.tsv │ ├── 6778.tsv │ ├── 6779.tsv │ ├── 6780.tsv │ ├── 6781.tsv │ ├── 6782.tsv │ ├── 6783.tsv │ ├── 6784.tsv │ ├── 6785.tsv │ ├── 6786.tsv │ ├── 6787.tsv │ ├── 6788.tsv │ ├── 6789.tsv │ ├── 6790.tsv │ ├── 6791.tsv │ ├── 6792.tsv │ ├── 6793.tsv │ ├── 6794.tsv │ ├── 6795.tsv │ ├── 6796.tsv │ ├── 6803.tsv │ ├── 6804.tsv │ ├── 6805.tsv │ ├── 6806.tsv │ ├── 6807.tsv │ ├── 6808.tsv │ ├── 6809.tsv │ ├── 6810.tsv │ ├── 6811.tsv │ ├── 6812.tsv │ ├── 6813.tsv │ ├── 6814.tsv │ ├── 6815.tsv │ ├── 6816.tsv │ ├── 6817.tsv │ ├── 6818.tsv │ ├── 6819.tsv │ ├── 6820.tsv │ ├── 6821.tsv │ ├── 6822.tsv │ ├── 6823.tsv │ ├── 6826.tsv │ ├── 6827.tsv │ ├── 6828.tsv │ ├── 6829.tsv │ ├── 6830.tsv │ ├── 6831.tsv │ ├── 6832.tsv │ ├── 6833.tsv │ ├── 6834.tsv │ ├── 6835.tsv │ ├── 6846.tsv │ ├── 6847.tsv │ ├── 6848.tsv │ ├── 6849.tsv │ ├── 6850.tsv │ ├── 6851.tsv │ ├── 6852.tsv │ ├── 6853.tsv │ ├── 6854.tsv │ ├── 6855.tsv │ ├── 6856.tsv │ ├── 6857.tsv │ ├── 6858.tsv │ ├── 6859.tsv │ ├── 6860.tsv │ ├── 6861.tsv │ ├── 6862.tsv │ ├── 6863.tsv │ ├── 6864.tsv │ ├── 6865.tsv │ ├── 6866.tsv │ ├── 6867.tsv │ ├── 6868.tsv │ ├── 6869.tsv │ ├── 6876.tsv │ ├── 6877.tsv │ ├── 6878.tsv │ ├── 6879.tsv │ ├── 6881.tsv │ ├── 6882.tsv │ ├── 6883.tsv │ ├── 6886.tsv │ ├── 6887.tsv │ ├── 6888.tsv │ ├── 6889.tsv │ ├── 6890.tsv │ ├── 6891.tsv │ ├── 6892.tsv │ ├── 6893.tsv │ ├── 6894.tsv │ ├── 6895.tsv │ ├── 6896.tsv │ ├── 6897.tsv │ ├── 6898.tsv │ ├── 6899.tsv │ ├── 6901.tsv │ ├── 6902.tsv │ ├── 6903.tsv │ ├── 6904.tsv │ ├── 6906.tsv │ ├── 6907.tsv │ ├── 6908.tsv │ ├── 6909.tsv │ ├── 6910.tsv │ ├── 6911.tsv │ ├── 6912.tsv │ ├── 6913.tsv │ ├── 6914.tsv │ ├── 6915.tsv │ ├── 6916.tsv │ ├── 6917.tsv │ ├── 6918.tsv │ ├── 6919.tsv │ ├── 6920.tsv │ ├── 6921.tsv │ ├── 6922.tsv │ ├── 6923.tsv │ ├── 6924.tsv │ ├── 6925.tsv │ ├── 6926.tsv │ ├── 6927.tsv │ ├── 6928.tsv │ ├── 6929.tsv │ ├── 6930.tsv │ ├── 6931.tsv │ ├── 6932.tsv │ ├── 6933.tsv │ ├── 6934.tsv │ ├── 6935.tsv │ ├── 6936.tsv │ ├── 6937.tsv │ ├── 6938.tsv │ ├── 6939.tsv │ ├── 6940.tsv │ ├── 6941.tsv │ ├── 6942.tsv │ ├── 6943.tsv │ ├── 6944.tsv │ ├── 6945.tsv │ ├── 6946.tsv │ ├── 6947.tsv │ ├── 6948.tsv │ ├── 6949.tsv │ ├── 6950.tsv │ ├── 6951.tsv │ ├── 6952.tsv │ └── 6953.tsv ├── scripts ├── HexToJpn.py ├── JpnToHex.py ├── README.md ├── hJpn.py ├── jHex.py ├── japSearchAll │ ├── README.md │ └── japSearchAll.py └── text_dump.py ├── tm2_converter ├── 01_extract.bat ├── 02_repack.bat ├── TalesOfDestinyTm2Converter.exe ├── TalesOfDestinyTm2Converter.sln ├── TalesOfDestinyTm2Converter │ ├── Header.cs │ ├── PaletteBlock.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Quantizer │ │ ├── Bucket.cs │ │ └── MedianCut.cs │ ├── TM2.cs │ ├── TalesOfDestinyTm2Converter.csproj │ ├── TextureBlock.cs │ ├── TextureTypeEnum.cs │ ├── app.manifest │ └── kyle.ico ├── kyle.ico ├── readme.md ├── ttemma.Helpers.dll └── ttemma.Helpers │ ├── ByteEncoding.cs │ ├── Cryptography │ └── CRC32CryptoProvider.cs │ ├── Math │ └── MathHelper.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── StreamHelper.cs │ └── ttemma.Helpers.csproj └── tod2_slps_base.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/README.md -------------------------------------------------------------------------------- /TOD2_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/TOD2_logo.png -------------------------------------------------------------------------------- /current_font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/current_font.png -------------------------------------------------------------------------------- /dictionary/tod2_ansi.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/dictionary/tod2_ansi.tbl -------------------------------------------------------------------------------- /dictionary/tod2_symbols.txt: -------------------------------------------------------------------------------- 1 | hex, char 2 | 20, 3 | A5, ・ -------------------------------------------------------------------------------- /dictionary/tod2_utf8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/dictionary/tod2_utf8.txt -------------------------------------------------------------------------------- /docs/hextojpn/hextojpn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/docs/hextojpn/hextojpn.js -------------------------------------------------------------------------------- /docs/hextojpn/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/docs/hextojpn/index.html -------------------------------------------------------------------------------- /docs/hextojpn/judas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/docs/hextojpn/judas.png -------------------------------------------------------------------------------- /docs/hextojpn/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/docs/hextojpn/manifest.json -------------------------------------------------------------------------------- /docs/hextojpn/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/docs/hextojpn/readme.md -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/jpntohex/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/docs/jpntohex/index.html -------------------------------------------------------------------------------- /docs/jpntohex/jpntohex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/docs/jpntohex/jpntohex.js -------------------------------------------------------------------------------- /docs/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/docs/style.css -------------------------------------------------------------------------------- /ps2/PyTOD2/FPB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/PyTOD2/FPB.json -------------------------------------------------------------------------------- /ps2/PyTOD2/PyTOD2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/PyTOD2/PyTOD2.py -------------------------------------------------------------------------------- /ps2/PyTOD2/TBL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/PyTOD2/TBL.json -------------------------------------------------------------------------------- /ps2/PyTOD2/bat/01_extract_files.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 1 2 | pause -------------------------------------------------------------------------------- /ps2/PyTOD2/bat/02_insert_files.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 2 2 | pause -------------------------------------------------------------------------------- /ps2/PyTOD2/bat/03_pack_fpb.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 3 2 | pause -------------------------------------------------------------------------------- /ps2/PyTOD2/bat/04_insert_font.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 4 2 | pause -------------------------------------------------------------------------------- /ps2/PyTOD2/bat/05_extract_fpb.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 5 2 | pause -------------------------------------------------------------------------------- /ps2/PyTOD2/bat/06_extract_scpk.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 6 2 | pause -------------------------------------------------------------------------------- /ps2/PyTOD2/bat/09_pack_scpk.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 9 2 | pause -------------------------------------------------------------------------------- /ps2/PyTOD2/bat/10_export_tbl.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 10 2 | pause -------------------------------------------------------------------------------- /ps2/PyTOD2/bat/11_unpack_folders.bat: -------------------------------------------------------------------------------- 1 | python unpack_folders.py 2 | pause -------------------------------------------------------------------------------- /ps2/PyTOD2/bat/A_extract_pak1.bat: -------------------------------------------------------------------------------- 1 | python pak1.py 1 2 | pause -------------------------------------------------------------------------------- /ps2/PyTOD2/bat/C_extract_sced.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 7 2 | pause -------------------------------------------------------------------------------- /ps2/PyTOD2/bat/D_insert_sced.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 8 2 | pause -------------------------------------------------------------------------------- /ps2/PyTOD2/bat/F_insert_pak1.bat: -------------------------------------------------------------------------------- 1 | python pak1.py 2 2 | pause -------------------------------------------------------------------------------- /ps2/PyTOD2/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/PyTOD2/favicon.ico -------------------------------------------------------------------------------- /ps2/PyTOD2/font.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/PyTOD2/font.bin -------------------------------------------------------------------------------- /ps2/PyTOD2/move_skits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/PyTOD2/move_skits.py -------------------------------------------------------------------------------- /ps2/PyTOD2/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/PyTOD2/readme.md -------------------------------------------------------------------------------- /ps2/PyTOD2/tod2_ps2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/PyTOD2/tod2_ps2.py -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v1/extract_fpb.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 1 2 | pause -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v1/extract_scpk.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 3 2 | pause -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v1/pack_fpb.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 2 2 | pause -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v1/pack_scpk.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 4 2 | pause -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v2/extract_fpb.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 1 -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v2/extract_sced.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 6 -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v2/extract_scpk.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 3 -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v2/insert_sced.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 7 2 | pause -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v2/move_sced.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 5 -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v2/pack_fpb.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 2 -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v2/pack_scpk.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 4 -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v3/extract_fpb.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 1 -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v3/extract_sced.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 6 -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v3/extract_scpk.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 3 -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v3/insert_sced.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 7 2 | pause -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v3/move_sced.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 5 -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v3/pack_fpb.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 2 -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v3/pack_scpk.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 4 -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v3/replace_sced.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 8 -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v3/sort_fpb.bat: -------------------------------------------------------------------------------- 1 | python tod2_sort_fpb.py 2 | pause -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v4/01_extract_files.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 1 2 | pause -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v4/02_insert_files.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 2 2 | pause -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v4/03_pack_fpb.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 3 2 | pause -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v5/01_extract_files.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 1 2 | pause -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v5/02_insert_files.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 2 2 | pause -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v5/03_pack_fpb.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 3 2 | pause -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v5/04_insert_font.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 4 2 | pause -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v5/05_extract_fpb.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 5 2 | pause -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v5/06_extract_scpk.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 6 2 | pause -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v5/07_extract_sced.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 7 2 | pause -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v5/08_insert_sced.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 8 2 | pause -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v5/09_pack_scpk.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 9 2 | pause -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v5/10_sort_fpb.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2_sort.py 2 | pause -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v6/01_extract_files.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 1 2 | pause -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v6/02_insert_files.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 2 2 | pause -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v6/03_pack_fpb.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 3 2 | pause -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v6/04_insert_font.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 4 2 | pause -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v6/05_extract_fpb.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 5 2 | pause -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v6/06_extract_scpk.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 6 2 | pause -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v6/07_extract_sced.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 7 2 | pause -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v6/08_insert_sced.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 8 2 | pause -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v6/09_pack_scpk.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 9 2 | pause -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v6/10_export_tbl.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 10 2 | pause -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v6/11_sort_fpb.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2_sort.py 2 | pause -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v6/12_move_sced.bat: -------------------------------------------------------------------------------- 1 | python move_skits.py 1 2 | pause -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v6/13_move_sced_pak1.bat: -------------------------------------------------------------------------------- 1 | python move_skits.py 2 2 | pause -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v6/pack_pak0.bat: -------------------------------------------------------------------------------- 1 | for %%i in (*) do pakcomposer.exe -c "%%i" -0 2 | pause -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v6/pack_pak3.bat: -------------------------------------------------------------------------------- 1 | for %%i in (*) do pakcomposer.exe -c "%%i" -3 -x -u -v 2 | pause -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v7/01_extract_files.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 1 2 | pause -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v7/02_insert_files.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 2 2 | pause -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v7/03_pack_fpb.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 3 2 | pause -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v7/04_insert_font.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 4 2 | pause -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v7/05_extract_fpb.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 5 2 | pause -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v7/06_extract_scpk.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 6 2 | pause -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v7/07_extract_sced.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 7 2 | pause -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v7/08_insert_sced.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 8 2 | pause -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v7/09_pack_scpk.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 9 2 | pause -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v7/10_export_tbl.bat: -------------------------------------------------------------------------------- 1 | python tod2_ps2.py 10 2 | pause -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v7/11_unpack_folders.bat: -------------------------------------------------------------------------------- 1 | python unpack_folders.py 2 | pause -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v7/A_extract_pak1.bat: -------------------------------------------------------------------------------- 1 | python pak1.py 1 2 | pause -------------------------------------------------------------------------------- /ps2/archive/PyTOR2_old/v7/B_repack_pak1.bat: -------------------------------------------------------------------------------- 1 | python pak1.py 2 2 | pause -------------------------------------------------------------------------------- /ps2/archive/font1.tm2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/archive/font1.tm2 -------------------------------------------------------------------------------- /ps2/archive/font2.tm2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/archive/font2.tm2 -------------------------------------------------------------------------------- /ps2/archive/scenarios.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/archive/scenarios.txt -------------------------------------------------------------------------------- /ps2/archive/skits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/archive/skits.txt -------------------------------------------------------------------------------- /ps2/scripts/MenuScripts/TOD2_update_All.bat: -------------------------------------------------------------------------------- 1 | python "BaseScripts/updateBlock.py" All 2 | pause -------------------------------------------------------------------------------- /ps2/scripts/SLPS_251.72: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/scripts/SLPS_251.72 -------------------------------------------------------------------------------- /ps2/scripts/abcde/Build_Run_AllTools.bat: -------------------------------------------------------------------------------- 1 | python Build_Run.py slps_AllTools 600 C0228 28 2 -------------------------------------------------------------------------------- /ps2/scripts/abcde/Build_Run_Artes.bat: -------------------------------------------------------------------------------- 1 | python Build_Run.py slps_Artes 600 B75AC 28 3 -------------------------------------------------------------------------------- /ps2/scripts/abcde/Build_Run_Menu4.bat: -------------------------------------------------------------------------------- 1 | python Build_Run.py slps_Menu4 600 F6D7C 8 1 -------------------------------------------------------------------------------- /ps2/scripts/abcde/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/scripts/abcde/README.md -------------------------------------------------------------------------------- /ps2/scripts/abcde/Run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/scripts/abcde/Run.py -------------------------------------------------------------------------------- /ps2/scripts/abcde/Run_Menu3.bat: -------------------------------------------------------------------------------- 1 | python Run.py TOD2_Menu3 -------------------------------------------------------------------------------- /ps2/scripts/abcde/Run_Menu4.bat: -------------------------------------------------------------------------------- 1 | python Run.py TOD2_Menu4 -------------------------------------------------------------------------------- /ps2/scripts/abcde/Run_Menu5.bat: -------------------------------------------------------------------------------- 1 | python Run.py TOD2_Menu5 -------------------------------------------------------------------------------- /ps2/scripts/abcde/Run_Menu6.bat: -------------------------------------------------------------------------------- 1 | python Run.py TOD2_Menu6 -------------------------------------------------------------------------------- /ps2/scripts/abcde/Run_Menu7.bat: -------------------------------------------------------------------------------- 1 | python Run.py TOD2_Menu7 -------------------------------------------------------------------------------- /ps2/scripts/abcde/Run_Menu8.bat: -------------------------------------------------------------------------------- 1 | python Run.py TOD2_Menu8 -------------------------------------------------------------------------------- /ps2/scripts/abcde/Run_Names.bat: -------------------------------------------------------------------------------- 1 | python Run.py TOD2_Names -------------------------------------------------------------------------------- /ps2/scripts/abcde/Run_SideMenu.bat: -------------------------------------------------------------------------------- 1 | python Run.py TOD2_SideMenu -------------------------------------------------------------------------------- /ps2/scripts/abcde/Run_Stuff1.bat: -------------------------------------------------------------------------------- 1 | python Run.py TOD2_Stuff1 -------------------------------------------------------------------------------- /ps2/scripts/abcde/Run_Stuff2.bat: -------------------------------------------------------------------------------- 1 | python Run.py TOD2_Stuff2 -------------------------------------------------------------------------------- /ps2/scripts/abcde/Run_TopMenu.bat: -------------------------------------------------------------------------------- 1 | python Run.py TOD2_TopMenu -------------------------------------------------------------------------------- /ps2/scripts/abcde/SLPS_251.72: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/scripts/abcde/SLPS_251.72 -------------------------------------------------------------------------------- /ps2/scripts/abcde/abcde.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/scripts/abcde/abcde.pl -------------------------------------------------------------------------------- /ps2/scripts/comptoe.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/scripts/comptoe.exe -------------------------------------------------------------------------------- /ps2/scripts/new_SLPS_251.72: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/scripts/new_SLPS_251.72 -------------------------------------------------------------------------------- /ps2/skits/00054_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00054_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00056_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00056_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00058_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00058_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00060_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00060_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00062_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00062_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00064_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00064_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00066_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00066_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00068_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00068_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00070_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00070_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00072_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00072_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00074_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00074_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00076_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00076_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00078_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00078_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00080_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00080_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00082_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00082_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00084_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00084_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00086_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00086_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00088_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00088_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00090_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00090_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00092_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00092_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00094_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00094_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00096_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00096_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00098_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00098_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00100_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00100_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00102_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00102_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00104_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00104_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00106_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00106_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00108_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00108_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00110_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00110_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00112_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00112_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00114_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00114_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00116_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00116_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00118_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00118_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00122_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00122_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00124_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00124_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00126_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00126_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00128_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00128_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00130_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00130_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00132_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00132_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00134_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00134_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00136_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00136_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00138_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00138_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00140_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00140_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00142_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00142_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00144_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00144_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00146_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00146_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00148_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00148_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00150_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00150_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00152_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00152_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00154_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00154_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00156_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00156_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00160_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00160_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00162_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00162_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00164_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00164_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00166_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00166_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00168_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00168_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00170_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00170_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00172_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00172_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00174_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00174_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00176_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00176_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00178_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00178_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00180_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00180_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00182_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00182_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00184_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00184_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00186_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00186_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00188_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00188_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00190_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00190_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00192_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00192_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00194_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00194_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00196_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00196_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00198_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00198_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00200_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00200_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00202_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00202_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00204_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00204_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00206_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00206_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00208_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00208_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00210_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00210_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00212_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00212_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00214_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00214_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00216_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00216_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00218_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00218_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00220_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00220_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00222_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00222_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00224_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00224_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00226_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00226_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00228_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00228_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00230_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00230_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00232_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00232_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00234_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00234_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00236_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00236_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00238_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00238_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00240_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00240_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00242_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00242_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00244_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00244_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00246_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00246_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00248_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00248_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00250_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00250_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00252_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00252_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00254_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00254_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00256_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00256_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00258_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00258_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00260_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00260_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00262_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00262_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00264_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00264_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00266_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00266_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00268_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00268_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00270_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00270_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00272_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00272_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00274_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00274_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00276_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00276_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00278_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00278_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00280_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00280_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00282_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00282_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00284_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00284_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00286_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00286_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00288_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00288_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00290_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00290_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00292_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00292_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00294_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00294_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00296_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00296_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00298_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00298_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00300_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00300_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00302_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00302_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00304_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00304_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00306_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00306_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00308_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00308_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00310_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00310_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00312_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00312_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00314_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00314_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00316_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00316_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00318_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00318_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00320_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00320_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00324_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00324_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00326_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00326_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00328_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00328_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00330_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00330_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00332_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00332_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00334_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00334_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00336_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00336_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00338_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00338_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00340_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00340_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00342_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00342_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00344_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00344_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00346_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00346_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00348_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00348_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00350_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00350_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00352_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00352_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00354_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00354_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00356_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00356_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00358_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00358_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00360_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00360_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00362_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00362_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00364_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00364_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00366_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00366_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00368_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00368_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00370_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00370_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00372_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00372_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00374_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00374_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00376_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00376_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00378_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00378_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00380_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00380_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00382_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00382_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00384_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00384_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00386_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00386_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00388_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00388_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00390_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00390_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00394_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00394_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00396_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00396_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00398_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00398_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00400_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00400_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00402_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00402_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00404_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00404_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00406_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00406_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00408_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00408_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00410_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00410_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00412_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00412_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00414_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00414_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00416_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00416_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00418_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00418_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00420_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00420_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00422_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00422_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00424_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00424_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00426_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00426_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00428_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00428_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00430_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00430_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00432_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00432_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00434_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00434_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00436_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00436_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00438_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00438_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00440_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00440_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00442_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00442_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00444_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00444_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00446_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00446_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00448_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00448_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00450_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00450_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00452_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00452_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00454_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00454_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00456_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00456_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00458_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00458_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00460_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00460_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00462_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00462_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00464_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00464_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00466_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00466_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00468_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00468_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00470_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00470_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00472_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00472_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00474_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00474_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00476_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00476_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00478_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00478_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00480_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00480_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00482_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00482_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00486_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00486_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00488_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00488_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00490_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00490_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00492_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00492_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00494_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00494_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00496_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00496_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00498_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00498_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00500_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00500_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00502_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00502_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00504_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00504_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00506_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00506_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00508_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00508_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00510_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00510_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00512_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00512_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00514_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00514_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00516_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00516_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00518_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00518_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00520_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00520_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00522_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00522_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00524_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00524_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00526_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00526_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00528_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00528_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00530_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00530_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00532_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00532_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00534_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00534_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00536_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00536_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00538_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00538_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00540_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00540_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00542_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00542_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00544_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00544_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00546_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00546_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00548_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00548_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00550_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00550_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00552_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00552_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00554_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00554_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00556_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00556_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00558_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00558_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00560_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00560_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00562_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00562_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00564_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00564_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00566_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00566_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00568_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00568_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00570_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00570_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00572_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00572_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00574_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00574_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00576_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00576_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00578_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00578_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00580_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00580_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00582_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00582_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00584_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00584_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00586_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00586_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00588_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00588_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00590_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00590_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00592_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00592_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00594_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00594_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00596_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00596_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00598_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00598_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00600_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00600_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00602_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00602_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00604_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00604_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00606_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00606_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00608_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00608_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00610_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00610_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00612_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00612_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00614_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00614_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00616_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00616_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00618_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00618_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00620_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00620_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00622_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00622_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00624_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00624_02.sced.txt -------------------------------------------------------------------------------- /ps2/skits/00626_02.sced.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/skits/00626_02.sced.txt -------------------------------------------------------------------------------- /ps2/v9.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/ps2/v9.7z -------------------------------------------------------------------------------- /psp/PyTOD2/tod2_psp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/PyTOD2/tod2_psp.py -------------------------------------------------------------------------------- /psp/archive/v1/TOC.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/archive/v1/TOC.tsv -------------------------------------------------------------------------------- /psp/archive/v1/_setup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/archive/v1/_setup.bat -------------------------------------------------------------------------------- /psp/archive/v1/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/archive/v1/readme.txt -------------------------------------------------------------------------------- /psp/archive/v1/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/archive/v1/setup.py -------------------------------------------------------------------------------- /psp/archive/v1/totals.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/archive/v1/totals.tsv -------------------------------------------------------------------------------- /psp/archive/v2/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/archive/v2/readme.md -------------------------------------------------------------------------------- /psp/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/readme.md -------------------------------------------------------------------------------- /psp/scenarios/6468.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6468.tsv -------------------------------------------------------------------------------- /psp/scenarios/6469.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6469.tsv -------------------------------------------------------------------------------- /psp/scenarios/6470.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6470.tsv -------------------------------------------------------------------------------- /psp/scenarios/6471.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6471.tsv -------------------------------------------------------------------------------- /psp/scenarios/6472.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6472.tsv -------------------------------------------------------------------------------- /psp/scenarios/6473.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6473.tsv -------------------------------------------------------------------------------- /psp/scenarios/6474.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6474.tsv -------------------------------------------------------------------------------- /psp/scenarios/6475.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6475.tsv -------------------------------------------------------------------------------- /psp/scenarios/6476.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6476.tsv -------------------------------------------------------------------------------- /psp/scenarios/6477.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6477.tsv -------------------------------------------------------------------------------- /psp/scenarios/6478.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6478.tsv -------------------------------------------------------------------------------- /psp/scenarios/6479.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6479.tsv -------------------------------------------------------------------------------- /psp/scenarios/6480.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6480.tsv -------------------------------------------------------------------------------- /psp/scenarios/6481.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6481.tsv -------------------------------------------------------------------------------- /psp/scenarios/6482.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6482.tsv -------------------------------------------------------------------------------- /psp/scenarios/6483.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6483.tsv -------------------------------------------------------------------------------- /psp/scenarios/6484.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6484.tsv -------------------------------------------------------------------------------- /psp/scenarios/6485.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6485.tsv -------------------------------------------------------------------------------- /psp/scenarios/6486.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6486.tsv -------------------------------------------------------------------------------- /psp/scenarios/6487.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6487.tsv -------------------------------------------------------------------------------- /psp/scenarios/6488.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6488.tsv -------------------------------------------------------------------------------- /psp/scenarios/6489.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6489.tsv -------------------------------------------------------------------------------- /psp/scenarios/6490.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6490.tsv -------------------------------------------------------------------------------- /psp/scenarios/6491.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6491.tsv -------------------------------------------------------------------------------- /psp/scenarios/6492.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6492.tsv -------------------------------------------------------------------------------- /psp/scenarios/6493.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6493.tsv -------------------------------------------------------------------------------- /psp/scenarios/6494.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6494.tsv -------------------------------------------------------------------------------- /psp/scenarios/6496.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6496.tsv -------------------------------------------------------------------------------- /psp/scenarios/6497.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6497.tsv -------------------------------------------------------------------------------- /psp/scenarios/6498.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6498.tsv -------------------------------------------------------------------------------- /psp/scenarios/6499.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6499.tsv -------------------------------------------------------------------------------- /psp/scenarios/6500.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6500.tsv -------------------------------------------------------------------------------- /psp/scenarios/6501.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6501.tsv -------------------------------------------------------------------------------- /psp/scenarios/6502.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6502.tsv -------------------------------------------------------------------------------- /psp/scenarios/6503.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6503.tsv -------------------------------------------------------------------------------- /psp/scenarios/6504.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6504.tsv -------------------------------------------------------------------------------- /psp/scenarios/6505.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6505.tsv -------------------------------------------------------------------------------- /psp/scenarios/6506.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6506.tsv -------------------------------------------------------------------------------- /psp/scenarios/6507.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6507.tsv -------------------------------------------------------------------------------- /psp/scenarios/6508.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6508.tsv -------------------------------------------------------------------------------- /psp/scenarios/6509.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6509.tsv -------------------------------------------------------------------------------- /psp/scenarios/6510.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6510.tsv -------------------------------------------------------------------------------- /psp/scenarios/6511.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6511.tsv -------------------------------------------------------------------------------- /psp/scenarios/6512.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6512.tsv -------------------------------------------------------------------------------- /psp/scenarios/6513.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6513.tsv -------------------------------------------------------------------------------- /psp/scenarios/6514.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6514.tsv -------------------------------------------------------------------------------- /psp/scenarios/6515.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6515.tsv -------------------------------------------------------------------------------- /psp/scenarios/6516.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6516.tsv -------------------------------------------------------------------------------- /psp/scenarios/6517.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6517.tsv -------------------------------------------------------------------------------- /psp/scenarios/6518.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6518.tsv -------------------------------------------------------------------------------- /psp/scenarios/6519.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6519.tsv -------------------------------------------------------------------------------- /psp/scenarios/6520.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6520.tsv -------------------------------------------------------------------------------- /psp/scenarios/6521.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6521.tsv -------------------------------------------------------------------------------- /psp/scenarios/6522.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6522.tsv -------------------------------------------------------------------------------- /psp/scenarios/6523.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6523.tsv -------------------------------------------------------------------------------- /psp/scenarios/6524.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6524.tsv -------------------------------------------------------------------------------- /psp/scenarios/6525.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6525.tsv -------------------------------------------------------------------------------- /psp/scenarios/6526.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6526.tsv -------------------------------------------------------------------------------- /psp/scenarios/6527.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6527.tsv -------------------------------------------------------------------------------- /psp/scenarios/6528.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6528.tsv -------------------------------------------------------------------------------- /psp/scenarios/6529.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6529.tsv -------------------------------------------------------------------------------- /psp/scenarios/6530.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6530.tsv -------------------------------------------------------------------------------- /psp/scenarios/6531.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6531.tsv -------------------------------------------------------------------------------- /psp/scenarios/6532.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6532.tsv -------------------------------------------------------------------------------- /psp/scenarios/6533.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6533.tsv -------------------------------------------------------------------------------- /psp/scenarios/6534.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6534.tsv -------------------------------------------------------------------------------- /psp/scenarios/6535.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6535.tsv -------------------------------------------------------------------------------- /psp/scenarios/6536.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6536.tsv -------------------------------------------------------------------------------- /psp/scenarios/6537.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6537.tsv -------------------------------------------------------------------------------- /psp/scenarios/6538.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6538.tsv -------------------------------------------------------------------------------- /psp/scenarios/6539.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6539.tsv -------------------------------------------------------------------------------- /psp/scenarios/6540.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6540.tsv -------------------------------------------------------------------------------- /psp/scenarios/6541.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6541.tsv -------------------------------------------------------------------------------- /psp/scenarios/6542.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6542.tsv -------------------------------------------------------------------------------- /psp/scenarios/6543.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6543.tsv -------------------------------------------------------------------------------- /psp/scenarios/6544.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6544.tsv -------------------------------------------------------------------------------- /psp/scenarios/6545.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6545.tsv -------------------------------------------------------------------------------- /psp/scenarios/6546.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6546.tsv -------------------------------------------------------------------------------- /psp/scenarios/6547.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6547.tsv -------------------------------------------------------------------------------- /psp/scenarios/6548.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6548.tsv -------------------------------------------------------------------------------- /psp/scenarios/6551.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6551.tsv -------------------------------------------------------------------------------- /psp/scenarios/6552.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6552.tsv -------------------------------------------------------------------------------- /psp/scenarios/6553.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6553.tsv -------------------------------------------------------------------------------- /psp/scenarios/6554.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6554.tsv -------------------------------------------------------------------------------- /psp/scenarios/6555.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6555.tsv -------------------------------------------------------------------------------- /psp/scenarios/6556.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6556.tsv -------------------------------------------------------------------------------- /psp/scenarios/6557.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6557.tsv -------------------------------------------------------------------------------- /psp/scenarios/6558.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6558.tsv -------------------------------------------------------------------------------- /psp/scenarios/6559.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6559.tsv -------------------------------------------------------------------------------- /psp/scenarios/6560.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6560.tsv -------------------------------------------------------------------------------- /psp/scenarios/6561.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6561.tsv -------------------------------------------------------------------------------- /psp/scenarios/6562.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6562.tsv -------------------------------------------------------------------------------- /psp/scenarios/6563.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6563.tsv -------------------------------------------------------------------------------- /psp/scenarios/6564.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6564.tsv -------------------------------------------------------------------------------- /psp/scenarios/6565.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6565.tsv -------------------------------------------------------------------------------- /psp/scenarios/6566.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6566.tsv -------------------------------------------------------------------------------- /psp/scenarios/6567.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6567.tsv -------------------------------------------------------------------------------- /psp/scenarios/6568.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6568.tsv -------------------------------------------------------------------------------- /psp/scenarios/6569.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6569.tsv -------------------------------------------------------------------------------- /psp/scenarios/6570.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6570.tsv -------------------------------------------------------------------------------- /psp/scenarios/6571.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6571.tsv -------------------------------------------------------------------------------- /psp/scenarios/6572.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6572.tsv -------------------------------------------------------------------------------- /psp/scenarios/6573.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6573.tsv -------------------------------------------------------------------------------- /psp/scenarios/6574.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6574.tsv -------------------------------------------------------------------------------- /psp/scenarios/6575.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6575.tsv -------------------------------------------------------------------------------- /psp/scenarios/6576.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6576.tsv -------------------------------------------------------------------------------- /psp/scenarios/6577.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6577.tsv -------------------------------------------------------------------------------- /psp/scenarios/6578.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6578.tsv -------------------------------------------------------------------------------- /psp/scenarios/6579.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6579.tsv -------------------------------------------------------------------------------- /psp/scenarios/6580.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6580.tsv -------------------------------------------------------------------------------- /psp/scenarios/6581.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6581.tsv -------------------------------------------------------------------------------- /psp/scenarios/6582.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6582.tsv -------------------------------------------------------------------------------- /psp/scenarios/6583.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6583.tsv -------------------------------------------------------------------------------- /psp/scenarios/6584.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6584.tsv -------------------------------------------------------------------------------- /psp/scenarios/6585.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6585.tsv -------------------------------------------------------------------------------- /psp/scenarios/6586.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6586.tsv -------------------------------------------------------------------------------- /psp/scenarios/6587.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6587.tsv -------------------------------------------------------------------------------- /psp/scenarios/6588.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6588.tsv -------------------------------------------------------------------------------- /psp/scenarios/6589.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6589.tsv -------------------------------------------------------------------------------- /psp/scenarios/6590.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6590.tsv -------------------------------------------------------------------------------- /psp/scenarios/6591.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6591.tsv -------------------------------------------------------------------------------- /psp/scenarios/6592.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6592.tsv -------------------------------------------------------------------------------- /psp/scenarios/6593.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6593.tsv -------------------------------------------------------------------------------- /psp/scenarios/6594.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6594.tsv -------------------------------------------------------------------------------- /psp/scenarios/6595.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6595.tsv -------------------------------------------------------------------------------- /psp/scenarios/6596.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6596.tsv -------------------------------------------------------------------------------- /psp/scenarios/6597.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6597.tsv -------------------------------------------------------------------------------- /psp/scenarios/6598.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6598.tsv -------------------------------------------------------------------------------- /psp/scenarios/6599.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6599.tsv -------------------------------------------------------------------------------- /psp/scenarios/6600.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6600.tsv -------------------------------------------------------------------------------- /psp/scenarios/6601.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6601.tsv -------------------------------------------------------------------------------- /psp/scenarios/6602.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6602.tsv -------------------------------------------------------------------------------- /psp/scenarios/6603.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6603.tsv -------------------------------------------------------------------------------- /psp/scenarios/6604.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6604.tsv -------------------------------------------------------------------------------- /psp/scenarios/6605.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6605.tsv -------------------------------------------------------------------------------- /psp/scenarios/6606.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6606.tsv -------------------------------------------------------------------------------- /psp/scenarios/6607.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6607.tsv -------------------------------------------------------------------------------- /psp/scenarios/6608.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6608.tsv -------------------------------------------------------------------------------- /psp/scenarios/6609.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6609.tsv -------------------------------------------------------------------------------- /psp/scenarios/6610.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6610.tsv -------------------------------------------------------------------------------- /psp/scenarios/6611.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6611.tsv -------------------------------------------------------------------------------- /psp/scenarios/6612.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6612.tsv -------------------------------------------------------------------------------- /psp/scenarios/6613.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6613.tsv -------------------------------------------------------------------------------- /psp/scenarios/6614.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6614.tsv -------------------------------------------------------------------------------- /psp/scenarios/6615.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6615.tsv -------------------------------------------------------------------------------- /psp/scenarios/6616.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6616.tsv -------------------------------------------------------------------------------- /psp/scenarios/6617.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6617.tsv -------------------------------------------------------------------------------- /psp/scenarios/6618.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6618.tsv -------------------------------------------------------------------------------- /psp/scenarios/6619.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6619.tsv -------------------------------------------------------------------------------- /psp/scenarios/6620.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6620.tsv -------------------------------------------------------------------------------- /psp/scenarios/6621.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6621.tsv -------------------------------------------------------------------------------- /psp/scenarios/6622.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6622.tsv -------------------------------------------------------------------------------- /psp/scenarios/6623.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6623.tsv -------------------------------------------------------------------------------- /psp/scenarios/6624.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6624.tsv -------------------------------------------------------------------------------- /psp/scenarios/6625.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6625.tsv -------------------------------------------------------------------------------- /psp/scenarios/6626.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6626.tsv -------------------------------------------------------------------------------- /psp/scenarios/6627.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6627.tsv -------------------------------------------------------------------------------- /psp/scenarios/6628.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6628.tsv -------------------------------------------------------------------------------- /psp/scenarios/6629.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6629.tsv -------------------------------------------------------------------------------- /psp/scenarios/6630.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6630.tsv -------------------------------------------------------------------------------- /psp/scenarios/6631.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6631.tsv -------------------------------------------------------------------------------- /psp/scenarios/6632.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6632.tsv -------------------------------------------------------------------------------- /psp/scenarios/6634.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6634.tsv -------------------------------------------------------------------------------- /psp/scenarios/6635.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6635.tsv -------------------------------------------------------------------------------- /psp/scenarios/6636.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6636.tsv -------------------------------------------------------------------------------- /psp/scenarios/6637.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6637.tsv -------------------------------------------------------------------------------- /psp/scenarios/6638.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6638.tsv -------------------------------------------------------------------------------- /psp/scenarios/6639.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6639.tsv -------------------------------------------------------------------------------- /psp/scenarios/6640.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6640.tsv -------------------------------------------------------------------------------- /psp/scenarios/6641.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6641.tsv -------------------------------------------------------------------------------- /psp/scenarios/6642.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6642.tsv -------------------------------------------------------------------------------- /psp/scenarios/6643.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6643.tsv -------------------------------------------------------------------------------- /psp/scenarios/6644.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6644.tsv -------------------------------------------------------------------------------- /psp/scenarios/6645.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6645.tsv -------------------------------------------------------------------------------- /psp/scenarios/6646.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6646.tsv -------------------------------------------------------------------------------- /psp/scenarios/6647.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6647.tsv -------------------------------------------------------------------------------- /psp/scenarios/6648.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6648.tsv -------------------------------------------------------------------------------- /psp/scenarios/6649.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6649.tsv -------------------------------------------------------------------------------- /psp/scenarios/6650.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6650.tsv -------------------------------------------------------------------------------- /psp/scenarios/6651.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6651.tsv -------------------------------------------------------------------------------- /psp/scenarios/6652.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6652.tsv -------------------------------------------------------------------------------- /psp/scenarios/6653.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6653.tsv -------------------------------------------------------------------------------- /psp/scenarios/6654.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6654.tsv -------------------------------------------------------------------------------- /psp/scenarios/6655.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6655.tsv -------------------------------------------------------------------------------- /psp/scenarios/6656.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6656.tsv -------------------------------------------------------------------------------- /psp/scenarios/6657.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6657.tsv -------------------------------------------------------------------------------- /psp/scenarios/6658.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6658.tsv -------------------------------------------------------------------------------- /psp/scenarios/6659.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6659.tsv -------------------------------------------------------------------------------- /psp/scenarios/6660.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6660.tsv -------------------------------------------------------------------------------- /psp/scenarios/6661.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6661.tsv -------------------------------------------------------------------------------- /psp/scenarios/6662.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6662.tsv -------------------------------------------------------------------------------- /psp/scenarios/6663.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6663.tsv -------------------------------------------------------------------------------- /psp/scenarios/6664.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6664.tsv -------------------------------------------------------------------------------- /psp/scenarios/6665.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6665.tsv -------------------------------------------------------------------------------- /psp/scenarios/6666.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6666.tsv -------------------------------------------------------------------------------- /psp/scenarios/6667.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6667.tsv -------------------------------------------------------------------------------- /psp/scenarios/6668.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6668.tsv -------------------------------------------------------------------------------- /psp/scenarios/6669.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6669.tsv -------------------------------------------------------------------------------- /psp/scenarios/6670.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6670.tsv -------------------------------------------------------------------------------- /psp/scenarios/6671.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6671.tsv -------------------------------------------------------------------------------- /psp/scenarios/6672.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6672.tsv -------------------------------------------------------------------------------- /psp/scenarios/6673.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6673.tsv -------------------------------------------------------------------------------- /psp/scenarios/6674.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6674.tsv -------------------------------------------------------------------------------- /psp/scenarios/6675.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6675.tsv -------------------------------------------------------------------------------- /psp/scenarios/6676.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6676.tsv -------------------------------------------------------------------------------- /psp/scenarios/6677.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6677.tsv -------------------------------------------------------------------------------- /psp/scenarios/6678.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6678.tsv -------------------------------------------------------------------------------- /psp/scenarios/6679.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6679.tsv -------------------------------------------------------------------------------- /psp/scenarios/6680.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6680.tsv -------------------------------------------------------------------------------- /psp/scenarios/6681.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6681.tsv -------------------------------------------------------------------------------- /psp/scenarios/6682.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6682.tsv -------------------------------------------------------------------------------- /psp/scenarios/6683.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6683.tsv -------------------------------------------------------------------------------- /psp/scenarios/6684.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6684.tsv -------------------------------------------------------------------------------- /psp/scenarios/6685.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6685.tsv -------------------------------------------------------------------------------- /psp/scenarios/6686.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6686.tsv -------------------------------------------------------------------------------- /psp/scenarios/6687.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6687.tsv -------------------------------------------------------------------------------- /psp/scenarios/6688.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6688.tsv -------------------------------------------------------------------------------- /psp/scenarios/6689.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6689.tsv -------------------------------------------------------------------------------- /psp/scenarios/6690.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6690.tsv -------------------------------------------------------------------------------- /psp/scenarios/6691.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6691.tsv -------------------------------------------------------------------------------- /psp/scenarios/6692.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6692.tsv -------------------------------------------------------------------------------- /psp/scenarios/6693.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6693.tsv -------------------------------------------------------------------------------- /psp/scenarios/6694.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6694.tsv -------------------------------------------------------------------------------- /psp/scenarios/6695.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6695.tsv -------------------------------------------------------------------------------- /psp/scenarios/6696.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6696.tsv -------------------------------------------------------------------------------- /psp/scenarios/6697.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6697.tsv -------------------------------------------------------------------------------- /psp/scenarios/6698.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6698.tsv -------------------------------------------------------------------------------- /psp/scenarios/6699.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6699.tsv -------------------------------------------------------------------------------- /psp/scenarios/6700.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6700.tsv -------------------------------------------------------------------------------- /psp/scenarios/6701.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6701.tsv -------------------------------------------------------------------------------- /psp/scenarios/6702.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6702.tsv -------------------------------------------------------------------------------- /psp/scenarios/6703.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6703.tsv -------------------------------------------------------------------------------- /psp/scenarios/6704.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6704.tsv -------------------------------------------------------------------------------- /psp/scenarios/6705.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6705.tsv -------------------------------------------------------------------------------- /psp/scenarios/6706.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6706.tsv -------------------------------------------------------------------------------- /psp/scenarios/6707.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6707.tsv -------------------------------------------------------------------------------- /psp/scenarios/6708.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6708.tsv -------------------------------------------------------------------------------- /psp/scenarios/6709.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6709.tsv -------------------------------------------------------------------------------- /psp/scenarios/6710.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6710.tsv -------------------------------------------------------------------------------- /psp/scenarios/6711.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6711.tsv -------------------------------------------------------------------------------- /psp/scenarios/6712.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6712.tsv -------------------------------------------------------------------------------- /psp/scenarios/6713.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6713.tsv -------------------------------------------------------------------------------- /psp/scenarios/6714.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6714.tsv -------------------------------------------------------------------------------- /psp/scenarios/6715.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6715.tsv -------------------------------------------------------------------------------- /psp/scenarios/6716.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6716.tsv -------------------------------------------------------------------------------- /psp/scenarios/6717.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6717.tsv -------------------------------------------------------------------------------- /psp/scenarios/6718.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6718.tsv -------------------------------------------------------------------------------- /psp/scenarios/6719.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6719.tsv -------------------------------------------------------------------------------- /psp/scenarios/6720.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6720.tsv -------------------------------------------------------------------------------- /psp/scenarios/6721.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6721.tsv -------------------------------------------------------------------------------- /psp/scenarios/6722.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6722.tsv -------------------------------------------------------------------------------- /psp/scenarios/6723.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6723.tsv -------------------------------------------------------------------------------- /psp/scenarios/6724.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6724.tsv -------------------------------------------------------------------------------- /psp/scenarios/6725.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6725.tsv -------------------------------------------------------------------------------- /psp/scenarios/6726.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6726.tsv -------------------------------------------------------------------------------- /psp/scenarios/6727.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6727.tsv -------------------------------------------------------------------------------- /psp/scenarios/6728.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6728.tsv -------------------------------------------------------------------------------- /psp/scenarios/6729.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6729.tsv -------------------------------------------------------------------------------- /psp/scenarios/6730.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6730.tsv -------------------------------------------------------------------------------- /psp/scenarios/6731.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6731.tsv -------------------------------------------------------------------------------- /psp/scenarios/6732.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6732.tsv -------------------------------------------------------------------------------- /psp/scenarios/6733.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6733.tsv -------------------------------------------------------------------------------- /psp/scenarios/6734.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6734.tsv -------------------------------------------------------------------------------- /psp/scenarios/6735.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6735.tsv -------------------------------------------------------------------------------- /psp/scenarios/6736.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6736.tsv -------------------------------------------------------------------------------- /psp/scenarios/6737.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6737.tsv -------------------------------------------------------------------------------- /psp/scenarios/6738.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6738.tsv -------------------------------------------------------------------------------- /psp/scenarios/6739.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6739.tsv -------------------------------------------------------------------------------- /psp/scenarios/6740.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6740.tsv -------------------------------------------------------------------------------- /psp/scenarios/6741.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6741.tsv -------------------------------------------------------------------------------- /psp/scenarios/6742.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6742.tsv -------------------------------------------------------------------------------- /psp/scenarios/6743.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6743.tsv -------------------------------------------------------------------------------- /psp/scenarios/6744.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6744.tsv -------------------------------------------------------------------------------- /psp/scenarios/6745.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6745.tsv -------------------------------------------------------------------------------- /psp/scenarios/6746.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6746.tsv -------------------------------------------------------------------------------- /psp/scenarios/6747.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6747.tsv -------------------------------------------------------------------------------- /psp/scenarios/6748.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6748.tsv -------------------------------------------------------------------------------- /psp/scenarios/6749.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6749.tsv -------------------------------------------------------------------------------- /psp/scenarios/6750.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6750.tsv -------------------------------------------------------------------------------- /psp/scenarios/6751.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6751.tsv -------------------------------------------------------------------------------- /psp/scenarios/6752.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6752.tsv -------------------------------------------------------------------------------- /psp/scenarios/6753.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6753.tsv -------------------------------------------------------------------------------- /psp/scenarios/6754.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6754.tsv -------------------------------------------------------------------------------- /psp/scenarios/6755.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6755.tsv -------------------------------------------------------------------------------- /psp/scenarios/6756.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6756.tsv -------------------------------------------------------------------------------- /psp/scenarios/6757.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6757.tsv -------------------------------------------------------------------------------- /psp/scenarios/6758.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6758.tsv -------------------------------------------------------------------------------- /psp/scenarios/6759.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6759.tsv -------------------------------------------------------------------------------- /psp/scenarios/6760.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6760.tsv -------------------------------------------------------------------------------- /psp/scenarios/6761.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6761.tsv -------------------------------------------------------------------------------- /psp/scenarios/6762.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6762.tsv -------------------------------------------------------------------------------- /psp/scenarios/6763.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6763.tsv -------------------------------------------------------------------------------- /psp/scenarios/6764.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6764.tsv -------------------------------------------------------------------------------- /psp/scenarios/6765.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6765.tsv -------------------------------------------------------------------------------- /psp/scenarios/6766.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6766.tsv -------------------------------------------------------------------------------- /psp/scenarios/6767.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6767.tsv -------------------------------------------------------------------------------- /psp/scenarios/6768.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6768.tsv -------------------------------------------------------------------------------- /psp/scenarios/6769.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6769.tsv -------------------------------------------------------------------------------- /psp/scenarios/6770.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6770.tsv -------------------------------------------------------------------------------- /psp/scenarios/6771.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6771.tsv -------------------------------------------------------------------------------- /psp/scenarios/6772.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6772.tsv -------------------------------------------------------------------------------- /psp/scenarios/6773.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6773.tsv -------------------------------------------------------------------------------- /psp/scenarios/6774.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6774.tsv -------------------------------------------------------------------------------- /psp/scenarios/6775.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6775.tsv -------------------------------------------------------------------------------- /psp/scenarios/6776.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6776.tsv -------------------------------------------------------------------------------- /psp/scenarios/6777.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6777.tsv -------------------------------------------------------------------------------- /psp/scenarios/6778.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6778.tsv -------------------------------------------------------------------------------- /psp/scenarios/6779.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6779.tsv -------------------------------------------------------------------------------- /psp/scenarios/6780.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6780.tsv -------------------------------------------------------------------------------- /psp/scenarios/6781.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6781.tsv -------------------------------------------------------------------------------- /psp/scenarios/6782.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6782.tsv -------------------------------------------------------------------------------- /psp/scenarios/6783.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6783.tsv -------------------------------------------------------------------------------- /psp/scenarios/6784.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6784.tsv -------------------------------------------------------------------------------- /psp/scenarios/6785.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6785.tsv -------------------------------------------------------------------------------- /psp/scenarios/6786.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6786.tsv -------------------------------------------------------------------------------- /psp/scenarios/6787.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6787.tsv -------------------------------------------------------------------------------- /psp/scenarios/6788.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6788.tsv -------------------------------------------------------------------------------- /psp/scenarios/6789.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6789.tsv -------------------------------------------------------------------------------- /psp/scenarios/6790.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6790.tsv -------------------------------------------------------------------------------- /psp/scenarios/6791.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6791.tsv -------------------------------------------------------------------------------- /psp/scenarios/6792.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6792.tsv -------------------------------------------------------------------------------- /psp/scenarios/6793.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6793.tsv -------------------------------------------------------------------------------- /psp/scenarios/6794.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6794.tsv -------------------------------------------------------------------------------- /psp/scenarios/6795.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6795.tsv -------------------------------------------------------------------------------- /psp/scenarios/6796.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6796.tsv -------------------------------------------------------------------------------- /psp/scenarios/6803.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6803.tsv -------------------------------------------------------------------------------- /psp/scenarios/6804.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6804.tsv -------------------------------------------------------------------------------- /psp/scenarios/6805.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6805.tsv -------------------------------------------------------------------------------- /psp/scenarios/6806.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6806.tsv -------------------------------------------------------------------------------- /psp/scenarios/6807.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6807.tsv -------------------------------------------------------------------------------- /psp/scenarios/6808.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6808.tsv -------------------------------------------------------------------------------- /psp/scenarios/6809.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6809.tsv -------------------------------------------------------------------------------- /psp/scenarios/6810.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6810.tsv -------------------------------------------------------------------------------- /psp/scenarios/6811.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6811.tsv -------------------------------------------------------------------------------- /psp/scenarios/6812.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6812.tsv -------------------------------------------------------------------------------- /psp/scenarios/6813.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6813.tsv -------------------------------------------------------------------------------- /psp/scenarios/6814.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6814.tsv -------------------------------------------------------------------------------- /psp/scenarios/6815.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6815.tsv -------------------------------------------------------------------------------- /psp/scenarios/6816.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6816.tsv -------------------------------------------------------------------------------- /psp/scenarios/6817.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6817.tsv -------------------------------------------------------------------------------- /psp/scenarios/6818.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6818.tsv -------------------------------------------------------------------------------- /psp/scenarios/6819.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6819.tsv -------------------------------------------------------------------------------- /psp/scenarios/6820.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6820.tsv -------------------------------------------------------------------------------- /psp/scenarios/6821.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6821.tsv -------------------------------------------------------------------------------- /psp/scenarios/6822.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6822.tsv -------------------------------------------------------------------------------- /psp/scenarios/6823.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6823.tsv -------------------------------------------------------------------------------- /psp/scenarios/6826.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6826.tsv -------------------------------------------------------------------------------- /psp/scenarios/6827.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6827.tsv -------------------------------------------------------------------------------- /psp/scenarios/6828.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6828.tsv -------------------------------------------------------------------------------- /psp/scenarios/6829.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6829.tsv -------------------------------------------------------------------------------- /psp/scenarios/6830.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6830.tsv -------------------------------------------------------------------------------- /psp/scenarios/6831.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6831.tsv -------------------------------------------------------------------------------- /psp/scenarios/6832.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6832.tsv -------------------------------------------------------------------------------- /psp/scenarios/6833.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6833.tsv -------------------------------------------------------------------------------- /psp/scenarios/6834.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6834.tsv -------------------------------------------------------------------------------- /psp/scenarios/6835.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6835.tsv -------------------------------------------------------------------------------- /psp/scenarios/6846.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6846.tsv -------------------------------------------------------------------------------- /psp/scenarios/6847.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6847.tsv -------------------------------------------------------------------------------- /psp/scenarios/6848.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6848.tsv -------------------------------------------------------------------------------- /psp/scenarios/6849.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6849.tsv -------------------------------------------------------------------------------- /psp/scenarios/6850.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6850.tsv -------------------------------------------------------------------------------- /psp/scenarios/6851.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6851.tsv -------------------------------------------------------------------------------- /psp/scenarios/6852.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6852.tsv -------------------------------------------------------------------------------- /psp/scenarios/6853.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6853.tsv -------------------------------------------------------------------------------- /psp/scenarios/6854.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6854.tsv -------------------------------------------------------------------------------- /psp/scenarios/6855.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6855.tsv -------------------------------------------------------------------------------- /psp/scenarios/6856.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6856.tsv -------------------------------------------------------------------------------- /psp/scenarios/6857.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6857.tsv -------------------------------------------------------------------------------- /psp/scenarios/6858.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6858.tsv -------------------------------------------------------------------------------- /psp/scenarios/6859.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6859.tsv -------------------------------------------------------------------------------- /psp/scenarios/6860.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6860.tsv -------------------------------------------------------------------------------- /psp/scenarios/6861.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6861.tsv -------------------------------------------------------------------------------- /psp/scenarios/6862.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6862.tsv -------------------------------------------------------------------------------- /psp/scenarios/6863.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6863.tsv -------------------------------------------------------------------------------- /psp/scenarios/6864.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6864.tsv -------------------------------------------------------------------------------- /psp/scenarios/6865.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6865.tsv -------------------------------------------------------------------------------- /psp/scenarios/6866.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6866.tsv -------------------------------------------------------------------------------- /psp/scenarios/6867.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6867.tsv -------------------------------------------------------------------------------- /psp/scenarios/6868.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6868.tsv -------------------------------------------------------------------------------- /psp/scenarios/6869.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6869.tsv -------------------------------------------------------------------------------- /psp/scenarios/6876.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6876.tsv -------------------------------------------------------------------------------- /psp/scenarios/6877.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6877.tsv -------------------------------------------------------------------------------- /psp/scenarios/6878.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6878.tsv -------------------------------------------------------------------------------- /psp/scenarios/6879.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6879.tsv -------------------------------------------------------------------------------- /psp/scenarios/6881.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6881.tsv -------------------------------------------------------------------------------- /psp/scenarios/6882.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6882.tsv -------------------------------------------------------------------------------- /psp/scenarios/6883.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6883.tsv -------------------------------------------------------------------------------- /psp/scenarios/6886.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6886.tsv -------------------------------------------------------------------------------- /psp/scenarios/6887.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6887.tsv -------------------------------------------------------------------------------- /psp/scenarios/6888.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6888.tsv -------------------------------------------------------------------------------- /psp/scenarios/6889.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6889.tsv -------------------------------------------------------------------------------- /psp/scenarios/6890.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6890.tsv -------------------------------------------------------------------------------- /psp/scenarios/6891.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6891.tsv -------------------------------------------------------------------------------- /psp/scenarios/6892.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6892.tsv -------------------------------------------------------------------------------- /psp/scenarios/6893.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6893.tsv -------------------------------------------------------------------------------- /psp/scenarios/6894.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6894.tsv -------------------------------------------------------------------------------- /psp/scenarios/6895.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6895.tsv -------------------------------------------------------------------------------- /psp/scenarios/6896.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6896.tsv -------------------------------------------------------------------------------- /psp/scenarios/6897.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6897.tsv -------------------------------------------------------------------------------- /psp/scenarios/6898.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6898.tsv -------------------------------------------------------------------------------- /psp/scenarios/6899.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6899.tsv -------------------------------------------------------------------------------- /psp/scenarios/6901.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6901.tsv -------------------------------------------------------------------------------- /psp/scenarios/6902.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6902.tsv -------------------------------------------------------------------------------- /psp/scenarios/6903.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6903.tsv -------------------------------------------------------------------------------- /psp/scenarios/6904.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6904.tsv -------------------------------------------------------------------------------- /psp/scenarios/6906.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6906.tsv -------------------------------------------------------------------------------- /psp/scenarios/6907.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6907.tsv -------------------------------------------------------------------------------- /psp/scenarios/6908.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6908.tsv -------------------------------------------------------------------------------- /psp/scenarios/6909.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6909.tsv -------------------------------------------------------------------------------- /psp/scenarios/6910.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6910.tsv -------------------------------------------------------------------------------- /psp/scenarios/6911.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6911.tsv -------------------------------------------------------------------------------- /psp/scenarios/6912.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6912.tsv -------------------------------------------------------------------------------- /psp/scenarios/6913.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6913.tsv -------------------------------------------------------------------------------- /psp/scenarios/6914.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6914.tsv -------------------------------------------------------------------------------- /psp/scenarios/6915.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6915.tsv -------------------------------------------------------------------------------- /psp/scenarios/6916.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6916.tsv -------------------------------------------------------------------------------- /psp/scenarios/6917.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6917.tsv -------------------------------------------------------------------------------- /psp/scenarios/6918.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6918.tsv -------------------------------------------------------------------------------- /psp/scenarios/6919.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6919.tsv -------------------------------------------------------------------------------- /psp/scenarios/6920.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6920.tsv -------------------------------------------------------------------------------- /psp/scenarios/6921.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6921.tsv -------------------------------------------------------------------------------- /psp/scenarios/6922.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6922.tsv -------------------------------------------------------------------------------- /psp/scenarios/6923.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6923.tsv -------------------------------------------------------------------------------- /psp/scenarios/6924.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6924.tsv -------------------------------------------------------------------------------- /psp/scenarios/6925.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6925.tsv -------------------------------------------------------------------------------- /psp/scenarios/6926.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6926.tsv -------------------------------------------------------------------------------- /psp/scenarios/6927.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6927.tsv -------------------------------------------------------------------------------- /psp/scenarios/6928.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6928.tsv -------------------------------------------------------------------------------- /psp/scenarios/6929.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6929.tsv -------------------------------------------------------------------------------- /psp/scenarios/6930.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6930.tsv -------------------------------------------------------------------------------- /psp/scenarios/6931.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6931.tsv -------------------------------------------------------------------------------- /psp/scenarios/6932.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6932.tsv -------------------------------------------------------------------------------- /psp/scenarios/6933.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6933.tsv -------------------------------------------------------------------------------- /psp/scenarios/6934.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6934.tsv -------------------------------------------------------------------------------- /psp/scenarios/6935.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6935.tsv -------------------------------------------------------------------------------- /psp/scenarios/6936.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6936.tsv -------------------------------------------------------------------------------- /psp/scenarios/6937.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6937.tsv -------------------------------------------------------------------------------- /psp/scenarios/6938.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6938.tsv -------------------------------------------------------------------------------- /psp/scenarios/6939.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6939.tsv -------------------------------------------------------------------------------- /psp/scenarios/6940.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6940.tsv -------------------------------------------------------------------------------- /psp/scenarios/6941.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6941.tsv -------------------------------------------------------------------------------- /psp/scenarios/6942.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6942.tsv -------------------------------------------------------------------------------- /psp/scenarios/6943.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6943.tsv -------------------------------------------------------------------------------- /psp/scenarios/6944.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6944.tsv -------------------------------------------------------------------------------- /psp/scenarios/6945.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6945.tsv -------------------------------------------------------------------------------- /psp/scenarios/6946.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6946.tsv -------------------------------------------------------------------------------- /psp/scenarios/6947.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6947.tsv -------------------------------------------------------------------------------- /psp/scenarios/6948.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6948.tsv -------------------------------------------------------------------------------- /psp/scenarios/6949.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6949.tsv -------------------------------------------------------------------------------- /psp/scenarios/6950.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6950.tsv -------------------------------------------------------------------------------- /psp/scenarios/6951.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6951.tsv -------------------------------------------------------------------------------- /psp/scenarios/6952.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6952.tsv -------------------------------------------------------------------------------- /psp/scenarios/6953.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/psp/scenarios/6953.tsv -------------------------------------------------------------------------------- /scripts/HexToJpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/scripts/HexToJpn.py -------------------------------------------------------------------------------- /scripts/JpnToHex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/scripts/JpnToHex.py -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/hJpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/scripts/hJpn.py -------------------------------------------------------------------------------- /scripts/jHex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/scripts/jHex.py -------------------------------------------------------------------------------- /scripts/text_dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/scripts/text_dump.py -------------------------------------------------------------------------------- /tm2_converter/01_extract.bat: -------------------------------------------------------------------------------- 1 | TalesOfDestinyTm2Converter.exe -e %1 2 | pause -------------------------------------------------------------------------------- /tm2_converter/02_repack.bat: -------------------------------------------------------------------------------- 1 | TalesOfDestinyTm2Converter.exe -r %1 2 | pause -------------------------------------------------------------------------------- /tm2_converter/kyle.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/tm2_converter/kyle.ico -------------------------------------------------------------------------------- /tm2_converter/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/tm2_converter/readme.md -------------------------------------------------------------------------------- /tod2_slps_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifebottle/Tales-of-Destiny-2/HEAD/tod2_slps_base.png --------------------------------------------------------------------------------