├── .gitignore ├── MAKEFILE ├── README ├── ancient.py ├── appearance.py ├── assembly ├── assemblers │ ├── architectures │ │ ├── spc700.arch │ │ └── wdc65816.arch │ ├── bass-v15-win32-i386.exe │ └── buildinfo.txt ├── patches │ ├── alphabetize_rage_skill_menu.patch.bin │ ├── auto_equip.patch.bin │ ├── cursed_tweak.patch.bin │ ├── enable_esper_magic.patch.bin │ ├── enable_morph.patch.bin │ ├── enable_mpoint.patch.bin │ ├── enable_xmagic_menu.patch.bin │ ├── fanatics_fix.patch.bin │ ├── improved_party_gear_screen.patch.bin │ ├── learn_hacks.patch.bin │ ├── music_disable_option.patch.bin │ ├── natmag_learn.patch.bin │ ├── randomize_final_party_order.patch.bin │ ├── shorter_skill_name_fix.patch.bin │ ├── sketch_fix.patch.bin │ └── ungray_statscreen.patch.bin └── source │ ├── _defs.asm │ ├── _filelist.txt │ ├── alphabetize_rage_skill_menu.asm │ ├── auto_equip.asm │ ├── cursed_tweak.asm │ ├── enable_esper_magic.asm │ ├── enable_morph.asm │ ├── enable_mpoint.asm │ ├── enable_xmagic_menu.asm │ ├── fanatics_fix.asm │ ├── improved_party_gear_screen.asm │ ├── learn_hacks.asm │ ├── music_disable_option.asm │ ├── natmag_learn.asm │ ├── randomize_final_party_order.asm │ ├── shorter_skill_name_fix.asm │ ├── sketch_fix.asm │ └── ungray_statscreen.asm ├── assemblymanager.py ├── bingo.py ├── character.py ├── chestrandomizer.py ├── custom ├── dancenames.txt ├── femalenames.txt ├── malenames.txt ├── mooglenames.txt ├── music │ ├── _CREDITS.txt │ ├── bl_fahrenheit.mml │ ├── bl_rebels.mml │ ├── blord_2tower.mml │ ├── blord_ruins.mml │ ├── bof1_dawn.mml │ ├── bof2_battle.mml │ ├── bof2_dragnier.mml │ ├── bof2_town.mml │ ├── bof2_wander.mml │ ├── cc_arni.mml │ ├── cc_dragonia.mml │ ├── cc_flame.mml │ ├── cc_flame_dm.mml │ ├── cc_harle.mml │ ├── cc_home.mml │ ├── cc_hydra.mml │ ├── cc_life.mml │ ├── cc_miguel.mml │ ├── cc_pyre.mml │ ├── cc_valley.mml │ ├── cc_world2.mml │ ├── crys_fields.mml │ ├── crys_mountain.mml │ ├── crys_tower.mml │ ├── ct_600ad.mml │ ├── ct_battle.mml │ ├── ct_battle2.mml │ ├── ct_bike.mml │ ├── ct_bobonga.mml │ ├── ct_boss.mml │ ├── ct_boss2.mml │ ├── ct_epoch.mml │ ├── ct_factory.mml │ ├── ct_fair.mml │ ├── ct_final.mml │ ├── ct_forest.mml │ ├── ct_frog.mml │ ├── ct_keeper.mml │ ├── ct_lavos.mml │ ├── ct_lavos_dm.mml │ ├── ct_magus.mml │ ├── ct_mountain.mml │ ├── ct_night.mml │ ├── ct_omen.mml │ ├── ct_revolution.mml │ ├── ct_rhythm.mml │ ├── ct_robo.mml │ ├── ct_schala.mml │ ├── ct_sewer.mml │ ├── ct_silent.mml │ ├── ct_spekkio.mml │ ├── ct_tension.mml │ ├── ct_theme.mml │ ├── ct_town.mml │ ├── ct_trial.mml │ ├── ct_truth.mml │ ├── ct_tylair.mml │ ├── ct_tyran.mml │ ├── ct_undersea.mml │ ├── ct_zeal.mml │ ├── cv3_aquarius.mml │ ├── cv4_beginning.mml │ ├── cv4_chandeliers.mml │ ├── dc2_garden.mml │ ├── doom2_doom.mml │ ├── dq1_world_ff4.mml │ ├── ds4_dungeon.mml │ ├── ds4_lyll.mml │ ├── ds4_world.mml │ ├── eo3_waves.mml │ ├── evo_boss.mml │ ├── fe15_whatlies.mml │ ├── ff12_barheim.mml │ ├── ff12_crystal.mml │ ├── ff12_estersand.mml │ ├── ff12_ozmone.mml │ ├── ff12_paramina.mml │ ├── ff12_prison.mml │ ├── ff14_azyslla.mml │ ├── ff14_battlem.mml │ ├── ff1_battle.mml │ ├── ff1_bossb.mml │ ├── ff1_dungeon.mml │ ├── ff1_matoya.mml │ ├── ff2_battle2.mml │ ├── ff2_battleb.mml │ ├── ff2_theme.mml │ ├── ff3_battle.mml │ ├── ff3_darkworld.mml │ ├── ff3_eureka.mml │ ├── ff3_eureka_dm.mml │ ├── ff3_hyne.mml │ ├── ff3_warrior.mml │ ├── ff3_world.mml │ ├── ff4_airship.mml │ ├── ff4_babil.mml │ ├── ff4_baron.mml │ ├── ff4_battle.mml │ ├── ff4_bomb.mml │ ├── ff4_boss.mml │ ├── ff4_calcobrena.mml │ ├── ff4_cave.mml │ ├── ff4_damcyan.mml │ ├── ff4_giant.mml │ ├── ff4_giant_remix.mml │ ├── ff4_golbez.mml │ ├── ff4_illusion.mml │ ├── ff4_longway.mml │ ├── ff4_mysidia.mml │ ├── ff4_overworld.mml │ ├── ff4_prologue.mml │ ├── ff4_redwings.mml │ ├── ff4_restless.mml │ ├── ff4_rosa.mml │ ├── ff4_rydia.mml │ ├── ff4_somewhere.mml │ ├── ff4_sorrow.mml │ ├── ff4_town.mml │ ├── ff4_troia.mml │ ├── ff4_underworld.mml │ ├── ff4_whale.mml │ ├── ff4_zeromus.mml │ ├── ff4_zot.mml │ ├── ff5_bal.mml │ ├── ff5_battle.mml │ ├── ff5_boss.mml │ ├── ff5_bridge.mml │ ├── ff5_cave.mml │ ├── ff5_curse.mml │ ├── ff5_curse_tr.mml │ ├── ff5_dawn.mml │ ├── ff5_excastle.mml │ ├── ff5_exdeath.mml │ ├── ff5_final.mml │ ├── ff5_home.mml │ ├── ff5_hurry.mml │ ├── ff5_lenna.mml │ ├── ff5_library.mml │ ├── ff5_mountain.mml │ ├── ff5_seal.mml │ ├── ff5_ship.mml │ ├── ff5_theme.mml │ ├── ff5_void.mml │ ├── ff5_what.mml │ ├── ff5_wings.mml │ ├── ff5_world1.mml │ ├── ff5_world2.mml │ ├── ff5_world3.mml │ ├── ff6_forest.mml │ ├── ff6_ruin.mml │ ├── ff6_tier1_dm.mml │ ├── ff6_tier2_dm.mml │ ├── ff6_tier3_dm.mml │ ├── ff6_town2.mml │ ├── ff6_train_ext.mml │ ├── ff6_zozo.mml │ ├── ff7_5years.mml │ ├── ff7_battle.mml │ ├── ff7_boss.mml │ ├── ff7_corel.mml │ ├── ff7_costa.mml │ ├── ff7_desert.mml │ ├── ff7_gun.mml │ ├── ff7_hurry.mml │ ├── ff7_hurry2.mml │ ├── ff7_judgment.mml │ ├── ff7_materia.mml │ ├── ff7_pizza.mml │ ├── ff7_planet.mml │ ├── ff7_rebirth.mml │ ├── ff7_reunion.mml │ ├── ff7_sadbar.mml │ ├── ff7_snow.mml │ ├── ff7_temple.mml │ ├── ff7_tifa.mml │ ├── ff7_weapon.mml │ ├── ff8_battle.mml │ ├── ff8_boss.mml │ ├── ff8_heresy.mml │ ├── ff8_horizon.mml │ ├── ff8_laguna.mml │ ├── ff8_landing.mml │ ├── ff8_lion.mml │ ├── ff8_mlaw.mml │ ├── ff8_oath.mml │ ├── ff8_triad.mml │ ├── ff8_witches.mml │ ├── ff8_witches_dm.mml │ ├── ff8_world.mml │ ├── ff9_battle.mml │ ├── ff9_blackmage.mml │ ├── ff9_blackwaltz.mml │ ├── ff9_dali.mml │ ├── ff9_extraction.mml │ ├── ff9_flamenco.mml │ ├── ff9_gargan.mml │ ├── ff9_home.mml │ ├── ff9_hunt.mml │ ├── ff9_memoria.mml │ ├── ff9_messenger.mml │ ├── ff9_rose.mml │ ├── ff9_siege.mml │ ├── ff9_treno.mml │ ├── ff9_world.mml │ ├── ffmq_battle.mml │ ├── ffmq_boss.mml │ ├── ffmq_doom.mml │ ├── ffmq_final.mml │ ├── ffmq_forest.mml │ ├── ffmq_fossil.mml │ ├── ffmq_gale.mml │ ├── ffmq_lava.mml │ ├── ffmq_lava_dm.mml │ ├── ffmq_light.mml │ ├── ffmq_rock.mml │ ├── ffmq_tower.mml │ ├── ffmq_tristam.mml │ ├── ffmq_victory.mml │ ├── fft_apoplexy.mml │ ├── fft_apoplexy_vic.mml │ ├── ffx_ambition.mml │ ├── ffx_battle.mml │ ├── ffx_calm.mml │ ├── ffx_decision.mml │ ├── ffx_gagazet.mml │ ├── ffx_luca.mml │ ├── ffx_seymour.mml │ ├── ffx_via.mml │ ├── ffx_zanarkand.mml │ ├── fz_port.mml │ ├── fz_silence.mml │ ├── fz_white1.mml │ ├── gd3_desert.mml │ ├── gd3_moai.mml │ ├── gs_tunnel.mml │ ├── gs_venus.mml │ ├── iog_boss.mml │ ├── iog_larai.mml │ ├── iog_whispers.mml │ ├── iog_womb.mml │ ├── jts_stage1.mml │ ├── lagoon_spirits.mml │ ├── lal_boss.mml │ ├── lal_labyrinth.mml │ ├── lal_pogo.mml │ ├── lal_psycho.mml │ ├── lal_theme.mml │ ├── lo_battle.mml │ ├── lotr_hobbits.mml │ ├── lu1_battle.mml │ ├── lu1_boss.mml │ ├── lu1_final.mml │ ├── lu1_spoils.mml │ ├── lu1_world.mml │ ├── lu2_battle.mml │ ├── lu2_battle3.mml │ ├── lu2_boss.mml │ ├── lu2_mountain.mml │ ├── lu2_narvick.mml │ ├── lu2_priphea.mml │ ├── lu2_world.mml │ ├── met3_brain.mml │ ├── met3_crateria.mml │ ├── met3_surface.mml │ ├── mi_scummbar.mml │ ├── mmx_prologue.mml │ ├── ng3_defeat.mml │ ├── ob_battle.mml │ ├── ot_cliftlands.mml │ ├── ot_oasis.mml │ ├── ot_stillsnow.mml │ ├── ot_sunshade.mml │ ├── rd_summer.mml │ ├── rs1_battle.mml │ ├── rs2_heroes.mml │ ├── rs3_devil2.mml │ ├── rs3_getpet.mml │ ├── rs3_gwain.mml │ ├── rs3_julian.mml │ ├── rs3_sarah.mml │ ├── rs3_underwater.mml │ ├── rsms_battle.mml │ ├── sd1s_boss.mml │ ├── sd1s_courage.mml │ ├── sd1s_decision.mml │ ├── sd1s_fate.mml │ ├── sd1s_field.mml │ ├── sd1s_risingsun.mml │ ├── sd2_8bells.mml │ ├── sd2_always.mml │ ├── sd2_angel.mml │ ├── sd2_boss.mml │ ├── sd2_city.mml │ ├── sd2_desert.mml │ ├── sd2_dwarf.mml │ ├── sd2_eternal.mml │ ├── sd2_flammie.mml │ ├── sd2_forest.mml │ ├── sd2_forget.mml │ ├── sd2_fortress.mml │ ├── sd2_hope.mml │ ├── sd2_intruder.mml │ ├── sd2_jema.mml │ ├── sd2_legend.mml │ ├── sd2_lofty.mml │ ├── sd2_mana.mml │ ├── sd2_matango.mml │ ├── sd2_memories.mml │ ├── sd2_meridian.mml │ ├── sd2_morning.mml │ ├── sd2_popoi.mml │ ├── sd2_prayer.mml │ ├── sd2_prophecy.mml │ ├── sd2_pureland.mml │ ├── sd2_rose.mml │ ├── sd2_scorpion.mml │ ├── sd2_sea.mml │ ├── sd2_spirit.mml │ ├── sd2_star.mml │ ├── sd2_steel.mml │ ├── sd2_tasnica.mml │ ├── sd2_thanatos.mml │ ├── sd2_thick.mml │ ├── sd2_thunder.mml │ ├── sd2_town.mml │ ├── sd2_wish.mml │ ├── sd3_angels.mml │ ├── sd3_blackmarket.mml │ ├── sd3_charlotte.mml │ ├── sd3_counterpoint.mml │ ├── sd3_faith.mml │ ├── sd3_final3.mml │ ├── sd3_flight.mml │ ├── sd3_intolerance.mml │ ├── sd3_mana.mml │ ├── sd3_paths.mml │ ├── sd3_sea.mml │ ├── sd3_tension.mml │ ├── sd3_winter.mml │ ├── sdlm_bonds.mml │ ├── sdlm_nostalgic.mml │ ├── sdlm_pain.mml │ ├── sdlm_snowfield.mml │ ├── sf2_balrog.mml │ ├── sf2_guile.mml │ ├── sf2_ken.mml │ ├── sfx_train.mmlappend │ ├── sfx_wor.mmlappend │ ├── sfx_zozo.mmlappend │ ├── smb2_select.mml │ ├── smrpg_battle.mml │ ├── smrpg_road.mml │ ├── smw_castle.mml │ ├── so2_kurik.mml │ ├── so2_rescue.mml │ ├── so2_victory.mml │ ├── so2_world1.mml │ ├── so2_world1_a.mml │ ├── so2_world1_b.mml │ ├── spo_fight.mml │ ├── st_dungeon.mml │ ├── tn_evergreen.mml │ ├── top_cold.mml │ ├── top_freeze.mml │ ├── top_harmony.mml │ ├── top_mint.mml │ ├── top_resur.mml │ ├── top_spirit.mml │ ├── top_treant.mml │ ├── top_victory.mml │ ├── top_world1.mml │ ├── top_world3.mml │ ├── totr_arrow.mml │ ├── totr_battle.mml │ ├── totr_ruins.mml │ ├── totr_ship.mml │ ├── totr_sion.mml │ ├── totr_spirit.mml │ ├── totr_underworld.mml │ ├── totr_wind.mml │ ├── totr_worlds.mml │ ├── tyr_theme.mml │ ├── wa_zed.mml │ ├── wc2_human1.mml │ ├── wc2_orc1.mml │ ├── xc1_names.mml │ ├── xc1_valakn.mml │ ├── xc2_morardain.mml │ ├── xc2_tantal.mml │ ├── xcx_sylvan.mml │ ├── xg_boss.mml │ ├── xg_chuchu.mml │ ├── xg_flight.mml │ ├── xg_lahan.mml │ ├── xg_mermaid.mml │ ├── xg_tears.mml │ ├── xg_weltall.mml │ ├── xg_weltall_dm.mml │ ├── ys1_wars.mml │ ├── ys3_house.mml │ ├── ys3_time.mml │ ├── ys3_wings.mml │ ├── ys4_danan.mml │ ├── ys8_idance.mml │ ├── zaol_overworld.mml │ ├── zlttp_darkworld.mml │ ├── zlttp_dungeon.mml │ └── zoot_storms.mml ├── opera.txt ├── opera │ ├── aria.mml │ ├── default_aria.mml │ ├── default_duel1.mml │ ├── default_duel2.mml │ ├── default_duel3.mml │ ├── default_duel4.mml │ ├── default_duel5.mml │ ├── default_overture.mml │ ├── draco.bin │ ├── duel.mml │ ├── impresario.bin │ ├── maria.bin │ ├── nolegato_aria.mml │ ├── nolegato_duel1.mml │ ├── nolegato_duel2.mml │ ├── nolegato_duel3.mml │ ├── nolegato_duel4.mml │ ├── nolegato_duel5.mml │ ├── nolegato_overture.mml │ ├── overture.mml │ └── ralse.bin ├── passwords.txt ├── poems.txt ├── songs.txt └── sprites │ ├── 3tweight-p.bin │ ├── 3tweight-p.pal │ ├── 3tweight.bin │ ├── aerith-child.bin │ ├── aerith-dress.bin │ ├── aerith-p.bin │ ├── aerith-p.pal │ ├── aerith.bin │ ├── agrias-p.bin │ ├── agrias-p.pal │ ├── agrias.bin │ ├── algus-p.bin │ ├── algus-p.pal │ ├── algus.bin │ ├── alma-p.bin │ ├── alma-p.pal │ ├── alma.bin │ ├── alphys-p.bin │ ├── alphys-p.pal │ ├── alphys.bin │ ├── anna-p.bin │ ├── anna-p.pal │ ├── anna.bin │ ├── antlion-p.bin │ ├── antlion-p.pal │ ├── antlion.bin │ ├── arc-p.bin │ ├── arc-p.pal │ ├── arc.bin │ ├── archer-f-p.bin │ ├── archer-f-p.pal │ ├── archer-f.bin │ ├── archer-m-p.bin │ ├── archer-m-p.pal │ ├── archer-m.bin │ ├── arvis-p.bin │ ├── arvis-p.pal │ ├── arvis.bin │ ├── ashe-p.bin │ ├── ashe-p.pal │ ├── ashe.bin │ ├── astronaut.bin │ ├── atma-p.bin │ ├── atma-p.pal │ ├── atma.bin │ ├── auron-p.bin │ ├── auron-p.pal │ ├── auron.bin │ ├── ayla-p.bin │ ├── ayla-p.pal │ ├── ayla.bin │ ├── baby-p.bin │ ├── baby-p.pal │ ├── baby.bin │ ├── baku-p.bin │ ├── baku-p.pal │ ├── baku.bin │ ├── balthier-p.bin │ ├── balthier-p.pal │ ├── balthier.bin │ ├── bananon-p.bin │ ├── bananon-p.pal │ ├── bananon.bin │ ├── bandit-p.bin │ ├── bandit-p.pal │ ├── bandit.bin │ ├── bangaa-p.bin │ ├── bangaa-p.pal │ ├── bangaa-rinok.bin │ ├── bangaa.bin │ ├── banon-wizard.bin │ ├── banon_riding.bin │ ├── barbariccia-p.bin │ ├── barbariccia-p.pal │ ├── barbariccia.bin │ ├── barret-p.bin │ ├── barret-p.pal │ ├── barret.bin │ ├── barthello.bin │ ├── bartz-p.bin │ ├── bartz-p.pal │ ├── bartz.bin │ ├── basch-beard.bin │ ├── basch-p.bin │ ├── basch-p.pal │ ├── basch.bin │ ├── batman-p.bin │ ├── batman-p.pal │ ├── batman.bin │ ├── beatrix-p.bin │ ├── beatrix-p.pal │ ├── beatrix.bin │ ├── beaver.bin │ ├── berserker-p.bin │ ├── berserker-p.pal │ ├── berserker.bin │ ├── biggs7-p.bin │ ├── biggs7-p.pal │ ├── biggs7.bin │ ├── bird-p.bin │ ├── bird-p.pal │ ├── bird.bin │ ├── blackmage-f-p.bin │ ├── blackmage-f-p.pal │ ├── blackmage-f.bin │ ├── blackmage-magus-p.bin │ ├── blackmage-magus-p.pal │ ├── blackmage-magus.bin │ ├── blackmage-new.bin │ ├── blackmage-p.bin │ ├── blackmage-p.pal │ ├── blackmage-rouge.bin │ ├── blackmage.bin │ ├── blanc-p.bin │ ├── blanc-p.pal │ ├── blanc.bin │ ├── blank-p.bin │ ├── blank-p.pal │ ├── blank.bin │ ├── bomb-p.bin │ ├── bomb-p.pal │ ├── bomb.bin │ ├── bomberman-p.bin │ ├── bomberman-p.pal │ ├── bomberman.bin │ ├── borghen-p.bin │ ├── borghen-p.pal │ ├── borghen.bin │ ├── bowser-p.bin │ ├── bowser-p.pal │ ├── bowser.bin │ ├── bowserjr-p.bin │ ├── bowserjr-p.pal │ ├── bowserjr.bin │ ├── boy-p.bin │ ├── boy-p.pal │ ├── boy.bin │ ├── bubbledragon-p.bin │ ├── bubbledragon-p.pal │ ├── bubbledragon.bin │ ├── bug-p.bin │ ├── bug-p.pal │ ├── bug.bin │ ├── bunnylink-p.bin │ ├── bunnylink-p.pal │ ├── bunnylink.bin │ ├── byuu-p.bin │ ├── byuu-p.pal │ ├── byuu.bin │ ├── cactuar-p.bin │ ├── cactuar-p.pal │ ├── cactuar.bin │ ├── cagnazzo-p.bin │ ├── cagnazzo-p.pal │ ├── cagnazzo.bin │ ├── caitsith-p.bin │ ├── caitsith-p.pal │ ├── caitsith.bin │ ├── cat-p.bin │ ├── cat-p.pal │ ├── cat.bin │ ├── celes-amano.bin │ ├── celes-beatrix-p.bin │ ├── celes-beatrix-p.pal │ ├── celes-beatrix.bin │ ├── celes-opera-p.bin │ ├── celes-opera-p.pal │ ├── celes-opera.bin │ ├── celes-yuna.bin │ ├── chair-p.bin │ ├── chair-p.pal │ ├── chair.bin │ ├── chancellor-p.bin │ ├── chancellor-p.pal │ ├── chancellor.bin │ ├── chaos-p.bin │ ├── chaos-p.pal │ ├── chaos.bin │ ├── chemist-p.bin │ ├── chemist-p.pal │ ├── chemist.bin │ ├── chocobo-p.bin │ ├── chocobo-p.pal │ ├── chocobo.bin │ ├── chupon-p.bin │ ├── chupon-p.pal │ ├── chupon.bin │ ├── cid4-p.bin │ ├── cid4-p.pal │ ├── cid4.bin │ ├── cid5-p.bin │ ├── cid5-p.pal │ ├── cid5.bin │ ├── cid6-p.bin │ ├── cid6-p.pal │ ├── cid6.bin │ ├── cid7-p.bin │ ├── cid7-p.pal │ ├── cid7.bin │ ├── cinna-p.bin │ ├── cinna-p.pal │ ├── cirno-p.bin │ ├── cirno-p.pal │ ├── cirno.bin │ ├── cloak-p.bin │ ├── cloak-p.pal │ ├── cloak.bin │ ├── clock-p.bin │ ├── clock-p.pal │ ├── clock.bin │ ├── cloud-child.bin │ ├── cloud-dress.bin │ ├── cloud-p.bin │ ├── cloud-p.pal │ ├── cloud.bin │ ├── clyde-edge-p.bin │ ├── clyde-edge-p.pal │ ├── clyde-edge.bin │ ├── clyde-p.bin │ ├── clyde-p.pal │ ├── clyde.bin │ ├── credits.txt │ ├── crono-p.bin │ ├── crono-p.pal │ ├── crono.bin │ ├── cucco-p.bin │ ├── cucco-p.pal │ ├── cucco.bin │ ├── cultist-p.bin │ ├── cultist-p.pal │ ├── cultist.bin │ ├── cyan-auron-p.bin │ ├── cyan-auron-p.pal │ ├── cyan-auron.bin │ ├── cyan-cape.bin │ ├── cyan-judge-p.bin │ ├── cyan-judge-p.pal │ ├── cyan-judge.bin │ ├── cyan-leo.bin │ ├── cyan-siegfried-p.bin │ ├── cyan-siegfried-p.pal │ ├── cyan-siegfried.bin │ ├── cyan-t.bin │ ├── cyan-tenzen-p.bin │ ├── cyan-tenzen-p.pal │ ├── cyan-tenzen.bin │ ├── cyrus-p.bin │ ├── cyrus-p.pal │ ├── cyrus.bin │ ├── dajh-p.bin │ ├── dajh-p.pal │ ├── dajh.bin │ ├── dancer-p.bin │ ├── dancer-p.pal │ ├── dancer.bin │ ├── dark-knight.bin │ ├── darkelf-p.bin │ ├── darkelf-p.pal │ ├── darkelf.bin │ ├── daryl-p.bin │ ├── daryl-p.pal │ ├── daryl.bin │ ├── datto.bin │ ├── decil-p.bin │ ├── decil-p.pal │ ├── decil.bin │ ├── delita-armor-p.bin │ ├── delita-armor-p.pal │ ├── delita-armor.bin │ ├── delita-p.bin │ ├── delita-p.pal │ ├── delita.bin │ ├── desch-p.bin │ ├── desch-p.pal │ ├── desch.bin │ ├── devout-p.bin │ ├── devout-p.pal │ ├── devout.bin │ ├── dogstahl-p.bin │ ├── dogstahl-p.pal │ ├── dogstahl.bin │ ├── dona.bin │ ├── doncorneo-p.bin │ ├── doncorneo-p.pal │ ├── doncorneo.bin │ ├── donkeykong-p.bin │ ├── donkeykong-p.pal │ ├── donkeykong.bin │ ├── door-p.bin │ ├── door-p.pal │ ├── door.bin │ ├── dorgann-p.bin │ ├── dorgann-p.pal │ ├── dorgann.bin │ ├── dqslime-p.bin │ ├── dqslime-p.pal │ ├── dqslime.bin │ ├── draco-p.bin │ ├── draco-p.pal │ ├── draco.bin │ ├── dragon-p.bin │ ├── dragon-p.pal │ ├── dragon.bin │ ├── drmog.bin │ ├── duran.bin │ ├── dycedarg-p.bin │ ├── dycedarg-p.pal │ ├── dycedarg.bin │ ├── edea-p.bin │ ├── edea-p.pal │ ├── edea.bin │ ├── edgar-gerad-p.bin │ ├── edgar-gerad-p.pal │ ├── edgar-gerad.bin │ ├── edge-p.bin │ ├── edge-p.pal │ ├── edge.bin │ ├── edward-p.bin │ ├── edward-p.pal │ ├── edward.bin │ ├── eggman-p.bin │ ├── eggman-p.pal │ ├── eggman.bin │ ├── eiko-p.bin │ ├── eiko-p.pal │ ├── eiko.bin │ ├── elarra-p.bin │ ├── elarra-p.pal │ ├── elarra.bin │ ├── elder-p.bin │ ├── elder-p.pal │ ├── elder.bin │ ├── elena-p.bin │ ├── elena-p.pal │ ├── elena.bin │ ├── ellone-p.bin │ ├── ellone-p.pal │ ├── ellone.bin │ ├── emperor-p.bin │ ├── emperor-p.pal │ ├── emperor.bin │ ├── esperterra-p.bin │ ├── esperterra-p.pal │ ├── esperterra.bin │ ├── esperterra_riding.bin │ ├── excitebiker-p.bin │ ├── excitebiker-p.pal │ ├── excitebiker.bin │ ├── exdeath-p.bin │ ├── exdeath-p.pal │ ├── exdeath.bin │ ├── fairy-p.bin │ ├── fairy-p.pal │ ├── fairy.bin │ ├── falco-p.bin │ ├── falco-p.pal │ ├── falco.bin │ ├── fang-p.bin │ ├── fang-p.pal │ ├── fang.bin │ ├── faris-p.bin │ ├── faris-p.pal │ ├── faris.bin │ ├── figaroguard-p.bin │ ├── figaroguard-p.pal │ ├── figaroguard.bin │ ├── fire-p.bin │ ├── fire-p.pal │ ├── fire.bin │ ├── firion-p.bin │ ├── firion-p.pal │ ├── firion.bin │ ├── fish-p.bin │ ├── fish-p.pal │ ├── fish.bin │ ├── fouroldmen-p.bin │ ├── fouroldmen-p.pal │ ├── fouroldmen.bin │ ├── fran-p.bin │ ├── fran-p.pal │ ├── fran.bin │ ├── freya-p.bin │ ├── freya-p.pal │ ├── freya.bin │ ├── frisk-p.bin │ ├── frisk-p.pal │ ├── frisk.bin │ ├── frog-p.bin │ ├── frog-p.pal │ ├── frog.bin │ ├── froggy-p.bin │ ├── froggy-p.pal │ ├── froggy.bin │ ├── froggyfrog.bin │ ├── frogster-p.bin │ ├── frogster-p.pal │ ├── frogster.bin │ ├── fusoya-p.bin │ ├── fusoya-p.pal │ ├── fusoya.bin │ ├── gabranth-p.bin │ ├── gabranth-p.pal │ ├── gabranth.bin │ ├── gaffgarion-p.bin │ ├── gaffgarion-p.pal │ ├── gaffgarion.bin │ ├── gaia-evo-p.bin │ ├── gaia-evo-p.pal │ ├── gaia-evo.bin │ ├── galbadiansoldier-p.bin │ ├── galbadiansoldier-p.pal │ ├── galbadiansoldier.bin │ ├── galuf-p.bin │ ├── galuf-p.pal │ ├── galuf.bin │ ├── garland-p.bin │ ├── garland-p.pal │ ├── garland.bin │ ├── garnet-gown.bin │ ├── garnet-p.bin │ ├── garnet-p.pal │ ├── garnet-whitemage.bin │ ├── garnet.bin │ ├── gau-fancy-p.bin │ ├── gau-fancy-p.pal │ ├── gau-fancy.bin │ ├── gau-shinything-p.bin │ ├── gau-shinything-p.pal │ ├── gau-shinything.bin │ ├── gau-zidane-p.bin │ ├── gau-zidane-p.pal │ ├── gau-zidane.bin │ ├── geno-p.bin │ ├── geno-p.pal │ ├── geno.bin │ ├── gestahl-p.bin │ ├── gestahl-p.pal │ ├── gestahl.bin │ ├── ghost.bin │ ├── ghost_riding.bin │ ├── gilgamesh-p.bin │ ├── gilgamesh-p.pal │ ├── gilgamesh.bin │ ├── girl-p.bin │ ├── girl-p.pal │ ├── girl.bin │ ├── gogo-exdeath.bin │ ├── gogo-t.bin │ ├── goku-p.bin │ ├── goku-p.pal │ ├── goku.bin │ ├── golbez-p.bin │ ├── golbez-p.pal │ ├── golbez.bin │ ├── gordon-p.bin │ ├── gordon-p.pal │ ├── gordon.bin │ ├── grandma-p.bin │ ├── grandma-p.pal │ ├── grandma.bin │ ├── guy-p.bin │ ├── guy-p.pal │ ├── guy.bin │ ├── headdy-p.bin │ ├── headdy-p.pal │ ├── headdy.bin │ ├── hilda-p.bin │ ├── hilda-p.pal │ ├── hilda.bin │ ├── holydragoon-p.bin │ ├── holydragoon-p.pal │ ├── holydragoon.bin │ ├── hope-p.bin │ ├── hope-p.pal │ ├── hope.bin │ ├── hornytoad.bin │ ├── hotaru-p.bin │ ├── hotaru-p.pal │ ├── hotaru.bin │ ├── iffy-p.bin │ ├── iffy-p.pal │ ├── iffy.bin │ ├── illya-prisma-p.bin │ ├── illya-prisma-p.pal │ ├── illya-prisma.bin │ ├── imperialsoldier-amano.bin │ ├── imperialsoldier-cape.bin │ ├── impresario-p.bin │ ├── impresario-p.pal │ ├── impresario.bin │ ├── ingus-p.bin │ ├── ingus-p.pal │ ├── ingus.bin │ ├── interceptor-p.bin │ ├── interceptor-p.pal │ ├── interceptor.bin │ ├── invisible-p.bin │ ├── invisible-p.pal │ ├── iris-p.bin │ ├── iris-p.pal │ ├── iris.bin │ ├── irvine-p.bin │ ├── irvine-p.pal │ ├── irvine.bin │ ├── jecht-p.bin │ ├── jecht-p.pal │ ├── jecht.bin │ ├── jessie7-p.bin │ ├── jessie7-p.pal │ ├── jessie7.bin │ ├── jevil-p.bin │ ├── jevil-p.pal │ ├── jevil.bin │ ├── johnny-p.bin │ ├── johnny-p.pal │ ├── johnny.bin │ ├── josef-p.bin │ ├── josef-p.pal │ ├── josef.bin │ ├── judge-p.bin │ ├── judge-p.pal │ ├── judge.bin │ ├── kain-p.bin │ ├── kain-p.pal │ ├── kain.bin │ ├── kappa.bin │ ├── katarin-p.bin │ ├── katarin-p.pal │ ├── katarin.bin │ ├── kefka-p.bin │ ├── kefka-p.pal │ ├── kefka_riding.bin │ ├── kelgar-p.bin │ ├── kelgar-p.pal │ ├── kelgar.bin │ ├── kiki-p.bin │ ├── kiki-p.pal │ ├── kiki.bin │ ├── kimahri-p.bin │ ├── kimahri-p.pal │ ├── kimahri.bin │ ├── kirby-p.bin │ ├── kirby-p.pal │ ├── kirby.bin │ ├── kiros-p.bin │ ├── kiros-p.pal │ ├── kiros-soldier.bin │ ├── knight-p.bin │ ├── knight-p.pal │ ├── knight.bin │ ├── krile-p.bin │ ├── krile-p.pal │ ├── krile.bin │ ├── lady-p.bin │ ├── lady-p.pal │ ├── lady.bin │ ├── laguna-p.bin │ ├── laguna-p.pal │ ├── laguna-soldier.bin │ ├── larsa-p.bin │ ├── larsa-p.pal │ ├── larsa.bin │ ├── leila-p.bin │ ├── leila-p.pal │ ├── leila.bin │ ├── lenna-p.bin │ ├── lenna-p.pal │ ├── lenna-white-mage-p.bin │ ├── lenna-white-mage-p.pal │ ├── lenna-white-mage.bin │ ├── lenna.bin │ ├── leo_riding.bin │ ├── leon-p.bin │ ├── leon-p.pal │ ├── leon.bin │ ├── letty.bin │ ├── lightning-p.bin │ ├── lightning-p.pal │ ├── lightning.bin │ ├── lilith-p.bin │ ├── lilith-p.pal │ ├── lilith.bin │ ├── link-p.bin │ ├── link-p.pal │ ├── link.bin │ ├── locke-amano-p.bin │ ├── locke-amano-p.pal │ ├── locke-amano.bin │ ├── locke-draco-p.bin │ ├── locke-draco-p.pal │ ├── locke-draco.bin │ ├── locke-firion-p.bin │ ├── locke-firion-p.pal │ ├── locke-firion.bin │ ├── locke-squall-p.bin │ ├── locke-squall-p.pal │ ├── locke-squall.bin │ ├── lonewolf-p.bin │ ├── lonewolf-p.pal │ ├── lonewolf.bin │ ├── lttp-p.bin │ ├── lttp-p.pal │ ├── lttp.bin │ ├── lucca-p.bin │ ├── lucca-p.pal │ ├── lucca.bin │ ├── lufia-p.bin │ ├── lufia-p.pal │ ├── lufia.bin │ ├── luigi-p.bin │ ├── luigi-p.pal │ ├── luigi.bin │ ├── lulu-p.bin │ ├── lulu-p.pal │ ├── lulu.bin │ ├── luneth-p.bin │ ├── luneth-p.pal │ ├── luneth.bin │ ├── maduin-p.bin │ ├── maduin-p.pal │ ├── maduin.bin │ ├── magicite-p.bin │ ├── magicite-p.pal │ ├── magicite.bin │ ├── magissa-p.bin │ ├── magissa-p.pal │ ├── magissa.bin │ ├── magus-p.bin │ ├── magus-p.pal │ ├── magus.bin │ ├── malboro-p.bin │ ├── malboro-p.pal │ ├── malboro.bin │ ├── malin-p.bin │ ├── malin-p.pal │ ├── malin.bin │ ├── mallow-p.bin │ ├── mallow-p.pal │ ├── mallow.bin │ ├── man-p.bin │ ├── man-p.pal │ ├── man.bin │ ├── marcus-p.bin │ ├── marcus-p.pal │ ├── marcus.bin │ ├── maria-p.bin │ ├── maria-p.pal │ ├── maria.bin │ ├── mario-p.bin │ ├── mario-p.pal │ ├── mario.bin │ ├── marisa-p.bin │ ├── marisa-p.pal │ ├── marisa.bin │ ├── marle-p.bin │ ├── marle-p.pal │ ├── marle.bin │ ├── matoya-p.bin │ ├── matoya-p.pal │ ├── matoya.bin │ ├── maxim-p.bin │ ├── maxim-p.pal │ ├── maxim.bin │ ├── megaman-p.bin │ ├── megaman-p.pal │ ├── megaman.bin │ ├── merchant-amano-p.bin │ ├── merchant-amano-p.pal │ ├── merchant-amano.bin │ ├── merchant_riding.bin │ ├── metroid-p.bin │ ├── metroid-p.pal │ ├── metroid.bin │ ├── mid-p.bin │ ├── mid-p.pal │ ├── mid.bin │ ├── miluda-p.bin │ ├── miluda-p.pal │ ├── miluda.bin │ ├── mini.bin │ ├── minwu-p.bin │ ├── minwu-p.pal │ ├── minwu.bin │ ├── monk-f-p.bin │ ├── monk-f-p.pal │ ├── monk-f.bin │ ├── monk-m-p.bin │ ├── monk-m-p.pal │ ├── monk-m.bin │ ├── moogle-12-p.bin │ ├── moogle-12-p.pal │ ├── moogle-12.bin │ ├── moogle-caitsith-p.bin │ ├── moogle-caitsith-p.pal │ ├── moogle-caitsith.bin │ ├── moogle-geohat-p.bin │ ├── moogle-geohat-p.pal │ ├── moogle-geohat.bin │ ├── moogle-tonberry.bin │ ├── more_sprites │ ├── readme.txt │ ├── sprites.csv │ ├── yang-p.bin │ ├── yang-p.pal │ ├── yang.bin │ ├── yoshi-p.bin │ ├── yoshi-p.pal │ ├── yoshi.bin │ ├── ysayle-p.bin │ ├── ysayle-p.pal │ ├── ysayle.bin │ ├── yuffie-p.bin │ ├── yuffie-p.pal │ ├── yuffie.bin │ ├── yuna-p.bin │ ├── yuna-p.pal │ ├── yuna.bin │ ├── yura-p.bin │ ├── yura-p.pal │ ├── yura.bin │ ├── zack-p.bin │ ├── zack-p.pal │ ├── zack.bin │ ├── zalbag-p.bin │ ├── zalbag-p.pal │ ├── zalbag.bin │ ├── zell-p.bin │ ├── zell-p.pal │ ├── zell.bin │ ├── zidane-p.bin │ ├── zidane-p.pal │ ├── zidane.bin │ ├── zombie-p.bin │ ├── zombie-p.pal │ └── zombie.bin │ ├── mrsaturn-p.bin │ ├── mrsaturn-p.pal │ ├── mrsaturn.bin │ ├── mysticknight-p.bin │ ├── mysticknight-p.pal │ ├── mysticknight.bin │ ├── nabaat.bin │ ├── nakoruru-p.bin │ ├── nakoruru-p.pal │ ├── nakoruru.bin │ ├── narsheguard-p.bin │ ├── narsheguard-p.pal │ ├── narsheguard.bin │ ├── nepgear-p.bin │ ├── nepgear-p.pal │ ├── nepgear.bin │ ├── neptune-adult-p.bin │ ├── neptune-adult-p.pal │ ├── neptune-adult.bin │ ├── neptune-p.bin │ ├── neptune-p.pal │ ├── neptune.bin │ ├── ness-opera.bin │ ├── ness-p.bin │ ├── ness-p.pal │ ├── ness.bin │ ├── ninja-p.bin │ ├── ninja-p.pal │ ├── ninja.bin │ ├── noctis-p.bin │ ├── noctis-p.pal │ ├── noctis.bin │ ├── noire-p.bin │ ├── noire-p.pal │ ├── noire.bin │ ├── nora.bin │ ├── nun.bin │ ├── ogbanon.bin │ ├── ogceles.bin │ ├── ogcyan.bin │ ├── ogedgar.bin │ ├── ogesperterra.bin │ ├── oggau.bin │ ├── ogghost.bin │ ├── oggogo.bin │ ├── ogimp.bin │ ├── ogkefka.bin │ ├── ogleo.bin │ ├── oglocke.bin │ ├── oglop-cid.bin │ ├── oglop-p.bin │ ├── oglop-p.pal │ ├── ogmerchant.bin │ ├── ogmog.bin │ ├── ogrelm.bin │ ├── ogsabin.bin │ ├── ogsetzer.bin │ ├── ogshadow.bin │ ├── ogstrago.bin │ ├── ogterra.bin │ ├── ogtrooper.bin │ ├── ogumaro.bin │ ├── oldman-p.bin │ ├── oldman-p.pal │ ├── oldman.bin │ ├── omega-p.bin │ ├── omega-p.pal │ ├── omega.bin │ ├── onionknight-p.bin │ ├── onionknight-p.pal │ ├── onionknight.bin │ ├── orlandu-p.bin │ ├── orlandu-p.pal │ ├── orlandu.bin │ ├── ovelia-p.bin │ ├── ovelia-p.pal │ ├── ovelia.bin │ ├── palom-p.bin │ ├── palom-p.pal │ ├── palom.bin │ ├── papyrus-p.bin │ ├── papyrus-p.pal │ ├── papyrus.bin │ ├── peach-p.bin │ ├── peach-p.pal │ ├── peach.bin │ ├── pecil-p.bin │ ├── pecil-p.pal │ ├── pecil.bin │ ├── penelo-p.bin │ ├── penelo-p.pal │ ├── penelo.bin │ ├── piccolo-p.bin │ ├── piccolo-p.pal │ ├── piccolo.bin │ ├── pig-p.bin │ ├── pig-p.pal │ ├── pig.bin │ ├── pikachu-retro-p.bin │ ├── pikachu-retro-p.pal │ ├── pikachu-retro.bin │ ├── porom-p.bin │ ├── porom-p.pal │ ├── porom.bin │ ├── potato-p.bin │ ├── potato-p.pal │ ├── potato.bin │ ├── psicom-p.bin │ ├── psicom-p.pal │ ├── psicom.bin │ ├── purgedeportee.bin │ ├── queenbrahne-p.bin │ ├── queenbrahne-p.pal │ ├── queenbrahne.bin │ ├── quistis-p.bin │ ├── quistis-p.pal │ ├── quistis.bin │ ├── rachel-p.bin │ ├── rachel-p.pal │ ├── rachel.bin │ ├── raditz-p.bin │ ├── raditz-p.pal │ ├── raditz.bin │ ├── ramza-p.bin │ ├── ramza-p.pal │ ├── ramza.bin │ ├── ramza1-p.bin │ ├── ramza1-p.pal │ ├── ramza1.bin │ ├── red-p.bin │ ├── red-p.pal │ ├── red.bin │ ├── redmage-p.bin │ ├── redmage-p.pal │ ├── redmage.bin │ ├── redxiii-p.bin │ ├── redxiii-p.pal │ ├── redxiii.bin │ ├── refia-p.bin │ ├── refia-p.pal │ ├── refia.bin │ ├── reimu-p.bin │ ├── reimu-p.pal │ ├── reimu.bin │ ├── relm-adult.bin │ ├── relm-amano-p.bin │ ├── relm-amano-p.pal │ ├── relm-amano.bin │ ├── relm-krile-p.bin │ ├── relm-krile-p.pal │ ├── relm-krile.bin │ ├── relm-shantotto-p.bin │ ├── relm-shantotto-p.pal │ ├── relm-shantotto.bin │ ├── relm-whitemage-p.bin │ ├── relm-whitemage-p.pal │ ├── relm-whitemage.bin │ ├── relm-yuffie.bin │ ├── relm-yuna.bin │ ├── reno-p.bin │ ├── reno-p.pal │ ├── reno.bin │ ├── returner-p.bin │ ├── returner-p.pal │ ├── returner-warrior.bin │ ├── returner.bin │ ├── ricard-p.bin │ ├── ricard-p.pal │ ├── ricard.bin │ ├── rikku-divesuit.bin │ ├── rikku-p.bin │ ├── rikku-p.pal │ ├── rikku.bin │ ├── rimururu-p.bin │ ├── rimururu-p.pal │ ├── rimururu.bin │ ├── rinoa-dress.bin │ ├── rinoa-p.bin │ ├── rinoa-p.pal │ ├── rinoa.bin │ ├── robo-p.bin │ ├── robo-p.pal │ ├── robo.bin │ ├── rom-p.bin │ ├── rom-p.pal │ ├── rom.bin │ ├── rosa-p.bin │ ├── rosa-p.pal │ ├── rosa.bin │ ├── rubicante-p.bin │ ├── rubicante-p.pal │ ├── rubicante.bin │ ├── rude-p.bin │ ├── rude-p.pal │ ├── rude.bin │ ├── rufus-p.bin │ ├── rufus-p.pal │ ├── rufus.bin │ ├── rumia-p.bin │ ├── rumia-p.pal │ ├── rumia.bin │ ├── rydia-child-p.bin │ ├── rydia-child-p.pal │ ├── rydia-child.bin │ ├── rydia-p.bin │ ├── rydia-p.pal │ ├── rydia.bin │ ├── ryubof-p.bin │ ├── ryubof-p.pal │ ├── ryubof.bin │ ├── sabin-edgar-p.bin │ ├── sabin-edgar-p.pal │ ├── sabin-edgar.bin │ ├── sabin-seifer-p.bin │ ├── sabin-seifer-p.pal │ ├── sabin-seifer.bin │ ├── sabin-t-p.bin │ ├── sabin-t-p.pal │ ├── sabin-t.bin │ ├── sabin-vargas.bin │ ├── sabin-wakka-p.bin │ ├── sabin-wakka-p.pal │ ├── sabin-wakka.bin │ ├── sakuya-p.bin │ ├── sakuya-p.pal │ ├── sakuya.bin │ ├── samurai-p.bin │ ├── samurai-p.pal │ ├── samurai.bin │ ├── samus-p.bin │ ├── samus-p.pal │ ├── samus-zero-p.bin │ ├── samus-zero-p.pal │ ├── samus-zero.bin │ ├── samus.bin │ ├── sans-p.bin │ ├── sans-p.pal │ ├── sans.bin │ ├── sarah-p.bin │ ├── sarah-p.pal │ ├── sarah.bin │ ├── sazh-p.bin │ ├── sazh-p.pal │ ├── sazh.bin │ ├── scarmiglione-p.bin │ ├── scarmiglione-p.pal │ ├── scarmiglione.bin │ ├── schala-p.bin │ ├── schala-p.pal │ ├── schala.bin │ ├── scholar-p.bin │ ├── scholar-p.pal │ ├── scholar.bin │ ├── scott-p.bin │ ├── scott-p.pal │ ├── scott.bin │ ├── seeq-p.bin │ ├── seeq-p.pal │ ├── seeq.bin │ ├── seifer-p.bin │ ├── seifer-p.pal │ ├── seifer.bin │ ├── selphie-p.bin │ ├── selphie-p.pal │ ├── selphie-uniform.bin │ ├── sephiroth-p.bin │ ├── sephiroth-p.pal │ ├── sephiroth.bin │ ├── serah.bin │ ├── seymour-p.bin │ ├── seymour-p.pal │ ├── seymour.bin │ ├── shadowsmith.bin │ ├── shantotto-p.bin │ ├── shantotto-p.pal │ ├── shantotto.bin │ ├── shopkeeper-p.bin │ ├── shopkeeper-p.pal │ ├── shopkeeper.bin │ ├── siegfried-p.bin │ ├── siegfried-p.pal │ ├── siegfried.bin │ ├── sion-p.bin │ ├── sion-p.pal │ ├── sion.bin │ ├── slash-p.bin │ ├── slash-p.pal │ ├── slash.bin │ ├── slime-p.bin │ ├── slime-p.pal │ ├── slime.bin │ ├── snow-p.bin │ ├── snow-p.pal │ ├── snow.bin │ ├── soeboy-p.bin │ ├── soeboy-p.pal │ ├── soeboy.bin │ ├── soldier9-p.bin │ ├── soldier9-p.pal │ ├── soldier9.bin │ ├── sonic-p.bin │ ├── sonic-p.pal │ ├── sonic.bin │ ├── sprites.csv │ ├── squall-p.bin │ ├── squall-p.pal │ ├── squall-uniform-p.bin │ ├── squall-uniform-p.pal │ ├── squall-uniform.bin │ ├── squall.bin │ ├── squire-p.bin │ ├── squire-p.pal │ ├── squire.bin │ ├── stalfos-p.bin │ ├── stalfos-p.pal │ ├── stalfos.bin │ ├── starfox-p.bin │ ├── starfox-p.pal │ ├── starfox.bin │ ├── steiner-p.bin │ ├── steiner-p.pal │ ├── steiner.bin │ ├── stiltzkin-p.bin │ ├── stiltzkin-p.pal │ ├── stiltzkin.bin │ ├── strago-blackmage-p.bin │ ├── strago-blackmage-p.pal │ ├── strago-blackmage.bin │ ├── strago-cid-p.bin │ ├── strago-cid-p.pal │ ├── strago-cid.bin │ ├── strago-fusoya-p.bin │ ├── strago-fusoya-p.pal │ ├── strago-fusoya.bin │ ├── strago-t.bin │ ├── strago-tellah-p.bin │ ├── strago-tellah-p.pal │ ├── strago-tellah.bin │ ├── talim-p.bin │ ├── talim-p.pal │ ├── talim.bin │ ├── tellah-p.bin │ ├── tellah-p.pal │ ├── tellah.bin │ ├── terra-amano-p.bin │ ├── terra-amano-p.pal │ ├── terra-amano.bin │ ├── terra-child.bin │ ├── terra-dress.bin │ ├── terra-rydia-p.bin │ ├── terra-rydia-p.pal │ ├── terra-rydia.bin │ ├── teta-p.bin │ ├── teta-p.pal │ ├── teta.bin │ ├── thieffft-p.bin │ ├── thieffft-p.pal │ ├── thieffft.bin │ ├── tiamat-p.bin │ ├── tiamat-p.pal │ ├── tiamat.bin │ ├── tidus-p.bin │ ├── tidus-p.pal │ ├── tidus.bin │ ├── tifa-child.bin │ ├── tifa-cowgirl.bin │ ├── tifa-dress.bin │ ├── tifa-p.bin │ ├── tifa-p.pal │ ├── tifa.bin │ ├── tingle-p.bin │ ├── tingle-p.pal │ ├── tingle.bin │ ├── tinymoogle.bin │ ├── toadette-p.bin │ ├── toadette-p.pal │ ├── toadette.bin │ ├── tohka-p.bin │ ├── tohka-p.pal │ ├── tohka.bin │ ├── tombstone-p.bin │ ├── tombstone-p.pal │ ├── tombstone.bin │ ├── tonberry-p.bin │ ├── tonberry-p.pal │ ├── tonberry.bin │ ├── trainconductor-p.bin │ ├── trainconductor-p.pal │ ├── trainconductor.bin │ ├── treasurechest-p.bin │ ├── treasurechest-p.pal │ ├── treasurechest.bin │ ├── turtle-p.bin │ ├── turtle-p.pal │ ├── turtle.bin │ ├── tyro-p.bin │ ├── tyro-p.pal │ ├── tyro.bin │ ├── ultros-p.bin │ ├── ultros-p.pal │ ├── ultros.bin │ ├── umaro-banon-p.bin │ ├── umaro-banon-p.pal │ ├── umaro-banon.bin │ ├── umaro-kimahri-p.bin │ ├── umaro-kimahri-p.pal │ ├── umaro-kimahri.bin │ ├── uncomp.bin │ ├── uni-p.bin │ ├── uni-p.pal │ ├── uni.bin │ ├── vaan-p.bin │ ├── vaan-p.pal │ ├── vaan.bin │ ├── vader-p.bin │ ├── vader-p.pal │ ├── vader.bin │ ├── valkyrie-p.bin │ ├── valkyrie-p.pal │ ├── valkyrie.bin │ ├── van-p.bin │ ├── van-p.pal │ ├── van.bin │ ├── vanille-p.bin │ ├── vanille-p.pal │ ├── vanille.bin │ ├── vargas-p.bin │ ├── vargas-p.pal │ ├── vargas.bin │ ├── vayne-p.bin │ ├── vayne-p.pal │ ├── vayne.bin │ ├── vert-p.bin │ ├── vert-p.pal │ ├── vert.bin │ ├── vincent-p.bin │ ├── vincent-p.pal │ ├── vincent.bin │ ├── vivi-p.bin │ ├── vivi-p.pal │ ├── vivi.bin │ ├── vomammoth-p.bin │ ├── vomammoth-p.pal │ ├── vomammoth.bin │ ├── vormav-p.bin │ ├── vormav-p.pal │ ├── vormav.bin │ ├── vossler-judge-helm.bin │ ├── vossler-judge.bin │ ├── vossler-p.bin │ ├── vossler-p.pal │ ├── wakka-p.bin │ ├── wakka-p.pal │ ├── wakka.bin │ ├── ward-p.bin │ ├── ward-p.pal │ ├── ward-soldier.bin │ ├── warrioroflight-p.bin │ ├── warrioroflight-p.pal │ ├── warrioroflight.bin │ ├── wedge7-p.bin │ ├── wedge7-p.pal │ ├── wedge7.bin │ ├── whitemage-f-p.bin │ ├── whitemage-f-p.pal │ ├── whitemage-f.bin │ ├── whitemage-p.bin │ ├── whitemage-p.pal │ ├── whitemage.bin │ ├── wiegraf-p.bin │ ├── wiegraf-p.pal │ ├── wiegraf.bin │ ├── witchchild.bin │ ├── wolfdog-p.bin │ ├── wolfdog-p.pal │ ├── wolfdog.bin │ ├── xezhat-p.bin │ ├── xezhat-p.pal │ └── xezhat.bin ├── data ├── samples │ ├── actr_trumpet.brr │ ├── c404_strings.brr │ ├── cs16_synth.brr │ ├── ct08_openhat.brr │ ├── ct08_x20_ohh.brr │ ├── ct0c_conga.brr │ ├── ct12_sax.brr │ ├── ct14_gpiano.brr │ ├── ct15_pizza.brr │ ├── ct1c_bpiano.brr │ ├── ct1e_eguitar.brr │ ├── ct23_synth.brr │ ├── ct24_trumpet.brr │ ├── ct28_tube.brr │ ├── ct2c_synstr.brr │ ├── ct_prg10.brr │ ├── eb_synthlead.brr │ ├── f503_x20_snare.brr │ ├── f504_x15_crash.brr │ ├── f508_timpani.brr │ ├── f50f_oboe.brr │ ├── ffx_dulcimer.brr │ ├── fm23_halo.brr │ ├── gh18_ahhs.brr │ ├── gh1b_odguitar.brr │ ├── gh3c_x15_ride.brr │ ├── gh44_epiano.brr │ ├── gi35_tom.brr │ ├── ll2a_organ.brr │ ├── r340_timbale.brr │ ├── rd08_lawl.brr │ ├── rs0a_bell.brr │ ├── s201_x20_dulci.brr │ ├── s205_chorus.brr │ ├── s207_bell.brr │ ├── s210_piano.brr │ ├── s315_pianoa6.brr │ ├── s319_overdrive.brr │ ├── s31c_aguitar.brr │ ├── s31f_pizza.brr │ ├── s321_tambo.brr │ ├── s329_brass.brr │ ├── s32a_msnare.brr │ ├── s32d_pianocp6.brr │ ├── s32e_pianofp5.brr │ ├── sm14_bassoon.brr │ ├── sm2f_x20_tom.brr │ ├── sm32_future.brr │ ├── sm42_violin.brr │ ├── sm61_steel.brr │ ├── so2rena3.brr │ ├── tr0a_brass.brr │ ├── tr0c_bassoon.brr │ ├── tr0e_clap.brr │ ├── tr0f_clarinet.brr │ ├── tr10_clavinet.brr │ ├── tr17_dguitar.brr │ ├── tr19_eguitar.brr │ ├── tr21_ehorn.brr │ ├── tr25_cguitar.brr │ ├── tr27_synth.brr │ ├── tr29_orchhit.brr │ ├── tr37_strings.brr │ ├── tr3a_synbass.brr │ ├── ts42_celesta.brr │ ├── ts43_synstr.brr │ ├── ts48_sitar.brr │ ├── ts49_strings.brr │ ├── ts4a_sbass.brr │ ├── ts4c_gong.brr │ ├── ts4d_fbass.brr │ ├── ts4e_violin.brr │ ├── ts50_cymbal.brr │ ├── ts53_piano.brr │ ├── ts56_snare.brr │ ├── ts57_conga.brr │ ├── ts58_cembalo.brr │ ├── ts59_tkick.brr │ ├── ts5a_pedalhat.brr │ ├── ts5e_agogo.brr │ ├── ts5f_maraca.brr │ ├── ts61_violin.brr │ ├── ts62_synbell.brr │ ├── ts63_whistle.brr │ ├── ts64_vox.brr │ ├── ts65_kick.brr │ ├── ts66_tom.brr │ ├── ts6b_bass.brr │ ├── ts6d_cymbal.brr │ ├── ts76_bells.brr │ ├── ts7a_horn.brr │ ├── ts7e_snare.brr │ ├── ts7f_trumpet.brr │ ├── ts80_fbass.brr │ ├── ts85_percslap.brr │ ├── ts86_xylophone.brr │ └── ts87_accordion.brr ├── script │ ├── gestahl.txt │ ├── magicite.txt │ └── opera.txt └── sprites │ ├── RCcyan.bin │ ├── RCdancer.bin │ ├── RClady.bin │ ├── RCmog.bin │ ├── RCumaro.bin │ ├── goku-p.bin │ ├── goku-p.pal │ ├── goku.bin │ └── piccolo.bin ├── decompress.py ├── devtools ├── dump_spellsets.py └── songlen.py ├── dialoguemanager.py ├── esperrandomizer.py ├── formationrandomizer.py ├── gallery ├── crazyparty.png ├── crazyparty_native.png ├── daryl.png ├── daryl_native.png ├── floatingcontinent.png ├── floatingcontinent_native.png ├── sabins.png ├── sabins_native.png ├── tinaparty.png ├── tinaparty_native.png ├── usableitems.png └── usableitems_native.png ├── gui.py ├── hints.py ├── holiday.py ├── itemrandomizer.py ├── locationrandomizer.py ├── menufeatures.py ├── mml2mfvi.py ├── mmltbl.py ├── monsterrandomizer.py ├── musicrandomizer.py ├── namerandomizer.py ├── options.py ├── patches.py ├── randomizer.py ├── requirements.txt ├── shoprandomizer.py ├── sillyclowns.py ├── skillrandomizer.py ├── sprite_replacement.py ├── strangejourney.py ├── tables ├── ancientcheckpoints.txt ├── battlebgpalettes.txt ├── battletext.txt ├── charcodes.txt ├── charpaloptions.txt ├── chestcodes.txt ├── commandcodes.txt ├── customitems.txt ├── defaultsongs.txt ├── dialoguetext.txt ├── divergentedits.txt ├── enemycodes.txt ├── enemynames.txt ├── espercodes.txt ├── eventpalettes.txt ├── finalai.txt ├── finaldungeoncheckpoints.txt ├── finaldungeonmaps.txt ├── formationmusic.txt ├── generator.txt ├── itemcodes.txt ├── locationformations.txt ├── locationmaps.txt ├── locationpaletteswaps.txt ├── magicite.txt ├── mapbattlebgs.txt ├── mapnames.txt ├── menutext.txt ├── moves.txt ├── reachability.txt ├── ridingsprites.txt ├── samples.txt ├── shopcodes.txt ├── shorttext.txt ├── skipevents.txt ├── spellbans.txt ├── spellcodes.txt ├── text.txt ├── treasurerooms.txt ├── unusedlocs.txt ├── usedlocs.txt ├── wobeventbits.txt ├── wobonlytreasure.txt └── worstartingitems.txt ├── testrun.sh ├── towerrandomizer.py ├── unittests.sh ├── utils.py └── wor.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/.gitignore -------------------------------------------------------------------------------- /MAKEFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/MAKEFILE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/README -------------------------------------------------------------------------------- /ancient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/ancient.py -------------------------------------------------------------------------------- /appearance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/appearance.py -------------------------------------------------------------------------------- /assembly/source/_defs.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/assembly/source/_defs.asm -------------------------------------------------------------------------------- /assemblymanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/assemblymanager.py -------------------------------------------------------------------------------- /bingo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/bingo.py -------------------------------------------------------------------------------- /character.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/character.py -------------------------------------------------------------------------------- /chestrandomizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/chestrandomizer.py -------------------------------------------------------------------------------- /custom/dancenames.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/dancenames.txt -------------------------------------------------------------------------------- /custom/femalenames.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/femalenames.txt -------------------------------------------------------------------------------- /custom/malenames.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/malenames.txt -------------------------------------------------------------------------------- /custom/mooglenames.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/mooglenames.txt -------------------------------------------------------------------------------- /custom/music/_CREDITS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/_CREDITS.txt -------------------------------------------------------------------------------- /custom/music/bl_rebels.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/bl_rebels.mml -------------------------------------------------------------------------------- /custom/music/bof1_dawn.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/bof1_dawn.mml -------------------------------------------------------------------------------- /custom/music/bof2_town.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/bof2_town.mml -------------------------------------------------------------------------------- /custom/music/cc_arni.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/cc_arni.mml -------------------------------------------------------------------------------- /custom/music/cc_flame.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/cc_flame.mml -------------------------------------------------------------------------------- /custom/music/cc_harle.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/cc_harle.mml -------------------------------------------------------------------------------- /custom/music/cc_home.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/cc_home.mml -------------------------------------------------------------------------------- /custom/music/cc_hydra.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/cc_hydra.mml -------------------------------------------------------------------------------- /custom/music/cc_life.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/cc_life.mml -------------------------------------------------------------------------------- /custom/music/cc_miguel.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/cc_miguel.mml -------------------------------------------------------------------------------- /custom/music/cc_pyre.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/cc_pyre.mml -------------------------------------------------------------------------------- /custom/music/cc_valley.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/cc_valley.mml -------------------------------------------------------------------------------- /custom/music/cc_world2.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/cc_world2.mml -------------------------------------------------------------------------------- /custom/music/crys_tower.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/crys_tower.mml -------------------------------------------------------------------------------- /custom/music/ct_600ad.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ct_600ad.mml -------------------------------------------------------------------------------- /custom/music/ct_battle.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ct_battle.mml -------------------------------------------------------------------------------- /custom/music/ct_battle2.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ct_battle2.mml -------------------------------------------------------------------------------- /custom/music/ct_bike.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ct_bike.mml -------------------------------------------------------------------------------- /custom/music/ct_bobonga.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ct_bobonga.mml -------------------------------------------------------------------------------- /custom/music/ct_boss.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ct_boss.mml -------------------------------------------------------------------------------- /custom/music/ct_boss2.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ct_boss2.mml -------------------------------------------------------------------------------- /custom/music/ct_epoch.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ct_epoch.mml -------------------------------------------------------------------------------- /custom/music/ct_factory.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ct_factory.mml -------------------------------------------------------------------------------- /custom/music/ct_fair.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ct_fair.mml -------------------------------------------------------------------------------- /custom/music/ct_final.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ct_final.mml -------------------------------------------------------------------------------- /custom/music/ct_forest.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ct_forest.mml -------------------------------------------------------------------------------- /custom/music/ct_frog.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ct_frog.mml -------------------------------------------------------------------------------- /custom/music/ct_keeper.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ct_keeper.mml -------------------------------------------------------------------------------- /custom/music/ct_lavos.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ct_lavos.mml -------------------------------------------------------------------------------- /custom/music/ct_magus.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ct_magus.mml -------------------------------------------------------------------------------- /custom/music/ct_night.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ct_night.mml -------------------------------------------------------------------------------- /custom/music/ct_omen.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ct_omen.mml -------------------------------------------------------------------------------- /custom/music/ct_rhythm.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ct_rhythm.mml -------------------------------------------------------------------------------- /custom/music/ct_robo.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ct_robo.mml -------------------------------------------------------------------------------- /custom/music/ct_schala.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ct_schala.mml -------------------------------------------------------------------------------- /custom/music/ct_sewer.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ct_sewer.mml -------------------------------------------------------------------------------- /custom/music/ct_silent.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ct_silent.mml -------------------------------------------------------------------------------- /custom/music/ct_spekkio.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ct_spekkio.mml -------------------------------------------------------------------------------- /custom/music/ct_tension.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ct_tension.mml -------------------------------------------------------------------------------- /custom/music/ct_theme.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ct_theme.mml -------------------------------------------------------------------------------- /custom/music/ct_town.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ct_town.mml -------------------------------------------------------------------------------- /custom/music/ct_trial.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ct_trial.mml -------------------------------------------------------------------------------- /custom/music/ct_truth.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ct_truth.mml -------------------------------------------------------------------------------- /custom/music/ct_tylair.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ct_tylair.mml -------------------------------------------------------------------------------- /custom/music/ct_tyran.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ct_tyran.mml -------------------------------------------------------------------------------- /custom/music/ct_zeal.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ct_zeal.mml -------------------------------------------------------------------------------- /custom/music/dc2_garden.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/dc2_garden.mml -------------------------------------------------------------------------------- /custom/music/doom2_doom.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/doom2_doom.mml -------------------------------------------------------------------------------- /custom/music/ds4_lyll.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ds4_lyll.mml -------------------------------------------------------------------------------- /custom/music/ds4_world.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ds4_world.mml -------------------------------------------------------------------------------- /custom/music/eo3_waves.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/eo3_waves.mml -------------------------------------------------------------------------------- /custom/music/evo_boss.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/evo_boss.mml -------------------------------------------------------------------------------- /custom/music/ff1_battle.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff1_battle.mml -------------------------------------------------------------------------------- /custom/music/ff1_bossb.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff1_bossb.mml -------------------------------------------------------------------------------- /custom/music/ff1_matoya.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff1_matoya.mml -------------------------------------------------------------------------------- /custom/music/ff2_theme.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff2_theme.mml -------------------------------------------------------------------------------- /custom/music/ff3_battle.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff3_battle.mml -------------------------------------------------------------------------------- /custom/music/ff3_eureka.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff3_eureka.mml -------------------------------------------------------------------------------- /custom/music/ff3_hyne.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff3_hyne.mml -------------------------------------------------------------------------------- /custom/music/ff3_world.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff3_world.mml -------------------------------------------------------------------------------- /custom/music/ff4_babil.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff4_babil.mml -------------------------------------------------------------------------------- /custom/music/ff4_baron.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff4_baron.mml -------------------------------------------------------------------------------- /custom/music/ff4_battle.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff4_battle.mml -------------------------------------------------------------------------------- /custom/music/ff4_bomb.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff4_bomb.mml -------------------------------------------------------------------------------- /custom/music/ff4_boss.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff4_boss.mml -------------------------------------------------------------------------------- /custom/music/ff4_cave.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff4_cave.mml -------------------------------------------------------------------------------- /custom/music/ff4_giant.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff4_giant.mml -------------------------------------------------------------------------------- /custom/music/ff4_golbez.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff4_golbez.mml -------------------------------------------------------------------------------- /custom/music/ff4_rosa.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff4_rosa.mml -------------------------------------------------------------------------------- /custom/music/ff4_rydia.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff4_rydia.mml -------------------------------------------------------------------------------- /custom/music/ff4_sorrow.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff4_sorrow.mml -------------------------------------------------------------------------------- /custom/music/ff4_town.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff4_town.mml -------------------------------------------------------------------------------- /custom/music/ff4_troia.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff4_troia.mml -------------------------------------------------------------------------------- /custom/music/ff4_whale.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff4_whale.mml -------------------------------------------------------------------------------- /custom/music/ff4_zot.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff4_zot.mml -------------------------------------------------------------------------------- /custom/music/ff5_bal.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff5_bal.mml -------------------------------------------------------------------------------- /custom/music/ff5_battle.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff5_battle.mml -------------------------------------------------------------------------------- /custom/music/ff5_boss.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff5_boss.mml -------------------------------------------------------------------------------- /custom/music/ff5_bridge.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff5_bridge.mml -------------------------------------------------------------------------------- /custom/music/ff5_cave.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff5_cave.mml -------------------------------------------------------------------------------- /custom/music/ff5_curse.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff5_curse.mml -------------------------------------------------------------------------------- /custom/music/ff5_dawn.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff5_dawn.mml -------------------------------------------------------------------------------- /custom/music/ff5_final.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff5_final.mml -------------------------------------------------------------------------------- /custom/music/ff5_home.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff5_home.mml -------------------------------------------------------------------------------- /custom/music/ff5_hurry.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff5_hurry.mml -------------------------------------------------------------------------------- /custom/music/ff5_lenna.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff5_lenna.mml -------------------------------------------------------------------------------- /custom/music/ff5_seal.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff5_seal.mml -------------------------------------------------------------------------------- /custom/music/ff5_ship.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff5_ship.mml -------------------------------------------------------------------------------- /custom/music/ff5_theme.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff5_theme.mml -------------------------------------------------------------------------------- /custom/music/ff5_void.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff5_void.mml -------------------------------------------------------------------------------- /custom/music/ff5_what.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff5_what.mml -------------------------------------------------------------------------------- /custom/music/ff5_wings.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff5_wings.mml -------------------------------------------------------------------------------- /custom/music/ff5_world1.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff5_world1.mml -------------------------------------------------------------------------------- /custom/music/ff5_world2.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff5_world2.mml -------------------------------------------------------------------------------- /custom/music/ff5_world3.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff5_world3.mml -------------------------------------------------------------------------------- /custom/music/ff6_forest.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff6_forest.mml -------------------------------------------------------------------------------- /custom/music/ff6_ruin.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff6_ruin.mml -------------------------------------------------------------------------------- /custom/music/ff6_town2.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff6_town2.mml -------------------------------------------------------------------------------- /custom/music/ff6_zozo.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff6_zozo.mml -------------------------------------------------------------------------------- /custom/music/ff7_5years.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff7_5years.mml -------------------------------------------------------------------------------- /custom/music/ff7_battle.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff7_battle.mml -------------------------------------------------------------------------------- /custom/music/ff7_boss.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff7_boss.mml -------------------------------------------------------------------------------- /custom/music/ff7_corel.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff7_corel.mml -------------------------------------------------------------------------------- /custom/music/ff7_costa.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff7_costa.mml -------------------------------------------------------------------------------- /custom/music/ff7_desert.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff7_desert.mml -------------------------------------------------------------------------------- /custom/music/ff7_gun.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff7_gun.mml -------------------------------------------------------------------------------- /custom/music/ff7_hurry.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff7_hurry.mml -------------------------------------------------------------------------------- /custom/music/ff7_hurry2.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff7_hurry2.mml -------------------------------------------------------------------------------- /custom/music/ff7_pizza.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff7_pizza.mml -------------------------------------------------------------------------------- /custom/music/ff7_planet.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff7_planet.mml -------------------------------------------------------------------------------- /custom/music/ff7_sadbar.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff7_sadbar.mml -------------------------------------------------------------------------------- /custom/music/ff7_snow.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff7_snow.mml -------------------------------------------------------------------------------- /custom/music/ff7_temple.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff7_temple.mml -------------------------------------------------------------------------------- /custom/music/ff7_tifa.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff7_tifa.mml -------------------------------------------------------------------------------- /custom/music/ff7_weapon.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff7_weapon.mml -------------------------------------------------------------------------------- /custom/music/ff8_battle.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff8_battle.mml -------------------------------------------------------------------------------- /custom/music/ff8_boss.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff8_boss.mml -------------------------------------------------------------------------------- /custom/music/ff8_heresy.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff8_heresy.mml -------------------------------------------------------------------------------- /custom/music/ff8_laguna.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff8_laguna.mml -------------------------------------------------------------------------------- /custom/music/ff8_lion.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff8_lion.mml -------------------------------------------------------------------------------- /custom/music/ff8_mlaw.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff8_mlaw.mml -------------------------------------------------------------------------------- /custom/music/ff8_oath.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff8_oath.mml -------------------------------------------------------------------------------- /custom/music/ff8_triad.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff8_triad.mml -------------------------------------------------------------------------------- /custom/music/ff8_world.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff8_world.mml -------------------------------------------------------------------------------- /custom/music/ff9_battle.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff9_battle.mml -------------------------------------------------------------------------------- /custom/music/ff9_dali.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff9_dali.mml -------------------------------------------------------------------------------- /custom/music/ff9_gargan.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff9_gargan.mml -------------------------------------------------------------------------------- /custom/music/ff9_home.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff9_home.mml -------------------------------------------------------------------------------- /custom/music/ff9_hunt.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff9_hunt.mml -------------------------------------------------------------------------------- /custom/music/ff9_rose.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff9_rose.mml -------------------------------------------------------------------------------- /custom/music/ff9_siege.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff9_siege.mml -------------------------------------------------------------------------------- /custom/music/ff9_treno.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff9_treno.mml -------------------------------------------------------------------------------- /custom/music/ff9_world.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ff9_world.mml -------------------------------------------------------------------------------- /custom/music/ffmq_boss.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ffmq_boss.mml -------------------------------------------------------------------------------- /custom/music/ffmq_doom.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ffmq_doom.mml -------------------------------------------------------------------------------- /custom/music/ffmq_final.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ffmq_final.mml -------------------------------------------------------------------------------- /custom/music/ffmq_gale.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ffmq_gale.mml -------------------------------------------------------------------------------- /custom/music/ffmq_lava.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ffmq_lava.mml -------------------------------------------------------------------------------- /custom/music/ffmq_light.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ffmq_light.mml -------------------------------------------------------------------------------- /custom/music/ffmq_rock.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ffmq_rock.mml -------------------------------------------------------------------------------- /custom/music/ffmq_tower.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ffmq_tower.mml -------------------------------------------------------------------------------- /custom/music/ffx_battle.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ffx_battle.mml -------------------------------------------------------------------------------- /custom/music/ffx_calm.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ffx_calm.mml -------------------------------------------------------------------------------- /custom/music/ffx_luca.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ffx_luca.mml -------------------------------------------------------------------------------- /custom/music/ffx_via.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ffx_via.mml -------------------------------------------------------------------------------- /custom/music/fz_port.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/fz_port.mml -------------------------------------------------------------------------------- /custom/music/fz_silence.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/fz_silence.mml -------------------------------------------------------------------------------- /custom/music/fz_white1.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/fz_white1.mml -------------------------------------------------------------------------------- /custom/music/gd3_desert.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/gd3_desert.mml -------------------------------------------------------------------------------- /custom/music/gd3_moai.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/gd3_moai.mml -------------------------------------------------------------------------------- /custom/music/gs_tunnel.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/gs_tunnel.mml -------------------------------------------------------------------------------- /custom/music/gs_venus.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/gs_venus.mml -------------------------------------------------------------------------------- /custom/music/iog_boss.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/iog_boss.mml -------------------------------------------------------------------------------- /custom/music/iog_larai.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/iog_larai.mml -------------------------------------------------------------------------------- /custom/music/iog_womb.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/iog_womb.mml -------------------------------------------------------------------------------- /custom/music/jts_stage1.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/jts_stage1.mml -------------------------------------------------------------------------------- /custom/music/lal_boss.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/lal_boss.mml -------------------------------------------------------------------------------- /custom/music/lal_pogo.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/lal_pogo.mml -------------------------------------------------------------------------------- /custom/music/lal_psycho.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/lal_psycho.mml -------------------------------------------------------------------------------- /custom/music/lal_theme.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/lal_theme.mml -------------------------------------------------------------------------------- /custom/music/lo_battle.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/lo_battle.mml -------------------------------------------------------------------------------- /custom/music/lu1_battle.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/lu1_battle.mml -------------------------------------------------------------------------------- /custom/music/lu1_boss.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/lu1_boss.mml -------------------------------------------------------------------------------- /custom/music/lu1_final.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/lu1_final.mml -------------------------------------------------------------------------------- /custom/music/lu1_spoils.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/lu1_spoils.mml -------------------------------------------------------------------------------- /custom/music/lu1_world.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/lu1_world.mml -------------------------------------------------------------------------------- /custom/music/lu2_battle.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/lu2_battle.mml -------------------------------------------------------------------------------- /custom/music/lu2_boss.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/lu2_boss.mml -------------------------------------------------------------------------------- /custom/music/lu2_world.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/lu2_world.mml -------------------------------------------------------------------------------- /custom/music/met3_brain.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/met3_brain.mml -------------------------------------------------------------------------------- /custom/music/ng3_defeat.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ng3_defeat.mml -------------------------------------------------------------------------------- /custom/music/ob_battle.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ob_battle.mml -------------------------------------------------------------------------------- /custom/music/ot_oasis.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ot_oasis.mml -------------------------------------------------------------------------------- /custom/music/rd_summer.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/rd_summer.mml -------------------------------------------------------------------------------- /custom/music/rs1_battle.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/rs1_battle.mml -------------------------------------------------------------------------------- /custom/music/rs2_heroes.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/rs2_heroes.mml -------------------------------------------------------------------------------- /custom/music/rs3_devil2.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/rs3_devil2.mml -------------------------------------------------------------------------------- /custom/music/rs3_getpet.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/rs3_getpet.mml -------------------------------------------------------------------------------- /custom/music/rs3_gwain.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/rs3_gwain.mml -------------------------------------------------------------------------------- /custom/music/rs3_julian.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/rs3_julian.mml -------------------------------------------------------------------------------- /custom/music/rs3_sarah.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/rs3_sarah.mml -------------------------------------------------------------------------------- /custom/music/sd1s_boss.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/sd1s_boss.mml -------------------------------------------------------------------------------- /custom/music/sd1s_fate.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/sd1s_fate.mml -------------------------------------------------------------------------------- /custom/music/sd1s_field.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/sd1s_field.mml -------------------------------------------------------------------------------- /custom/music/sd2_8bells.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/sd2_8bells.mml -------------------------------------------------------------------------------- /custom/music/sd2_always.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/sd2_always.mml -------------------------------------------------------------------------------- /custom/music/sd2_angel.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/sd2_angel.mml -------------------------------------------------------------------------------- /custom/music/sd2_boss.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/sd2_boss.mml -------------------------------------------------------------------------------- /custom/music/sd2_city.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/sd2_city.mml -------------------------------------------------------------------------------- /custom/music/sd2_desert.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/sd2_desert.mml -------------------------------------------------------------------------------- /custom/music/sd2_dwarf.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/sd2_dwarf.mml -------------------------------------------------------------------------------- /custom/music/sd2_forest.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/sd2_forest.mml -------------------------------------------------------------------------------- /custom/music/sd2_forget.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/sd2_forget.mml -------------------------------------------------------------------------------- /custom/music/sd2_hope.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/sd2_hope.mml -------------------------------------------------------------------------------- /custom/music/sd2_jema.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/sd2_jema.mml -------------------------------------------------------------------------------- /custom/music/sd2_legend.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/sd2_legend.mml -------------------------------------------------------------------------------- /custom/music/sd2_lofty.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/sd2_lofty.mml -------------------------------------------------------------------------------- /custom/music/sd2_mana.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/sd2_mana.mml -------------------------------------------------------------------------------- /custom/music/sd2_popoi.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/sd2_popoi.mml -------------------------------------------------------------------------------- /custom/music/sd2_prayer.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/sd2_prayer.mml -------------------------------------------------------------------------------- /custom/music/sd2_rose.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/sd2_rose.mml -------------------------------------------------------------------------------- /custom/music/sd2_sea.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/sd2_sea.mml -------------------------------------------------------------------------------- /custom/music/sd2_spirit.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/sd2_spirit.mml -------------------------------------------------------------------------------- /custom/music/sd2_star.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/sd2_star.mml -------------------------------------------------------------------------------- /custom/music/sd2_steel.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/sd2_steel.mml -------------------------------------------------------------------------------- /custom/music/sd2_thick.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/sd2_thick.mml -------------------------------------------------------------------------------- /custom/music/sd2_town.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/sd2_town.mml -------------------------------------------------------------------------------- /custom/music/sd2_wish.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/sd2_wish.mml -------------------------------------------------------------------------------- /custom/music/sd3_angels.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/sd3_angels.mml -------------------------------------------------------------------------------- /custom/music/sd3_faith.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/sd3_faith.mml -------------------------------------------------------------------------------- /custom/music/sd3_final3.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/sd3_final3.mml -------------------------------------------------------------------------------- /custom/music/sd3_flight.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/sd3_flight.mml -------------------------------------------------------------------------------- /custom/music/sd3_mana.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/sd3_mana.mml -------------------------------------------------------------------------------- /custom/music/sd3_paths.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/sd3_paths.mml -------------------------------------------------------------------------------- /custom/music/sd3_sea.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/sd3_sea.mml -------------------------------------------------------------------------------- /custom/music/sd3_winter.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/sd3_winter.mml -------------------------------------------------------------------------------- /custom/music/sdlm_bonds.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/sdlm_bonds.mml -------------------------------------------------------------------------------- /custom/music/sdlm_pain.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/sdlm_pain.mml -------------------------------------------------------------------------------- /custom/music/sf2_balrog.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/sf2_balrog.mml -------------------------------------------------------------------------------- /custom/music/sf2_guile.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/sf2_guile.mml -------------------------------------------------------------------------------- /custom/music/sf2_ken.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/sf2_ken.mml -------------------------------------------------------------------------------- /custom/music/smrpg_road.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/smrpg_road.mml -------------------------------------------------------------------------------- /custom/music/smw_castle.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/smw_castle.mml -------------------------------------------------------------------------------- /custom/music/so2_kurik.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/so2_kurik.mml -------------------------------------------------------------------------------- /custom/music/so2_rescue.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/so2_rescue.mml -------------------------------------------------------------------------------- /custom/music/so2_world1.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/so2_world1.mml -------------------------------------------------------------------------------- /custom/music/spo_fight.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/spo_fight.mml -------------------------------------------------------------------------------- /custom/music/st_dungeon.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/st_dungeon.mml -------------------------------------------------------------------------------- /custom/music/top_cold.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/top_cold.mml -------------------------------------------------------------------------------- /custom/music/top_freeze.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/top_freeze.mml -------------------------------------------------------------------------------- /custom/music/top_mint.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/top_mint.mml -------------------------------------------------------------------------------- /custom/music/top_resur.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/top_resur.mml -------------------------------------------------------------------------------- /custom/music/top_spirit.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/top_spirit.mml -------------------------------------------------------------------------------- /custom/music/top_treant.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/top_treant.mml -------------------------------------------------------------------------------- /custom/music/top_world1.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/top_world1.mml -------------------------------------------------------------------------------- /custom/music/top_world3.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/top_world3.mml -------------------------------------------------------------------------------- /custom/music/totr_arrow.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/totr_arrow.mml -------------------------------------------------------------------------------- /custom/music/totr_ruins.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/totr_ruins.mml -------------------------------------------------------------------------------- /custom/music/totr_ship.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/totr_ship.mml -------------------------------------------------------------------------------- /custom/music/totr_sion.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/totr_sion.mml -------------------------------------------------------------------------------- /custom/music/totr_wind.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/totr_wind.mml -------------------------------------------------------------------------------- /custom/music/tyr_theme.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/tyr_theme.mml -------------------------------------------------------------------------------- /custom/music/wa_zed.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/wa_zed.mml -------------------------------------------------------------------------------- /custom/music/wc2_human1.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/wc2_human1.mml -------------------------------------------------------------------------------- /custom/music/wc2_orc1.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/wc2_orc1.mml -------------------------------------------------------------------------------- /custom/music/xc1_names.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/xc1_names.mml -------------------------------------------------------------------------------- /custom/music/xc1_valakn.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/xc1_valakn.mml -------------------------------------------------------------------------------- /custom/music/xc2_tantal.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/xc2_tantal.mml -------------------------------------------------------------------------------- /custom/music/xcx_sylvan.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/xcx_sylvan.mml -------------------------------------------------------------------------------- /custom/music/xg_boss.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/xg_boss.mml -------------------------------------------------------------------------------- /custom/music/xg_chuchu.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/xg_chuchu.mml -------------------------------------------------------------------------------- /custom/music/xg_flight.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/xg_flight.mml -------------------------------------------------------------------------------- /custom/music/xg_lahan.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/xg_lahan.mml -------------------------------------------------------------------------------- /custom/music/xg_mermaid.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/xg_mermaid.mml -------------------------------------------------------------------------------- /custom/music/xg_tears.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/xg_tears.mml -------------------------------------------------------------------------------- /custom/music/xg_weltall.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/xg_weltall.mml -------------------------------------------------------------------------------- /custom/music/ys1_wars.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ys1_wars.mml -------------------------------------------------------------------------------- /custom/music/ys3_house.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ys3_house.mml -------------------------------------------------------------------------------- /custom/music/ys3_time.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ys3_time.mml -------------------------------------------------------------------------------- /custom/music/ys3_wings.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ys3_wings.mml -------------------------------------------------------------------------------- /custom/music/ys4_danan.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ys4_danan.mml -------------------------------------------------------------------------------- /custom/music/ys8_idance.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/music/ys8_idance.mml -------------------------------------------------------------------------------- /custom/opera.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/opera.txt -------------------------------------------------------------------------------- /custom/opera/aria.mml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/custom/opera/aria.mml -------------------------------------------------------------------------------- /custom/opera/default_duel1.mml: -------------------------------------------------------------------------------- 1 | 2 | {5} 3 | l16'draco'p64%e1u1(>b4b4=5.14.1 -------------------------------------------------------------------------------- /shoprandomizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/shoprandomizer.py -------------------------------------------------------------------------------- /sillyclowns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/sillyclowns.py -------------------------------------------------------------------------------- /skillrandomizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/skillrandomizer.py -------------------------------------------------------------------------------- /sprite_replacement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/sprite_replacement.py -------------------------------------------------------------------------------- /strangejourney.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/strangejourney.py -------------------------------------------------------------------------------- /tables/battletext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/tables/battletext.txt -------------------------------------------------------------------------------- /tables/charcodes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/tables/charcodes.txt -------------------------------------------------------------------------------- /tables/charpaloptions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/tables/charpaloptions.txt -------------------------------------------------------------------------------- /tables/chestcodes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/tables/chestcodes.txt -------------------------------------------------------------------------------- /tables/commandcodes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/tables/commandcodes.txt -------------------------------------------------------------------------------- /tables/customitems.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/tables/customitems.txt -------------------------------------------------------------------------------- /tables/defaultsongs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/tables/defaultsongs.txt -------------------------------------------------------------------------------- /tables/dialoguetext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/tables/dialoguetext.txt -------------------------------------------------------------------------------- /tables/divergentedits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/tables/divergentedits.txt -------------------------------------------------------------------------------- /tables/enemycodes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/tables/enemycodes.txt -------------------------------------------------------------------------------- /tables/enemynames.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/tables/enemynames.txt -------------------------------------------------------------------------------- /tables/espercodes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/tables/espercodes.txt -------------------------------------------------------------------------------- /tables/eventpalettes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/tables/eventpalettes.txt -------------------------------------------------------------------------------- /tables/finalai.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/tables/finalai.txt -------------------------------------------------------------------------------- /tables/formationmusic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/tables/formationmusic.txt -------------------------------------------------------------------------------- /tables/generator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/tables/generator.txt -------------------------------------------------------------------------------- /tables/itemcodes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/tables/itemcodes.txt -------------------------------------------------------------------------------- /tables/locationmaps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/tables/locationmaps.txt -------------------------------------------------------------------------------- /tables/magicite.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/tables/magicite.txt -------------------------------------------------------------------------------- /tables/mapbattlebgs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/tables/mapbattlebgs.txt -------------------------------------------------------------------------------- /tables/mapnames.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/tables/mapnames.txt -------------------------------------------------------------------------------- /tables/menutext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/tables/menutext.txt -------------------------------------------------------------------------------- /tables/moves.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/tables/moves.txt -------------------------------------------------------------------------------- /tables/reachability.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/tables/reachability.txt -------------------------------------------------------------------------------- /tables/ridingsprites.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/tables/ridingsprites.txt -------------------------------------------------------------------------------- /tables/samples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/tables/samples.txt -------------------------------------------------------------------------------- /tables/shopcodes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/tables/shopcodes.txt -------------------------------------------------------------------------------- /tables/shorttext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/tables/shorttext.txt -------------------------------------------------------------------------------- /tables/skipevents.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/tables/skipevents.txt -------------------------------------------------------------------------------- /tables/spellbans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/tables/spellbans.txt -------------------------------------------------------------------------------- /tables/spellcodes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/tables/spellcodes.txt -------------------------------------------------------------------------------- /tables/text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/tables/text.txt -------------------------------------------------------------------------------- /tables/treasurerooms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/tables/treasurerooms.txt -------------------------------------------------------------------------------- /tables/unusedlocs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/tables/unusedlocs.txt -------------------------------------------------------------------------------- /tables/usedlocs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/tables/usedlocs.txt -------------------------------------------------------------------------------- /tables/wobeventbits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/tables/wobeventbits.txt -------------------------------------------------------------------------------- /testrun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/testrun.sh -------------------------------------------------------------------------------- /towerrandomizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/towerrandomizer.py -------------------------------------------------------------------------------- /unittests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/unittests.sh -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/utils.py -------------------------------------------------------------------------------- /wor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subtractionsoup/beyondchaos/HEAD/wor.py --------------------------------------------------------------------------------