├── .gitignore ├── Makefile ├── README.md ├── asm ├── bank_19.asm ├── bank_1C.asm ├── bank_32.asm ├── bank_34.asm └── bank_3B.asm ├── audio ├── bgm │ ├── music_20.asm │ ├── music_bamboovillage.asm │ ├── music_condor_cries.asm │ ├── music_condor_freed.asm │ ├── music_condor_room.asm │ ├── music_crypticrockvalley.asm │ ├── music_ending.asm │ ├── music_fileselect_feisproblem.asm │ ├── music_gaibara.asm │ ├── music_goldencity.asm │ ├── music_intro.asm │ ├── music_intro_bug_sounds.asm │ ├── music_intro_dream.asm │ ├── music_intro_koppa.asm │ ├── music_kobamivalley_opening.asm │ ├── music_monsterhouse.asm │ ├── music_mountainspiritcave1.asm │ ├── music_mountainspiritcave2.asm │ ├── music_mountaintoptown.asm │ ├── music_mountaintoptown_variants.asm │ ├── music_neburimine_cliffcavern.asm │ ├── music_oldcedarlinedroad.asm │ ├── music_pegasusvalley_mountaintopforest.asm │ ├── music_pekeji.asm │ ├── music_shop.asm │ ├── music_specialmonsterhouse.asm │ ├── music_stream.asm │ ├── music_tablemountain1-3.asm │ ├── music_tablemountain4_trials.asm │ ├── music_tablemountain5-6.asm │ ├── music_thief.asm │ ├── music_waterfallcave.asm │ ├── music_waterfallmarsh.asm │ ├── music_wind_illusionghostvalley.asm │ └── music_wind_opening.asm ├── brr_samples.asm ├── me │ ├── me_inn.asm │ ├── me_leaderboard.asm │ ├── me_level_up.asm │ ├── me_partner_joins.asm │ ├── me_suspend_game.asm │ └── me_wind.asm ├── samples │ ├── sample_0.brr │ ├── sample_0.brr.wav │ ├── sample_1.brr │ ├── sample_1.brr.wav │ ├── sample_10.brr │ ├── sample_10.brr.wav │ ├── sample_11.brr │ ├── sample_11.brr.wav │ ├── sample_12.brr │ ├── sample_12.brr.wav │ ├── sample_13.brr │ ├── sample_13.brr.wav │ ├── sample_14.brr │ ├── sample_14.brr.wav │ ├── sample_15.brr │ ├── sample_15.brr.wav │ ├── sample_17.brr │ ├── sample_17.brr.wav │ ├── sample_18.brr │ ├── sample_18.brr.wav │ ├── sample_19.brr │ ├── sample_19.brr.wav │ ├── sample_2.brr │ ├── sample_2.brr.wav │ ├── sample_20.brr │ ├── sample_20.brr.wav │ ├── sample_21.brr │ ├── sample_21.brr.wav │ ├── sample_22.brr │ ├── sample_22.brr.wav │ ├── sample_23.brr │ ├── sample_23.brr.wav │ ├── sample_24.brr │ ├── sample_24.brr.wav │ ├── sample_25.brr │ ├── sample_25.brr.wav │ ├── sample_26.brr │ ├── sample_26.brr.wav │ ├── sample_27.brr │ ├── sample_27.brr.wav │ ├── sample_28.brr │ ├── sample_28.brr.wav │ ├── sample_29.brr │ ├── sample_29.brr.wav │ ├── sample_3.brr │ ├── sample_3.brr.wav │ ├── sample_30.brr │ ├── sample_30.brr.wav │ ├── sample_31.brr │ ├── sample_31.brr.wav │ ├── sample_32.brr │ ├── sample_32.brr.wav │ ├── sample_33.brr │ ├── sample_33.brr.wav │ ├── sample_34.brr │ ├── sample_34.brr.wav │ ├── sample_35.brr │ ├── sample_35.brr.wav │ ├── sample_36.brr │ ├── sample_36.brr.wav │ ├── sample_37.brr │ ├── sample_37.brr.wav │ ├── sample_38.brr │ ├── sample_38.brr.wav │ ├── sample_39.brr │ ├── sample_39.brr.wav │ ├── sample_4.brr │ ├── sample_4.brr.wav │ ├── sample_40.brr │ ├── sample_40.brr.wav │ ├── sample_41.brr │ ├── sample_41.brr.wav │ ├── sample_42.brr │ ├── sample_42.brr.wav │ ├── sample_43.brr │ ├── sample_43.brr.wav │ ├── sample_44.brr │ ├── sample_44.brr.wav │ ├── sample_45.brr │ ├── sample_45.brr.wav │ ├── sample_46.brr │ ├── sample_46.brr.wav │ ├── sample_48.brr │ ├── sample_48.brr.wav │ ├── sample_49.brr │ ├── sample_49.brr.wav │ ├── sample_5.brr │ ├── sample_5.brr.wav │ ├── sample_50.brr │ ├── sample_50.brr.wav │ ├── sample_51.brr │ ├── sample_51.brr.wav │ ├── sample_52.brr │ ├── sample_52.brr.wav │ ├── sample_53.brr │ ├── sample_53.brr.wav │ ├── sample_54.brr │ ├── sample_54.brr.wav │ ├── sample_55.brr │ ├── sample_55.brr.wav │ ├── sample_56.brr │ ├── sample_56.brr.wav │ ├── sample_57.brr │ ├── sample_57.brr.wav │ ├── sample_58.brr │ ├── sample_58.brr.wav │ ├── sample_59.brr │ ├── sample_59.brr.wav │ ├── sample_6.brr │ ├── sample_6.brr.wav │ ├── sample_60.brr │ ├── sample_60.brr.wav │ ├── sample_7.brr │ ├── sample_7.brr.wav │ ├── sample_8.brr │ ├── sample_8.brr.wav │ ├── sample_9.brr │ ├── sample_9.brr.wav │ ├── sample_levelup_start_voice.brr │ └── sample_levelup_start_voice.brr.wav ├── se │ ├── sfx_285.asm │ ├── sfx_bird.asm │ ├── sfx_condor.asm │ ├── sfx_enemies.asm │ ├── sfx_group_1.asm │ ├── sfx_group_11.asm │ ├── sfx_group_13.asm │ ├── sfx_group_2.asm │ ├── sfx_group_3.asm │ ├── sfx_group_4.asm │ ├── sfx_group_5.asm │ ├── sfx_group_9.asm │ ├── sfx_item_get.asm │ ├── sfx_light_shining.asm │ ├── sfx_scrolls.asm │ ├── sfx_status_effects_herbs.asm │ └── sfx_traps.asm └── sound_data.asm ├── code.asm ├── code ├── ai │ ├── attack_ai.asm │ └── movement_ai.asm ├── bank_00.asm ├── bank_02.asm ├── bank_03.asm ├── bank_04.asm ├── bank_05.asm ├── bank_06.asm ├── bank_80.asm ├── bank_81.asm ├── dialogue.asm ├── graphics_decompress.asm ├── item_effects.asm ├── npc_events_script_manager.asm ├── random.asm └── sound.asm ├── constants ├── audio.asm ├── events.asm ├── items.asm ├── locations.asm ├── npc.asm ├── objects.asm └── text.asm ├── convert-brr.sh ├── data ├── areaTitleFontMap.tbl ├── bank32 │ ├── f20042.bin │ ├── f219b5.bin │ ├── f22844.bin │ ├── f238ad.bin │ ├── f249bf.bin │ ├── f25774.bin │ ├── f268e8.bin │ ├── f27937.bin │ ├── f288cf.bin │ ├── f29b45.bin │ ├── f2ad2d.bin │ ├── f2bf55.bin │ ├── f2d001.bin │ ├── f2e0e0.bin │ ├── f2f2f3.bin │ ├── f30434.bin │ ├── f3158c.bin │ ├── f32783.bin │ ├── f33af3.bin │ ├── f34ad8.bin │ ├── f35acb.bin │ └── f36426.bin ├── debug │ ├── build_strings_1.asm │ └── build_strings_2.asm ├── demos │ ├── demo1.bin │ ├── demo2.bin │ ├── demo3.bin │ ├── demo4.bin │ ├── demo5.bin │ ├── demo6.bin │ └── demos.asm ├── dungeon_enemy_spawn_tables.asm ├── dungeon_item_spawn_tables.asm ├── enemies │ └── stats.asm ├── items │ └── prices.asm ├── mainFontMap.tbl ├── maps │ ├── feis_problems.asm │ ├── feis_problems │ │ ├── chars.asm │ │ ├── items.asm │ │ ├── rooms.asm │ │ ├── stairs.asm │ │ ├── terrain.asm │ │ ├── traplists.asm │ │ └── traps.asm │ └── shuffle_floors.asm ├── npc_events_script.asm ├── player │ ├── level_exp_table.asm │ └── strength_stat_table.asm ├── unknown_data_bank3_c3a15f.asm ├── unknown_data_bank5_c50000.asm └── unknown_data_bank6_c68b84.asm ├── gfx ├── bg1 │ ├── condor.pal │ ├── f401e0.bin │ ├── f4023b.bin │ ├── f41d0c.bin │ ├── f41f91.bin │ ├── f422b0.bin │ ├── f422ed.bin │ ├── f44e61.bin │ ├── f44f7c.bin │ ├── f44ff5.bin │ ├── f474b0.bin │ ├── f4769c.bin │ ├── f476bb.bin │ ├── f49488.bin │ ├── f49676.bin │ ├── f496bd.bin │ ├── f496dc.bin │ ├── f4a359.bin │ ├── f4a754.bin │ ├── f4abea.bin │ ├── f4ac27.bin │ ├── f4bc44.bin │ ├── f4bfe1.bin │ ├── f4e2ca.bin │ ├── f4e325.bin │ ├── f4f061.bin │ ├── f51eb3.bin │ ├── f54db6.bin │ ├── f54df3.bin │ ├── f5563f.bin │ ├── f55682.bin │ ├── f559aa.bin │ ├── f55a23.bin │ ├── f59cf1.bin │ ├── f59e12.bin │ ├── f5a10a.bin │ ├── f5a1a1.bin │ ├── f5c8be.bin │ ├── f5ca66.bin │ ├── f5ccee.bin │ ├── f5cd67.bin │ ├── f601be.bin │ ├── f602a8.bin │ ├── f606d1.bin │ ├── f6072c.bin │ ├── f630cb.bin │ ├── f631ab.bin │ ├── f632f6.bin │ ├── f63315.bin │ ├── f6423d.bin │ ├── f64294.bin │ ├── f64858.bin │ ├── f6490d.bin │ ├── f655ec.bin │ ├── f6568d.bin │ ├── f6577e.bin │ ├── f67d87.bin │ ├── f67e15.bin │ ├── f67e8e.bin │ ├── f684fc.bin │ ├── f6857b.bin │ ├── f68630.bin │ ├── f6a870.bin │ ├── f6a8f4.bin │ ├── f6a913.bin │ ├── f6bbce.bin │ ├── f6bc53.bin │ ├── f6bc8e.bin │ ├── f6bccb.bin │ ├── f6cce7.bin │ ├── f6cd93.bin │ ├── f6ce9e.bin │ ├── f6cef9.bin │ ├── f700cb.bin │ ├── f70207.bin │ ├── f704a6.bin │ ├── f7053d.bin │ ├── f72bf4.bin │ ├── f72d5d.bin │ ├── f7318b.bin │ ├── f73204.bin │ ├── f757d3.bin │ ├── f75943.bin │ ├── f75c77.bin │ ├── f75cb4.bin │ ├── f78b91.bin │ ├── f78dd3.bin │ ├── f793c8.bin │ ├── f7dc61.bin │ ├── f7dd40.bin │ ├── f7f977.bin │ ├── f7f9b4.bin │ ├── f81d94.bin │ ├── f821bd.bin │ ├── f822ae.bin │ ├── f8406f.bin │ ├── f841b6.bin │ ├── f842e3.bin │ ├── f8659e.bin │ ├── f866e4.bin │ ├── f86703.bin │ ├── f88d25.bin │ ├── f88e10.bin │ ├── f8906e.bin │ ├── f890ab.bin │ ├── f8aa87.bin │ ├── f8ad82.bin │ ├── f8b0b1.bin │ ├── f8b0ee.bin │ ├── f8c495.bin │ ├── f8c4f2.bin │ ├── f8c7b0.bin │ ├── f8c919.bin │ ├── f903be.bin │ ├── f9049a.bin │ ├── f9072f.bin │ ├── f9074e.bin │ ├── f9323e.bin │ ├── f93383.bin │ ├── f938a7.bin │ ├── f9395c.bin │ ├── f95994.bin │ ├── f95acd.bin │ ├── f95b0a.bin │ ├── f98b7d.bin │ ├── f98bd7.bin │ ├── f9934e.bin │ ├── f993c7.bin │ ├── f9b3db.bin │ ├── f9b530.bin │ ├── f9b5c7.bin │ ├── f9ec26.bin │ ├── f9ee09.bin │ ├── f9f23d.bin │ ├── f9f27a.bin │ ├── fa24f6.bin │ ├── fa2637.bin │ ├── fa2923.bin │ ├── fa2942.bin │ ├── fa386d.bin │ ├── fa38e3.bin │ ├── fa3ea1.bin │ ├── fa3f56.bin │ ├── fa541d.bin │ ├── fa555d.bin │ ├── fa557c.bin │ └── fa5af1.bin ├── bg3 │ ├── dc1ad1.2bpp │ ├── dc24ce.bin │ ├── dc268e.bin │ ├── dc2892.2bpp │ ├── dc2a24.bin │ ├── dc2a64.2bpp │ ├── dc2bcb.bin │ ├── dc2bfe.2bpp │ ├── dc3501.bin │ ├── dc3611.2bpp │ ├── dc3821.bin │ ├── dc3a01.2bpp │ ├── dc3efd.bin │ ├── dc3fbf.2bpp │ ├── dc41d6.bin │ ├── dc45b8.bin │ ├── dc494b.2bpp │ ├── dc4eb3.bin │ ├── dc4ff2.2bpp │ ├── dc545f.bin │ ├── dc55a3.2bpp │ ├── dc59ad.bin │ ├── dc5ac4.2bpp │ ├── dc5dbf.bin │ ├── dc5e27.2bpp │ └── dc6797.bin ├── characters │ ├── airdevil │ │ ├── c9c983.right1.png │ │ ├── c9cac8.png │ │ ├── c9cc11.right1.png │ │ ├── c9cd5c.right2.png │ │ ├── c9ce91.png │ │ ├── c9cfb4.png │ │ ├── c9d0ed.png │ │ ├── c9d24a.png │ │ ├── c9d361.right7.png │ │ ├── c9d456.right2.png │ │ ├── c9d55b.png │ │ ├── c9d6da.right1.png │ │ ├── c9d895.right1.png │ │ ├── c9da56.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── babytank │ │ ├── d21683.right3.png │ │ ├── d217c8.right3.png │ │ ├── d21913.right3.png │ │ ├── d21a62.right3.png │ │ ├── d21bab.right3.png │ │ ├── d21cea.right3.png │ │ ├── d21e39.right2.png │ │ ├── d21f7e.right2.png │ │ ├── d220bd.right2.png │ │ ├── d22210.right1.png │ │ ├── d22361.right1.png │ │ ├── d224b0.right1.png │ │ ├── d22605.right2.png │ │ ├── d2274e.right2.png │ │ ├── d22899.right2.png │ │ ├── d229ec.right4.png │ │ ├── d22b33.right4.png │ │ ├── d22c76.right4.png │ │ ├── d22dc5.right2.png │ │ ├── d22f10.right2.png │ │ ├── d23061.right2.png │ │ ├── d231b8.right1.png │ │ ├── d2330d.right1.png │ │ ├── d2345c.right1.png │ │ ├── d235bb.right3.png │ │ ├── d2371a.png │ │ ├── d23897.right1.png │ │ ├── d23a04.right1.png │ │ ├── d23b85.right1.png │ │ ├── d23cfa.right3.png │ │ ├── d23e2f.left15.unkflag.png │ │ ├── d23f5b.right3.png │ │ ├── d2409a.right2.png │ │ ├── d241e7.right1.png │ │ ├── d2432e.right4.png │ │ ├── d24461.right3.png │ │ ├── d2457d.right4.png │ │ ├── d246b6.right4.png │ │ ├── d247eb.right2.png │ │ ├── d24932.right2.png │ │ ├── d24a7d.right1.png │ │ ├── d24bca.right1.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── bowboy │ │ ├── c7a743.png │ │ ├── c7a7fa.right4.png │ │ ├── c7a8c0.png │ │ ├── c7a973.right3.png │ │ ├── c7aa45.right2.png │ │ ├── c7ab29.right2.png │ │ ├── c7abfd.right2.png │ │ ├── c7ace3.right2.png │ │ ├── c7add1.right2.png │ │ ├── c7aea9.right4.png │ │ ├── c7af7b.right2.png │ │ ├── c7b055.right2.png │ │ ├── c7b12f.right2.png │ │ ├── c7b223.right2.png │ │ ├── c7b309.right2.png │ │ ├── c7b3d7.right2.png │ │ ├── c7b4a6.right2.png │ │ ├── c7b571.right3.png │ │ ├── c7b642.right3.png │ │ ├── c7b719.right3.png │ │ ├── c7b7f0.right3.png │ │ ├── c7b8d2.png │ │ ├── c7b9ef.right4.png │ │ ├── c7bad7.png │ │ ├── c7bbfa.right2.png │ │ ├── c7bcd8.png │ │ ├── c7bde8.right1.png │ │ ├── c7beca.png │ │ ├── c7c003.right2.png │ │ ├── c7c0df.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── cellarmor │ │ ├── cabf4f.right4.png │ │ ├── cac0be.right5.png │ │ ├── cac243.right4.png │ │ ├── cac3c8.png │ │ ├── cac58d.png │ │ ├── cac752.png │ │ ├── cac8f5.png │ │ ├── cacad0.png │ │ ├── cacca3.png │ │ ├── cace74.right1.png │ │ ├── cad029.right1.png │ │ ├── cad1d2.right2.png │ │ ├── cad363.right1.png │ │ ├── cad4e8.right1.png │ │ ├── cad653.png │ │ ├── cad7dc.png │ │ ├── cad997.png │ │ ├── cadb4e.png │ │ ├── cadd09.png │ │ ├── cadee6.png │ │ ├── cae0a5.png │ │ ├── cae26a.png │ │ ├── cae423.png │ │ ├── cae5d4.right1.png │ │ ├── cae785.right1.png │ │ ├── cae8e8.png │ │ ├── caea2d.png │ │ ├── caeb7c.png │ │ ├── caecb7.right1.png │ │ ├── caee02.png │ │ ├── caef81.png │ │ ├── caf12e.left8.unkflag.png │ │ ├── caf1c1.right2.png │ │ ├── caf34a.right2.png │ │ ├── caf4fb.left12.unkflag.png │ │ ├── caf5fd.right1.png │ │ ├── caf756.png │ │ ├── caf8df.right3.png │ │ ├── caf92a.png │ │ ├── cafaf1.png │ │ ├── cafc82.right13.png │ │ ├── cafcc5.png │ │ ├── cafe80.png │ │ ├── cb0033.right5.png │ │ ├── cb00c1.right1.png │ │ ├── cb021a.png │ │ ├── cb03ab.left8.unkflag.png │ │ ├── cb03e6.png │ │ ├── cb0585.right10.png │ │ ├── cb05e1.png │ │ ├── cb078c.png │ │ ├── cb07ff.right2.png │ │ ├── cb099a.right4.png │ │ ├── cb09cb.png │ │ ├── cb0b7e.png │ │ ├── cb0c07.png │ │ ├── cb0da8.right5.unkflag.png │ │ ├── cb0dd3.png │ │ ├── cb0f74.png │ │ ├── cb0fed.png │ │ ├── cb1184.right10.png │ │ ├── cb11ff.png │ │ ├── cb13ba.left12.unkflag.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── character_sprites.asm │ ├── character_sprites_pointer_table.asm │ ├── cursegirl │ │ ├── cedaa4.right2.png │ │ ├── cedbb0.right2.png │ │ ├── cedcb4.right1.png │ │ ├── ceddc8.right2.png │ │ ├── cedec4.right1.png │ │ ├── cedfc6.right2.png │ │ ├── cee0b4.right1.png │ │ ├── cee1cc.png │ │ ├── cee2dc.right2.png │ │ ├── cee3de.right3.png │ │ ├── cee4d6.right3.png │ │ ├── cee5c2.right3.png │ │ ├── cee6bc.right3.png │ │ ├── cee7ca.right2.png │ │ ├── cee8ea.right2.png │ │ ├── ceea00.right2.png │ │ ├── ceeb16.right2.png │ │ ├── ceec2a.right1.png │ │ ├── ceed4a.right1.png │ │ ├── ceee72.right2.png │ │ ├── ceef84.png │ │ ├── cef0a2.right2.png │ │ ├── cef1c0.right2.png │ │ ├── cef2de.right1.png │ │ ├── cef400.left15.unkflag.png │ │ ├── cef534.left14.unkflag.png │ │ ├── cef660.right2.png │ │ ├── cef7c7.right2.png │ │ ├── cef8ed.right2.png │ │ ├── cefa27.right1.png │ │ ├── cefb65.right2.png │ │ ├── cefcda.right2.png │ │ ├── cefe2f.left15.unkflag.png │ │ ├── ceff63.right6.png │ │ ├── cf0070.left15.unkflag.png │ │ ├── cf01a2.right2.png │ │ ├── cf02bc.left13.unkflag.png │ │ ├── cf03ba.right5.png │ │ ├── cf04eb.right1.png │ │ ├── cf060a.right3.png │ │ ├── cf0714.right2.png │ │ ├── cf0830.png │ │ ├── cf094d.right1.png │ │ ├── cf0a6f.png │ │ ├── cf0b9c.right2.png │ │ ├── cf0cbc.right1.png │ │ ├── cf0df5.right2.png │ │ ├── cf0f05.right1.png │ │ ├── cf1076.right1.png │ │ ├── cf11eb.right1.png │ │ ├── cf135c.right1.png │ │ ├── cf14cf.right1.png │ │ ├── cf165c.right1.png │ │ ├── cf17ef.png │ │ ├── cf195c.png │ │ ├── cf1ad3.right5.png │ │ ├── cf1c52.right5.png │ │ ├── cf1dd1.right1.png │ │ ├── cf1f76.right1.png │ │ ├── cf2117.png │ │ ├── cf22c0.png │ │ ├── cf2467.right1.png │ │ ├── cf2602.right1.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── darkowl │ │ ├── ccbe2f.png │ │ ├── ccbf94.png │ │ ├── ccc0e9.png │ │ ├── ccc24c.png │ │ ├── ccc3ab.png │ │ ├── ccc4ea.png │ │ ├── ccc627.right2.png │ │ ├── ccc792.png │ │ ├── ccc8ed.right4.png │ │ ├── ccca4a.right3.png │ │ ├── cccba7.right3.png │ │ ├── cccd14.right2.png │ │ ├── ccce9b.right1.png │ │ ├── ccd010.right1.png │ │ ├── ccd187.png │ │ ├── ccd322.png │ │ ├── ccd4b5.png │ │ ├── ccd64a.png │ │ ├── ccd7dd.png │ │ ├── ccd97e.png │ │ ├── ccdaeb.png │ │ ├── ccdc56.png │ │ ├── ccddb5.png │ │ ├── ccdf26.png │ │ ├── cce091.png │ │ ├── cce1f2.right3.png │ │ ├── cce357.right2.png │ │ ├── cce4e4.right1.png │ │ ├── cce653.png │ │ ├── cce7d8.png │ │ ├── cce93b.png │ │ ├── ccea9a.png │ │ ├── ccebf7.png │ │ ├── cced6c.right2.png │ │ ├── cceed7.png │ │ ├── ccf074.right4.png │ │ ├── ccf1cd.right2.png │ │ ├── ccf356.right2.png │ │ ├── ccf4d9.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── deadsoldier │ │ ├── cc0d34.png │ │ ├── cc0e96.right2.png │ │ ├── cc0fef.right3.png │ │ ├── cc113e.right2.png │ │ ├── cc12ab.right3.png │ │ ├── cc13f8.left14.unkflag.png │ │ ├── cc155c.right1.png │ │ ├── cc16df.right4.png │ │ ├── cc1834.right4.png │ │ ├── cc198f.right6.png │ │ ├── cc1aea.right6.png │ │ ├── cc1c4b.right3.png │ │ ├── cc1da3.right2.png │ │ ├── cc1ef6.right3.png │ │ ├── cc2036.right3.png │ │ ├── cc2190.left14.unkflag.png │ │ ├── cc22ce.left15.unkflag.png │ │ ├── cc23fe.left15.unkflag.png │ │ ├── cc253e.right2.png │ │ ├── cc269f.right2.png │ │ ├── cc27e6.right2.png │ │ ├── cc2941.right1.png │ │ ├── cc2a91.right3.png │ │ ├── cc2bd2.right5.png │ │ ├── cc2d29.png │ │ ├── cc2eaa.png │ │ ├── cc3029.png │ │ ├── cc31ba.png │ │ ├── cc3329.png │ │ ├── cc34b2.png │ │ ├── cc363d.right1.png │ │ ├── cc37de.png │ │ ├── cc3955.png │ │ ├── cc3af2.png │ │ ├── cc3c5d.png │ │ ├── cc3ddc.png │ │ ├── cc3f47.png │ │ ├── cc40ac.right1.png │ │ ├── cc422b.right5.png │ │ ├── cc438a.png │ │ ├── cc4515.png │ │ ├── cc46ae.right1.png │ │ ├── cc4831.right2.png │ │ ├── cc49d4.png │ │ ├── cc4b3f.png │ │ ├── cc4cce.right3.png │ │ ├── cc4e13.png │ │ ├── cc4f34.right9.png │ │ ├── cc4fb0.right3.png │ │ ├── cc5133.right1.png │ │ ├── cc5284.right6.png │ │ ├── cc5300.png │ │ ├── cc5463.right3.png │ │ ├── cc554d.right4.png │ │ ├── cc557e.png │ │ ├── cc56fb.right3.png │ │ ├── cc5818.left14.unkflag.png │ │ ├── cc58a4.png │ │ ├── cc5a09.right3.png │ │ ├── cc5b1f.right4.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── dragon │ │ ├── cb1434.png │ │ ├── cb15b3.png │ │ ├── cb173a.png │ │ ├── cb18a5.right1.png │ │ ├── cb1a34.right1.png │ │ ├── cb1bbd.right1.png │ │ ├── cb1d54.png │ │ ├── cb1f17.right2.png │ │ ├── cb20b8.right1.png │ │ ├── cb2269.right1.png │ │ ├── cb2408.right1.png │ │ ├── cb25b1.png │ │ ├── cb2730.png │ │ ├── cb28dd.right1.png │ │ ├── cb2aa2.png │ │ ├── cb2c5f.png │ │ ├── cb2e0c.png │ │ ├── cb2fc1.png │ │ ├── cb3180.png │ │ ├── cb3345.png │ │ ├── cb351a.png │ │ ├── cb36df.png │ │ ├── cb38aa.png │ │ ├── cb3a7b.png │ │ ├── cb3c4a.right1.png │ │ ├── cb3dff.png │ │ ├── cb3fd0.png │ │ ├── cb41a3.png │ │ ├── cb4348.png │ │ ├── cb44f1.png │ │ ├── cb4686.right1.png │ │ ├── cb4801.png │ │ ├── cb499a.png │ │ ├── cb4b43.right2.png │ │ ├── cb4cf6.png │ │ ├── cb4ea3.png │ │ ├── cb5068.png │ │ ├── cb524d.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── dremlas │ │ ├── d1675e.right1.png │ │ ├── d168f9.png │ │ ├── d16aae.right2.png │ │ ├── d16c41.png │ │ ├── d16e22.png │ │ ├── d16fe7.right1.png │ │ ├── d171ac.png │ │ ├── d17381.right1.png │ │ ├── d17540.right2.png │ │ ├── d17705.right3.png │ │ ├── d178be.right1.png │ │ ├── d17a89.png │ │ ├── d17c7e.png │ │ ├── d17e5b.right1.png │ │ ├── d18014.png │ │ ├── d181db.right1.png │ │ ├── d18384.right1.png │ │ ├── d18541.png │ │ ├── d1871c.png │ │ ├── d188cb.right2.png │ │ ├── d18a5e.left8.unkflag.png │ │ ├── d18a89.right2.png │ │ ├── d18c26.png │ │ ├── d18ddf.png │ │ ├── d18e12.right1.png │ │ ├── d18fcb.right1.png │ │ ├── d19190.right3.png │ │ ├── d191d1.png │ │ ├── d193a0.png │ │ ├── d1957f.right6.png │ │ ├── d195a6.png │ │ ├── d19791.png │ │ ├── d19972.right2.png │ │ ├── d19989.right1.png │ │ ├── d19b3e.right1.png │ │ ├── d19cf1.right1.png │ │ ├── d19e9e.right1.png │ │ ├── d1a051.png │ │ ├── d1a20a.png │ │ ├── d1a3d3.right1.png │ │ ├── d1a58a.right1.png │ │ ├── d1a73d.right1.png │ │ ├── d1a8f8.right1.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── eggthing │ │ ├── cd4b83.right2.png │ │ ├── cd4c8e.right2.png │ │ ├── cd4d99.right2.png │ │ ├── cd4eac.right1.png │ │ ├── cd4fb4.right2.png │ │ ├── cd50ae.png │ │ ├── cd51a8.right1.png │ │ ├── cd52ac.png │ │ ├── cd53b8.right1.png │ │ ├── cd54ca.right1.png │ │ ├── cd55cc.right1.png │ │ ├── cd56c4.right2.png │ │ ├── cd57c3.right2.png │ │ ├── cd58ee.right4.png │ │ ├── cd59fd.right1.png │ │ ├── cd5b0a.png │ │ ├── cd5c00.left13.unkflag.png │ │ ├── cd5d0a.right2.png │ │ ├── cd5e3b.left13.unkflag.png │ │ ├── cd5f0b.right1.png │ │ ├── cd5ff4.left14.unkflag.png │ │ ├── cd60f6.left13.unkflag.png │ │ ├── cd61f8.png │ │ ├── cd6300.right1.png │ │ ├── cd640c.png │ │ ├── cd6587.png │ │ ├── cd6724.png │ │ ├── cd689d.png │ │ ├── cd6a2e.right1.png │ │ ├── cd6bcb.right1.png │ │ ├── cd6d58.png │ │ ├── cd6eed.right1.png │ │ ├── cd7058.right1.png │ │ ├── cd715b.right1.png │ │ ├── cd7292.right2.png │ │ ├── cd73cf.right3.png │ │ ├── cd750a.right5.png │ │ ├── cd75fb.right1.png │ │ ├── cd772e.left14.unkflag.png │ │ ├── cd783e.right1.png │ │ ├── cd7932.right3.png │ │ ├── cd7a53.right1.png │ │ ├── cd7b8c.right1.png │ │ ├── cd7c89.right5.png │ │ ├── cd7da0.right1.png │ │ ├── cd7eb7.right2.png │ │ ├── cd7fe2.right3.png │ │ ├── cd80f3.png │ │ ├── cd8232.right3.png │ │ ├── cd8312.png │ │ ├── cd8407.left14.unkflag.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── evilsoldier │ │ ├── cbc5a5.right2.png │ │ ├── cbc6eb.right2.png │ │ ├── cbc823.right2.png │ │ ├── cbc95d.right2.png │ │ ├── cbcaf4.right1.png │ │ ├── cbcc75.right3.png │ │ ├── cbcde6.png │ │ ├── cbcf73.png │ │ ├── cbd0ec.png │ │ ├── cbd26d.right1.png │ │ ├── cbd3e8.right2.png │ │ ├── cbd547.png │ │ ├── cbd6c0.left15.unkflag.png │ │ ├── cbd812.left14.unkflag.png │ │ ├── cbd966.png │ │ ├── cbdaa6.png │ │ ├── cbdc41.png │ │ ├── cbddc2.right1.png │ │ ├── cbdf53.png │ │ ├── cbe0e8.png │ │ ├── cbe26f.png │ │ ├── cbe3ea.png │ │ ├── cbe577.png │ │ ├── cbe6f0.png │ │ ├── cbe863.png │ │ ├── cbe9c8.png │ │ ├── cbeb39.png │ │ ├── cbecba.png │ │ ├── cbee23.right4.png │ │ ├── cbef68.right4.png │ │ ├── cbf0ef.png │ │ ├── cbf2c0.png │ │ ├── cbf461.right2.png │ │ ├── cbf5d2.png │ │ ├── cbf77d.right3.png │ │ ├── cbf8ee.right1.png │ │ ├── cbfa85.png │ │ ├── cbfc06.png │ │ ├── cbfda7.png │ │ ├── cbff56.png │ │ ├── cc00b3.png │ │ ├── cc0232.right2.unkflag.png │ │ ├── cc027d.png │ │ ├── cc0422.png │ │ ├── cc05c1.right1.png │ │ ├── cc0766.right2.png │ │ ├── cc08cd.png │ │ ├── cc0a2e.right3.png │ │ ├── cc0bab.right1.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── fieldbandit │ │ ├── d1d9af.right3.png │ │ ├── d1dad3.right5.png │ │ ├── d1dc0c.right5.png │ │ ├── d1dd51.right1.png │ │ ├── d1de93.right2.png │ │ ├── d1e008.right2.png │ │ ├── d1e146.right2.png │ │ ├── d1e2d3.right3.png │ │ ├── d1e448.right3.png │ │ ├── d1e5bb.right3.png │ │ ├── d1e706.png │ │ ├── d1e81c.right3.png │ │ ├── d1e95f.right1.png │ │ ├── d1eacc.png │ │ ├── d1ec1f.right4.png │ │ ├── d1ed82.right1.png │ │ ├── d1eed1.right1.png │ │ ├── d1f056.png │ │ ├── d1f1ed.png │ │ ├── d1f356.png │ │ ├── d1f4e1.png │ │ ├── d1f630.png │ │ ├── d1f7dd.left13.unkflag.png │ │ ├── d1f933.png │ │ ├── d1face.png │ │ ├── d1fc24.right2.png │ │ ├── d1fda5.right1.png │ │ ├── d1fef3.png │ │ ├── d20092.png │ │ ├── d201e8.right1.png │ │ ├── d2037b.right4.png │ │ ├── d204b6.right7.png │ │ ├── d2060f.png │ │ ├── d20752.right2.png │ │ ├── d2086c.png │ │ ├── d209e3.png │ │ ├── d20b08.png │ │ ├── d20c6f.right5.png │ │ ├── d20d7c.png │ │ ├── d20f03.right5.png │ │ ├── d2102c.png │ │ ├── d21173.png │ │ ├── d212a2.right4.png │ │ ├── d213d9.png │ │ ├── d21566.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── floordragon │ │ ├── ce04f9.png │ │ ├── ce0658.png │ │ ├── ce07bf.png │ │ ├── ce0938.right1.png │ │ ├── ce0a9b.png │ │ ├── ce0c10.right2.png │ │ ├── ce0d87.png │ │ ├── ce0ed1.png │ │ ├── ce1017.png │ │ ├── ce1151.right3.png │ │ ├── ce12b4.right4.png │ │ ├── ce1429.right1.png │ │ ├── ce15aa.png │ │ ├── ce172f.right4.png │ │ ├── ce18b0.right4.png │ │ ├── ce1a07.right4.png │ │ ├── ce1b66.right1.png │ │ ├── ce1ca5.right1.png │ │ ├── ce1e04.right3.png │ │ ├── ce1f7d.right2.png │ │ ├── ce20e2.right1.png │ │ ├── ce224f.png │ │ ├── ce23ac.right1.png │ │ ├── ce2505.png │ │ ├── ce266a.right1.png │ │ ├── ce27c9.right1.png │ │ ├── ce290a.left8.unkflag.png │ │ ├── ce2973.png │ │ ├── ce2ad2.png │ │ ├── ce2c37.right4.png │ │ ├── ce2d2b.right2.png │ │ ├── ce2df3.right1.png │ │ ├── ce2f56.png │ │ ├── ce309a.right2.png │ │ ├── ce31c4.right1.png │ │ ├── ce323e.png │ │ ├── ce3388.right2.png │ │ ├── ce34e7.right3.png │ │ ├── ce364a.right2.png │ │ ├── ce37d7.png │ │ ├── ce38f6.right3.png │ │ ├── ce397c.right4.png │ │ ├── ce3af5.right4.png │ │ ├── ce3c62.right3.png │ │ ├── ce3dc7.right2.png │ │ ├── ce3ec8.right1.png │ │ ├── ce3f04.right3.png │ │ ├── ce3f40.right2.png │ │ ├── ce3f61.png │ │ ├── ce4043.png │ │ ├── ce4131.right4.png │ │ ├── ce4240.right4.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── fluffybunny │ │ ├── cb9d12.right3.png │ │ ├── cb9dff.png │ │ ├── cb9f40.right1.png │ │ ├── cba041.right5.png │ │ ├── cba120.right2.png │ │ ├── cba235.right4.png │ │ ├── cba30e.right3.png │ │ ├── cba3f5.right2.png │ │ ├── cba514.right3.png │ │ ├── cba5fb.left15.unkflag.png │ │ ├── cba6e7.png │ │ ├── cba824.left12.unkflag.png │ │ ├── cba90a.right1.png │ │ ├── cba9ff.right2.png │ │ ├── cbab22.right3.png │ │ ├── cbac45.right2.png │ │ ├── cbad44.right5.png │ │ ├── cbae43.right2.png │ │ ├── cbaf20.left14.unkflag.png │ │ ├── cbb006.right1.png │ │ ├── cbb109.right1.png │ │ ├── cbb230.right5.png │ │ ├── cbb326.right2.png │ │ ├── cbb40b.right2.png │ │ ├── cbb504.right4.png │ │ ├── cbb5f2.right5.png │ │ ├── cbb6c3.right3.png │ │ ├── cbb7a0.right2.png │ │ ├── cbb8bd.right2.png │ │ ├── cbb97e.png │ │ ├── cbba65.png │ │ ├── cbbb74.png │ │ ├── cbbc6b.left14.unkflag.png │ │ ├── cbbd2b.right2.png │ │ ├── cbbe4e.png │ │ ├── cbbf3b.right1.png │ │ ├── cbc012.right3.png │ │ ├── cbc143.right2.png │ │ ├── cbc262.right1.png │ │ ├── cbc373.right2.png │ │ ├── cbc494.right1.png │ │ ├── d2f2dd.right3.png │ │ ├── d2f3ca.png │ │ ├── d2f50b.right1.png │ │ ├── d2f60c.right5.png │ │ ├── d2f6eb.right2.png │ │ ├── d2f800.right4.png │ │ ├── d2f8d9.right3.png │ │ ├── d2f9c0.right2.png │ │ ├── d2fadf.right3.png │ │ ├── d2fbc6.left15.unkflag.png │ │ ├── d2fcb2.png │ │ ├── d2fdef.left12.unkflag.png │ │ ├── d2fed5.right1.png │ │ ├── d2ffca.right2.png │ │ ├── d300ed.right3.png │ │ ├── d30210.right2.png │ │ ├── d302f5.right5.png │ │ ├── d303c6.right2.png │ │ ├── d30483.left14.unkflag.png │ │ ├── d30543.right1.png │ │ ├── sprites.asm │ │ ├── sprites_2.asm │ │ ├── spritetable.asm │ │ └── spritetable_2.asm │ ├── foghermit │ │ ├── c82370.png │ │ ├── c82492.png │ │ ├── c825ae.right3.png │ │ ├── c826e3.png │ │ ├── c82817.right3.png │ │ ├── c82946.right3.png │ │ ├── c82a89.right3.png │ │ ├── c82bd8.right4.png │ │ ├── c82d07.right4.png │ │ ├── c82e34.right4.png │ │ ├── c82f7b.right3.png │ │ ├── c830b4.right4.png │ │ ├── c831d9.right3.png │ │ ├── c8332e.right4.png │ │ ├── c83457.right4.png │ │ ├── c8358e.png │ │ ├── c8373d.png │ │ ├── c83904.png │ │ ├── c83ae1.right1.png │ │ ├── c83c9e.png │ │ ├── c83e5d.right2.png │ │ ├── c83fb4.png │ │ ├── c8411f.png │ │ ├── c8424d.png │ │ ├── c843cc.right4.png │ │ ├── c84517.png │ │ ├── c84669.right3.png │ │ ├── c8480e.png │ │ ├── c8496f.png │ │ ├── c84ae8.right3.png │ │ ├── c84c2f.right1.png │ │ ├── c84d6f.right5.png │ │ ├── c84ee4.png │ │ ├── c85059.png │ │ ├── c851ea.png │ │ ├── c8537b.png │ │ ├── c8550e.right1.png │ │ ├── c85650.right5.png │ │ ├── c857c5.right3.png │ │ ├── c85940.png │ │ ├── c85aeb.right1.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── gather │ │ ├── c771d0.png │ │ ├── c7739b.png │ │ ├── c7756c.png │ │ ├── c7770f.png │ │ ├── c778a0.png │ │ ├── c77a3f.png │ │ ├── c77bd0.png │ │ ├── c77da5.png │ │ ├── c77f68.png │ │ ├── c7812d.png │ │ ├── c782e6.png │ │ ├── c7848b.png │ │ ├── c78634.png │ │ ├── c78821.png │ │ ├── c789ec.png │ │ ├── c78bb5.png │ │ ├── c78cf6.png │ │ ├── c78e43.png │ │ ├── c78fd6.png │ │ ├── c79101.png │ │ ├── c79248.png │ │ ├── c793f3.right2.png │ │ ├── c7958c.png │ │ ├── c79649.right3.png │ │ ├── c796bb.png │ │ ├── c7985e.png │ │ ├── c799bf.right4.png │ │ ├── c79a69.right6.png │ │ ├── c79aaa.png │ │ ├── c79c59.right2.png │ │ ├── c79dde.png │ │ ├── c79e98.right13.png │ │ ├── c79eab.png │ │ ├── c7a058.png │ │ ├── c7a1ed.left14.unkflag.png │ │ ├── c7a276.right10.png │ │ ├── c7a2ec.png │ │ ├── c7a4b9.png │ │ ├── c7a666.right3.png │ │ ├── c7a6ff.left12.unkflag.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── gaze │ │ ├── cf95d7.right4.png │ │ ├── cf971c.right1.png │ │ ├── cf9876.right1.png │ │ ├── cf99c8.png │ │ ├── cf9b06.right1.png │ │ ├── cf9c5c.right1.png │ │ ├── cf9dae.png │ │ ├── cf9ee8.right1.png │ │ ├── cfa02c.right1.png │ │ ├── cfa16e.png │ │ ├── cfa2ac.right1.png │ │ ├── cfa404.right1.png │ │ ├── cfa55a.png │ │ ├── cfa6a2.right1.png │ │ ├── cfa7f2.right1.png │ │ ├── cfa93e.png │ │ ├── cfaa93.png │ │ ├── cfabde.png │ │ ├── cfad1f.png │ │ ├── cfae7c.png │ │ ├── cfafc3.right5.png │ │ ├── cfb180.left12.unkflag.png │ │ ├── cfb2ae.right5.png │ │ ├── cfb467.png │ │ ├── cfb5ae.right3.png │ │ ├── cfb77b.left12.unkflag.png │ │ ├── cfb875.right3.png │ │ ├── cfba36.png │ │ ├── cfbb6f.png │ │ ├── cfbd60.right2.png │ │ ├── cfbe0f.right1.png │ │ ├── cfbff6.png │ │ ├── cfc0df.right2.png │ │ ├── cfc26e.png │ │ ├── cfc43f.png │ │ ├── cfc5d4.png │ │ ├── cfc7a5.right1.png │ │ ├── cfc962.right2.png │ │ ├── cfca15.right1.png │ │ ├── cfcbd2.png │ │ ├── cfccb9.png │ │ ├── cfce44.png │ │ ├── cfd003.png │ │ ├── cfd192.png │ │ ├── cfd33f.right1.png │ │ ├── cfd48f.right1.png │ │ ├── cfd5f3.right1.png │ │ ├── cfd656.right2.png │ │ ├── cfd715.png │ │ ├── cfd8a4.png │ │ ├── cfda53.png │ │ ├── cfdc12.png │ │ ├── cfdda3.png │ │ ├── cfdf5a.right1.png │ │ ├── cfe0b4.right2.png │ │ ├── cfe22b.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── ghostradish │ │ ├── ca6bcb.right2.png │ │ ├── ca6ce1.right2.png │ │ ├── ca6dff.right1.png │ │ ├── ca6f27.right1.png │ │ ├── ca7045.right2.png │ │ ├── ca7153.right1.png │ │ ├── ca7265.right1.png │ │ ├── ca7399.png │ │ ├── ca74c5.right1.png │ │ ├── ca75f9.right3.png │ │ ├── ca770d.right1.png │ │ ├── ca7835.right2.png │ │ ├── ca795d.right2.png │ │ ├── ca7a93.png │ │ ├── ca7bcb.right1.png │ │ ├── ca7d01.png │ │ ├── ca7e3a.right5.png │ │ ├── ca7ede.right2.png │ │ ├── ca7f86.png │ │ ├── ca8026.right5.png │ │ ├── ca80c8.right4.png │ │ ├── ca815e.right3.png │ │ ├── ca81ee.right5.png │ │ ├── ca8290.png │ │ ├── ca832e.right4.png │ │ ├── ca83c6.right3.png │ │ ├── ca8456.left13.unkflag.png │ │ ├── ca8562.right5.png │ │ ├── ca866c.left13.unkflag.png │ │ ├── ca8774.right4.png │ │ ├── ca8858.right2.png │ │ ├── ca8980.right3.png │ │ ├── ca8a80.right5.png │ │ ├── ca8b66.left13.unkflag.png │ │ ├── ca8c6e.right3.png │ │ ├── ca8d6e.png │ │ ├── d2e06e.right2.png │ │ ├── d2e184.right2.png │ │ ├── d2e2a2.right1.png │ │ ├── d2e3ca.right1.png │ │ ├── d2e4e8.right2.png │ │ ├── d2e5f6.right1.png │ │ ├── d2e708.right1.png │ │ ├── d2e83c.png │ │ ├── d2e968.right1.png │ │ ├── d2ea9c.right3.png │ │ ├── d2ebb0.right1.png │ │ ├── d2ecd8.right2.png │ │ ├── d2ee00.right2.png │ │ ├── d2ef36.png │ │ ├── d2f06e.right1.png │ │ ├── d2f1a4.png │ │ ├── sprites.asm │ │ ├── sprites_2.asm │ │ ├── spritetable.asm │ │ └── spritetable_2.asm │ ├── greenslime │ │ ├── c8a922.right3.png │ │ ├── c8aa14.right3.png │ │ ├── c8ab06.right3.png │ │ ├── c8abe4.right2.png │ │ ├── c8acf2.right2.png │ │ ├── c8ae00.right3.png │ │ ├── c8aeee.right1.png │ │ ├── c8b013.right3.png │ │ ├── c8b13c.right1.png │ │ ├── c8b253.right2.png │ │ ├── c8b370.right1.png │ │ ├── c8b491.right2.png │ │ ├── c8b5b6.right1.png │ │ ├── c8b6f5.right1.png │ │ ├── c8b82c.right2.png │ │ ├── c8b95d.right1.png │ │ ├── c8bb00.right1.png │ │ ├── c8bca9.png │ │ ├── c8be64.png │ │ ├── c8c02d.right1.png │ │ ├── c8c206.right1.png │ │ ├── c8c259.right4.png │ │ ├── c8c30b.png │ │ ├── c8c38c.png │ │ ├── c8c42e.png │ │ ├── c8c538.png │ │ ├── c8c67c.png │ │ ├── c8c7c6.png │ │ ├── c8c8c2.png │ │ ├── c8c94e.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── halfwarrior │ │ ├── cd8515.right4.png │ │ ├── cd864b.right4.png │ │ ├── cd877b.right4.png │ │ ├── cd889b.right3.png │ │ ├── cd8a0e.right2.png │ │ ├── cd8b81.right4.png │ │ ├── cd8cd6.png │ │ ├── cd8e77.png │ │ ├── cd9002.png │ │ ├── cd918b.right1.png │ │ ├── cd92e8.png │ │ ├── cd944b.right1.png │ │ ├── cd95a0.left15.unkflag.png │ │ ├── cd96ec.left14.unkflag.png │ │ ├── cd982e.right1.png │ │ ├── cd996e.right1.png │ │ ├── cd9adb.left15.unkflag.png │ │ ├── cd9c21.png │ │ ├── cd9d8e.png │ │ ├── cd9f1f.right1.png │ │ ├── cda09c.png │ │ ├── cda217.right5.png │ │ ├── cda364.right2.png │ │ ├── cda48a.right4.png │ │ ├── cda5f3.right1.png │ │ ├── cda7a8.png │ │ ├── cda90b.png │ │ ├── cdaaac.png │ │ ├── cdac39.png │ │ ├── cdadd4.png │ │ ├── cdaf47.png │ │ ├── cdb0cc.right2.png │ │ ├── cdb26b.png │ │ ├── cdb3d4.png │ │ ├── cdb557.png │ │ ├── cdb6d0.png │ │ ├── cdb839.png │ │ ├── cdb9b0.png │ │ ├── cdbacd.png │ │ ├── cdbc5a.png │ │ ├── cdbdc3.right1.png │ │ ├── cdbf32.png │ │ ├── cdc0b1.right6.png │ │ ├── cdc1f2.png │ │ ├── cdc373.png │ │ ├── cdc4e8.png │ │ ├── cdc685.png │ │ ├── cdc810.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── hen │ │ ├── cca2f6.right2.png │ │ ├── cca3a8.right2.png │ │ ├── cca4a1.right3.png │ │ ├── cca566.right2.png │ │ ├── cca618.right2.png │ │ ├── cca70f.right2.png │ │ ├── cca7d9.right3.png │ │ ├── cca89f.right3.png │ │ ├── cca99a.right3.png │ │ ├── ccaa60.right2.png │ │ ├── ccab16.right4.png │ │ ├── ccabfb.right3.png │ │ ├── ccacb5.right3.png │ │ ├── ccad57.right3.png │ │ ├── ccae2a.right3.png │ │ ├── ccaec4.right3.png │ │ ├── ccafdd.png │ │ ├── ccb110.left15.unkflag.png │ │ ├── ccb224.left14.unkflag.png │ │ ├── ccb34e.right3.png │ │ ├── ccb47b.png │ │ ├── ccb547.right5.png │ │ ├── ccb674.right3.png │ │ ├── ccb750.right4.png │ │ ├── ccb891.right3.png │ │ ├── ccb959.right3.png │ │ ├── ccba72.right4.png │ │ ├── ccbb44.png │ │ ├── ccbc69.right3.png │ │ ├── ccbd31.left12.unkflag.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── inferno │ │ ├── c85c78.right1.png │ │ ├── c85e07.png │ │ ├── c85fbe.right1.png │ │ ├── c86197.right2.png │ │ ├── c8635c.right2.png │ │ ├── c864f3.right2.png │ │ ├── c8669a.png │ │ ├── c86881.png │ │ ├── c86a36.png │ │ ├── c86bd5.right2.png │ │ ├── c86d94.right1.png │ │ ├── c86f31.right1.png │ │ ├── c870ca.right3.png │ │ ├── c8725d.png │ │ ├── c873e8.right1.png │ │ ├── c875a3.right1.png │ │ ├── c87762.right1.png │ │ ├── c8790f.png │ │ ├── c87aac.png │ │ ├── c87c85.png │ │ ├── c87e5a.png │ │ ├── c8800d.png │ │ ├── c881ba.png │ │ ├── c88361.right1.png │ │ ├── c884fa.right3.png │ │ ├── c88613.png │ │ ├── c88740.right2.png │ │ ├── c88887.png │ │ ├── c889b4.png │ │ ├── c88af5.right2.png │ │ ├── c88c3a.right4.png │ │ ├── c88d84.png │ │ ├── c88eaf.right3.png │ │ ├── c89050.png │ │ ├── c8921f.png │ │ ├── c8933c.right1.png │ │ ├── c894d3.right1.png │ │ ├── c8969c.png │ │ ├── c897e9.png │ │ ├── c899b4.png │ │ ├── c89ae5.left12.unkflag.png │ │ ├── c89c39.right2.png │ │ ├── c89db6.right3.png │ │ ├── c89f27.png │ │ ├── c8a0c2.png │ │ ├── c8a1ef.right2.png │ │ ├── c8a38a.png │ │ ├── c8a575.png │ │ ├── c8a65c.right4.png │ │ ├── c8a7d9.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── ironhead │ │ ├── ca055d.right3.png │ │ ├── ca0710.right3.png │ │ ├── ca08dd.right2.png │ │ ├── ca0aa0.right1.png │ │ ├── ca0c63.png │ │ ├── ca0e0e.png │ │ ├── ca0fcb.png │ │ ├── ca11a8.png │ │ ├── ca138f.png │ │ ├── ca156a.png │ │ ├── ca173d.png │ │ ├── ca190a.right1.png │ │ ├── ca1acb.png │ │ ├── ca1c94.png │ │ ├── ca1e5b.png │ │ ├── ca201a.right1.png │ │ ├── ca21ff.png │ │ ├── ca23d4.png │ │ ├── ca25a7.png │ │ ├── ca2790.png │ │ ├── ca296b.png │ │ ├── ca2b48.png │ │ ├── ca2d21.png │ │ ├── ca2eec.right2.png │ │ ├── ca30ad.png │ │ ├── ca3290.png │ │ ├── ca346d.png │ │ ├── ca3646.png │ │ ├── ca382b.png │ │ ├── ca3a06.png │ │ ├── ca3be7.png │ │ ├── ca3dc6.png │ │ ├── ca3f89.png │ │ ├── ca4086.png │ │ ├── ca4249.png │ │ ├── ca4404.png │ │ ├── ca452d.right7.png │ │ ├── ca4667.png │ │ ├── ca483e.png │ │ ├── ca4a0b.png │ │ ├── ca4b28.right2.png │ │ ├── ca4b8a.png │ │ ├── ca4d4b.right2.png │ │ ├── ca4e54.png │ │ ├── ca4fe3.right8.png │ │ ├── ca5090.png │ │ ├── ca524b.right1.png │ │ ├── ca535a.right2.png │ │ ├── ca54fd.png │ │ ├── ca56ca.png │ │ ├── ca5811.right5.png │ │ ├── ca58ca.png │ │ ├── ca5a9d.png │ │ ├── ca5c76.png │ │ ├── ca5dbf.png │ │ ├── ca5ec4.png │ │ ├── ca60a1.png │ │ ├── ca6270.png │ │ ├── ca63a1.png │ │ ├── ca657a.right1.png │ │ ├── ca6605.png │ │ ├── ca673c.png │ │ ├── ca68a7.png │ │ ├── ca6a72.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── items │ │ ├── d24cff.png │ │ ├── d24d6a.png │ │ ├── d24dc1.right1.png │ │ ├── d24e38.png │ │ ├── d24eaf.png │ │ ├── d24f2e.png │ │ ├── d24f93.png │ │ ├── d25014.right1.png │ │ ├── d25097.png │ │ ├── d25114.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── kigny │ │ ├── c93a1c.left15.unkflag.png │ │ ├── c93b44.left14.unkflag.png │ │ ├── c93c76.right1.png │ │ ├── c93da1.right3.png │ │ ├── c93f1c.right3.png │ │ ├── c940a3.right3.png │ │ ├── c94204.png │ │ ├── c943a5.png │ │ ├── c94538.right1.png │ │ ├── c946b5.right3.png │ │ ├── c94828.right2.png │ │ ├── c949a3.right4.png │ │ ├── c94ae6.right2.png │ │ ├── c94c00.right2.png │ │ ├── c94d32.right6.png │ │ ├── c94e5f.right1.png │ │ ├── c94ff4.right1.png │ │ ├── c9519f.right3.png │ │ ├── c95320.png │ │ ├── c954d7.png │ │ ├── c95692.png │ │ ├── c95841.right3.png │ │ ├── c959c2.right1.png │ │ ├── c95b4d.png │ │ ├── c95cd2.png │ │ ├── c95e2d.right1.png │ │ ├── c95f9c.png │ │ ├── c96123.right1.png │ │ ├── c96286.right3.png │ │ ├── c963c9.right1.png │ │ ├── c9655c.png │ │ ├── c966d7.png │ │ ├── c96854.right1.png │ │ ├── c969b9.right1.png │ │ ├── c96b24.right6.png │ │ ├── c96bd5.right4.png │ │ ├── c96d0e.right3.png │ │ ├── c96e75.left12.unkflag.png │ │ ├── c96f09.png │ │ ├── c97070.png │ │ ├── c971cd.right4.png │ │ ├── c9726d.right3.png │ │ ├── c97382.png │ │ ├── c974db.right5.png │ │ ├── c9757d.right5.png │ │ ├── c976b4.png │ │ ├── c97831.png │ │ ├── c97972.right1.png │ │ ├── c97b09.right4.png │ │ ├── c97ba9.png │ │ ├── c97d1e.png │ │ ├── c97eb7.left12.unkflag.png │ │ ├── c97f95.right1.png │ │ ├── c98102.right4.png │ │ ├── c9827b.left13.unkflag.png │ │ ├── c9832b.left14.unkflag.png │ │ ├── c98455.right1.png │ │ ├── c985ca.right1.png │ │ ├── c9873d.right3.png │ │ ├── c98884.right6.png │ │ ├── c989af.right4.png │ │ ├── c98b26.png │ │ ├── c98cc1.right1.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── knifegator │ │ ├── ccf662.right4.png │ │ ├── ccf809.png │ │ ├── ccf9b4.png │ │ ├── ccfb69.right3.png │ │ ├── ccfd0c.png │ │ ├── ccfea3.right4.png │ │ ├── cd002e.png │ │ ├── cd01ed.png │ │ ├── cd0374.png │ │ ├── cd04ff.png │ │ ├── cd06ac.png │ │ ├── cd085d.png │ │ ├── cd0a02.png │ │ ├── cd0bdf.png │ │ ├── cd0db6.png │ │ ├── cd0f8b.png │ │ ├── cd1158.png │ │ ├── cd1309.right3.png │ │ ├── cd14a2.png │ │ ├── cd1655.right1.png │ │ ├── cd181c.right2.png │ │ ├── cd19b7.right2.png │ │ ├── cd1b00.right2.png │ │ ├── cd1b78.left12.unkflag.png │ │ ├── cd1bf6.right1.png │ │ ├── cd1d75.right1.png │ │ ├── cd1ef2.right2.png │ │ ├── cd1f83.left8.unkflag.png │ │ ├── cd1fc0.right2.png │ │ ├── cd2147.png │ │ ├── cd230c.right1.png │ │ ├── cd236b.right2.png │ │ ├── cd23bb.png │ │ ├── cd2560.png │ │ ├── cd26a3.png │ │ ├── cd275c.right12.png │ │ ├── cd27e3.png │ │ ├── cd29aa.png │ │ ├── cd2b73.png │ │ ├── cd2be2.right2.png │ │ ├── cd2c4b.right2.png │ │ ├── cd2de8.right2.png │ │ ├── cd2f6d.right1.png │ │ ├── cd2fdb.left8.unkflag.png │ │ ├── cd305a.right1.png │ │ ├── cd31e7.right1.png │ │ ├── cd3372.left9.unkflag.png │ │ ├── cd33a3.left12.unkflag.png │ │ ├── cd33f1.right1.png │ │ ├── cd358e.png │ │ ├── cd3727.right13.png │ │ ├── cd377a.right8.png │ │ ├── cd37f8.right1.png │ │ ├── cd3981.right1.png │ │ ├── cd3b0e.left8.unkflag.png │ │ ├── cd3b35.left10.unkflag.png │ │ ├── cd3bc4.png │ │ ├── cd3d55.png │ │ ├── cd3ed0.right3.png │ │ ├── cd3f34.right11.png │ │ ├── cd3fe5.right1.png │ │ ├── cd4186.png │ │ ├── cd42fb.right11.png │ │ ├── cd435a.right4.png │ │ ├── cd4375.png │ │ ├── cd453a.png │ │ ├── cd46ed.left8.unkflag.png │ │ ├── cd4720.right4.png │ │ ├── cd4768.png │ │ ├── cd4903.png │ │ ├── cd4a8e.right8.png │ │ ├── cd4afb.right2.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── koppa │ │ ├── d7e2b5.png │ │ ├── d7e365.png │ │ ├── d7e41e.png │ │ ├── d7e4b9.png │ │ ├── d7e550.right1.png │ │ ├── d7e5f7.right1.png │ │ ├── d7e6a6.png │ │ ├── d7e767.right1.png │ │ ├── d7e818.png │ │ ├── d7e8d3.png │ │ ├── d7e97c.png │ │ ├── d7ea2f.png │ │ ├── d7eaea.right1.png │ │ ├── d7eb93.right1.png │ │ ├── d7ec3c.png │ │ ├── d7ecff.png │ │ ├── d7ed92.right4.png │ │ ├── d7ee10.right4.png │ │ ├── d7ee88.right4.png │ │ ├── d7ef1a.right1.png │ │ ├── d7efa8.png │ │ ├── d7f03e.right1.png │ │ ├── d7f0cc.png │ │ ├── d7f168.png │ │ ├── d7f20c.right1.png │ │ ├── d7f2c7.png │ │ ├── d7f344.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── leechworm │ │ ├── ca8e9a.right2.png │ │ ├── ca8f94.right2.png │ │ ├── ca908e.right2.png │ │ ├── ca9196.right2.png │ │ ├── ca92a6.right2.png │ │ ├── ca93a6.right2.png │ │ ├── ca94ba.right2.png │ │ ├── ca95d9.right2.png │ │ ├── ca96ee.png │ │ ├── ca980a.right1.png │ │ ├── ca991e.right1.png │ │ ├── ca9a2e.right2.png │ │ ├── ca9b40.right2.png │ │ ├── ca9c5f.right2.png │ │ ├── ca9d72.png │ │ ├── ca9e8e.png │ │ ├── ca9fe4.right1.png │ │ ├── caa13a.right1.png │ │ ├── caa298.png │ │ ├── caa3f8.right1.png │ │ ├── caa550.right2.png │ │ ├── caa6a7.png │ │ ├── caa816.right5.png │ │ ├── caa93b.right2.png │ │ ├── caaa7e.right2.png │ │ ├── caaba5.png │ │ ├── caacf7.png │ │ ├── caae3c.png │ │ ├── caafc9.png │ │ ├── cab12b.right3.png │ │ ├── cab245.png │ │ ├── cab356.png │ │ ├── cab483.png │ │ ├── cab5ee.right1.png │ │ ├── cab771.right1.png │ │ ├── cab8b1.png │ │ ├── cab9fb.right3.png │ │ ├── cabb46.right2.png │ │ ├── cabccd.right2.png │ │ ├── cabdfd.right1.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── mamel │ │ ├── c70000.left13.unkflag.png │ │ ├── c700ac.right4.png │ │ ├── c70172.right1.png │ │ ├── c7020c.png │ │ ├── c702bc.right4.png │ │ ├── c7035e.right1.png │ │ ├── c703f4.png │ │ ├── c7047b.png │ │ ├── c70526.png │ │ ├── c705a9.right4.png │ │ ├── c70657.right2.png │ │ ├── c706fd.right2.png │ │ ├── c7079b.png │ │ ├── c70826.png │ │ ├── c708d1.png │ │ ├── c70970.png │ │ ├── c70a2d.right2.png │ │ ├── c70ad8.right1.png │ │ ├── c70b80.right5.png │ │ ├── c70c51.right2.png │ │ ├── c70cf7.right4.png │ │ ├── c70da9.left15.unkflag.png │ │ ├── c70e3f.right3.png │ │ ├── c70ed7.right1.png │ │ ├── c70f65.png │ │ ├── c71006.right3.png │ │ ├── c7108a.right3.png │ │ ├── c7111e.right2.png │ │ ├── c711c4.right1.png │ │ ├── c71264.png │ │ ├── c71307.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── masterhen │ │ ├── cc5b70.right2.png │ │ ├── cc5d01.right3.png │ │ ├── cc5e94.png │ │ ├── cc603d.png │ │ ├── cc61f0.png │ │ ├── cc638b.right2.png │ │ ├── cc652e.png │ │ ├── cc66e5.png │ │ ├── cc6892.png │ │ ├── cc6a41.png │ │ ├── cc6bf4.right1.png │ │ ├── cc6da5.right1.png │ │ ├── cc6f44.right1.png │ │ ├── cc70ef.png │ │ ├── cc72aa.png │ │ ├── cc744b.png │ │ ├── cc75f6.png │ │ ├── cc77a7.png │ │ ├── cc795e.png │ │ ├── cc7b11.png │ │ ├── cc7cd0.png │ │ ├── cc7eab.right1.png │ │ ├── cc8076.left8.unkflag.png │ │ ├── cc80b7.png │ │ ├── cc8260.left8.unkflag.png │ │ ├── cc8311.png │ │ ├── cc84a2.left9.unkflag.png │ │ ├── cc8547.png │ │ ├── cc86f6.left14.unkflag.png │ │ ├── cc87a3.png │ │ ├── cc896e.right11.png │ │ ├── cc89c8.png │ │ ├── cc8b7d.right7.png │ │ ├── cc8bf4.png │ │ ├── cc8da9.right7.png │ │ ├── cc8e18.right2.png │ │ ├── cc8fa3.png │ │ ├── cc9040.png │ │ ├── cc91eb.left8.unkflag.png │ │ ├── cc924c.png │ │ ├── cc93f7.left8.unkflag.png │ │ ├── cc94ac.right13.png │ │ ├── cc9553.png │ │ ├── cc971c.right13.png │ │ ├── cc97d1.png │ │ ├── cc9990.png │ │ ├── cc9b55.left9.unkflag.png │ │ ├── cc9b98.png │ │ ├── cc9d2d.png │ │ ├── cc9e42.right14.png │ │ ├── cc9ecd.png │ │ ├── cca078.png │ │ ├── cca237.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── mecharoid │ │ ├── d126f5.right2.png │ │ ├── d12829.right6.png │ │ ├── d12988.right6.png │ │ ├── d12ad5.right6.png │ │ ├── d12c36.right5.png │ │ ├── d12d7b.png │ │ ├── d12ef6.right1.png │ │ ├── d130a9.png │ │ ├── d13236.png │ │ ├── d133d1.png │ │ ├── d1352a.left14.unkflag.png │ │ ├── d1365e.right1.png │ │ ├── d137c1.png │ │ ├── d1393e.png │ │ ├── d13aaf.png │ │ ├── d13c3c.right1.png │ │ ├── d13db9.right1.png │ │ ├── d13f2c.png │ │ ├── d140d5.png │ │ ├── d14298.png │ │ ├── d14471.png │ │ ├── d14622.png │ │ ├── d147e1.right2.png │ │ ├── d14942.right1.png │ │ ├── d14a9b.left12.unkflag.png │ │ ├── d14b85.png │ │ ├── d14cdc.png │ │ ├── d14e47.right5.png │ │ ├── d14f2e.png │ │ ├── d150c5.png │ │ ├── d15254.right2.png │ │ ├── d15363.right3.png │ │ ├── d154e0.png │ │ ├── d1565b.left12.unkflag.png │ │ ├── d1571b.png │ │ ├── d158a4.png │ │ ├── d15a39.right2.png │ │ ├── d15b2a.right7.png │ │ ├── d15c6d.right7.png │ │ ├── d15d9e.left12.unkflag.png │ │ ├── d15ebc.left12.unkflag.png │ │ ├── d15fd6.right3.png │ │ ├── d16119.right3.png │ │ ├── d16242.right1.png │ │ ├── d16376.right2.png │ │ ├── d164a4.right2.png │ │ ├── d16605.right2.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── minirobber │ │ ├── d25197.left15.unkflag.png │ │ ├── d252db.left15.unkflag.png │ │ ├── d2540b.left15.unkflag.png │ │ ├── d25541.right2.png │ │ ├── d2568f.right1.png │ │ ├── d257d7.right1.png │ │ ├── d25915.right3.png │ │ ├── d25a86.png │ │ ├── d25bd0.right3.png │ │ ├── d25d3b.png │ │ ├── d25e89.left15.unkflag.png │ │ ├── d25fcf.png │ │ ├── d2610b.right2.png │ │ ├── d26247.right2.png │ │ ├── d2637b.right2.png │ │ ├── d264b3.right1.png │ │ ├── d265f9.png │ │ ├── d2672b.right1.png │ │ ├── d26861.right2.png │ │ ├── d269c2.right3.png │ │ ├── d26b0b.right2.png │ │ ├── d26c5a.right1.png │ │ ├── d26da4.right1.png │ │ ├── d26ed2.right1.png │ │ ├── d2700c.png │ │ ├── d27177.png │ │ ├── d27304.png │ │ ├── d27489.png │ │ ├── d27618.right1.png │ │ ├── d27787.png │ │ ├── d278e4.png │ │ ├── d27a61.right2.png │ │ ├── d27bb6.png │ │ ├── d27cf9.png │ │ ├── d27e50.png │ │ ├── d27f8f.png │ │ ├── d280f8.png │ │ ├── d28267.png │ │ ├── d283b6.right4.png │ │ ├── d28515.right1.png │ │ ├── d2868a.right6.png │ │ ├── d287e1.png │ │ ├── d28938.right3.png │ │ ├── d28a85.png │ │ ├── d28bd8.png │ │ ├── d28d4f.right4.png │ │ ├── d28e84.png │ │ ├── d28fc3.right2.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── nduba │ │ ├── c9dbf1.png │ │ ├── c9dce6.right1.png │ │ ├── c9ddcd.right4.png │ │ ├── c9dec9.right3.png │ │ ├── c9e024.right3.png │ │ ├── c9e181.right2.png │ │ ├── c9e2da.right2.png │ │ ├── c9e437.right3.png │ │ ├── c9e57c.right1.png │ │ ├── c9e6e7.right3.png │ │ ├── c9e842.right3.png │ │ ├── c9e9a3.right1.png │ │ ├── c9eaf0.right2.png │ │ ├── c9ec51.right2.png │ │ ├── c9eda8.right1.png │ │ ├── c9ef17.right2.png │ │ ├── c9f05e.right4.png │ │ ├── c9f1d9.png │ │ ├── c9f372.right4.png │ │ ├── c9f4ef.png │ │ ├── c9f692.right1.png │ │ ├── c9f7d1.png │ │ ├── c9f946.right1.png │ │ ├── c9fa9c.png │ │ ├── c9fc2d.right2.png │ │ ├── c9fd62.right1.png │ │ ├── c9ff0f.right3.png │ │ ├── ca006e.png │ │ ├── ca0219.right2.png │ │ ├── ca0390.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── npc1 │ │ ├── d3061a.left15.unkflag.png │ │ ├── d3076a.right2.png │ │ ├── d308c5.right2.png │ │ ├── d30a48.png │ │ ├── d30bd3.png │ │ ├── d30d50.right3.png │ │ ├── d30ec7.png │ │ ├── d31088.right2.png │ │ ├── d31217.png │ │ ├── d313b6.right2.png │ │ ├── d31553.right3.png │ │ ├── d316ac.png │ │ ├── d31833.right1.png │ │ ├── d319c6.png │ │ ├── d31b6d.right4.png │ │ ├── d31ce4.right1.png │ │ ├── d31e99.png │ │ ├── d32042.png │ │ ├── d321f1.png │ │ ├── d323c8.png │ │ ├── d32595.png │ │ ├── d32764.png │ │ ├── d3292b.right4.png │ │ ├── d32ac6.right1.png │ │ ├── d32c69.right1.png │ │ ├── d32e10.png │ │ ├── d32fe1.png │ │ ├── d331a2.png │ │ ├── d33361.right3.png │ │ ├── d33506.png │ │ ├── d336bd.png │ │ ├── d3389e.png │ │ ├── d33a63.png │ │ ├── d33c4a.right10.png │ │ ├── d33ccd.png │ │ ├── d33e70.left8.unkflag.png │ │ ├── d33ecd.png │ │ ├── d3408a.right1.png │ │ ├── d340e5.right2.png │ │ ├── d3425c.png │ │ ├── d342d9.right1.png │ │ ├── d34474.png │ │ ├── d345dd.right4.png │ │ ├── d3461c.png │ │ ├── d347cf.left8.unkflag.png │ │ ├── d34802.png │ │ ├── d349b5.left12.unkflag.png │ │ ├── d349f5.png │ │ ├── d34b9c.left8.unkflag.png │ │ ├── d34be5.png │ │ ├── d34d6e.png │ │ ├── d34e01.png │ │ ├── d34fac.right3.png │ │ ├── d35034.png │ │ ├── d351e1.right3.png │ │ ├── d3526a.right1.png │ │ ├── d35431.left15.unkflag.png │ │ ├── d35491.right2.png │ │ ├── d3560a.left15.unkflag.png │ │ ├── d35657.png │ │ ├── d3581c.right3.png │ │ ├── d358a3.png │ │ ├── d35a60.right14.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── npc10 │ │ ├── d43f24.png │ │ ├── d43ff7.right3.png │ │ ├── d440d9.png │ │ ├── d441a8.left15.unkflag.png │ │ ├── d442aa.right3.png │ │ ├── d443c1.png │ │ ├── d444c9.right3.png │ │ ├── d445ea.right2.png │ │ ├── d44711.png │ │ ├── d44825.right2.png │ │ ├── d44925.right2.png │ │ ├── d44a27.right2.png │ │ ├── d44b11.right3.png │ │ ├── d44c3e.right2.png │ │ ├── d44d77.png │ │ ├── d44e9b.right6.png │ │ ├── d44fa8.right2.png │ │ ├── d450fb.png │ │ ├── d45278.png │ │ ├── d453ad.right2.png │ │ ├── d454fa.right4.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── npc11 │ │ ├── d455ed.png │ │ ├── d456dc.right3.png │ │ ├── d457c4.right2.png │ │ ├── d458c8.right4.png │ │ ├── d459b8.right3.png │ │ ├── d45ab0.right1.png │ │ ├── d45bd4.png │ │ ├── d45d0c.right1.png │ │ ├── d45e3e.right4.png │ │ ├── d45f22.right4.png │ │ ├── d4600e.right3.png │ │ ├── d46124.right2.png │ │ ├── d46230.png │ │ ├── d4635c.png │ │ ├── d464a0.right1.png │ │ ├── d465d8.right1.png │ │ ├── d46716.right3.png │ │ ├── d46808.right6.png │ │ ├── d4692f.png │ │ ├── d46a53.left14.unkflag.png │ │ ├── d46b75.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── npc12 │ │ ├── d46c99.right3.png │ │ ├── d46ddc.png │ │ ├── d46f08.png │ │ ├── d47040.right4.png │ │ ├── d47179.right4.png │ │ ├── d472be.png │ │ ├── d473ee.right2.png │ │ ├── d47577.right3.png │ │ ├── d476fa.right2.png │ │ ├── d4787d.right1.png │ │ ├── d479a5.right1.png │ │ ├── d47ad7.right1.png │ │ ├── d47c09.right3.png │ │ ├── d47d4a.right2.png │ │ ├── d47e93.png │ │ ├── d47fb9.right1.png │ │ ├── d4812e.png │ │ ├── d482a5.right2.png │ │ ├── d483ec.png │ │ ├── d4856b.png │ │ ├── d486d0.png │ │ ├── d48841.right2.png │ │ ├── d48996.left15.unkflag.png │ │ ├── d48ac2.right2.png │ │ ├── d48c0f.right1.png │ │ ├── d48d80.png │ │ ├── d48f09.right3.png │ │ ├── d4908c.png │ │ ├── d49217.png │ │ ├── d49370.right2.png │ │ ├── d494b9.right2.png │ │ ├── d4961c.png │ │ ├── d4977b.left8.unkflag.png │ │ ├── d497b0.right4.png │ │ ├── d49907.right4.png │ │ ├── d49a58.right8.png │ │ ├── d49a8d.right3.png │ │ ├── d49c08.right4.png │ │ ├── d49d63.left11.unkflag.png │ │ ├── d49d80.right3.png │ │ ├── d49ed1.png │ │ ├── d4a03e.right3.png │ │ ├── d4a18f.png │ │ ├── d4a2f6.png │ │ ├── d4a32b.right1.png │ │ ├── d4a4b6.right3.png │ │ ├── d4a601.right12.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── npc13 │ │ ├── d4a622.left15.unkflag.png │ │ ├── d4a756.png │ │ ├── d4a888.left14.unkflag.png │ │ ├── d4a9b2.left15.unkflag.png │ │ ├── d4aae6.png │ │ ├── d4ac0a.left14.unkflag.png │ │ ├── d4ad20.png │ │ ├── d4ae50.right3.png │ │ ├── d4af71.right2.png │ │ ├── d4b0b1.right3.png │ │ ├── d4b1df.right1.png │ │ ├── d4b315.png │ │ ├── d4b45d.right1.png │ │ ├── d4b59f.png │ │ ├── d4b6d1.left13.unkflag.png │ │ ├── d4b7f1.right4.png │ │ ├── d4b8eb.left15.unkflag.png │ │ ├── d4ba0f.left13.unkflag.png │ │ ├── d4bb29.right3.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── npc14 │ │ ├── d4bc48.right1.png │ │ ├── d4bd80.right1.png │ │ ├── d4beb2.left15.unkflag.png │ │ ├── d4bfee.right1.png │ │ ├── d4c122.right2.png │ │ ├── d4c246.left15.unkflag.png │ │ ├── d4c372.right1.png │ │ ├── d4c4a4.right1.png │ │ ├── d4c5d4.right2.png │ │ ├── d4c70a.right2.png │ │ ├── d4c850.right3.png │ │ ├── d4c974.right2.png │ │ ├── d4caae.right1.png │ │ ├── d4cbfa.right2.png │ │ ├── d4cd2c.right1.png │ │ ├── d4ce6a.right1.png │ │ ├── d4cfc7.right1.png │ │ ├── d4d126.right1.png │ │ ├── d4d289.right1.png │ │ ├── d4d3e0.right1.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── npc15 │ │ ├── d4d525.right3.png │ │ ├── d4d641.right3.png │ │ ├── d4d751.right2.png │ │ ├── d4d877.right2.png │ │ ├── d4d9ad.right3.png │ │ ├── d4dac1.right1.png │ │ ├── d4dbfd.png │ │ ├── d4dd53.right2.png │ │ ├── d4de85.right2.png │ │ ├── d4dfbf.right1.png │ │ ├── d4e107.right1.png │ │ ├── d4e255.right1.png │ │ ├── d4e39f.right2.png │ │ ├── d4e4e7.right2.png │ │ ├── d4e619.right1.png │ │ ├── d4e761.png │ │ ├── d4e8bf.right2.png │ │ ├── d4e9fb.right2.png │ │ ├── d4eb35.right2.png │ │ ├── d4ec77.right1.png │ │ ├── d4edbf.right3.png │ │ ├── d4eee7.png │ │ ├── d4f00f.png │ │ ├── d4f14b.right2.png │ │ ├── d4f285.right3.png │ │ ├── d4f3bf.right2.png │ │ ├── d4f4e9.left15.unkflag.png │ │ ├── d4f617.right1.png │ │ ├── d4f737.png │ │ ├── d4f885.png │ │ ├── d4f9e0.right1.png │ │ ├── d4fb26.png │ │ ├── d4fca3.right7.png │ │ ├── d4fde0.right1.png │ │ ├── d4ff2b.right4.png │ │ ├── d50075.png │ │ ├── d501e8.right2.png │ │ ├── d50325.png │ │ ├── d50472.png │ │ ├── d5059b.png │ │ ├── d5070c.left12.unkflag.png │ │ ├── d50842.right6.png │ │ ├── d509ad.left15.unkflag.png │ │ ├── d50af5.right3.png │ │ ├── d50c5e.right3.png │ │ ├── d50d7a.right5.png │ │ ├── d50ea4.right2.png │ │ ├── d50fca.right5.png │ │ ├── d51115.right3.png │ │ ├── d5127a.right4.png │ │ ├── d513ac.right1.png │ │ ├── d514f4.left12.unkflag.png │ │ ├── d51630.right2.png │ │ ├── d51754.right2.png │ │ ├── d5187e.right3.png │ │ ├── d519d9.right2.png │ │ ├── d51b15.right3.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── npc16 │ │ ├── d51c3d.right1.png │ │ ├── d51d81.right2.png │ │ ├── d51ecd.png │ │ ├── d52029.right1.png │ │ ├── d5215d.png │ │ ├── d5229f.right2.png │ │ ├── d523e1.right3.png │ │ ├── d5252a.png │ │ ├── d5265a.png │ │ ├── d5278c.right2.png │ │ ├── d528be.right2.png │ │ ├── d529f0.right2.png │ │ ├── d52b2e.right3.png │ │ ├── d52c4c.right2.png │ │ ├── d52d90.right2.png │ │ ├── d52ec2.right3.png │ │ ├── d5301f.png │ │ ├── d5317b.png │ │ ├── d532d7.right1.png │ │ ├── d53413.right2.png │ │ ├── d5354f.right1.png │ │ ├── d5369b.right2.png │ │ ├── d537ad.right2.png │ │ ├── d538c3.right1.png │ │ ├── d539c5.right1.png │ │ ├── d53ae3.right2.png │ │ ├── d53c05.right2.png │ │ ├── d53d2f.right1.png │ │ ├── d53e76.right4.png │ │ ├── d53fd1.right1.png │ │ ├── d54125.right5.png │ │ ├── d54264.right2.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── npc17 │ │ ├── d54392.left14.unkflag.png │ │ ├── d544e2.right2.png │ │ ├── d54635.left14.unkflag.png │ │ ├── d5478b.right2.png │ │ ├── d548d5.right2.png │ │ ├── d54a1b.right2.png │ │ ├── d54b59.right3.png │ │ ├── d54cbc.right4.png │ │ ├── d54e19.right3.png │ │ ├── d54f6a.right3.png │ │ ├── d550a6.right3.png │ │ ├── d551d8.right2.png │ │ ├── d55314.right3.png │ │ ├── d5547d.right4.png │ │ ├── d555d2.right3.png │ │ ├── d55725.png │ │ ├── d5587c.right2.png │ │ ├── d559c3.right1.png │ │ ├── d55b14.right1.png │ │ ├── d55c8d.right2.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── npc18 │ │ ├── d55de6.right2.png │ │ ├── d55ee4.right2.png │ │ ├── d55fe6.right2.png │ │ ├── d560f8.right3.png │ │ ├── d561d8.right3.png │ │ ├── d562bc.right3.png │ │ ├── d563b4.right2.png │ │ ├── d564c8.right2.png │ │ ├── d565dc.right2.png │ │ ├── d566f6.right3.png │ │ ├── d567d8.right3.png │ │ ├── d568ba.right4.png │ │ ├── d569a0.right4.png │ │ ├── d56a9e.right4.png │ │ ├── d56b88.png │ │ ├── d56cb4.right1.png │ │ ├── d56de8.png │ │ ├── d56f24.right3.png │ │ ├── d57026.right4.png │ │ ├── d5710e.right4.png │ │ ├── d571ea.right4.png │ │ ├── d572be.right2.png │ │ ├── d573b7.left15.unkflag.png │ │ ├── d574a3.right2.png │ │ ├── d575a0.right4.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── npc19 │ │ ├── d57684.png │ │ ├── d577c4.png │ │ ├── d578f4.png │ │ ├── d57a34.png │ │ ├── d57b76.png │ │ ├── d57cac.png │ │ ├── d57de4.png │ │ ├── d57f22.png │ │ ├── d58052.png │ │ ├── d58180.png │ │ ├── d582c2.png │ │ ├── d583f8.png │ │ ├── d58530.png │ │ ├── d58672.png │ │ ├── d587a4.png │ │ ├── d588e6.png │ │ ├── d58a34.png │ │ ├── d58b72.png │ │ ├── d58cb2.png │ │ ├── d58dfc.png │ │ ├── d58f3e.png │ │ ├── d59080.png │ │ ├── d591ce.png │ │ ├── d5930c.png │ │ ├── d5944c.right2.png │ │ ├── d5956d.right3.png │ │ ├── d59674.right3.png │ │ ├── d59773.right4.png │ │ ├── d59874.right2.png │ │ ├── d5999b.right2.png │ │ ├── d59ac2.right2.png │ │ ├── d59bf3.right2.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── npc2 │ │ ├── d35a79.right1.png │ │ ├── d35bb8.png │ │ ├── d35cd9.png │ │ ├── d35e08.right3.png │ │ ├── d35f45.left15.unkflag.png │ │ ├── d36049.right3.png │ │ ├── d36198.right3.png │ │ ├── d362a8.right3.png │ │ ├── d363a0.right2.png │ │ ├── d364aa.png │ │ ├── d365e2.png │ │ ├── d36721.right3.png │ │ ├── d36846.png │ │ ├── d36948.png │ │ ├── d36a89.right3.png │ │ ├── d36b89.right2.png │ │ ├── d36c83.right2.png │ │ ├── d36d81.right4.png │ │ ├── d36ea6.png │ │ ├── d36fd9.right2.png │ │ ├── d370fa.right2.png │ │ ├── d371ff.png │ │ ├── d37330.right2.png │ │ ├── d37447.png │ │ ├── d3755a.left15.unkflag.png │ │ ├── d37678.right3.png │ │ ├── d3777b.right2.png │ │ ├── d378ab.right3.png │ │ ├── d3798d.right1.png │ │ ├── d37ab3.right1.png │ │ ├── d37bbf.right4.png │ │ ├── d37cdb.right3.png │ │ ├── d37dd3.right3.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── npc20 │ │ ├── d59d26.right2.png │ │ ├── d59e3c.right1.png │ │ ├── d59f60.right1.png │ │ ├── d5a07e.right2.png │ │ ├── d5a186.right1.png │ │ ├── d5a2aa.right1.png │ │ ├── d5a3c2.right2.png │ │ ├── d5a4f4.right2.png │ │ ├── d5a612.right1.png │ │ ├── d5a72a.right2.png │ │ ├── d5a86a.right2.png │ │ ├── d5a9a2.right3.png │ │ ├── d5aac2.right1.png │ │ ├── d5ac18.right1.png │ │ ├── d5ad5a.png │ │ ├── d5aea4.right3.png │ │ ├── d5afc4.right3.png │ │ ├── d5b0c8.right1.png │ │ ├── d5b1d2.png │ │ ├── d5b2ee.right1.png │ │ ├── d5b416.right2.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── npc21 │ │ ├── d5b532.left14.unkflag.png │ │ ├── d5b666.left15.unkflag.png │ │ ├── d5b790.left14.unkflag.png │ │ ├── d5b8bc.right4.png │ │ ├── d5ba0b.right5.png │ │ ├── d5bb54.right4.png │ │ ├── d5bc83.right3.png │ │ ├── d5bdb0.right2.png │ │ ├── d5bef1.right4.png │ │ ├── d5c01a.right5.png │ │ ├── d5c151.right2.png │ │ ├── d5c27f.right4.png │ │ ├── d5c3c8.right4.png │ │ ├── d5c50d.right4.png │ │ ├── d5c654.right4.png │ │ ├── d5c7a3.right2.png │ │ ├── d5c906.right2.png │ │ ├── d5ca69.png │ │ ├── d5cbc2.right1.png │ │ ├── d5cd4f.right5.png │ │ ├── d5ceae.right3.png │ │ ├── d5d02f.right1.png │ │ ├── d5d1b8.png │ │ ├── d5d349.right3.png │ │ ├── d5d4b4.png │ │ ├── d5d615.png │ │ ├── d5d75e.png │ │ ├── d5d8bf.png │ │ ├── d5da4e.png │ │ ├── d5dbcb.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── npc22 │ │ ├── d5dd66.right2.png │ │ ├── d5de80.right2.png │ │ ├── d5df96.right1.png │ │ ├── d5e0c8.right4.png │ │ ├── d5e21d.right1.png │ │ ├── d5e357.right3.png │ │ ├── d5e4a4.right1.png │ │ ├── d5e61d.right2.png │ │ ├── d5e786.right2.png │ │ ├── d5e8ed.right3.png │ │ ├── d5ea58.right2.png │ │ ├── d5ebd3.right1.png │ │ ├── d5ed19.right1.png │ │ ├── d5ee9c.right2.png │ │ ├── d5f01b.right1.png │ │ ├── d5f18e.right1.png │ │ ├── d5f2b7.right1.png │ │ ├── d5f412.png │ │ ├── d5f589.right1.png │ │ ├── d5f6f4.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── npc23 │ │ ├── d5f883.right5.png │ │ ├── d5f9c3.right5.png │ │ ├── d5faf9.right5.png │ │ ├── d5fc21.right5.png │ │ ├── d5fd56.right5.png │ │ ├── d5fe81.right1.png │ │ ├── d5ffa5.right1.png │ │ ├── d600dd.right1.png │ │ ├── d60207.right1.png │ │ ├── d60339.right1.png │ │ ├── d6045f.right1.png │ │ ├── d6057d.right1.png │ │ ├── d60699.left14.unkflag.png │ │ ├── d607cd.right1.png │ │ ├── d60904.left15.unkflag.png │ │ ├── d60a3e.png │ │ ├── d60b91.png │ │ ├── d60ce6.right1.png │ │ ├── d60e29.left15.unkflag.png │ │ ├── d60f69.left15.unkflag.png │ │ ├── d6109f.left15.unkflag.png │ │ ├── d611cb.right4.png │ │ ├── d612ed.right4.png │ │ ├── d6140b.right3.png │ │ ├── d6152d.right1.png │ │ ├── d6167a.right2.png │ │ ├── d617c3.right2.png │ │ ├── d618ee.right4.png │ │ ├── d61a19.right2.png │ │ ├── d61b54.right1.png │ │ ├── d61ca7.right1.png │ │ ├── d61e04.png │ │ ├── d61f3d.right4.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── npc24 │ │ ├── d62055.right1.png │ │ ├── d6211c.right1.png │ │ ├── d621df.right1.png │ │ ├── d622a0.right1.png │ │ ├── d62363.right3.png │ │ ├── d62445.right1.png │ │ ├── d624fc.right3.png │ │ ├── d625e0.png │ │ ├── d626ab.png │ │ ├── d62774.png │ │ ├── d62835.right3.png │ │ ├── d62911.png │ │ ├── d629c8.png │ │ ├── d62a85.png │ │ ├── d62b52.right3.png │ │ ├── d62c34.png │ │ ├── d62cf9.right3.png │ │ ├── d62de3.png │ │ ├── d62ea8.png │ │ ├── d62f6d.left12.unkflag.png │ │ ├── d63041.left12.unkflag.png │ │ ├── d6312b.right1.png │ │ ├── d63205.right9.png │ │ ├── d632d3.right10.png │ │ ├── d63393.right9.png │ │ ├── d63479.right2.png │ │ ├── d6356f.left12.unkflag.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── npc25 │ │ ├── d6363b.right1.png │ │ ├── d63783.right1.png │ │ ├── d638cb.right2.png │ │ ├── d63a03.right1.png │ │ ├── d63b4b.right1.png │ │ ├── d63c8d.right1.png │ │ ├── d63dcd.right3.png │ │ ├── d63f1c.right3.png │ │ ├── d64063.right3.png │ │ ├── d641b4.png │ │ ├── d64308.png │ │ ├── d64452.png │ │ ├── d6459e.right3.png │ │ ├── d6471b.right3.png │ │ ├── d64888.right3.png │ │ ├── d649f9.png │ │ ├── d64b44.png │ │ ├── d64cb1.right2.png │ │ ├── d64e34.right4.png │ │ ├── d64faf.right1.png │ │ ├── d6515c.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── npc26 │ │ ├── d652f1.left15.unkflag.png │ │ ├── d65423.png │ │ ├── d65543.left15.unkflag.png │ │ ├── d6566b.left15.unkflag.png │ │ ├── d65797.png │ │ ├── d658b5.left14.unkflag.png │ │ ├── d659db.png │ │ ├── d65b11.right3.png │ │ ├── d65c44.right4.png │ │ ├── d65d83.right3.png │ │ ├── d65e9f.right3.png │ │ ├── d65faf.right3.png │ │ ├── d660c7.right3.png │ │ ├── d661e5.right3.png │ │ ├── d66303.right3.png │ │ ├── d6641d.right2.png │ │ ├── d66563.right1.png │ │ ├── d6669b.right3.png │ │ ├── d667cd.png │ │ ├── d66915.right1.png │ │ ├── d66a55.left15.unkflag.png │ │ ├── d66b93.left15.unkflag.png │ │ ├── d66cd7.png │ │ ├── d66e15.left15.unkflag.png │ │ ├── d66f57.right1.png │ │ ├── d67078.left15.unkflag.png │ │ ├── d6719a.right2.png │ │ ├── d672e3.right4.png │ │ ├── d6740c.right4.png │ │ ├── d67533.right4.png │ │ ├── d6766c.right1.png │ │ ├── d677bf.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── npc27 │ │ ├── d67902.right1.png │ │ ├── d67a38.right2.png │ │ ├── d67b83.right3.png │ │ ├── d67cc6.right1.png │ │ ├── d67df0.right3.png │ │ ├── d67f33.right1.png │ │ ├── d6804f.right1.png │ │ ├── d681c2.png │ │ ├── d682f8.png │ │ ├── d68432.right1.png │ │ ├── d68562.right2.png │ │ ├── d68684.right2.png │ │ ├── d687cd.right3.png │ │ ├── d688f7.right4.png │ │ ├── d68a38.right3.png │ │ ├── d68b8f.right4.png │ │ ├── d68cee.right2.png │ │ ├── d68e51.right2.png │ │ ├── d68f8d.png │ │ ├── d6911a.right3.png │ │ ├── d69267.right4.png │ │ ├── d693ae.right2.png │ │ ├── d69509.png │ │ ├── d69645.right1.png │ │ ├── d69798.png │ │ ├── d698f5.png │ │ ├── d69a70.png │ │ ├── d69be9.right2.png │ │ ├── d69d50.png │ │ ├── d69ead.right1.png │ │ ├── d6a02c.png │ │ ├── d6a1d3.right1.png │ │ ├── d6a35a.right2.png │ │ ├── d6a4b5.png │ │ ├── d6a626.right2.png │ │ ├── d6a78b.right1.png │ │ ├── d6a8f0.right1.png │ │ ├── d6aa24.png │ │ ├── d6ab6a.right1.png │ │ ├── d6accf.png │ │ ├── d6ae26.right3.png │ │ ├── d6af87.png │ │ ├── d6b0f8.right2.png │ │ ├── d6b238.png │ │ ├── d6b38f.right3.png │ │ ├── d6b4ea.right1.png │ │ ├── d6b624.right1.png │ │ ├── d6b762.png │ │ ├── d6b8bd.right1.png │ │ ├── d6ba04.right1.png │ │ ├── d6bb35.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── npc28 │ │ ├── d6bc74.png │ │ ├── d6bd6f.png │ │ ├── d6be60.right1.png │ │ ├── d6bf4d.right3.png │ │ ├── d6c055.right2.png │ │ ├── d6c173.png │ │ ├── d6c264.png │ │ ├── d6c3ba.right1.png │ │ ├── d6c500.right1.png │ │ ├── d6c644.right2.png │ │ ├── d6c784.right1.png │ │ ├── d6c8c0.png │ │ ├── d6c9ad.png │ │ ├── d6cb03.png │ │ ├── d6cc55.right2.png │ │ ├── d6cd95.right4.png │ │ ├── d6ce97.right3.png │ │ ├── d6cfa7.right3.png │ │ ├── d6d0ce.right4.png │ │ ├── d6d1ed.right3.png │ │ ├── d6d324.left15.unkflag.png │ │ ├── d6d42e.right3.png │ │ ├── d6d561.right1.png │ │ ├── d6d68b.right4.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── npc29 │ │ ├── d6d791.right3.png │ │ ├── d6d891.png │ │ ├── d6d97c.png │ │ ├── d6da6d.right2.png │ │ ├── d6db9d.right1.png │ │ ├── d6dcd9.right4.png │ │ ├── d6ddd1.png │ │ ├── d6df2b.right2.png │ │ ├── d6e067.right1.png │ │ ├── d6e1b3.right2.png │ │ ├── d6e2f3.right1.png │ │ ├── d6e433.right4.png │ │ ├── d6e52d.png │ │ ├── d6e68d.png │ │ ├── d6e7e3.right1.png │ │ ├── d6e937.right3.png │ │ ├── d6ea65.right3.png │ │ ├── d6eb95.right3.png │ │ ├── d6ece4.png │ │ ├── d6ee20.right3.png │ │ ├── d6ef71.png │ │ ├── d6f0d1.right1.png │ │ ├── d6f22f.right4.png │ │ ├── d6f325.png │ │ ├── d6f471.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── npc3 │ │ ├── d37ec6.right2.png │ │ ├── d3801e.right2.png │ │ ├── d3816e.right3.png │ │ ├── d382b4.right2.png │ │ ├── d38406.right2.png │ │ ├── d38546.right2.png │ │ ├── d3868c.right3.png │ │ ├── d38801.right3.png │ │ ├── d38972.right3.png │ │ ├── d38aeb.right1.png │ │ ├── d38c51.png │ │ ├── d38db3.right1.png │ │ ├── d38f0b.right2.png │ │ ├── d390a2.right2.png │ │ ├── d39219.right4.png │ │ ├── d3938e.right5.png │ │ ├── d394f5.right4.png │ │ ├── d39668.png │ │ ├── d397ba.left14.unkflag.png │ │ ├── d39928.right3.png │ │ ├── d39ac5.right1.png │ │ ├── d39c34.png │ │ ├── d39d5b.left15.unkflag.png │ │ ├── d39ead.right2.png │ │ ├── d39ffa.right4.png │ │ ├── d3a163.right2.png │ │ ├── d3a2e8.right2.png │ │ ├── d3a430.right1.png │ │ ├── d3a569.right1.png │ │ ├── d3a710.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── npc30 │ │ ├── d6f5bd.right2.png │ │ ├── d6f6df.right2.png │ │ ├── d6f7f5.right1.png │ │ ├── d6f929.right1.png │ │ ├── d6fa77.png │ │ ├── d6fbc9.right2.png │ │ ├── d6fcf5.right2.png │ │ ├── d6fe53.right1.png │ │ ├── d6ffaf.right2.png │ │ ├── d700f7.right2.png │ │ ├── d70251.right4.png │ │ ├── d703b0.right3.png │ │ ├── d704e4.png │ │ ├── d70646.png │ │ ├── d7079e.right1.png │ │ ├── d708e5.right2.png │ │ ├── d70a34.right1.png │ │ ├── d70b8b.png │ │ ├── d70cd2.png │ │ ├── d70e17.png │ │ ├── d70f79.right3.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── npc31 │ │ ├── d710e6.png │ │ ├── d711d3.right1.png │ │ ├── d712ba.right1.png │ │ ├── d713a1.right2.png │ │ ├── d714af.right1.png │ │ ├── d715d5.right1.png │ │ ├── d71707.png │ │ ├── d7184d.right3.png │ │ ├── d7198c.right3.png │ │ ├── d71ac7.right2.png │ │ ├── d71bef.right1.png │ │ ├── d71d23.right1.png │ │ ├── d71e51.png │ │ ├── d71f93.right3.png │ │ ├── d720e2.right3.png │ │ ├── d7222d.right2.png │ │ ├── d72370.right1.png │ │ ├── d724b1.right1.png │ │ ├── d72608.right1.png │ │ ├── d72753.right2.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── npc32 │ │ ├── d728c0.right3.png │ │ ├── d729f0.right3.png │ │ ├── d72b1c.right3.png │ │ ├── d72c4a.right3.png │ │ ├── d72d82.right3.png │ │ ├── d72eac.right3.png │ │ ├── d72fd0.png │ │ ├── d7312e.right1.png │ │ ├── d73280.png │ │ ├── d733d2.right1.png │ │ ├── d73532.png │ │ ├── d7368c.right3.png │ │ ├── d737b6.right3.png │ │ ├── d73927.right2.png │ │ ├── d73a80.right5.png │ │ ├── d73be5.right3.png │ │ ├── d73d2d.right1.png │ │ ├── d73e69.right1.png │ │ ├── d73f99.right1.png │ │ ├── d740cf.right2.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── npc33 │ │ ├── d741ff.right3.png │ │ ├── d7430c.right2.png │ │ ├── d74419.right2.png │ │ ├── d7452e.right1.png │ │ ├── d74632.png │ │ ├── d7472a.right2.png │ │ ├── d7482a.png │ │ ├── d748fd.right1.png │ │ ├── d749c8.png │ │ ├── d74a93.right2.png │ │ ├── d74b8f.right2.png │ │ ├── d74c81.right2.png │ │ ├── d74d77.png │ │ ├── d74e54.png │ │ ├── d74f2b.png │ │ ├── d74ffa.png │ │ ├── d750f5.left15.unkflag.png │ │ ├── d751c1.right1.png │ │ ├── d7526a.right2.png │ │ ├── d75355.right3.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── npc34 │ │ ├── d7541b.png │ │ ├── d75549.right4.png │ │ ├── d75637.left13.unkflag.png │ │ ├── d75761.right3.png │ │ ├── d75857.right2.png │ │ ├── d75990.right2.png │ │ ├── d75a67.png │ │ ├── d75b95.right1.png │ │ ├── d75cc3.right1.png │ │ ├── d75e03.png │ │ ├── d75f33.right7.png │ │ ├── d76054.png │ │ ├── d761a0.left15.unkflag.png │ │ ├── d762de.right1.png │ │ ├── d76420.right2.png │ │ ├── d76559.right2.png │ │ ├── d7668a.right1.png │ │ ├── d767d9.png │ │ ├── d76940.right1.png │ │ ├── d76a8f.right1.png │ │ ├── d76be4.png │ │ ├── d76d39.right3.png │ │ ├── d76e6f.png │ │ ├── d76fd4.left13.unkflag.png │ │ ├── d77100.png │ │ ├── d77249.png │ │ ├── d77376.png │ │ ├── d774df.right4.png │ │ ├── d77608.right1.png │ │ ├── d7775f.right3.png │ │ ├── d7786f.png │ │ ├── d779c2.right2.png │ │ ├── d77b19.png │ │ ├── d77c5e.right3.png │ │ ├── d77db7.png │ │ ├── d77ef2.left14.unkflag.png │ │ ├── d78042.png │ │ ├── d781df.right1.png │ │ ├── d78340.png │ │ ├── d784b1.right4.png │ │ ├── d78622.right1.png │ │ ├── d78783.right6.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── npc35 │ │ ├── d78889.right3.png │ │ ├── d789b9.right2.png │ │ ├── d78aeb.right2.png │ │ ├── d78c21.right3.png │ │ ├── d78d23.right1.png │ │ ├── d78e27.right1.png │ │ ├── d78f2d.right3.png │ │ ├── d79023.right1.png │ │ ├── d7911d.right1.png │ │ ├── d79219.right2.png │ │ ├── d7933f.right1.png │ │ ├── d79467.right1.png │ │ ├── d7958f.right2.png │ │ ├── d796bf.right1.png │ │ ├── d797eb.right1.png │ │ ├── d79917.right3.png │ │ ├── d79a7a.right3.png │ │ ├── d79bad.right1.png │ │ ├── d79ce2.right2.png │ │ ├── d79e23.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── npc36 │ │ ├── d79f6e.right2.png │ │ ├── d7a09c.right2.png │ │ ├── d7a1ba.right2.png │ │ ├── d7a2de.right2.png │ │ ├── d7a3fe.right2.png │ │ ├── d7a51e.right2.png │ │ ├── d7a63e.right3.png │ │ ├── d7a75b.right3.png │ │ ├── d7a86a.right2.png │ │ ├── d7a985.left14.unkflag.png │ │ ├── d7aac3.right1.png │ │ ├── d7abee.left14.unkflag.png │ │ ├── d7ad1a.right3.png │ │ ├── d7ae71.right2.png │ │ ├── d7afbe.right3.png │ │ ├── d7b10d.left13.unkflag.png │ │ ├── d7b213.right1.png │ │ ├── d7b334.right1.png │ │ ├── d7b43a.right4.png │ │ ├── d7b55d.right5.png │ │ ├── d7b6b2.png │ │ ├── d7b7e6.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── npc37 │ │ ├── d7b93b.left13.unkflag.png │ │ ├── d7ba71.png │ │ ├── d7bbac.left13.unkflag.png │ │ ├── d7bcdc.right3.png │ │ ├── d7bdf2.left14.unkflag.png │ │ ├── d7bf1c.png │ │ ├── d7c025.png │ │ ├── d7c16d.right1.png │ │ ├── d7c29f.left15.unkflag.png │ │ ├── d7c3d3.right3.png │ │ ├── d7c4ff.right2.png │ │ ├── d7c623.right2.png │ │ ├── d7c751.right6.png │ │ ├── d7c89a.right6.png │ │ ├── d7c9e3.right6.png │ │ ├── d7cb30.right1.png │ │ ├── d7cc6e.right1.png │ │ ├── d7cdac.right5.png │ │ ├── d7cee9.png │ │ ├── d7d03b.right1.png │ │ ├── d7d170.right3.png │ │ ├── d7d2c1.left13.unkflag.png │ │ ├── d7d3f1.right2.png │ │ ├── d7d52e.png │ │ ├── d7d66d.png │ │ ├── d7d7a4.png │ │ ├── d7d8e9.png │ │ ├── d7da72.right3.png │ │ ├── d7dbd9.right6.png │ │ ├── d7dd30.right4.png │ │ ├── d7de91.png │ │ ├── d7e01a.png │ │ ├── d7e191.right4.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── npc4 │ │ ├── d3a89b.right3.png │ │ ├── d3a9b5.right3.png │ │ ├── d3aabf.right3.png │ │ ├── d3abc9.right3.png │ │ ├── d3acd9.right3.png │ │ ├── d3ade9.right3.png │ │ ├── d3aef3.right3.png │ │ ├── d3b00f.right3.png │ │ ├── d3b11d.right3.png │ │ ├── d3b22b.right3.png │ │ ├── d3b32b.right3.png │ │ ├── d3b419.right3.png │ │ ├── d3b517.right2.png │ │ ├── d3b64f.right2.png │ │ ├── d3b76f.right3.png │ │ ├── d3b8a6.right1.png │ │ ├── d3b9ff.right1.png │ │ ├── d3bb56.right3.png │ │ ├── d3bc7d.left15.unkflag.png │ │ ├── d3bd93.right4.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── npc5 │ │ ├── d3be75.png │ │ ├── d3bfc1.png │ │ ├── d3c103.png │ │ ├── d3c24b.png │ │ ├── d3c39b.png │ │ ├── d3c4e3.png │ │ ├── d3c62b.png │ │ ├── d3c77b.png │ │ ├── d3c8bd.png │ │ ├── d3ca21.png │ │ ├── d3cb67.png │ │ ├── d3ccb7.png │ │ ├── d3ce05.png │ │ ├── d3cf4d.right4.png │ │ ├── d3d092.right5.png │ │ ├── d3d1c9.png │ │ ├── d3d2fb.right1.png │ │ ├── d3d434.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── npc6 │ │ ├── d3d566.right2.png │ │ ├── d3d6df.right1.png │ │ ├── d3d868.right3.png │ │ ├── d3d9c7.right1.png │ │ ├── d3db66.right1.png │ │ ├── d3dd01.right2.png │ │ ├── d3de8a.png │ │ ├── d3e007.png │ │ ├── d3e166.right3.png │ │ ├── d3e2d5.right1.png │ │ ├── d3e484.right2.png │ │ ├── d3e60d.png │ │ ├── d3e7ba.png │ │ ├── d3e99f.right1.png │ │ ├── d3eb58.right1.png │ │ ├── d3ed11.right2.png │ │ ├── d3ee94.right1.png │ │ ├── d3eff1.png │ │ ├── d3f162.png │ │ ├── d3f2f3.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── npc7 │ │ ├── d3f49c.right3.png │ │ ├── d3f5e7.right3.png │ │ ├── d3f732.png │ │ ├── d3f870.right1.png │ │ ├── d3f9b0.right1.png │ │ ├── d3faf6.right1.png │ │ ├── d3fc2c.png │ │ ├── d3fd6e.png │ │ ├── d3feb2.png │ │ ├── d3fff0.right1.png │ │ ├── d40138.right1.png │ │ ├── d4027a.right1.png │ │ ├── d403be.png │ │ ├── d4050c.png │ │ ├── d40652.png │ │ ├── d407fb.png │ │ ├── d40984.right1.png │ │ ├── d40b1b.png │ │ ├── d40cd4.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── npc8 │ │ ├── d40e75.left15.unkflag.png │ │ ├── d40f62.right2.png │ │ ├── d41062.right3.png │ │ ├── d41150.right3.png │ │ ├── d41250.right1.png │ │ ├── d4136a.right3.png │ │ ├── d41468.right1.png │ │ ├── d415ae.right1.png │ │ ├── d416e8.right1.png │ │ ├── d41816.right2.png │ │ ├── d41948.right2.png │ │ ├── d41a62.png │ │ ├── d41b90.png │ │ ├── d41cd6.right1.png │ │ ├── d41e06.right1.png │ │ ├── d41f3c.left12.unkflag.png │ │ ├── d42062.right1.png │ │ ├── d42194.png │ │ ├── d422c4.right3.png │ │ ├── d42402.right1.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── npc9 │ │ ├── d42542.right4.png │ │ ├── d4264e.right4.png │ │ ├── d42750.right2.png │ │ ├── d42884.right2.png │ │ ├── d429cc.right2.png │ │ ├── d42b0e.right4.png │ │ ├── d42c55.right1.png │ │ ├── d42da5.right1.png │ │ ├── d42ef1.right1.png │ │ ├── d43031.right1.png │ │ ├── d43179.right2.png │ │ ├── d43295.png │ │ ├── d433d1.right1.png │ │ ├── d43531.right2.png │ │ ├── d4366b.right2.png │ │ ├── d437bd.png │ │ ├── d43914.right1.png │ │ ├── d43a65.right1.png │ │ ├── d43c02.right3.png │ │ ├── d43d79.right1.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── pacorepkin │ │ ├── ce435d.right1.png │ │ ├── ce44be.right1.png │ │ ├── ce461b.right2.png │ │ ├── ce4774.right2.png │ │ ├── ce48a3.right2.png │ │ ├── ce49e2.right2.png │ │ ├── ce4b19.png │ │ ├── ce4c37.png │ │ ├── ce4d5b.right3.png │ │ ├── ce4e8c.right1.png │ │ ├── ce4fd7.right1.png │ │ ├── ce511e.png │ │ ├── ce5269.right3.png │ │ ├── ce53ae.right3.png │ │ ├── ce54ed.right2.png │ │ ├── ce561e.right1.png │ │ ├── ce57b5.right1.png │ │ ├── ce5936.png │ │ ├── ce5aeb.png │ │ ├── ce5ca2.png │ │ ├── ce5e59.right1.png │ │ ├── ce5fd8.right2.png │ │ ├── ce6121.png │ │ ├── ce6245.right1.png │ │ ├── ce63ae.right3.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── parthenos │ │ ├── c8f3b6.right3.png │ │ ├── c8f4ee.right5.png │ │ ├── c8f641.right5.png │ │ ├── c8f7a0.right4.png │ │ ├── c8f90d.right2.png │ │ ├── c8fa41.right3.png │ │ ├── c8fba2.png │ │ ├── c8fd41.right1.png │ │ ├── c8fec8.png │ │ ├── c90043.right1.png │ │ ├── c901ba.left15.unkflag.png │ │ ├── c902f2.right2.png │ │ ├── c9046b.png │ │ ├── c9063c.right1.png │ │ ├── c907cf.right3.png │ │ ├── c9094e.png │ │ ├── c90afb.png │ │ ├── c90cb8.png │ │ ├── c90e8f.png │ │ ├── c91050.png │ │ ├── c9121b.png │ │ ├── c91390.png │ │ ├── c914e7.png │ │ ├── c9166a.left8.unkflag.png │ │ ├── c9169b.png │ │ ├── c91830.right2.png │ │ ├── c919bb.png │ │ ├── c91b52.png │ │ ├── c91cc5.png │ │ ├── c91e5e.png │ │ ├── c91fd7.right4.png │ │ ├── c92016.png │ │ ├── c92193.right5.unkflag.png │ │ ├── c921ba.png │ │ ├── c92335.right2.png │ │ ├── c92490.png │ │ ├── c9263f.right3.png │ │ ├── c92666.right1.png │ │ ├── c927d7.right2.png │ │ ├── c9296a.png │ │ ├── c92af9.png │ │ ├── c92c98.left8.unkflag.png │ │ ├── c92cf7.right4.png │ │ ├── c92e5f.right4.png │ │ ├── c92f06.right5.png │ │ ├── c93068.right11.png │ │ ├── c930ee.png │ │ ├── c93265.png │ │ ├── c932ce.png │ │ ├── c9344b.right9.png │ │ ├── c934a6.png │ │ ├── c9362d.left9.unkflag.png │ │ ├── c936aa.right1.png │ │ ├── c9381b.left15.unkflag.png │ │ ├── c9386a.png │ │ ├── c939f7.left14.unkflag.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── pickpocket │ │ ├── c7c1d7.right1.png │ │ ├── c7c2bb.right1.png │ │ ├── c7c381.right2.png │ │ ├── c7c459.right1.png │ │ ├── c7c53d.right1.png │ │ ├── c7c611.right6.png │ │ ├── c7c708.right2.png │ │ ├── c7c7e2.right1.png │ │ ├── c7c898.right3.png │ │ ├── c7c972.right2.png │ │ ├── c7ca4c.right2.png │ │ ├── c7cb06.png │ │ ├── c7cbf2.right2.png │ │ ├── c7ccd6.right2.png │ │ ├── c7cd94.right3.png │ │ ├── c7ce64.right5.png │ │ ├── c7cf77.right2.png │ │ ├── c7d098.right1.png │ │ ├── c7d1bd.png │ │ ├── c7d2bc.right1.png │ │ ├── c7d3c3.right1.png │ │ ├── c7d508.right6.png │ │ ├── c7d665.right4.png │ │ ├── c7d798.right4.png │ │ ├── c7d911.png │ │ ├── c7da36.png │ │ ├── c7db88.png │ │ ├── c7dcb1.right3.png │ │ ├── c7ddee.right2.png │ │ ├── c7deea.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── piggy │ │ ├── c7e01c.right2.png │ │ ├── c7e14e.right1.png │ │ ├── c7e284.right2.png │ │ ├── c7e3b2.left15.unkflag.png │ │ ├── c7e50c.right2.png │ │ ├── c7e659.png │ │ ├── c7e7ab.png │ │ ├── c7e940.right1.png │ │ ├── c7eac5.right3.png │ │ ├── c7ec60.right2.png │ │ ├── c7edf5.right5.png │ │ ├── c7ef48.png │ │ ├── c7f0ed.png │ │ ├── c7f29a.right1.png │ │ ├── c7f445.png │ │ ├── c7f59c.png │ │ ├── c7f733.png │ │ ├── c7f902.png │ │ ├── c7fad3.png │ │ ├── c7fca2.png │ │ ├── c7fe0f.png │ │ ├── c7ff88.png │ │ ├── c80067.left12.unkflag.png │ │ ├── c8012d.right2.png │ │ ├── c802be.right2.png │ │ ├── c80451.png │ │ ├── c8050a.png │ │ ├── c805df.right1.png │ │ ├── c80762.right1.png │ │ ├── c808e5.png │ │ ├── c809b4.png │ │ ├── c80aa9.png │ │ ├── c80c4a.png │ │ ├── c80de7.png │ │ ├── c80e9a.png │ │ ├── c80f71.png │ │ ├── c81102.png │ │ ├── c812bd.png │ │ ├── c813d4.png │ │ ├── c814cb.right4.png │ │ ├── c8161a.right2.png │ │ ├── c81740.png │ │ ├── c817ad.right5.png │ │ ├── c818fa.right1.png │ │ ├── c81a46.right3.png │ │ ├── c81b8b.right2.png │ │ ├── c81d20.right1.png │ │ ├── c81e99.right2.png │ │ ├── c8202c.png │ │ ├── c821bb.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── polygonspin │ │ ├── cfe3e2.right2.png │ │ ├── cfe4e4.right1.png │ │ ├── cfe5bd.png │ │ ├── cfe68a.right4.png │ │ ├── cfe7b3.right1.png │ │ ├── cfe8cf.right2.png │ │ ├── cfe9e3.png │ │ ├── cfeb60.png │ │ ├── cfecbf.right1.png │ │ ├── cfee1a.right1.png │ │ ├── cfef5f.png │ │ ├── cff085.png │ │ ├── cff1c1.right3.png │ │ ├── cff2fc.right1.png │ │ ├── cff457.png │ │ ├── cff5f8.png │ │ ├── cff78b.right1.png │ │ ├── cff8fe.right3.png │ │ ├── cffa63.png │ │ ├── cffb9c.right1.png │ │ ├── cffce9.png │ │ ├── cffe36.right2.png │ │ ├── cfff3c.png │ │ ├── d00059.png │ │ ├── d00179.right1.png │ │ ├── d002be.png │ │ ├── d003e7.right1.png │ │ ├── d004e4.png │ │ ├── d005ee.png │ │ ├── d0073d.right1.png │ │ ├── d0087a.png │ │ ├── d0098b.right3.png │ │ ├── d00ac8.right1.png │ │ ├── d00c29.right3.png │ │ ├── d00d7a.right2.png │ │ ├── d00e99.png │ │ ├── d01026.right3.png │ │ ├── d0118b.png │ │ ├── d012e6.right1.png │ │ ├── d013f1.right4.png │ │ ├── d014fa.right2.png │ │ ├── d01621.right2.png │ │ ├── d0179a.right1.png │ │ ├── d018f5.right1.png │ │ ├── d01a64.png │ │ ├── d01bd1.right2.png │ │ ├── d01d26.right2.png │ │ ├── d01e8d.right4.png │ │ ├── d01fbe.right2.png │ │ ├── d02109.png │ │ ├── d0228a.png │ │ ├── d023df.png │ │ ├── d02564.png │ │ ├── d026f7.png │ │ ├── d0284a.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── popstertank │ │ ├── ce6507.right2.png │ │ ├── ce6682.right2.png │ │ ├── ce6809.right2.png │ │ ├── ce6990.png │ │ ├── ce6b3b.png │ │ ├── ce6ce6.png │ │ ├── ce6e99.right1.png │ │ ├── ce7038.right1.png │ │ ├── ce71df.right1.png │ │ ├── ce738a.png │ │ ├── ce7535.png │ │ ├── ce76e2.png │ │ ├── ce7895.png │ │ ├── ce7a4c.png │ │ ├── ce7bfd.png │ │ ├── ce7dba.right1.png │ │ ├── ce7f5f.right1.png │ │ ├── ce8106.right1.png │ │ ├── ce82b5.png │ │ ├── ce846c.png │ │ ├── ce8639.png │ │ ├── ce87e4.png │ │ ├── ce899b.png │ │ ├── ce8b52.png │ │ ├── ce8cc7.right2.png │ │ ├── ce8e56.png │ │ ├── ce8ff5.png │ │ ├── ce91b0.right1.png │ │ ├── ce9345.right1.png │ │ ├── ce9516.png │ │ ├── ce96b7.png │ │ ├── ce9876.right1.png │ │ ├── ce9a15.right1.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── reaper │ │ ├── c713a2.png │ │ ├── c71505.png │ │ ├── c7165c.right1.png │ │ ├── c717ad.right2.png │ │ ├── c71914.right2.png │ │ ├── c71a81.right3.png │ │ ├── c71bda.right1.png │ │ ├── c71d3d.right1.png │ │ ├── c71ea4.right1.png │ │ ├── c71fff.png │ │ ├── c72168.png │ │ ├── c722c3.png │ │ ├── c7241c.png │ │ ├── c7258f.right1.png │ │ ├── c726f4.png │ │ ├── c7285b.right1.png │ │ ├── c729ca.png │ │ ├── c72b2d.png │ │ ├── c72c96.png │ │ ├── c72e03.png │ │ ├── c72f5c.png │ │ ├── c730c1.left13.unkflag.png │ │ ├── c731ff.png │ │ ├── c73332.right2.png │ │ ├── c73469.png │ │ ├── c7361a.png │ │ ├── c737a9.png │ │ ├── c73922.png │ │ ├── c73abf.right1.png │ │ ├── c73c78.png │ │ ├── c73e15.png │ │ ├── c73fc2.png │ │ ├── c7414f.png │ │ ├── c742c6.png │ │ ├── c7444f.right1.png │ │ ├── c745ae.png │ │ ├── c74717.right5.png │ │ ├── c74762.png │ │ ├── c748c7.right6.png │ │ ├── c74a42.right8.png │ │ ├── c74a72.png │ │ ├── c74bf3.png │ │ ├── c74d9e.png │ │ ├── c74f0b.png │ │ ├── c750a8.right3.png │ │ ├── c75213.png │ │ ├── c753a6.png │ │ ├── c754ff.png │ │ ├── c75666.png │ │ ├── c757d3.png │ │ ├── c7593c.png │ │ ├── c75ac7.png │ │ ├── c75c5e.right1.png │ │ ├── c75dd3.png │ │ ├── c75f48.png │ │ ├── c760c3.right6.png │ │ ├── c76246.png │ │ ├── c763e5.png │ │ ├── c7659c.png │ │ ├── c7671f.png │ │ ├── c768be.right3.png │ │ ├── c76a47.png │ │ ├── c76be8.png │ │ ├── c76d5d.png │ │ ├── c76edc.png │ │ ├── c7705d.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── ricechanger │ │ ├── ce9bc2.right3.png │ │ ├── ce9cc4.right4.png │ │ ├── ce9db4.right4.png │ │ ├── ce9ea4.right3.png │ │ ├── ce9fa6.right3.png │ │ ├── cea0a6.right3.png │ │ ├── cea1a2.right3.png │ │ ├── cea2a0.right3.png │ │ ├── cea38e.right3.png │ │ ├── cea47e.right3.png │ │ ├── cea57e.right3.png │ │ ├── cea67c.right3.png │ │ ├── cea76a.right3.png │ │ ├── cea86a.right2.png │ │ ├── cea96e.right2.png │ │ ├── ceaa68.right3.png │ │ ├── ceab66.right3.png │ │ ├── ceac60.right3.png │ │ ├── cead50.right3.png │ │ ├── ceae4c.right3.png │ │ ├── ceaf3a.right3.png │ │ ├── ceb028.right3.png │ │ ├── ceb126.right3.png │ │ ├── ceb21c.right3.png │ │ ├── ceb30a.right4.png │ │ ├── ceb45f.right4.png │ │ ├── ceb5aa.png │ │ ├── ceb6f4.right3.png │ │ ├── ceb841.right2.png │ │ ├── ceb9a0.png │ │ ├── cebaec.right4.png │ │ ├── cebc4d.right4.png │ │ ├── cebd31.right1.png │ │ ├── cebe38.right3.png │ │ ├── cebf38.right6.png │ │ ├── cec01d.right2.png │ │ ├── cec11d.right4.png │ │ ├── cec212.right2.png │ │ ├── cec30a.png │ │ ├── cec3f9.right2.png │ │ ├── cec4f1.right1.png │ │ ├── cec606.right1.png │ │ ├── cec710.png │ │ ├── cec819.right2.png │ │ ├── cec921.right1.png │ │ ├── ceca12.right2.png │ │ ├── cecb20.right3.png │ │ ├── cecc25.png │ │ ├── cecd50.png │ │ ├── ceceaf.png │ │ ├── ced008.png │ │ ├── ced185.right2.png │ │ ├── ced2d2.png │ │ ├── ced445.png │ │ ├── ced5a2.right1.png │ │ ├── ced6f5.png │ │ ├── ced850.right2.png │ │ ├── ced96d.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── schubell │ │ ├── cdc949.right2.png │ │ ├── cdca11.left15.unkflag.png │ │ ├── cdcb05.right2.png │ │ ├── cdcbe5.right1.png │ │ ├── cdccd7.right1.png │ │ ├── cdcdbd.right5.png │ │ ├── cdcec8.right2.png │ │ ├── cdcfe7.right2.png │ │ ├── cdd0ec.right2.png │ │ ├── cdd1f1.png │ │ ├── cdd2e3.png │ │ ├── cdd3db.png │ │ ├── cdd4d3.right4.png │ │ ├── cdd59d.right3.png │ │ ├── cdd67b.right1.png │ │ ├── cdd763.right2.png │ │ ├── cdd857.right3.png │ │ ├── cdd951.right1.png │ │ ├── cdda4f.right3.png │ │ ├── cddb66.right5.png │ │ ├── cddc73.right5.png │ │ ├── cddd7e.png │ │ ├── cdde76.right2.png │ │ ├── cddf7b.right4.png │ │ ├── cde061.left15.unkflag.png │ │ ├── cde179.right5.png │ │ ├── cde2a4.right1.png │ │ ├── cde3f1.png │ │ ├── cde516.right4.png │ │ ├── cde62f.right2.png │ │ ├── cde776.right1.png │ │ ├── cde8ad.right1.png │ │ ├── cde9e0.right2.png │ │ ├── cdeabe.right3.png │ │ ├── cdeb8e.right5.png │ │ ├── cdec86.right5.png │ │ ├── cded5a.left14.unkflag.png │ │ ├── cdee5a.left14.unkflag.png │ │ ├── cdef14.left12.unkflag.png │ │ ├── cdefe0.right5.png │ │ ├── cdf0be.right3.png │ │ ├── cdf19a.right6.png │ │ ├── cdf282.right6.png │ │ ├── cdf364.right4.png │ │ ├── cdf442.right4.png │ │ ├── cdf52c.right1.png │ │ ├── cdf618.right4.png │ │ ├── cdf6fc.right4.png │ │ ├── cdf80f.right6.png │ │ ├── cdf902.right4.png │ │ ├── cdfa0b.right3.png │ │ ├── cdfb18.right5.png │ │ ├── cdfc23.png │ │ ├── cdfcfb.png │ │ ├── cdfe02.left12.unkflag.png │ │ ├── cdfeea.right2.png │ │ ├── cdfff7.png │ │ ├── ce00f4.right1.png │ │ ├── ce0221.right3.png │ │ ├── ce0322.right2.png │ │ ├── ce0427.right5.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── shiren │ │ ├── attack_down_1.right2.png │ │ ├── attack_down_2.png │ │ ├── attack_downleft_1.left14.unkflag.png │ │ ├── attack_downleft_2.right3.png │ │ ├── attack_downright_1.right2.png │ │ ├── attack_downright_2.right5.png │ │ ├── attack_left_1.right1.png │ │ ├── attack_left_2.left15.unkflag.png │ │ ├── attack_right_1.right1.png │ │ ├── attack_right_2.right5.png │ │ ├── attack_up_1.png │ │ ├── attack_up_2.right4.png │ │ ├── attack_upleft_1.right2.png │ │ ├── attack_upleft_2.right2.png │ │ ├── attack_upright_1.right3.png │ │ ├── attack_upright_2.right4.png │ │ ├── climbing_1.right1.png │ │ ├── climbing_2.right1.png │ │ ├── crushed_1.png │ │ ├── crushed_2.png │ │ ├── crushed_3.png │ │ ├── eat_1.right2.png │ │ ├── eat_2.right4.png │ │ ├── eat_3.right4.png │ │ ├── fall_1.right3.png │ │ ├── fall_2.right2.png │ │ ├── happy_1.png │ │ ├── happy_2.png │ │ ├── hurt_down.right3.png │ │ ├── hurt_downleft.right3.png │ │ ├── hurt_downright.right3.png │ │ ├── hurt_left.right3.png │ │ ├── hurt_right.right3.png │ │ ├── hurt_up.right3.png │ │ ├── hurt_upleft.right1.png │ │ ├── hurt_upright.right3.png │ │ ├── observing.right3.png │ │ ├── pot_sprite_1.left13.unkflag.png │ │ ├── pot_sprite_2.left9.unkflag.png │ │ ├── puttinginpot.left15.unkflag.png │ │ ├── raise_shield.right4.png │ │ ├── raise_sword.right3.png │ │ ├── readscroll_1.png │ │ ├── readscroll_2.right2.png │ │ ├── sack_sprite_1.left12.unkflag.png │ │ ├── sack_sprite_2.left13.unkflag.png │ │ ├── sack_sprite_3.left12.unkflag.png │ │ ├── scroll_sprite_1.right3.png │ │ ├── scroll_sprite_2.left12.unkflag.png │ │ ├── shootarrow_down.png │ │ ├── shootarrow_downleft.png │ │ ├── shootarrow_downright.png │ │ ├── shootarrow_left.right3.png │ │ ├── shootarrow_right.png │ │ ├── shootarrow_up.png │ │ ├── shootarrow_upleft.png │ │ ├── shootarrow_upright.png │ │ ├── sleep_1.png │ │ ├── sleep_2.png │ │ ├── sprites.asm │ │ ├── spritetable.asm │ │ ├── spritetable_decoy.asm │ │ ├── stretching.png │ │ ├── tippinghat.right4.png │ │ ├── trip_down.png │ │ ├── trip_downleft.png │ │ ├── trip_downright.png │ │ ├── trip_up.png │ │ ├── trip_upright.png │ │ ├── victorypose.right3.png │ │ ├── walk_down_0.png │ │ ├── walk_down_1.png │ │ ├── walk_down_2.png │ │ ├── walk_downleft_0.png │ │ ├── walk_downleft_1.png │ │ ├── walk_downleft_2.png │ │ ├── walk_downright_0.png │ │ ├── walk_downright_1.png │ │ ├── walk_downright_2.png │ │ ├── walk_left_0.png │ │ ├── walk_left_1.png │ │ ├── walk_left_2.png │ │ ├── walk_right_0.png │ │ ├── walk_right_1.png │ │ ├── walk_right_2.png │ │ ├── walk_up_0.png │ │ ├── walk_up_1.png │ │ ├── walk_up_2.png │ │ ├── walk_upleft_0.png │ │ ├── walk_upleft_1.png │ │ ├── walk_upleft_2.png │ │ ├── walk_upright_0.png │ │ ├── walk_upright_1.png │ │ └── walk_upright_2.png │ ├── skullmage │ │ ├── cf2799.right3.png │ │ ├── cf2930.right2.png │ │ ├── cf2ac9.right3.png │ │ ├── cf2c4c.png │ │ ├── cf2ded.png │ │ ├── cf2f8c.png │ │ ├── cf312f.png │ │ ├── cf32e6.png │ │ ├── cf3495.png │ │ ├── cf364c.png │ │ ├── cf380b.png │ │ ├── cf39ce.png │ │ ├── cf3b97.right4.png │ │ ├── cf3cf2.right4.png │ │ ├── cf3e5f.right4.png │ │ ├── cf3fb2.png │ │ ├── cf4157.png │ │ ├── cf42f6.right1.png │ │ ├── cf4483.png │ │ ├── cf4626.png │ │ ├── cf47c5.png │ │ ├── cf496c.right1.png │ │ ├── cf4b15.right1.png │ │ ├── cf4cbe.right1.png │ │ ├── cf4e65.png │ │ ├── cf4fee.png │ │ ├── cf5185.png │ │ ├── cf5336.right2.png │ │ ├── cf54b9.png │ │ ├── cf5640.png │ │ ├── cf57b5.png │ │ ├── cf595a.right1.png │ │ ├── cf5ad5.png │ │ ├── cf5c90.right1.png │ │ ├── cf5e11.left8.unkflag.png │ │ ├── cf5e3a.right3.png │ │ ├── cf5fc7.right1.png │ │ ├── cf6180.png │ │ ├── cf6257.right1.png │ │ ├── cf63de.png │ │ ├── cf65a1.right5.png │ │ ├── cf65f0.png │ │ ├── cf67b1.png │ │ ├── cf693a.right8.png │ │ ├── cf69e2.png │ │ ├── cf6b9d.png │ │ ├── cf6d48.right12.png │ │ ├── cf6d85.right4.png │ │ ├── cf6f18.png │ │ ├── cf70c7.right7.png │ │ ├── cf7174.png │ │ ├── cf7323.right1.png │ │ ├── cf74d6.png │ │ ├── cf7689.right2.png │ │ ├── cf7834.right2.png │ │ ├── cf79cb.right2.png │ │ ├── cf7b6a.png │ │ ├── cf7d17.left12.unkflag.png │ │ ├── cf7deb.png │ │ ├── cf7f76.png │ │ ├── cf8101.right1.png │ │ ├── cf82a8.right3.png │ │ ├── cf839d.png │ │ ├── cf854e.png │ │ ├── cf86d1.png │ │ ├── cf888a.right3.png │ │ ├── cf8987.png │ │ ├── cf8b34.png │ │ ├── cf8ced.right2.png │ │ ├── cf8ea2.right4.png │ │ ├── cf8fb1.png │ │ ├── cf9168.png │ │ ├── cf9305.png │ │ ├── cf94b0.right1.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── snaky │ │ ├── d1aa93.png │ │ ├── d1ac0a.png │ │ ├── d1ad63.right3.png │ │ ├── d1aee0.right2.png │ │ ├── d1b06b.right1.png │ │ ├── d1b1f0.png │ │ ├── d1b383.right1.png │ │ ├── d1b534.right1.png │ │ ├── d1b6df.png │ │ ├── d1b8a2.png │ │ ├── d1ba37.png │ │ ├── d1bbc0.right2.png │ │ ├── d1bd45.right1.png │ │ ├── d1befe.png │ │ ├── d1c087.png │ │ ├── d1c210.right1.png │ │ ├── d1c3af.png │ │ ├── d1c54e.png │ │ ├── d1c6f5.png │ │ ├── d1c894.right1.png │ │ ├── d1ca3f.right1.png │ │ ├── d1cb6e.png │ │ ├── d1ccbb.png │ │ ├── d1ce50.right2.png │ │ ├── d1cfdd.png │ │ ├── d1d1ba.right1.png │ │ ├── d1d347.png │ │ ├── d1d4d8.png │ │ ├── d1d635.png │ │ ├── d1d7fe.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── soldierant │ │ ├── d0d1a0.png │ │ ├── d0d2e9.right1.png │ │ ├── d0d426.right1.png │ │ ├── d0d56b.right1.png │ │ ├── d0d6cf.right4.png │ │ ├── d0d842.right2.png │ │ ├── d0d98e.right3.png │ │ ├── d0db1f.right4.png │ │ ├── d0dc82.right4.png │ │ ├── d0dde7.left15.unkflag.png │ │ ├── d0df55.left14.unkflag.png │ │ ├── d0e0a3.right2.png │ │ ├── d0e206.right2.png │ │ ├── d0e383.right2.png │ │ ├── d0e4fe.right2.png │ │ ├── d0e671.right3.png │ │ ├── d0e7dc.right2.png │ │ ├── d0e943.right2.png │ │ ├── d0eaa6.right3.png │ │ ├── d0ec17.right3.png │ │ ├── d0ed7a.right3.png │ │ ├── d0eedb.right3.png │ │ ├── d0f036.right4.png │ │ ├── d0f16f.right3.png │ │ ├── d0f2ca.png │ │ ├── d0f417.right3.png │ │ ├── d0f55a.right2.png │ │ ├── d0f6a1.png │ │ ├── d0f7f4.png │ │ ├── d0f965.png │ │ ├── d0fac8.png │ │ ├── d0fc2d.right4.png │ │ ├── d0fd72.right3.png │ │ ├── d0feed.right5.png │ │ ├── d1006e.left8.unkflag.png │ │ ├── d100ab.png │ │ ├── d101f0.left12.unkflag.png │ │ ├── d1029e.right2.png │ │ ├── d10429.right5.png │ │ ├── d10596.right2.png │ │ ├── d1072d.left8.unkflag.png │ │ ├── d1074a.right3.png │ │ ├── d108d7.right11.png │ │ ├── d1097a.left15.unkflag.png │ │ ├── d10adc.png │ │ ├── d10c5d.right6.png │ │ ├── d10cfe.png │ │ ├── d10e77.right2.png │ │ ├── d10fe2.right10.png │ │ ├── d1108d.png │ │ ├── d11230.right3.png │ │ ├── d1139f.right10.png │ │ ├── d11434.right4.png │ │ ├── d1158d.right3.png │ │ ├── d116fe.right4.png │ │ ├── d11855.left11.unkflag.png │ │ ├── d11872.png │ │ ├── d119fd.right2.png │ │ ├── d11b56.left15.unkflag.png │ │ ├── d11bbe.right1.png │ │ ├── d11d43.png │ │ ├── d11ea8.right2.png │ │ ├── d1201b.right7.png │ │ ├── d120a4.right5.png │ │ ├── d12225.right3.png │ │ ├── d1239a.left15.unkflag.png │ │ ├── d124fe.png │ │ ├── d1259f.left14.unkflag.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── taintedinsect │ │ ├── attack_down.png │ │ ├── attack_downleft.png │ │ ├── attack_right.png │ │ ├── attack_up.png │ │ ├── attack_upright.png │ │ ├── hurt_down.png │ │ ├── hurt_downleft.png │ │ ├── hurt_right.png │ │ ├── hurt_up.png │ │ ├── hurt_upright.png │ │ ├── sprites.asm │ │ ├── spritetable.asm │ │ ├── walk_down.png │ │ ├── walk_downleft.png │ │ ├── walk_right.png │ │ ├── walk_up.png │ │ └── walk_upright.png │ ├── taur │ │ ├── cb541e.png │ │ ├── cb55cd.png │ │ ├── cb577c.png │ │ ├── cb5925.right2.png │ │ ├── cb5ab8.png │ │ ├── cb5c37.png │ │ ├── cb5dea.png │ │ ├── cb5fbb.png │ │ ├── cb6162.right1.png │ │ ├── cb6313.png │ │ ├── cb64ba.png │ │ ├── cb6639.right1.png │ │ ├── cb67ee.right1.png │ │ ├── cb698b.png │ │ ├── cb6b42.png │ │ ├── cb6d01.png │ │ ├── cb6eb6.png │ │ ├── cb7019.png │ │ ├── cb71c6.png │ │ ├── cb73bb.png │ │ ├── cb758c.png │ │ ├── cb7757.right1.png │ │ ├── cb78f6.right4.png │ │ ├── cb7a87.png │ │ ├── cb7c2c.png │ │ ├── cb7dc5.png │ │ ├── cb7f78.png │ │ ├── cb8131.png │ │ ├── cb82d4.png │ │ ├── cb848f.png │ │ ├── cb8628.png │ │ ├── cb87d5.right3.png │ │ ├── cb8898.left12.unkflag.png │ │ ├── cb89ac.right3.png │ │ ├── cb8b29.png │ │ ├── cb8cd8.right6.png │ │ ├── cb8d83.png │ │ ├── cb8e90.right1.png │ │ ├── cb9031.right1.png │ │ ├── cb91e0.right1.png │ │ ├── cb92e9.right7.png │ │ ├── cb930a.png │ │ ├── cb94ad.right2.png │ │ ├── cb966a.right2.png │ │ ├── cb96f5.right4.png │ │ ├── cb9828.right1.png │ │ ├── cb99e9.right1.png │ │ ├── cb9adc.png │ │ ├── cb9bdb.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── tengu │ │ ├── d290f0.png │ │ ├── d2923f.png │ │ ├── d29378.right1.png │ │ ├── d294c1.png │ │ ├── d29624.png │ │ ├── d29767.right1.png │ │ ├── d298ac.right1.png │ │ ├── d29a33.right2.png │ │ ├── d29b8c.right1.png │ │ ├── d29cfd.right4.png │ │ ├── d29e76.right5.png │ │ ├── d29fd5.right2.png │ │ ├── d2a114.right2.png │ │ ├── d2a29b.right2.png │ │ ├── d2a402.png │ │ ├── d2a57b.png │ │ ├── d2a6fc.right4.png │ │ ├── d2a86f.png │ │ ├── d2a9d0.png │ │ ├── d2ab53.png │ │ ├── d2ace4.png │ │ ├── d2ae65.right1.png │ │ ├── d2afd0.png │ │ ├── d2b133.right3.png │ │ ├── d2b282.png │ │ ├── d2b425.png │ │ ├── d2b5e2.png │ │ ├── d2b797.png │ │ ├── d2b946.png │ │ ├── d2bb0b.png │ │ ├── d2bcd2.png │ │ ├── d2be9f.png │ │ ├── d2c052.right3.png │ │ ├── d2c1d7.right4.png │ │ ├── d2c340.png │ │ ├── d2c43d.png │ │ ├── d2c5da.png │ │ ├── d2c75b.right1.png │ │ ├── d2c85a.png │ │ ├── d2ca07.right2.png │ │ ├── d2cb56.left15.unkflag.png │ │ ├── d2cc36.png │ │ ├── d2cdaf.png │ │ ├── d2cf5a.right3.png │ │ ├── d2d02b.right4.png │ │ ├── d2d1ae.png │ │ ├── d2d331.right4.png │ │ ├── d2d44a.png │ │ ├── d2d5e3.png │ │ ├── d2d76c.right1.png │ │ ├── d2d857.png │ │ ├── d2d9f8.right3.png │ │ ├── d2db5f.left12.unkflag.png │ │ ├── d2dc27.png │ │ ├── d2ddbc.png │ │ ├── d2df5d.right2.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ ├── thiefwalrus │ │ ├── c8c990.png │ │ ├── c8cad7.png │ │ ├── c8cc24.png │ │ ├── c8cd79.right1.png │ │ ├── c8ceaa.right1.png │ │ ├── c8cfcf.right2.png │ │ ├── c8d10a.png │ │ ├── c8d231.right3.png │ │ ├── c8d356.right1.png │ │ ├── c8d47f.png │ │ ├── c8d5dc.png │ │ ├── c8d711.right1.png │ │ ├── c8d860.right1.png │ │ ├── c8d9bd.right3.png │ │ ├── c8daf2.right1.png │ │ ├── c8dc4d.png │ │ ├── c8ddd4.png │ │ ├── c8df55.png │ │ ├── c8e0d8.png │ │ ├── c8e285.png │ │ ├── c8e424.png │ │ ├── c8e587.right1.png │ │ ├── c8e688.png │ │ ├── c8e739.right2.png │ │ ├── c8e8a8.png │ │ ├── c8e9e9.right8.png │ │ ├── c8ea64.right2.png │ │ ├── c8ebc3.left14.unkflag.png │ │ ├── c8ecbd.right2.png │ │ ├── c8ed6f.right1.png │ │ ├── c8eed6.png │ │ ├── c8f025.left9.unkflag.png │ │ ├── c8f092.right2.png │ │ ├── c8f1db.right4.png │ │ ├── c8f30e.right2.png │ │ ├── sprites.asm │ │ └── spritetable.asm │ └── twistyhani │ │ ├── c98e08.right2.png │ │ ├── c98ec3.right1.png │ │ ├── c98f7e.right1.png │ │ ├── c99041.right3.png │ │ ├── c99127.right4.png │ │ ├── c991fd.right3.png │ │ ├── c992dd.right2.png │ │ ├── c993b9.right3.png │ │ ├── c994a3.right2.png │ │ ├── c99597.right4.png │ │ ├── c99669.right4.png │ │ ├── c9972f.right3.png │ │ ├── c99801.right2.png │ │ ├── c998be.right1.png │ │ ├── c9997d.right1.png │ │ ├── c99a36.right3.png │ │ ├── c99b16.right4.png │ │ ├── c99be6.right4.png │ │ ├── c99cb4.right2.png │ │ ├── c99d98.right2.png │ │ ├── c99e8c.right3.png │ │ ├── c99f78.right3.png │ │ ├── c9a050.right4.png │ │ ├── c9a12a.right3.png │ │ ├── c9a1f8.right2.png │ │ ├── c9a317.right1.png │ │ ├── c9a420.right2.png │ │ ├── c9a54f.png │ │ ├── c9a66c.right1.png │ │ ├── c9a797.right1.png │ │ ├── c9a8a8.right1.png │ │ ├── c9a9b7.right2.png │ │ ├── c9aaca.left13.unkflag.png │ │ ├── c9abe2.right1.png │ │ ├── c9ad11.left12.unkflag.png │ │ ├── c9ae47.right2.png │ │ ├── c9af9c.right3.png │ │ ├── c9b09e.png │ │ ├── c9b1ba.right2.png │ │ ├── c9b303.right5.png │ │ ├── c9b42b.png │ │ ├── c9b57c.left15.unkflag.png │ │ ├── c9b690.left14.unkflag.png │ │ ├── c9b7b6.right2.png │ │ ├── c9b8c5.png │ │ ├── c9ba06.right2.png │ │ ├── c9bb2b.png │ │ ├── c9bc80.right1.png │ │ ├── c9bda1.png │ │ ├── c9bee4.right4.png │ │ ├── c9bffd.right2.png │ │ ├── c9c0fc.right1.png │ │ ├── c9c25b.right2.png │ │ ├── c9c366.right1.png │ │ ├── c9c4b9.right2.png │ │ ├── c9c5be.right1.png │ │ ├── c9c711.right3.png │ │ ├── c9c82c.right1.png │ │ ├── sprites.asm │ │ └── spritetable.asm ├── fonts │ ├── font.1bpp │ ├── kointai.asm │ ├── kointai │ │ ├── char0.1bpp │ │ ├── char0.fntchr │ │ ├── char1.1bpp │ │ ├── char1.fntchr │ │ ├── char10.1bpp │ │ ├── char10.fntchr │ │ ├── char11.1bpp │ │ ├── char11.fntchr │ │ ├── char12.1bpp │ │ ├── char12.fntchr │ │ ├── char13.1bpp │ │ ├── char13.fntchr │ │ ├── char14.1bpp │ │ ├── char14.fntchr │ │ ├── char15.1bpp │ │ ├── char15.fntchr │ │ ├── char16.1bpp │ │ ├── char16.fntchr │ │ ├── char17.1bpp │ │ ├── char17.fntchr │ │ ├── char18.1bpp │ │ ├── char18.fntchr │ │ ├── char19.1bpp │ │ ├── char19.fntchr │ │ ├── char2.1bpp │ │ ├── char2.fntchr │ │ ├── char20.1bpp │ │ ├── char20.fntchr │ │ ├── char21.1bpp │ │ ├── char21.fntchr │ │ ├── char22.1bpp │ │ ├── char22.fntchr │ │ ├── char23.1bpp │ │ ├── char23.fntchr │ │ ├── char24.1bpp │ │ ├── char24.fntchr │ │ ├── char25.1bpp │ │ ├── char25.fntchr │ │ ├── char26.1bpp │ │ ├── char26.fntchr │ │ ├── char27.1bpp │ │ ├── char27.fntchr │ │ ├── char28.1bpp │ │ ├── char28.fntchr │ │ ├── char29.1bpp │ │ ├── char29.fntchr │ │ ├── char3.1bpp │ │ ├── char3.fntchr │ │ ├── char30.1bpp │ │ ├── char30.fntchr │ │ ├── char31.1bpp │ │ ├── char31.fntchr │ │ ├── char32.1bpp │ │ ├── char32.fntchr │ │ ├── char33.1bpp │ │ ├── char33.fntchr │ │ ├── char34.1bpp │ │ ├── char34.fntchr │ │ ├── char35.1bpp │ │ ├── char35.fntchr │ │ ├── char36.1bpp │ │ ├── char36.fntchr │ │ ├── char37.1bpp │ │ ├── char37.fntchr │ │ ├── char38.1bpp │ │ ├── char38.fntchr │ │ ├── char39.1bpp │ │ ├── char39.fntchr │ │ ├── char4.1bpp │ │ ├── char4.fntchr │ │ ├── char40.1bpp │ │ ├── char40.fntchr │ │ ├── char41.1bpp │ │ ├── char41.fntchr │ │ ├── char42.1bpp │ │ ├── char42.fntchr │ │ ├── char43.1bpp │ │ ├── char43.fntchr │ │ ├── char44.1bpp │ │ ├── char44.fntchr │ │ ├── char45.1bpp │ │ ├── char45.fntchr │ │ ├── char46.1bpp │ │ ├── char46.fntchr │ │ ├── char47.1bpp │ │ ├── char47.fntchr │ │ ├── char48.1bpp │ │ ├── char48.fntchr │ │ ├── char49.1bpp │ │ ├── char49.fntchr │ │ ├── char5.1bpp │ │ ├── char5.fntchr │ │ ├── char50.1bpp │ │ ├── char50.fntchr │ │ ├── char51.1bpp │ │ ├── char51.fntchr │ │ ├── char52.1bpp │ │ ├── char52.fntchr │ │ ├── char53.1bpp │ │ ├── char53.fntchr │ │ ├── char54.1bpp │ │ ├── char54.fntchr │ │ ├── char55.1bpp │ │ ├── char55.fntchr │ │ ├── char56.1bpp │ │ ├── char56.fntchr │ │ ├── char57.1bpp │ │ ├── char57.fntchr │ │ ├── char58.1bpp │ │ ├── char58.fntchr │ │ ├── char59.1bpp │ │ ├── char59.fntchr │ │ ├── char6.1bpp │ │ ├── char6.fntchr │ │ ├── char60.1bpp │ │ ├── char60.fntchr │ │ ├── char61.1bpp │ │ ├── char61.fntchr │ │ ├── char62.1bpp │ │ ├── char62.fntchr │ │ ├── char63.1bpp │ │ ├── char63.fntchr │ │ ├── char64.1bpp │ │ ├── char64.fntchr │ │ ├── char65.1bpp │ │ ├── char65.fntchr │ │ ├── char66.1bpp │ │ ├── char66.fntchr │ │ ├── char67.1bpp │ │ ├── char67.fntchr │ │ ├── char68.1bpp │ │ ├── char68.fntchr │ │ ├── char69.1bpp │ │ ├── char69.fntchr │ │ ├── char7.1bpp │ │ ├── char7.fntchr │ │ ├── char70.1bpp │ │ ├── char70.fntchr │ │ ├── char71.1bpp │ │ ├── char71.fntchr │ │ ├── char72.1bpp │ │ ├── char72.fntchr │ │ ├── char73.1bpp │ │ ├── char73.fntchr │ │ ├── char74.1bpp │ │ ├── char74.fntchr │ │ ├── char75.1bpp │ │ ├── char75.fntchr │ │ ├── char76.1bpp │ │ ├── char76.fntchr │ │ ├── char77.1bpp │ │ ├── char77.fntchr │ │ ├── char78.1bpp │ │ ├── char78.fntchr │ │ ├── char79.1bpp │ │ ├── char79.fntchr │ │ ├── char8.1bpp │ │ ├── char8.fntchr │ │ ├── char80.1bpp │ │ ├── char80.fntchr │ │ ├── char81.1bpp │ │ ├── char81.fntchr │ │ ├── char82.1bpp │ │ ├── char82.fntchr │ │ ├── char83.1bpp │ │ ├── char83.fntchr │ │ ├── char84.1bpp │ │ ├── char84.fntchr │ │ ├── char85.1bpp │ │ ├── char85.fntchr │ │ ├── char86.1bpp │ │ ├── char86.fntchr │ │ ├── char87.1bpp │ │ ├── char87.fntchr │ │ ├── char88.1bpp │ │ ├── char88.fntchr │ │ ├── char89.1bpp │ │ ├── char89.fntchr │ │ ├── char9.1bpp │ │ ├── char9.fntchr │ │ ├── char90.1bpp │ │ ├── char90.fntchr │ │ ├── char91.1bpp │ │ ├── char91.fntchr │ │ ├── char92.1bpp │ │ ├── char92.fntchr │ │ ├── char93.1bpp │ │ ├── char93.fntchr │ │ ├── char94.1bpp │ │ ├── char94.fntchr │ │ └── numbers.fnt │ ├── opening_font.4bpp │ └── staff.2bpp ├── items │ ├── shields │ │ ├── 3B8D0E.png │ │ ├── 3B8EB8.png │ │ ├── 3B90F2.png │ │ ├── 3B93D6.png │ │ ├── 3B9624.png │ │ ├── 3B98AA.png │ │ ├── 3B9BCA.png │ │ ├── 3B9F28.png │ │ ├── 3BA1F6.png │ │ ├── 3BA480.png │ │ ├── 3BA6C6.png │ │ ├── 3BA9BE.png │ │ ├── 3BACF4.png │ │ ├── 3BAF34.png │ │ ├── 3BB29E.png │ │ └── 3BB5A8.png │ └── weapons │ │ ├── 3B0064.png │ │ ├── 3B034C.png │ │ ├── 3B085A.png │ │ ├── 3B0B6C.png │ │ ├── 3B106A.png │ │ ├── 3B1264.png │ │ ├── 3B16A4.png │ │ ├── 3B190E.png │ │ ├── 3B1E0C.png │ │ ├── 3B2198.png │ │ ├── 3B26B6.png │ │ ├── 3B2996.png │ │ ├── 3B2EB4.png │ │ ├── 3B3294.png │ │ ├── 3B375A.png │ │ ├── 3B3AB2.png │ │ ├── 3B3EF2.png │ │ ├── 3B4208.png │ │ ├── 3B45F0.png │ │ ├── 3B4920.png │ │ ├── 3B4E2A.png │ │ ├── 3B524A.png │ │ ├── 3B5754.png │ │ ├── 3B5AD2.png │ │ ├── 3B5FF0.png │ │ ├── 3B6470.png │ │ ├── 3B697A.png │ │ ├── 3B6D5E.png │ │ ├── 3B7268.png │ │ ├── 3B7656.png │ │ ├── 3B7B26.png │ │ ├── 3B807E.png │ │ ├── 3B8558.png │ │ └── 3B88C2.png ├── logo.4bpp ├── map_tilesets │ ├── atlas.4bpp │ ├── bank26_tables.asm │ ├── bank27_tables.asm │ ├── data │ │ ├── map_tilesetdata_27E3C8.bin │ │ ├── map_tilesetdata_280C20.bin │ │ ├── map_tilesetdata_28248C.bin │ │ ├── map_tilesetdata_283CD6.bin │ │ ├── map_tilesetdata_2852E3.bin │ │ ├── map_tilesetdata_286996.bin │ │ ├── map_tilesetdata_289448.bin │ │ ├── map_tilesetdata_28A9B6.bin │ │ ├── map_tilesetdata_28BDF6.bin │ │ ├── map_tilesetdata_28E950.bin │ │ ├── map_tilesetdata_28F990.bin │ │ ├── map_tilesetdata_292480.bin │ │ ├── map_tilesetdata_293478.bin │ │ ├── map_tilesetdata_294CE4.bin │ │ ├── map_tilesetdata_297B49.bin │ │ ├── map_tilesetdata_298E65.bin │ │ ├── map_tilesetdata_299EC2.bin │ │ ├── map_tilesetdata_29C18D.bin │ │ ├── map_tilesetdata_29E737.bin │ │ ├── map_tilesetdata_29FE65.bin │ │ ├── map_tilesetdata_2A13AF.bin │ │ ├── map_tilesetdata_2A2899.bin │ │ ├── map_tilesetdata_2A41F4.bin │ │ ├── map_tilesetdata_2A56B6.bin │ │ ├── map_tilesetdata_2A6ED6.bin │ │ ├── map_tilesetdata_2A85C6.bin │ │ ├── map_tilesetdata_2A9D34.bin │ │ ├── map_tilesetdata_2AB3E8.bin │ │ ├── map_tilesetdata_2ACAD4.bin │ │ ├── map_tilesetdata_2AE170.bin │ │ ├── map_tilesetdata_2AF73E.bin │ │ ├── map_tilesetdata_2B0AE4.bin │ │ ├── map_tilesetdata_2B2078.bin │ │ ├── map_tilesetdata_2B33BE.bin │ │ ├── map_tilesetdata_2B487E.bin │ │ ├── map_tilesetdata_2B619B.bin │ │ ├── map_tilesetdata_2B7A82.bin │ │ ├── map_tilesetdata_2B90AF.bin │ │ ├── map_tilesetdata_2BA976.bin │ │ ├── map_tilesetdata_2BBC5B.bin │ │ ├── map_tilesetdata_2BCE23.bin │ │ ├── map_tilesetdata_2BE08F.bin │ │ ├── map_tilesetdata_2BF21A.bin │ │ ├── map_tilesetdata_2C0189.bin │ │ ├── map_tilesetdata_2C0D64.bin │ │ ├── map_tilesetdata_2C2084.bin │ │ ├── map_tilesetdata_2C2CFD.bin │ │ ├── map_tilesetdata_2C3886.bin │ │ ├── map_tilesetdata_2C4C8D.bin │ │ ├── map_tilesetdata_2C5FCC.bin │ │ ├── map_tilesetdata_2C75DD.bin │ │ ├── map_tilesetdata_2C8956.bin │ │ ├── map_tilesetdata_2C9DB5.bin │ │ ├── map_tilesetdata_2CAF7E.bin │ │ ├── map_tilesetdata_2CC4C4.bin │ │ ├── map_tilesetdata_2CD95F.bin │ │ ├── map_tilesetdata_2CED20.bin │ │ ├── map_tilesetdata_2D016B.bin │ │ ├── map_tilesetdata_2D1684.bin │ │ ├── map_tilesetdata_2D2DC8.bin │ │ ├── map_tilesetdata_2D4384.bin │ │ ├── map_tilesetdata_2D5850.bin │ │ ├── map_tilesetdata_2D6FD6.bin │ │ ├── map_tilesetdata_2D84B3.bin │ │ ├── map_tilesetdata_2D9C7C.bin │ │ ├── map_tilesetdata_2DB3DD.bin │ │ ├── map_tilesetdata_2DCA9E.bin │ │ ├── map_tilesetdata_2DE291.bin │ │ ├── map_tilesetdata_2DF93B.bin │ │ ├── map_tilesetdata_2E0F23.bin │ │ ├── map_tilesetdata_2E25E0.bin │ │ ├── map_tilesetdata_2E3CBA.bin │ │ ├── map_tilesetdata_2E54D9.bin │ │ ├── map_tilesetdata_2E6AFF.bin │ │ ├── map_tilesetdata_2E826D.bin │ │ ├── map_tilesetdata_2E99CF.bin │ │ ├── map_tilesetdata_2EB158.bin │ │ ├── map_tilesetdata_2EC8B5.bin │ │ ├── map_tilesetdata_2EDF83.bin │ │ ├── map_tilesetdata_2EF51C.bin │ │ ├── map_tilesetdata_2F0905.bin │ │ ├── map_tilesetdata_2F20A0.bin │ │ ├── map_tilesetdata_2F3483.bin │ │ ├── map_tilesetdata_2F4DC5.bin │ │ ├── map_tilesetdata_2F6468.bin │ │ ├── map_tilesetdata_2F7A2B.bin │ │ ├── map_tilesetdata_2F9013.bin │ │ ├── map_tilesetdata_2FA7F0.bin │ │ ├── map_tilesetdata_2FC1D6.bin │ │ ├── map_tilesetdata_2FDB72.bin │ │ ├── map_tilesetdata_2FF501.bin │ │ ├── map_tilesetdata_300E48.bin │ │ ├── map_tilesetdata_30279E.bin │ │ ├── map_tilesetdata_303A8F.bin │ │ ├── map_tilesetdata_304AE5.bin │ │ ├── map_tilesetdata_305B85.bin │ │ ├── map_tilesetdata_306E23.bin │ │ ├── map_tilesetdata_307EED.bin │ │ ├── map_tilesetdata_309027.bin │ │ ├── map_tilesetdata_30A1DD.bin │ │ ├── map_tilesetdata_30B1DA.bin │ │ ├── map_tilesetdata_30C229.bin │ │ ├── map_tilesetdata_30CD2E.bin │ │ ├── map_tilesetdata_30D55C.bin │ │ ├── map_tilesetdata_30E9B2.bin │ │ ├── map_tilesetdata_30F2FE.bin │ │ ├── map_tilesetdata_31022E.bin │ │ ├── map_tilesetdata_3108FD.bin │ │ ├── map_tilesetdata_311550.bin │ │ ├── map_tilesetdata_31236D.bin │ │ ├── map_tilesetdata_313C17.bin │ │ ├── map_tilesetdata_3145EE.bin │ │ └── map_tilesetdata_315002.bin │ ├── map_palettes.asm │ ├── map_tilesets.asm │ └── palettes │ │ ├── palette_0.pal │ │ ├── palette_1.pal │ │ ├── palette_10.pal │ │ ├── palette_100.pal │ │ ├── palette_101.pal │ │ ├── palette_102.pal │ │ ├── palette_103.pal │ │ ├── palette_104.pal │ │ ├── palette_105.pal │ │ ├── palette_106.pal │ │ ├── palette_107.pal │ │ ├── palette_108.pal │ │ ├── palette_109.pal │ │ ├── palette_11.pal │ │ ├── palette_110.pal │ │ ├── palette_111.pal │ │ ├── palette_112.pal │ │ ├── palette_113.pal │ │ ├── palette_114.pal │ │ ├── palette_115.pal │ │ ├── palette_116.pal │ │ ├── palette_117.pal │ │ ├── palette_118.pal │ │ ├── palette_119.pal │ │ ├── palette_12.pal │ │ ├── palette_120.pal │ │ ├── palette_121.pal │ │ ├── palette_122.pal │ │ ├── palette_123.pal │ │ ├── palette_124.pal │ │ ├── palette_125.pal │ │ ├── palette_126.pal │ │ ├── palette_127.pal │ │ ├── palette_128.pal │ │ ├── palette_129.pal │ │ ├── palette_13.pal │ │ ├── palette_130.pal │ │ ├── palette_131.pal │ │ ├── palette_132.pal │ │ ├── palette_133.pal │ │ ├── palette_134.pal │ │ ├── palette_135.pal │ │ ├── palette_136.pal │ │ ├── palette_137.pal │ │ ├── palette_138.pal │ │ ├── palette_139.pal │ │ ├── palette_14.pal │ │ ├── palette_140.pal │ │ ├── palette_141.pal │ │ ├── palette_142.pal │ │ ├── palette_143.pal │ │ ├── palette_144.pal │ │ ├── palette_145.pal │ │ ├── palette_146.pal │ │ ├── palette_147.pal │ │ ├── palette_148.pal │ │ ├── palette_149.pal │ │ ├── palette_15.pal │ │ ├── palette_150.pal │ │ ├── palette_151.pal │ │ ├── palette_152.pal │ │ ├── palette_153.pal │ │ ├── palette_154.pal │ │ ├── palette_155.pal │ │ ├── palette_156.pal │ │ ├── palette_157.pal │ │ ├── palette_158.pal │ │ ├── palette_159.pal │ │ ├── palette_16.pal │ │ ├── palette_160.pal │ │ ├── palette_161.pal │ │ ├── palette_162.pal │ │ ├── palette_163.pal │ │ ├── palette_164.pal │ │ ├── palette_165.pal │ │ ├── palette_166.pal │ │ ├── palette_167.pal │ │ ├── palette_17.pal │ │ ├── palette_18.pal │ │ ├── palette_19.pal │ │ ├── palette_2.pal │ │ ├── palette_20.pal │ │ ├── palette_21.pal │ │ ├── palette_22.pal │ │ ├── palette_23.pal │ │ ├── palette_24.pal │ │ ├── palette_25.pal │ │ ├── palette_26.pal │ │ ├── palette_27.pal │ │ ├── palette_28.pal │ │ ├── palette_29.pal │ │ ├── palette_3.pal │ │ ├── palette_30.pal │ │ ├── palette_31.pal │ │ ├── palette_32.pal │ │ ├── palette_33.pal │ │ ├── palette_34.pal │ │ ├── palette_35.pal │ │ ├── palette_36.pal │ │ ├── palette_37.pal │ │ ├── palette_38.pal │ │ ├── palette_39.pal │ │ ├── palette_4.pal │ │ ├── palette_40.pal │ │ ├── palette_41.pal │ │ ├── palette_42.pal │ │ ├── palette_43.pal │ │ ├── palette_44.pal │ │ ├── palette_45.pal │ │ ├── palette_46.pal │ │ ├── palette_47.pal │ │ ├── palette_48.pal │ │ ├── palette_49.pal │ │ ├── palette_5.pal │ │ ├── palette_50.pal │ │ ├── palette_51.pal │ │ ├── palette_52.pal │ │ ├── palette_53.pal │ │ ├── palette_54.pal │ │ ├── palette_55.pal │ │ ├── palette_56.pal │ │ ├── palette_57.pal │ │ ├── palette_58.pal │ │ ├── palette_59.pal │ │ ├── palette_6.pal │ │ ├── palette_60.pal │ │ ├── palette_61.pal │ │ ├── palette_62.pal │ │ ├── palette_63.pal │ │ ├── palette_64.pal │ │ ├── palette_65.pal │ │ ├── palette_66.pal │ │ ├── palette_67.pal │ │ ├── palette_68.pal │ │ ├── palette_69.pal │ │ ├── palette_7.pal │ │ ├── palette_70.pal │ │ ├── palette_71.pal │ │ ├── palette_72.pal │ │ ├── palette_73.pal │ │ ├── palette_74.pal │ │ ├── palette_75.pal │ │ ├── palette_76.pal │ │ ├── palette_77.pal │ │ ├── palette_78.pal │ │ ├── palette_79.pal │ │ ├── palette_8.pal │ │ ├── palette_80.pal │ │ ├── palette_81.pal │ │ ├── palette_82.pal │ │ ├── palette_83.pal │ │ ├── palette_84.pal │ │ ├── palette_85.pal │ │ ├── palette_86.pal │ │ ├── palette_87.pal │ │ ├── palette_88.pal │ │ ├── palette_89.pal │ │ ├── palette_9.pal │ │ ├── palette_90.pal │ │ ├── palette_91.pal │ │ ├── palette_92.pal │ │ ├── palette_93.pal │ │ ├── palette_94.pal │ │ ├── palette_95.pal │ │ ├── palette_96.pal │ │ ├── palette_97.pal │ │ ├── palette_98.pal │ │ └── palette_99.pal ├── misc │ ├── fbd701.4bpp │ ├── fbd9bf.4bpp │ ├── fbdc5f.4bpp │ ├── fbdd25.4bpp │ ├── fbdf55.4bpp │ ├── fbe181.4bpp │ ├── fbe3bb.4bpp │ ├── fbe489.4bpp │ ├── fbe70b.4bpp │ ├── fbe7d1.4bpp │ ├── fbe9fd.4bpp │ ├── fbea79.4bpp │ ├── fbebdf.4bpp │ ├── fbec3f.4bpp │ ├── fbed15.4bpp │ ├── fbed6d.4bpp │ ├── fbeddb.4bpp │ ├── fbee0d.4bpp │ ├── fbee31.4bpp │ ├── fbf061.4bpp │ ├── fbf285.4bpp │ ├── fbf4b9.4bpp │ ├── fbf585.4bpp │ ├── fbf7d1.4bpp │ ├── fbf891.4bpp │ ├── fbfa39.4bpp │ ├── fbfa9b.4bpp │ ├── fbfb3f.4bpp │ ├── fbfe53.4bpp │ ├── fc019f.4bpp │ ├── fc0445.4bpp │ ├── fc069d.4bpp │ ├── fc0971.4bpp │ ├── fc0ce3.4bpp │ ├── fc0f37.4bpp │ ├── fc1183.4bpp │ ├── fc12cd.4bpp │ ├── fc152f.4bpp │ ├── fc164d.4bpp │ ├── fc1831.4bpp │ ├── fc19e9.4bpp │ ├── fc1c09.4bpp │ ├── fc1dd9.4bpp │ ├── fc1fe3.4bpp │ ├── fc2057.4bpp │ ├── fc22bf.4bpp │ ├── fc22fb.4bpp │ ├── fc2455.4bpp │ ├── fc2583.4bpp │ ├── fc2715.4bpp │ ├── fc2815.4bpp │ ├── fc29c7.4bpp │ ├── fc2a3f.4bpp │ ├── fc2b2f.4bpp │ ├── fc2cff.4bpp │ ├── fc2eaf.4bpp │ ├── fc30b5.4bpp │ ├── fc3355.4bpp │ ├── fc3537.4bpp │ ├── fc373f.4bpp │ ├── fc3965.4bpp │ ├── fc3c9b.4bpp │ ├── fc3edd.4bpp │ ├── fc4231.4bpp │ ├── fc4383.4bpp │ ├── fc465f.4bpp │ ├── fc49f7.4bpp │ ├── fc4ad5.4bpp │ ├── fc4cdd.4bpp │ ├── fc4f2d.4bpp │ ├── fc5053.4bpp │ ├── fc52eb.4bpp │ ├── fc54b3.4bpp │ ├── fc57f1.4bpp │ ├── fc5983.4bpp │ ├── fc5bb3.4bpp │ ├── fc5c47.4bpp │ ├── fc5e55.4bpp │ ├── fc5e9d.4bpp │ ├── fc6159.4bpp │ ├── fc6491.4bpp │ ├── fc6593.4bpp │ ├── fc667b.4bpp │ ├── fc6769.4bpp │ ├── fc6859.4bpp │ ├── fc6ab1.4bpp │ ├── fc6d67.4bpp │ ├── fc6f4d.4bpp │ ├── fc7295.4bpp │ ├── fc7405.4bpp │ ├── fc74b3.4bpp │ ├── fc75e3.4bpp │ ├── fc77a7.4bpp │ ├── fc78b3.4bpp │ ├── fc7979.4bpp │ ├── fc7a33.4bpp │ ├── fc7b79.4bpp │ ├── fc7e07.4bpp │ ├── fc7fdf.4bpp │ ├── fc80a7.4bpp │ ├── fc8155.4bpp │ ├── fc8233.4bpp │ ├── fc83b3.4bpp │ ├── fc8611.4bpp │ ├── fc8771.4bpp │ ├── fc87e1.4bpp │ ├── fc88d1.4bpp │ ├── fc89e1.4bpp │ ├── fc8b35.4bpp │ ├── fc8bdd.4bpp │ ├── fc8d63.4bpp │ ├── fc8e5d.4bpp │ ├── fc8ffb.4bpp │ ├── fc92b5.4bpp │ ├── fc9549.4bpp │ ├── fc960f.4bpp │ ├── fc97f5.4bpp │ ├── fc99bb.4bpp │ ├── fc9b49.4bpp │ ├── fc9d4b.4bpp │ ├── fc9ff3.4bpp │ ├── fca01d.4bpp │ ├── fca2e3.4bpp │ ├── fca2ff.4bpp │ ├── fca589.4bpp │ ├── fca705.4bpp │ ├── fca881.4bpp │ ├── fcaa11.4bpp │ ├── fcac3f.4bpp │ ├── fcaea1.4bpp │ ├── fcb0ad.4bpp │ ├── fcb327.4bpp │ ├── fcb423.4bpp │ ├── fcb603.4bpp │ ├── fcb889.4bpp │ ├── fcba01.4bpp │ ├── fcbbd1.4bpp │ ├── fcbe95.4bpp │ ├── fcc05d.4bpp │ ├── fcc27d.4bpp │ ├── fcc519.4bpp │ ├── fcc65f.4bpp │ ├── fcc84d.4bpp │ ├── fcca85.4bpp │ ├── fccbaf.4bpp │ ├── fccd43.4bpp │ ├── fccef9.4bpp │ ├── fcd029.4bpp │ ├── fcd10b.4bpp │ ├── fcd217.4bpp │ ├── fcd29b.4bpp │ ├── fcd4a9.4bpp │ ├── fcd7e5.4bpp │ ├── fcda5b.4bpp │ ├── fcdba3.4bpp │ ├── fcde25.4bpp │ ├── fcdeb1.4bpp │ ├── fcdf77.4bpp │ ├── fce16b.4bpp │ ├── fce359.4bpp │ ├── fce497.4bpp │ ├── fce641.4bpp │ ├── fce6d9.4bpp │ ├── fce823.4bpp │ ├── fce983.4bpp │ ├── fce9ed.4bpp │ ├── fceb0b.4bpp │ ├── fcebab.4bpp │ ├── fced11.4bpp │ ├── fcee93.4bpp │ ├── fcf0c5.4bpp │ ├── fcf2af.4bpp │ ├── fcf3b1.4bpp │ ├── fcf521.4bpp │ ├── fcf6d1.4bpp │ ├── fcf7f9.4bpp │ ├── fcf849.4bpp │ ├── fcf8f9.4bpp │ ├── fcf9cd.4bpp │ ├── fcfa81.4bpp │ ├── fcfb25.4bpp │ ├── fcfbff.4bpp │ ├── fcfd01.4bpp │ ├── fcfe4d.4bpp │ ├── fcffad.4bpp │ ├── fd00c5.4bpp │ ├── fd0145.4bpp │ ├── fd0195.4bpp │ ├── fd0403.4bpp │ ├── fd068d.4bpp │ ├── fd0839.4bpp │ ├── fd09e5.4bpp │ ├── fd0b89.4bpp │ ├── fd0d33.4bpp │ ├── fd0f3f.4bpp │ ├── fd111d.4bpp │ ├── fd1193.4bpp │ ├── fd1285.4bpp │ ├── fd1497.4bpp │ ├── fd1601.4bpp │ ├── fd171d.4bpp │ ├── fd17e9.4bpp │ ├── fd1b25.4bpp │ ├── fd1e6b.4bpp │ ├── fd2199.4bpp │ ├── fd24b5.4bpp │ ├── fd27e7.4bpp │ ├── fd2b2b.4bpp │ ├── fd2e5b.4bpp │ ├── fd3179.4bpp │ ├── fd31b3.4bpp │ ├── fd34c7.4bpp │ ├── fd37d9.4bpp │ ├── fd3aed.4bpp │ ├── fd3dfb.4bpp │ ├── fd3ee7.4bpp │ ├── fd3f5d.4bpp │ ├── fd407f.4bpp │ ├── fd4205.4bpp │ ├── fd438b.4bpp │ ├── fd458b.4bpp │ ├── fd468f.4bpp │ ├── fd4745.4bpp │ ├── fd48cf.4bpp │ ├── fd4aab.4bpp │ ├── fd51e5.4bpp │ ├── fd6893.4bpp │ ├── fd7521.4bpp │ ├── fd778b.4bpp │ ├── fd796f.4bpp │ ├── fd7bb3.4bpp │ ├── fd7ed9.4bpp │ ├── fd812d.4bpp │ ├── fd8389.4bpp │ ├── fd862d.4bpp │ ├── fd88fb.4bpp │ ├── fd8ad7.4bpp │ ├── fd98c3.4bpp │ ├── fdaf1f.4bpp │ ├── fdb55b.4bpp │ ├── fdc53d.4bpp │ ├── fdc655.4bpp │ ├── fdc739.4bpp │ ├── fdc817.4bpp │ └── fdc8a9.4bpp ├── objects │ ├── 3dea69.4bpp │ ├── dungeon_object_sprites.asm │ ├── fbd701.bin │ ├── items.4bpp │ ├── items │ │ ├── 3ddce9.4bpp │ │ ├── arrow.4bpp │ │ ├── feather.4bpp │ │ ├── flower.4bpp │ │ ├── gitan.4bpp │ │ ├── herb.4bpp │ │ ├── meat.4bpp │ │ ├── pot.4bpp │ │ ├── rice.4bpp │ │ ├── ring.4bpp │ │ ├── scroll.4bpp │ │ ├── scroll_1.4bpp │ │ ├── shield.4bpp │ │ ├── staff.4bpp │ │ └── sword.4bpp │ ├── stairs_down.4bpp │ ├── stairs_up.4bpp │ ├── traps │ │ ├── 3de3e9.4bpp │ │ ├── 3df269.4bpp │ │ ├── 3df3e9.4bpp │ │ ├── 3df9e9.4bpp │ │ ├── alarm_trap.4bpp │ │ ├── arrow_trap.4bpp │ │ ├── biglandmine_trap.4bpp │ │ ├── boulder_trap.4bpp │ │ ├── dreamgas_trap.4bpp │ │ ├── hunger_trap.4bpp │ │ ├── landmine_trap.4bpp │ │ ├── log_trap.4bpp │ │ ├── pitfall_trap.4bpp │ │ ├── rotten_trap.4bpp │ │ ├── rust_trap.4bpp │ │ ├── sleepinggas_trap.4bpp │ │ ├── slowness_trap.4bpp │ │ ├── spinning_trap.4bpp │ │ ├── summon_trap.4bpp │ │ ├── tiger_trap.4bpp │ │ ├── trapspawner.4bpp │ │ ├── triprock_trap.4bpp │ │ └── unequip_trap.4bpp │ ├── warptile.4bpp │ └── warptile_1.4bpp ├── ui.bin └── ui │ ├── fa8083.1bpp │ ├── hud.2bpp │ └── shop_numbers.2bpp ├── hardware.asm ├── includes.asm ├── linkfile ├── macros.asm ├── macros ├── audio.asm ├── code.asm ├── data.asm ├── events.asm ├── maps.asm ├── music.asm ├── npc_events.asm ├── npc_events_script.asm └── text.asm ├── rominfo.asm ├── shiren.sha1 ├── spc ├── Makefile ├── SPCEngine.asm ├── hardware.asm ├── linkfile └── rominfo.asm ├── structs └── structs.asm ├── text.asm ├── text ├── debugitemmenu.asm ├── debugmenus.asm ├── dialogue.asm ├── dungeonmessages.asm ├── enemynames.asm ├── itemdescriptions.asm ├── itemnames.asm ├── leaderboard.asm ├── signs.asm └── windowmenutext.asm ├── tools ├── GraphicsTool │ ├── GraphicsDecompress │ ├── GraphicsDecompress.dll │ ├── GraphicsDecompress.runtimeconfig.json │ ├── LunaPNG.dll │ ├── System.IO.Hashing.dll │ └── palettes.pal ├── Makefile ├── brr_decoder ├── brr_encoder ├── common.h ├── gbagfx │ ├── .gitignore │ ├── LICENSE │ ├── Makefile │ ├── convert_png.c │ ├── convert_png.h │ ├── font.c │ ├── font.h │ ├── gfx.c │ ├── gfx.h │ ├── global.h │ ├── huff.c │ ├── huff.h │ ├── jasc_pal.c │ ├── jasc_pal.h │ ├── lz.c │ ├── lz.h │ ├── main.c │ ├── options.h │ ├── rl.c │ ├── rl.h │ ├── util.c │ └── util.h ├── gfx.py ├── gfxcompress.c ├── scan_includes.c └── split_images.sh └── wram.asm /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /audio/samples/sample_0.brr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_0.brr -------------------------------------------------------------------------------- /audio/samples/sample_0.brr.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_0.brr.wav -------------------------------------------------------------------------------- /audio/samples/sample_1.brr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_1.brr -------------------------------------------------------------------------------- /audio/samples/sample_1.brr.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_1.brr.wav -------------------------------------------------------------------------------- /audio/samples/sample_10.brr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_10.brr -------------------------------------------------------------------------------- /audio/samples/sample_11.brr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_11.brr -------------------------------------------------------------------------------- /audio/samples/sample_12.brr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_12.brr -------------------------------------------------------------------------------- /audio/samples/sample_13.brr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_13.brr -------------------------------------------------------------------------------- /audio/samples/sample_14.brr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_14.brr -------------------------------------------------------------------------------- /audio/samples/sample_15.brr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_15.brr -------------------------------------------------------------------------------- /audio/samples/sample_17.brr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_17.brr -------------------------------------------------------------------------------- /audio/samples/sample_18.brr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_18.brr -------------------------------------------------------------------------------- /audio/samples/sample_19.brr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_19.brr -------------------------------------------------------------------------------- /audio/samples/sample_2.brr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_2.brr -------------------------------------------------------------------------------- /audio/samples/sample_2.brr.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_2.brr.wav -------------------------------------------------------------------------------- /audio/samples/sample_20.brr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_20.brr -------------------------------------------------------------------------------- /audio/samples/sample_21.brr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_21.brr -------------------------------------------------------------------------------- /audio/samples/sample_22.brr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_22.brr -------------------------------------------------------------------------------- /audio/samples/sample_23.brr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_23.brr -------------------------------------------------------------------------------- /audio/samples/sample_24.brr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_24.brr -------------------------------------------------------------------------------- /audio/samples/sample_25.brr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_25.brr -------------------------------------------------------------------------------- /audio/samples/sample_26.brr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_26.brr -------------------------------------------------------------------------------- /audio/samples/sample_27.brr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_27.brr -------------------------------------------------------------------------------- /audio/samples/sample_28.brr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_28.brr -------------------------------------------------------------------------------- /audio/samples/sample_29.brr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_29.brr -------------------------------------------------------------------------------- /audio/samples/sample_3.brr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_3.brr -------------------------------------------------------------------------------- /audio/samples/sample_3.brr.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_3.brr.wav -------------------------------------------------------------------------------- /audio/samples/sample_30.brr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_30.brr -------------------------------------------------------------------------------- /audio/samples/sample_31.brr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_31.brr -------------------------------------------------------------------------------- /audio/samples/sample_32.brr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_32.brr -------------------------------------------------------------------------------- /audio/samples/sample_33.brr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_33.brr -------------------------------------------------------------------------------- /audio/samples/sample_34.brr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_34.brr -------------------------------------------------------------------------------- /audio/samples/sample_35.brr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_35.brr -------------------------------------------------------------------------------- /audio/samples/sample_36.brr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_36.brr -------------------------------------------------------------------------------- /audio/samples/sample_37.brr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_37.brr -------------------------------------------------------------------------------- /audio/samples/sample_38.brr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_38.brr -------------------------------------------------------------------------------- /audio/samples/sample_39.brr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_39.brr -------------------------------------------------------------------------------- /audio/samples/sample_4.brr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_4.brr -------------------------------------------------------------------------------- /audio/samples/sample_4.brr.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_4.brr.wav -------------------------------------------------------------------------------- /audio/samples/sample_40.brr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_40.brr -------------------------------------------------------------------------------- /audio/samples/sample_41.brr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_41.brr -------------------------------------------------------------------------------- /audio/samples/sample_42.brr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_42.brr -------------------------------------------------------------------------------- /audio/samples/sample_43.brr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_43.brr -------------------------------------------------------------------------------- /audio/samples/sample_44.brr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_44.brr -------------------------------------------------------------------------------- /audio/samples/sample_45.brr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_45.brr -------------------------------------------------------------------------------- /audio/samples/sample_46.brr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_46.brr -------------------------------------------------------------------------------- /audio/samples/sample_48.brr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_48.brr -------------------------------------------------------------------------------- /audio/samples/sample_49.brr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_49.brr -------------------------------------------------------------------------------- /audio/samples/sample_5.brr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_5.brr -------------------------------------------------------------------------------- /audio/samples/sample_5.brr.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_5.brr.wav -------------------------------------------------------------------------------- /audio/samples/sample_50.brr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_50.brr -------------------------------------------------------------------------------- /audio/samples/sample_51.brr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_51.brr -------------------------------------------------------------------------------- /audio/samples/sample_52.brr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_52.brr -------------------------------------------------------------------------------- /audio/samples/sample_53.brr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_53.brr -------------------------------------------------------------------------------- /audio/samples/sample_54.brr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_54.brr -------------------------------------------------------------------------------- /audio/samples/sample_55.brr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_55.brr -------------------------------------------------------------------------------- /audio/samples/sample_56.brr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_56.brr -------------------------------------------------------------------------------- /audio/samples/sample_57.brr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_57.brr -------------------------------------------------------------------------------- /audio/samples/sample_58.brr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_58.brr -------------------------------------------------------------------------------- /audio/samples/sample_59.brr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_59.brr -------------------------------------------------------------------------------- /audio/samples/sample_6.brr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_6.brr -------------------------------------------------------------------------------- /audio/samples/sample_6.brr.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_6.brr.wav -------------------------------------------------------------------------------- /audio/samples/sample_60.brr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_60.brr -------------------------------------------------------------------------------- /audio/samples/sample_7.brr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_7.brr -------------------------------------------------------------------------------- /audio/samples/sample_7.brr.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_7.brr.wav -------------------------------------------------------------------------------- /audio/samples/sample_8.brr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_8.brr -------------------------------------------------------------------------------- /audio/samples/sample_8.brr.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_8.brr.wav -------------------------------------------------------------------------------- /audio/samples/sample_9.brr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_9.brr -------------------------------------------------------------------------------- /audio/samples/sample_9.brr.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/audio/samples/sample_9.brr.wav -------------------------------------------------------------------------------- /convert-brr.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | for file in "$1"/*.brr 4 | do 5 | tools/brr_decoder -s 16000 "$file" "$file".wav 6 | done -------------------------------------------------------------------------------- /data/bank32/f20042.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/data/bank32/f20042.bin -------------------------------------------------------------------------------- /data/bank32/f219b5.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/data/bank32/f219b5.bin -------------------------------------------------------------------------------- /data/bank32/f22844.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/data/bank32/f22844.bin -------------------------------------------------------------------------------- /data/bank32/f238ad.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/data/bank32/f238ad.bin -------------------------------------------------------------------------------- /data/bank32/f249bf.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/data/bank32/f249bf.bin -------------------------------------------------------------------------------- /data/bank32/f25774.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/data/bank32/f25774.bin -------------------------------------------------------------------------------- /data/bank32/f268e8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/data/bank32/f268e8.bin -------------------------------------------------------------------------------- /data/bank32/f27937.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/data/bank32/f27937.bin -------------------------------------------------------------------------------- /data/bank32/f288cf.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/data/bank32/f288cf.bin -------------------------------------------------------------------------------- /data/bank32/f29b45.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/data/bank32/f29b45.bin -------------------------------------------------------------------------------- /data/bank32/f2ad2d.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/data/bank32/f2ad2d.bin -------------------------------------------------------------------------------- /data/bank32/f2bf55.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/data/bank32/f2bf55.bin -------------------------------------------------------------------------------- /data/bank32/f2d001.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/data/bank32/f2d001.bin -------------------------------------------------------------------------------- /data/bank32/f2e0e0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/data/bank32/f2e0e0.bin -------------------------------------------------------------------------------- /data/bank32/f2f2f3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/data/bank32/f2f2f3.bin -------------------------------------------------------------------------------- /data/bank32/f30434.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/data/bank32/f30434.bin -------------------------------------------------------------------------------- /data/bank32/f3158c.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/data/bank32/f3158c.bin -------------------------------------------------------------------------------- /data/bank32/f32783.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/data/bank32/f32783.bin -------------------------------------------------------------------------------- /data/bank32/f33af3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/data/bank32/f33af3.bin -------------------------------------------------------------------------------- /data/bank32/f34ad8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/data/bank32/f34ad8.bin -------------------------------------------------------------------------------- /data/bank32/f35acb.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/data/bank32/f35acb.bin -------------------------------------------------------------------------------- /data/bank32/f36426.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/data/bank32/f36426.bin -------------------------------------------------------------------------------- /data/demos/demo1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/data/demos/demo1.bin -------------------------------------------------------------------------------- /data/demos/demo2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/data/demos/demo2.bin -------------------------------------------------------------------------------- /data/demos/demo3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/data/demos/demo3.bin -------------------------------------------------------------------------------- /data/demos/demo4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/data/demos/demo4.bin -------------------------------------------------------------------------------- /data/demos/demo5.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/data/demos/demo5.bin -------------------------------------------------------------------------------- /data/demos/demo6.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/data/demos/demo6.bin -------------------------------------------------------------------------------- /gfx/bg1/condor.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/condor.pal -------------------------------------------------------------------------------- /gfx/bg1/f401e0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f401e0.bin -------------------------------------------------------------------------------- /gfx/bg1/f4023b.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f4023b.bin -------------------------------------------------------------------------------- /gfx/bg1/f41d0c.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f41d0c.bin -------------------------------------------------------------------------------- /gfx/bg1/f41f91.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f41f91.bin -------------------------------------------------------------------------------- /gfx/bg1/f422b0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f422b0.bin -------------------------------------------------------------------------------- /gfx/bg1/f422ed.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f422ed.bin -------------------------------------------------------------------------------- /gfx/bg1/f44e61.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f44e61.bin -------------------------------------------------------------------------------- /gfx/bg1/f44f7c.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f44f7c.bin -------------------------------------------------------------------------------- /gfx/bg1/f44ff5.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f44ff5.bin -------------------------------------------------------------------------------- /gfx/bg1/f474b0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f474b0.bin -------------------------------------------------------------------------------- /gfx/bg1/f4769c.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f4769c.bin -------------------------------------------------------------------------------- /gfx/bg1/f476bb.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f476bb.bin -------------------------------------------------------------------------------- /gfx/bg1/f49488.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f49488.bin -------------------------------------------------------------------------------- /gfx/bg1/f49676.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f49676.bin -------------------------------------------------------------------------------- /gfx/bg1/f496bd.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f496bd.bin -------------------------------------------------------------------------------- /gfx/bg1/f496dc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f496dc.bin -------------------------------------------------------------------------------- /gfx/bg1/f4a359.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f4a359.bin -------------------------------------------------------------------------------- /gfx/bg1/f4a754.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f4a754.bin -------------------------------------------------------------------------------- /gfx/bg1/f4abea.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f4abea.bin -------------------------------------------------------------------------------- /gfx/bg1/f4ac27.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f4ac27.bin -------------------------------------------------------------------------------- /gfx/bg1/f4bc44.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f4bc44.bin -------------------------------------------------------------------------------- /gfx/bg1/f4bfe1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f4bfe1.bin -------------------------------------------------------------------------------- /gfx/bg1/f4e2ca.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f4e2ca.bin -------------------------------------------------------------------------------- /gfx/bg1/f4e325.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f4e325.bin -------------------------------------------------------------------------------- /gfx/bg1/f4f061.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f4f061.bin -------------------------------------------------------------------------------- /gfx/bg1/f51eb3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f51eb3.bin -------------------------------------------------------------------------------- /gfx/bg1/f54db6.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f54db6.bin -------------------------------------------------------------------------------- /gfx/bg1/f54df3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f54df3.bin -------------------------------------------------------------------------------- /gfx/bg1/f5563f.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f5563f.bin -------------------------------------------------------------------------------- /gfx/bg1/f55682.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f55682.bin -------------------------------------------------------------------------------- /gfx/bg1/f559aa.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f559aa.bin -------------------------------------------------------------------------------- /gfx/bg1/f55a23.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f55a23.bin -------------------------------------------------------------------------------- /gfx/bg1/f59cf1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f59cf1.bin -------------------------------------------------------------------------------- /gfx/bg1/f59e12.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f59e12.bin -------------------------------------------------------------------------------- /gfx/bg1/f5a10a.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f5a10a.bin -------------------------------------------------------------------------------- /gfx/bg1/f5a1a1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f5a1a1.bin -------------------------------------------------------------------------------- /gfx/bg1/f5c8be.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f5c8be.bin -------------------------------------------------------------------------------- /gfx/bg1/f5ca66.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f5ca66.bin -------------------------------------------------------------------------------- /gfx/bg1/f5ccee.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f5ccee.bin -------------------------------------------------------------------------------- /gfx/bg1/f5cd67.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f5cd67.bin -------------------------------------------------------------------------------- /gfx/bg1/f601be.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f601be.bin -------------------------------------------------------------------------------- /gfx/bg1/f602a8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f602a8.bin -------------------------------------------------------------------------------- /gfx/bg1/f606d1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f606d1.bin -------------------------------------------------------------------------------- /gfx/bg1/f6072c.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f6072c.bin -------------------------------------------------------------------------------- /gfx/bg1/f630cb.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f630cb.bin -------------------------------------------------------------------------------- /gfx/bg1/f631ab.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f631ab.bin -------------------------------------------------------------------------------- /gfx/bg1/f632f6.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f632f6.bin -------------------------------------------------------------------------------- /gfx/bg1/f63315.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f63315.bin -------------------------------------------------------------------------------- /gfx/bg1/f6423d.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f6423d.bin -------------------------------------------------------------------------------- /gfx/bg1/f64294.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f64294.bin -------------------------------------------------------------------------------- /gfx/bg1/f64858.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f64858.bin -------------------------------------------------------------------------------- /gfx/bg1/f6490d.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f6490d.bin -------------------------------------------------------------------------------- /gfx/bg1/f655ec.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f655ec.bin -------------------------------------------------------------------------------- /gfx/bg1/f6568d.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f6568d.bin -------------------------------------------------------------------------------- /gfx/bg1/f6577e.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f6577e.bin -------------------------------------------------------------------------------- /gfx/bg1/f67d87.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f67d87.bin -------------------------------------------------------------------------------- /gfx/bg1/f67e15.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f67e15.bin -------------------------------------------------------------------------------- /gfx/bg1/f67e8e.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f67e8e.bin -------------------------------------------------------------------------------- /gfx/bg1/f684fc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f684fc.bin -------------------------------------------------------------------------------- /gfx/bg1/f6857b.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f6857b.bin -------------------------------------------------------------------------------- /gfx/bg1/f68630.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f68630.bin -------------------------------------------------------------------------------- /gfx/bg1/f6a870.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f6a870.bin -------------------------------------------------------------------------------- /gfx/bg1/f6a8f4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f6a8f4.bin -------------------------------------------------------------------------------- /gfx/bg1/f6a913.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f6a913.bin -------------------------------------------------------------------------------- /gfx/bg1/f6bbce.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f6bbce.bin -------------------------------------------------------------------------------- /gfx/bg1/f6bc53.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f6bc53.bin -------------------------------------------------------------------------------- /gfx/bg1/f6bc8e.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f6bc8e.bin -------------------------------------------------------------------------------- /gfx/bg1/f6bccb.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f6bccb.bin -------------------------------------------------------------------------------- /gfx/bg1/f6cce7.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f6cce7.bin -------------------------------------------------------------------------------- /gfx/bg1/f6cd93.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f6cd93.bin -------------------------------------------------------------------------------- /gfx/bg1/f6ce9e.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f6ce9e.bin -------------------------------------------------------------------------------- /gfx/bg1/f6cef9.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f6cef9.bin -------------------------------------------------------------------------------- /gfx/bg1/f700cb.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f700cb.bin -------------------------------------------------------------------------------- /gfx/bg1/f70207.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f70207.bin -------------------------------------------------------------------------------- /gfx/bg1/f704a6.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f704a6.bin -------------------------------------------------------------------------------- /gfx/bg1/f7053d.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f7053d.bin -------------------------------------------------------------------------------- /gfx/bg1/f72bf4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f72bf4.bin -------------------------------------------------------------------------------- /gfx/bg1/f72d5d.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f72d5d.bin -------------------------------------------------------------------------------- /gfx/bg1/f7318b.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f7318b.bin -------------------------------------------------------------------------------- /gfx/bg1/f73204.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f73204.bin -------------------------------------------------------------------------------- /gfx/bg1/f757d3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f757d3.bin -------------------------------------------------------------------------------- /gfx/bg1/f75943.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f75943.bin -------------------------------------------------------------------------------- /gfx/bg1/f75c77.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f75c77.bin -------------------------------------------------------------------------------- /gfx/bg1/f75cb4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f75cb4.bin -------------------------------------------------------------------------------- /gfx/bg1/f78b91.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f78b91.bin -------------------------------------------------------------------------------- /gfx/bg1/f78dd3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f78dd3.bin -------------------------------------------------------------------------------- /gfx/bg1/f793c8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f793c8.bin -------------------------------------------------------------------------------- /gfx/bg1/f7dc61.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f7dc61.bin -------------------------------------------------------------------------------- /gfx/bg1/f7dd40.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f7dd40.bin -------------------------------------------------------------------------------- /gfx/bg1/f7f977.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f7f977.bin -------------------------------------------------------------------------------- /gfx/bg1/f7f9b4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f7f9b4.bin -------------------------------------------------------------------------------- /gfx/bg1/f81d94.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f81d94.bin -------------------------------------------------------------------------------- /gfx/bg1/f821bd.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f821bd.bin -------------------------------------------------------------------------------- /gfx/bg1/f822ae.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f822ae.bin -------------------------------------------------------------------------------- /gfx/bg1/f8406f.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f8406f.bin -------------------------------------------------------------------------------- /gfx/bg1/f841b6.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f841b6.bin -------------------------------------------------------------------------------- /gfx/bg1/f842e3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f842e3.bin -------------------------------------------------------------------------------- /gfx/bg1/f8659e.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f8659e.bin -------------------------------------------------------------------------------- /gfx/bg1/f866e4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f866e4.bin -------------------------------------------------------------------------------- /gfx/bg1/f86703.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f86703.bin -------------------------------------------------------------------------------- /gfx/bg1/f88d25.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f88d25.bin -------------------------------------------------------------------------------- /gfx/bg1/f88e10.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f88e10.bin -------------------------------------------------------------------------------- /gfx/bg1/f8906e.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f8906e.bin -------------------------------------------------------------------------------- /gfx/bg1/f890ab.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f890ab.bin -------------------------------------------------------------------------------- /gfx/bg1/f8aa87.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f8aa87.bin -------------------------------------------------------------------------------- /gfx/bg1/f8ad82.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f8ad82.bin -------------------------------------------------------------------------------- /gfx/bg1/f8b0b1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f8b0b1.bin -------------------------------------------------------------------------------- /gfx/bg1/f8b0ee.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f8b0ee.bin -------------------------------------------------------------------------------- /gfx/bg1/f8c495.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f8c495.bin -------------------------------------------------------------------------------- /gfx/bg1/f8c4f2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f8c4f2.bin -------------------------------------------------------------------------------- /gfx/bg1/f8c7b0.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f8c7b0.bin -------------------------------------------------------------------------------- /gfx/bg1/f8c919.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f8c919.bin -------------------------------------------------------------------------------- /gfx/bg1/f903be.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f903be.bin -------------------------------------------------------------------------------- /gfx/bg1/f9049a.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f9049a.bin -------------------------------------------------------------------------------- /gfx/bg1/f9072f.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f9072f.bin -------------------------------------------------------------------------------- /gfx/bg1/f9074e.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f9074e.bin -------------------------------------------------------------------------------- /gfx/bg1/f9323e.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f9323e.bin -------------------------------------------------------------------------------- /gfx/bg1/f93383.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f93383.bin -------------------------------------------------------------------------------- /gfx/bg1/f938a7.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f938a7.bin -------------------------------------------------------------------------------- /gfx/bg1/f9395c.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f9395c.bin -------------------------------------------------------------------------------- /gfx/bg1/f95994.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f95994.bin -------------------------------------------------------------------------------- /gfx/bg1/f95acd.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f95acd.bin -------------------------------------------------------------------------------- /gfx/bg1/f95b0a.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f95b0a.bin -------------------------------------------------------------------------------- /gfx/bg1/f98b7d.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f98b7d.bin -------------------------------------------------------------------------------- /gfx/bg1/f98bd7.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f98bd7.bin -------------------------------------------------------------------------------- /gfx/bg1/f9934e.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f9934e.bin -------------------------------------------------------------------------------- /gfx/bg1/f993c7.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f993c7.bin -------------------------------------------------------------------------------- /gfx/bg1/f9b3db.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f9b3db.bin -------------------------------------------------------------------------------- /gfx/bg1/f9b530.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f9b530.bin -------------------------------------------------------------------------------- /gfx/bg1/f9b5c7.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f9b5c7.bin -------------------------------------------------------------------------------- /gfx/bg1/f9ec26.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f9ec26.bin -------------------------------------------------------------------------------- /gfx/bg1/f9ee09.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f9ee09.bin -------------------------------------------------------------------------------- /gfx/bg1/f9f23d.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f9f23d.bin -------------------------------------------------------------------------------- /gfx/bg1/f9f27a.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/f9f27a.bin -------------------------------------------------------------------------------- /gfx/bg1/fa24f6.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/fa24f6.bin -------------------------------------------------------------------------------- /gfx/bg1/fa2637.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/fa2637.bin -------------------------------------------------------------------------------- /gfx/bg1/fa2923.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/fa2923.bin -------------------------------------------------------------------------------- /gfx/bg1/fa2942.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/fa2942.bin -------------------------------------------------------------------------------- /gfx/bg1/fa386d.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/fa386d.bin -------------------------------------------------------------------------------- /gfx/bg1/fa38e3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/fa38e3.bin -------------------------------------------------------------------------------- /gfx/bg1/fa3ea1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/fa3ea1.bin -------------------------------------------------------------------------------- /gfx/bg1/fa3f56.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/fa3f56.bin -------------------------------------------------------------------------------- /gfx/bg1/fa541d.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/fa541d.bin -------------------------------------------------------------------------------- /gfx/bg1/fa555d.bin: -------------------------------------------------------------------------------- 1 | _RJccc -------------------------------------------------------------------------------- /gfx/bg1/fa557c.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/fa557c.bin -------------------------------------------------------------------------------- /gfx/bg1/fa5af1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg1/fa5af1.bin -------------------------------------------------------------------------------- /gfx/bg3/dc1ad1.2bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg3/dc1ad1.2bpp -------------------------------------------------------------------------------- /gfx/bg3/dc24ce.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg3/dc24ce.bin -------------------------------------------------------------------------------- /gfx/bg3/dc268e.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg3/dc268e.bin -------------------------------------------------------------------------------- /gfx/bg3/dc2892.2bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg3/dc2892.2bpp -------------------------------------------------------------------------------- /gfx/bg3/dc2a24.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg3/dc2a24.bin -------------------------------------------------------------------------------- /gfx/bg3/dc2a64.2bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg3/dc2a64.2bpp -------------------------------------------------------------------------------- /gfx/bg3/dc2bcb.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg3/dc2bcb.bin -------------------------------------------------------------------------------- /gfx/bg3/dc2bfe.2bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg3/dc2bfe.2bpp -------------------------------------------------------------------------------- /gfx/bg3/dc3501.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg3/dc3501.bin -------------------------------------------------------------------------------- /gfx/bg3/dc3611.2bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg3/dc3611.2bpp -------------------------------------------------------------------------------- /gfx/bg3/dc3821.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg3/dc3821.bin -------------------------------------------------------------------------------- /gfx/bg3/dc3a01.2bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg3/dc3a01.2bpp -------------------------------------------------------------------------------- /gfx/bg3/dc3efd.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg3/dc3efd.bin -------------------------------------------------------------------------------- /gfx/bg3/dc3fbf.2bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg3/dc3fbf.2bpp -------------------------------------------------------------------------------- /gfx/bg3/dc41d6.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg3/dc41d6.bin -------------------------------------------------------------------------------- /gfx/bg3/dc45b8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg3/dc45b8.bin -------------------------------------------------------------------------------- /gfx/bg3/dc494b.2bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg3/dc494b.2bpp -------------------------------------------------------------------------------- /gfx/bg3/dc4eb3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg3/dc4eb3.bin -------------------------------------------------------------------------------- /gfx/bg3/dc4ff2.2bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg3/dc4ff2.2bpp -------------------------------------------------------------------------------- /gfx/bg3/dc545f.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg3/dc545f.bin -------------------------------------------------------------------------------- /gfx/bg3/dc55a3.2bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg3/dc55a3.2bpp -------------------------------------------------------------------------------- /gfx/bg3/dc59ad.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg3/dc59ad.bin -------------------------------------------------------------------------------- /gfx/bg3/dc5ac4.2bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg3/dc5ac4.2bpp -------------------------------------------------------------------------------- /gfx/bg3/dc5dbf.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg3/dc5dbf.bin -------------------------------------------------------------------------------- /gfx/bg3/dc5e27.2bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg3/dc5e27.2bpp -------------------------------------------------------------------------------- /gfx/bg3/dc6797.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/bg3/dc6797.bin -------------------------------------------------------------------------------- /gfx/characters/gaze/cf99c8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/gaze/cf99c8.png -------------------------------------------------------------------------------- /gfx/characters/gaze/cf9dae.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/gaze/cf9dae.png -------------------------------------------------------------------------------- /gfx/characters/gaze/cfa16e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/gaze/cfa16e.png -------------------------------------------------------------------------------- /gfx/characters/gaze/cfa55a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/gaze/cfa55a.png -------------------------------------------------------------------------------- /gfx/characters/gaze/cfa93e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/gaze/cfa93e.png -------------------------------------------------------------------------------- /gfx/characters/gaze/cfaa93.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/gaze/cfaa93.png -------------------------------------------------------------------------------- /gfx/characters/gaze/cfabde.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/gaze/cfabde.png -------------------------------------------------------------------------------- /gfx/characters/gaze/cfad1f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/gaze/cfad1f.png -------------------------------------------------------------------------------- /gfx/characters/gaze/cfae7c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/gaze/cfae7c.png -------------------------------------------------------------------------------- /gfx/characters/gaze/cfb467.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/gaze/cfb467.png -------------------------------------------------------------------------------- /gfx/characters/gaze/cfba36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/gaze/cfba36.png -------------------------------------------------------------------------------- /gfx/characters/gaze/cfbb6f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/gaze/cfbb6f.png -------------------------------------------------------------------------------- /gfx/characters/gaze/cfbff6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/gaze/cfbff6.png -------------------------------------------------------------------------------- /gfx/characters/gaze/cfc26e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/gaze/cfc26e.png -------------------------------------------------------------------------------- /gfx/characters/gaze/cfc43f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/gaze/cfc43f.png -------------------------------------------------------------------------------- /gfx/characters/gaze/cfc5d4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/gaze/cfc5d4.png -------------------------------------------------------------------------------- /gfx/characters/gaze/cfcbd2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/gaze/cfcbd2.png -------------------------------------------------------------------------------- /gfx/characters/gaze/cfccb9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/gaze/cfccb9.png -------------------------------------------------------------------------------- /gfx/characters/gaze/cfce44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/gaze/cfce44.png -------------------------------------------------------------------------------- /gfx/characters/gaze/cfd003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/gaze/cfd003.png -------------------------------------------------------------------------------- /gfx/characters/gaze/cfd192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/gaze/cfd192.png -------------------------------------------------------------------------------- /gfx/characters/gaze/cfd715.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/gaze/cfd715.png -------------------------------------------------------------------------------- /gfx/characters/gaze/cfd8a4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/gaze/cfd8a4.png -------------------------------------------------------------------------------- /gfx/characters/gaze/cfda53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/gaze/cfda53.png -------------------------------------------------------------------------------- /gfx/characters/gaze/cfdc12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/gaze/cfdc12.png -------------------------------------------------------------------------------- /gfx/characters/gaze/cfdda3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/gaze/cfdda3.png -------------------------------------------------------------------------------- /gfx/characters/gaze/cfe22b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/gaze/cfe22b.png -------------------------------------------------------------------------------- /gfx/characters/hen/ccafdd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/hen/ccafdd.png -------------------------------------------------------------------------------- /gfx/characters/hen/ccb47b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/hen/ccb47b.png -------------------------------------------------------------------------------- /gfx/characters/hen/ccbb44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/hen/ccbb44.png -------------------------------------------------------------------------------- /gfx/characters/npc1/d30a48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc1/d30a48.png -------------------------------------------------------------------------------- /gfx/characters/npc1/d30bd3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc1/d30bd3.png -------------------------------------------------------------------------------- /gfx/characters/npc1/d30ec7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc1/d30ec7.png -------------------------------------------------------------------------------- /gfx/characters/npc1/d31217.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc1/d31217.png -------------------------------------------------------------------------------- /gfx/characters/npc1/d316ac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc1/d316ac.png -------------------------------------------------------------------------------- /gfx/characters/npc1/d319c6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc1/d319c6.png -------------------------------------------------------------------------------- /gfx/characters/npc1/d31e99.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc1/d31e99.png -------------------------------------------------------------------------------- /gfx/characters/npc1/d32042.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc1/d32042.png -------------------------------------------------------------------------------- /gfx/characters/npc1/d321f1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc1/d321f1.png -------------------------------------------------------------------------------- /gfx/characters/npc1/d323c8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc1/d323c8.png -------------------------------------------------------------------------------- /gfx/characters/npc1/d32595.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc1/d32595.png -------------------------------------------------------------------------------- /gfx/characters/npc1/d32764.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc1/d32764.png -------------------------------------------------------------------------------- /gfx/characters/npc1/d32e10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc1/d32e10.png -------------------------------------------------------------------------------- /gfx/characters/npc1/d32fe1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc1/d32fe1.png -------------------------------------------------------------------------------- /gfx/characters/npc1/d331a2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc1/d331a2.png -------------------------------------------------------------------------------- /gfx/characters/npc1/d33506.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc1/d33506.png -------------------------------------------------------------------------------- /gfx/characters/npc1/d336bd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc1/d336bd.png -------------------------------------------------------------------------------- /gfx/characters/npc1/d3389e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc1/d3389e.png -------------------------------------------------------------------------------- /gfx/characters/npc1/d33a63.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc1/d33a63.png -------------------------------------------------------------------------------- /gfx/characters/npc1/d33ccd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc1/d33ccd.png -------------------------------------------------------------------------------- /gfx/characters/npc1/d33ecd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc1/d33ecd.png -------------------------------------------------------------------------------- /gfx/characters/npc1/d3425c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc1/d3425c.png -------------------------------------------------------------------------------- /gfx/characters/npc1/d34474.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc1/d34474.png -------------------------------------------------------------------------------- /gfx/characters/npc1/d3461c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc1/d3461c.png -------------------------------------------------------------------------------- /gfx/characters/npc1/d34802.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc1/d34802.png -------------------------------------------------------------------------------- /gfx/characters/npc1/d349f5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc1/d349f5.png -------------------------------------------------------------------------------- /gfx/characters/npc1/d34be5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc1/d34be5.png -------------------------------------------------------------------------------- /gfx/characters/npc1/d34d6e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc1/d34d6e.png -------------------------------------------------------------------------------- /gfx/characters/npc1/d34e01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc1/d34e01.png -------------------------------------------------------------------------------- /gfx/characters/npc1/d35034.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc1/d35034.png -------------------------------------------------------------------------------- /gfx/characters/npc1/d35657.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc1/d35657.png -------------------------------------------------------------------------------- /gfx/characters/npc1/d358a3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc1/d358a3.png -------------------------------------------------------------------------------- /gfx/characters/npc2/d35bb8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc2/d35bb8.png -------------------------------------------------------------------------------- /gfx/characters/npc2/d35cd9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc2/d35cd9.png -------------------------------------------------------------------------------- /gfx/characters/npc2/d364aa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc2/d364aa.png -------------------------------------------------------------------------------- /gfx/characters/npc2/d365e2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc2/d365e2.png -------------------------------------------------------------------------------- /gfx/characters/npc2/d36846.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc2/d36846.png -------------------------------------------------------------------------------- /gfx/characters/npc2/d36948.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc2/d36948.png -------------------------------------------------------------------------------- /gfx/characters/npc2/d36ea6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc2/d36ea6.png -------------------------------------------------------------------------------- /gfx/characters/npc2/d371ff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc2/d371ff.png -------------------------------------------------------------------------------- /gfx/characters/npc2/d37447.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc2/d37447.png -------------------------------------------------------------------------------- /gfx/characters/npc3/d38c51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc3/d38c51.png -------------------------------------------------------------------------------- /gfx/characters/npc3/d39668.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc3/d39668.png -------------------------------------------------------------------------------- /gfx/characters/npc3/d39c34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc3/d39c34.png -------------------------------------------------------------------------------- /gfx/characters/npc3/d3a710.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc3/d3a710.png -------------------------------------------------------------------------------- /gfx/characters/npc5/d3be75.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc5/d3be75.png -------------------------------------------------------------------------------- /gfx/characters/npc5/d3bfc1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc5/d3bfc1.png -------------------------------------------------------------------------------- /gfx/characters/npc5/d3c103.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc5/d3c103.png -------------------------------------------------------------------------------- /gfx/characters/npc5/d3c24b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc5/d3c24b.png -------------------------------------------------------------------------------- /gfx/characters/npc5/d3c39b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc5/d3c39b.png -------------------------------------------------------------------------------- /gfx/characters/npc5/d3c4e3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc5/d3c4e3.png -------------------------------------------------------------------------------- /gfx/characters/npc5/d3c62b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc5/d3c62b.png -------------------------------------------------------------------------------- /gfx/characters/npc5/d3c77b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc5/d3c77b.png -------------------------------------------------------------------------------- /gfx/characters/npc5/d3c8bd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc5/d3c8bd.png -------------------------------------------------------------------------------- /gfx/characters/npc5/d3ca21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc5/d3ca21.png -------------------------------------------------------------------------------- /gfx/characters/npc5/d3cb67.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc5/d3cb67.png -------------------------------------------------------------------------------- /gfx/characters/npc5/d3ccb7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc5/d3ccb7.png -------------------------------------------------------------------------------- /gfx/characters/npc5/d3ce05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc5/d3ce05.png -------------------------------------------------------------------------------- /gfx/characters/npc5/d3d1c9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc5/d3d1c9.png -------------------------------------------------------------------------------- /gfx/characters/npc5/d3d434.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc5/d3d434.png -------------------------------------------------------------------------------- /gfx/characters/npc6/d3de8a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc6/d3de8a.png -------------------------------------------------------------------------------- /gfx/characters/npc6/d3e007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc6/d3e007.png -------------------------------------------------------------------------------- /gfx/characters/npc6/d3e60d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc6/d3e60d.png -------------------------------------------------------------------------------- /gfx/characters/npc6/d3e7ba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc6/d3e7ba.png -------------------------------------------------------------------------------- /gfx/characters/npc6/d3eff1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc6/d3eff1.png -------------------------------------------------------------------------------- /gfx/characters/npc6/d3f162.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc6/d3f162.png -------------------------------------------------------------------------------- /gfx/characters/npc6/d3f2f3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc6/d3f2f3.png -------------------------------------------------------------------------------- /gfx/characters/npc7/d3f732.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc7/d3f732.png -------------------------------------------------------------------------------- /gfx/characters/npc7/d3fc2c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc7/d3fc2c.png -------------------------------------------------------------------------------- /gfx/characters/npc7/d3fd6e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc7/d3fd6e.png -------------------------------------------------------------------------------- /gfx/characters/npc7/d3feb2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc7/d3feb2.png -------------------------------------------------------------------------------- /gfx/characters/npc7/d403be.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc7/d403be.png -------------------------------------------------------------------------------- /gfx/characters/npc7/d4050c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc7/d4050c.png -------------------------------------------------------------------------------- /gfx/characters/npc7/d40652.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc7/d40652.png -------------------------------------------------------------------------------- /gfx/characters/npc7/d407fb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc7/d407fb.png -------------------------------------------------------------------------------- /gfx/characters/npc7/d40b1b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc7/d40b1b.png -------------------------------------------------------------------------------- /gfx/characters/npc7/d40cd4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc7/d40cd4.png -------------------------------------------------------------------------------- /gfx/characters/npc8/d41a62.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc8/d41a62.png -------------------------------------------------------------------------------- /gfx/characters/npc8/d41b90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc8/d41b90.png -------------------------------------------------------------------------------- /gfx/characters/npc8/d42194.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc8/d42194.png -------------------------------------------------------------------------------- /gfx/characters/npc9/d43295.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc9/d43295.png -------------------------------------------------------------------------------- /gfx/characters/npc9/d437bd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/npc9/d437bd.png -------------------------------------------------------------------------------- /gfx/characters/taur/cb541e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/taur/cb541e.png -------------------------------------------------------------------------------- /gfx/characters/taur/cb55cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/taur/cb55cd.png -------------------------------------------------------------------------------- /gfx/characters/taur/cb577c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/taur/cb577c.png -------------------------------------------------------------------------------- /gfx/characters/taur/cb5ab8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/taur/cb5ab8.png -------------------------------------------------------------------------------- /gfx/characters/taur/cb5c37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/taur/cb5c37.png -------------------------------------------------------------------------------- /gfx/characters/taur/cb5dea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/taur/cb5dea.png -------------------------------------------------------------------------------- /gfx/characters/taur/cb5fbb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/taur/cb5fbb.png -------------------------------------------------------------------------------- /gfx/characters/taur/cb6313.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/taur/cb6313.png -------------------------------------------------------------------------------- /gfx/characters/taur/cb64ba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/taur/cb64ba.png -------------------------------------------------------------------------------- /gfx/characters/taur/cb698b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/taur/cb698b.png -------------------------------------------------------------------------------- /gfx/characters/taur/cb6b42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/taur/cb6b42.png -------------------------------------------------------------------------------- /gfx/characters/taur/cb6d01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/taur/cb6d01.png -------------------------------------------------------------------------------- /gfx/characters/taur/cb6eb6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/taur/cb6eb6.png -------------------------------------------------------------------------------- /gfx/characters/taur/cb7019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/taur/cb7019.png -------------------------------------------------------------------------------- /gfx/characters/taur/cb71c6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/taur/cb71c6.png -------------------------------------------------------------------------------- /gfx/characters/taur/cb73bb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/taur/cb73bb.png -------------------------------------------------------------------------------- /gfx/characters/taur/cb758c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/taur/cb758c.png -------------------------------------------------------------------------------- /gfx/characters/taur/cb7a87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/taur/cb7a87.png -------------------------------------------------------------------------------- /gfx/characters/taur/cb7c2c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/taur/cb7c2c.png -------------------------------------------------------------------------------- /gfx/characters/taur/cb7dc5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/taur/cb7dc5.png -------------------------------------------------------------------------------- /gfx/characters/taur/cb7f78.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/taur/cb7f78.png -------------------------------------------------------------------------------- /gfx/characters/taur/cb8131.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/taur/cb8131.png -------------------------------------------------------------------------------- /gfx/characters/taur/cb82d4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/taur/cb82d4.png -------------------------------------------------------------------------------- /gfx/characters/taur/cb848f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/taur/cb848f.png -------------------------------------------------------------------------------- /gfx/characters/taur/cb8628.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/taur/cb8628.png -------------------------------------------------------------------------------- /gfx/characters/taur/cb8b29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/taur/cb8b29.png -------------------------------------------------------------------------------- /gfx/characters/taur/cb8d83.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/taur/cb8d83.png -------------------------------------------------------------------------------- /gfx/characters/taur/cb930a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/taur/cb930a.png -------------------------------------------------------------------------------- /gfx/characters/taur/cb9adc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/taur/cb9adc.png -------------------------------------------------------------------------------- /gfx/characters/taur/cb9bdb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/characters/taur/cb9bdb.png -------------------------------------------------------------------------------- /gfx/fonts/font.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/font.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char0.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char0.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char0.fntchr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char0.fntchr -------------------------------------------------------------------------------- /gfx/fonts/kointai/char1.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char1.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char1.fntchr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char1.fntchr -------------------------------------------------------------------------------- /gfx/fonts/kointai/char10.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char10.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char11.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char11.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char12.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char12.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char13.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char13.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char14.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char14.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char15.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char15.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char16.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char16.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char17.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char17.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char18.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char18.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char19.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char19.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char2.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char2.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char2.fntchr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char2.fntchr -------------------------------------------------------------------------------- /gfx/fonts/kointai/char20.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char20.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char21.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char21.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char22.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char22.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char23.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char23.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char24.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char24.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char25.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char25.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char26.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char26.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char27.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char27.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char28.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char28.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char29.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char29.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char3.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char3.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char3.fntchr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char3.fntchr -------------------------------------------------------------------------------- /gfx/fonts/kointai/char30.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char30.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char31.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char31.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char32.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char32.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char33.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char33.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char34.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char34.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char35.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char35.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char36.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char36.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char37.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char37.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char38.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char38.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char39.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char39.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char4.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char4.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char4.fntchr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char4.fntchr -------------------------------------------------------------------------------- /gfx/fonts/kointai/char40.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char40.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char41.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char41.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char42.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char42.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char43.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char43.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char44.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char44.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char45.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char45.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char46.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char46.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char47.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char47.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char48.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char48.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char49.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char49.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char5.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char5.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char5.fntchr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char5.fntchr -------------------------------------------------------------------------------- /gfx/fonts/kointai/char50.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char50.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char51.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char51.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char52.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char52.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char53.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char53.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char54.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char54.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char55.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char55.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char56.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char56.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char57.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char57.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char58.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char58.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char59.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char59.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char6.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char6.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char6.fntchr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char6.fntchr -------------------------------------------------------------------------------- /gfx/fonts/kointai/char60.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char60.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char61.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char61.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char62.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char62.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char63.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char63.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char64.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char64.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char65.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char65.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char66.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char66.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char67.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char67.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char68.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char68.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char69.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char69.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char7.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char7.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char7.fntchr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char7.fntchr -------------------------------------------------------------------------------- /gfx/fonts/kointai/char70.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char70.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char71.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char71.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char72.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char72.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char73.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char73.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char74.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char74.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char75.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char75.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char76.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char76.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char77.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char77.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char78.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char78.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char79.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char79.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char8.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char8.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char8.fntchr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char8.fntchr -------------------------------------------------------------------------------- /gfx/fonts/kointai/char80.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char80.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char81.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char81.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char82.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char82.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char83.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char83.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char84.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char84.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char85.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char85.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char86.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char86.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char87.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char87.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char88.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char88.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char89.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char89.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char9.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char9.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char9.fntchr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char9.fntchr -------------------------------------------------------------------------------- /gfx/fonts/kointai/char90.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char90.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char91.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char91.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char92.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char92.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char93.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/char93.1bpp -------------------------------------------------------------------------------- /gfx/fonts/kointai/char94.1bpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gfx/fonts/kointai/char94.fntchr: -------------------------------------------------------------------------------- 1 | UUU -------------------------------------------------------------------------------- /gfx/fonts/kointai/numbers.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/kointai/numbers.fnt -------------------------------------------------------------------------------- /gfx/fonts/opening_font.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/opening_font.4bpp -------------------------------------------------------------------------------- /gfx/fonts/staff.2bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/fonts/staff.2bpp -------------------------------------------------------------------------------- /gfx/items/shields/3B8D0E.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/items/shields/3B8D0E.png -------------------------------------------------------------------------------- /gfx/items/shields/3B8EB8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/items/shields/3B8EB8.png -------------------------------------------------------------------------------- /gfx/items/shields/3B90F2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/items/shields/3B90F2.png -------------------------------------------------------------------------------- /gfx/items/shields/3B93D6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/items/shields/3B93D6.png -------------------------------------------------------------------------------- /gfx/items/shields/3B9624.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/items/shields/3B9624.png -------------------------------------------------------------------------------- /gfx/items/shields/3B98AA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/items/shields/3B98AA.png -------------------------------------------------------------------------------- /gfx/items/shields/3B9BCA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/items/shields/3B9BCA.png -------------------------------------------------------------------------------- /gfx/items/shields/3B9F28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/items/shields/3B9F28.png -------------------------------------------------------------------------------- /gfx/items/shields/3BA1F6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/items/shields/3BA1F6.png -------------------------------------------------------------------------------- /gfx/items/shields/3BA480.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/items/shields/3BA480.png -------------------------------------------------------------------------------- /gfx/items/shields/3BA6C6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/items/shields/3BA6C6.png -------------------------------------------------------------------------------- /gfx/items/shields/3BA9BE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/items/shields/3BA9BE.png -------------------------------------------------------------------------------- /gfx/logo.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/logo.4bpp -------------------------------------------------------------------------------- /gfx/map_tilesets/atlas.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/map_tilesets/atlas.4bpp -------------------------------------------------------------------------------- /gfx/map_tilesets/palettes/palette_117.pal: -------------------------------------------------------------------------------- 1 | iJiJiJiJiJiJiJiJiJiJiJiJiJiJ -------------------------------------------------------------------------------- /gfx/map_tilesets/palettes/palette_74.pal: -------------------------------------------------------------------------------- 1 | J9J9J9J9J9J9J9J9J9J9J9J9J9J9J9 -------------------------------------------------------------------------------- /gfx/misc/fbd701.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fbd701.4bpp -------------------------------------------------------------------------------- /gfx/misc/fbd9bf.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fbd9bf.4bpp -------------------------------------------------------------------------------- /gfx/misc/fbdc5f.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fbdc5f.4bpp -------------------------------------------------------------------------------- /gfx/misc/fbdd25.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fbdd25.4bpp -------------------------------------------------------------------------------- /gfx/misc/fbdf55.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fbdf55.4bpp -------------------------------------------------------------------------------- /gfx/misc/fbe181.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fbe181.4bpp -------------------------------------------------------------------------------- /gfx/misc/fbe3bb.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fbe3bb.4bpp -------------------------------------------------------------------------------- /gfx/misc/fbe489.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fbe489.4bpp -------------------------------------------------------------------------------- /gfx/misc/fbe70b.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fbe70b.4bpp -------------------------------------------------------------------------------- /gfx/misc/fbe7d1.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fbe7d1.4bpp -------------------------------------------------------------------------------- /gfx/misc/fbe9fd.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fbe9fd.4bpp -------------------------------------------------------------------------------- /gfx/misc/fbea79.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fbea79.4bpp -------------------------------------------------------------------------------- /gfx/misc/fbebdf.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fbebdf.4bpp -------------------------------------------------------------------------------- /gfx/misc/fbec3f.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fbec3f.4bpp -------------------------------------------------------------------------------- /gfx/misc/fbed15.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fbed15.4bpp -------------------------------------------------------------------------------- /gfx/misc/fbed6d.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fbed6d.4bpp -------------------------------------------------------------------------------- /gfx/misc/fbee0d.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fbee0d.4bpp -------------------------------------------------------------------------------- /gfx/misc/fbee31.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fbee31.4bpp -------------------------------------------------------------------------------- /gfx/misc/fbf061.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fbf061.4bpp -------------------------------------------------------------------------------- /gfx/misc/fbf285.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fbf285.4bpp -------------------------------------------------------------------------------- /gfx/misc/fbf4b9.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fbf4b9.4bpp -------------------------------------------------------------------------------- /gfx/misc/fbf585.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fbf585.4bpp -------------------------------------------------------------------------------- /gfx/misc/fbf7d1.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fbf7d1.4bpp -------------------------------------------------------------------------------- /gfx/misc/fbf891.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fbf891.4bpp -------------------------------------------------------------------------------- /gfx/misc/fbfa39.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fbfa39.4bpp -------------------------------------------------------------------------------- /gfx/misc/fbfa9b.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fbfa9b.4bpp -------------------------------------------------------------------------------- /gfx/misc/fbfb3f.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fbfb3f.4bpp -------------------------------------------------------------------------------- /gfx/misc/fbfe53.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fbfe53.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc019f.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc019f.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc0445.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc0445.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc069d.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc069d.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc0971.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc0971.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc0ce3.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc0ce3.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc0f37.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc0f37.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc1183.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc1183.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc12cd.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc12cd.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc152f.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc152f.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc164d.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc164d.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc1831.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc1831.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc19e9.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc19e9.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc1c09.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc1c09.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc1dd9.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc1dd9.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc1fe3.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc1fe3.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc2057.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc2057.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc22bf.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc22bf.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc22fb.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc22fb.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc2455.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc2455.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc2583.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc2583.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc2715.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc2715.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc2815.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc2815.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc29c7.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc29c7.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc2a3f.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc2a3f.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc2b2f.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc2b2f.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc2cff.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc2cff.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc2eaf.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc2eaf.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc30b5.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc30b5.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc3355.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc3355.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc3537.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc3537.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc373f.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc373f.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc3965.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc3965.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc3c9b.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc3c9b.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc3edd.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc3edd.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc4231.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc4231.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc4383.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc4383.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc465f.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc465f.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc49f7.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc49f7.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc4ad5.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc4ad5.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc4cdd.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc4cdd.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc4f2d.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc4f2d.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc5053.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc5053.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc52eb.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc52eb.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc54b3.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc54b3.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc57f1.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc57f1.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc5983.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc5983.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc5bb3.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc5bb3.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc5c47.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc5c47.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc5e9d.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc5e9d.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc6159.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc6159.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc6491.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc6491.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc6593.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc6593.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc667b.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc667b.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc6769.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc6769.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc6859.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc6859.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc6ab1.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc6ab1.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc6d67.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc6d67.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc6f4d.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc6f4d.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc7295.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc7295.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc7405.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc7405.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc74b3.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc74b3.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc75e3.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc75e3.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc77a7.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc77a7.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc78b3.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc78b3.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc7979.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc7979.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc7a33.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc7a33.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc7b79.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc7b79.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc7e07.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc7e07.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc7fdf.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc7fdf.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc80a7.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc80a7.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc8155.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc8155.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc8233.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc8233.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc83b3.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc83b3.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc8611.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc8611.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc8771.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc8771.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc87e1.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc87e1.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc88d1.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc88d1.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc89e1.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc89e1.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc8b35.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc8b35.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc8bdd.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc8bdd.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc8d63.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc8d63.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc8e5d.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc8e5d.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc8ffb.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc8ffb.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc92b5.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc92b5.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc960f.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc960f.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc97f5.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc97f5.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc99bb.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc99bb.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc9b49.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc9b49.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc9d4b.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc9d4b.4bpp -------------------------------------------------------------------------------- /gfx/misc/fc9ff3.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fc9ff3.4bpp -------------------------------------------------------------------------------- /gfx/misc/fca01d.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fca01d.4bpp -------------------------------------------------------------------------------- /gfx/misc/fca2ff.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fca2ff.4bpp -------------------------------------------------------------------------------- /gfx/misc/fca589.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fca589.4bpp -------------------------------------------------------------------------------- /gfx/misc/fca705.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fca705.4bpp -------------------------------------------------------------------------------- /gfx/misc/fca881.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fca881.4bpp -------------------------------------------------------------------------------- /gfx/misc/fcaa11.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fcaa11.4bpp -------------------------------------------------------------------------------- /gfx/misc/fcac3f.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fcac3f.4bpp -------------------------------------------------------------------------------- /gfx/misc/fcaea1.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fcaea1.4bpp -------------------------------------------------------------------------------- /gfx/misc/fcb0ad.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fcb0ad.4bpp -------------------------------------------------------------------------------- /gfx/misc/fcb327.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fcb327.4bpp -------------------------------------------------------------------------------- /gfx/misc/fcb423.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fcb423.4bpp -------------------------------------------------------------------------------- /gfx/misc/fcb603.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fcb603.4bpp -------------------------------------------------------------------------------- /gfx/misc/fcb889.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fcb889.4bpp -------------------------------------------------------------------------------- /gfx/misc/fcba01.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fcba01.4bpp -------------------------------------------------------------------------------- /gfx/misc/fcbbd1.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fcbbd1.4bpp -------------------------------------------------------------------------------- /gfx/misc/fcbe95.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fcbe95.4bpp -------------------------------------------------------------------------------- /gfx/misc/fcc05d.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fcc05d.4bpp -------------------------------------------------------------------------------- /gfx/misc/fcc27d.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fcc27d.4bpp -------------------------------------------------------------------------------- /gfx/misc/fcc519.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fcc519.4bpp -------------------------------------------------------------------------------- /gfx/misc/fcc65f.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fcc65f.4bpp -------------------------------------------------------------------------------- /gfx/misc/fcc84d.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fcc84d.4bpp -------------------------------------------------------------------------------- /gfx/misc/fcca85.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fcca85.4bpp -------------------------------------------------------------------------------- /gfx/misc/fccbaf.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fccbaf.4bpp -------------------------------------------------------------------------------- /gfx/misc/fccd43.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fccd43.4bpp -------------------------------------------------------------------------------- /gfx/misc/fccef9.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fccef9.4bpp -------------------------------------------------------------------------------- /gfx/misc/fcd029.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fcd029.4bpp -------------------------------------------------------------------------------- /gfx/misc/fcd10b.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fcd10b.4bpp -------------------------------------------------------------------------------- /gfx/misc/fcd217.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fcd217.4bpp -------------------------------------------------------------------------------- /gfx/misc/fcd29b.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fcd29b.4bpp -------------------------------------------------------------------------------- /gfx/misc/fcd4a9.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fcd4a9.4bpp -------------------------------------------------------------------------------- /gfx/misc/fcd7e5.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fcd7e5.4bpp -------------------------------------------------------------------------------- /gfx/misc/fcda5b.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fcda5b.4bpp -------------------------------------------------------------------------------- /gfx/misc/fcdba3.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fcdba3.4bpp -------------------------------------------------------------------------------- /gfx/misc/fcdeb1.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fcdeb1.4bpp -------------------------------------------------------------------------------- /gfx/misc/fcdf77.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fcdf77.4bpp -------------------------------------------------------------------------------- /gfx/misc/fce16b.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fce16b.4bpp -------------------------------------------------------------------------------- /gfx/misc/fce359.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fce359.4bpp -------------------------------------------------------------------------------- /gfx/misc/fce497.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fce497.4bpp -------------------------------------------------------------------------------- /gfx/misc/fce641.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fce641.4bpp -------------------------------------------------------------------------------- /gfx/misc/fce6d9.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fce6d9.4bpp -------------------------------------------------------------------------------- /gfx/misc/fce823.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fce823.4bpp -------------------------------------------------------------------------------- /gfx/misc/fce983.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fce983.4bpp -------------------------------------------------------------------------------- /gfx/misc/fce9ed.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fce9ed.4bpp -------------------------------------------------------------------------------- /gfx/misc/fceb0b.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fceb0b.4bpp -------------------------------------------------------------------------------- /gfx/misc/fcebab.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fcebab.4bpp -------------------------------------------------------------------------------- /gfx/misc/fced11.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fced11.4bpp -------------------------------------------------------------------------------- /gfx/misc/fcee93.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fcee93.4bpp -------------------------------------------------------------------------------- /gfx/misc/fcf0c5.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fcf0c5.4bpp -------------------------------------------------------------------------------- /gfx/misc/fcf2af.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fcf2af.4bpp -------------------------------------------------------------------------------- /gfx/misc/fcf3b1.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fcf3b1.4bpp -------------------------------------------------------------------------------- /gfx/misc/fcf521.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fcf521.4bpp -------------------------------------------------------------------------------- /gfx/misc/fcf6d1.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fcf6d1.4bpp -------------------------------------------------------------------------------- /gfx/misc/fcf7f9.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fcf7f9.4bpp -------------------------------------------------------------------------------- /gfx/misc/fcf849.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fcf849.4bpp -------------------------------------------------------------------------------- /gfx/misc/fcf8f9.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fcf8f9.4bpp -------------------------------------------------------------------------------- /gfx/misc/fcf9cd.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fcf9cd.4bpp -------------------------------------------------------------------------------- /gfx/misc/fcfa81.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fcfa81.4bpp -------------------------------------------------------------------------------- /gfx/misc/fcfb25.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fcfb25.4bpp -------------------------------------------------------------------------------- /gfx/misc/fcfbff.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fcfbff.4bpp -------------------------------------------------------------------------------- /gfx/misc/fcfd01.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fcfd01.4bpp -------------------------------------------------------------------------------- /gfx/misc/fcfe4d.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fcfe4d.4bpp -------------------------------------------------------------------------------- /gfx/misc/fcffad.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fcffad.4bpp -------------------------------------------------------------------------------- /gfx/misc/fd00c5.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fd00c5.4bpp -------------------------------------------------------------------------------- /gfx/misc/fd0145.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fd0145.4bpp -------------------------------------------------------------------------------- /gfx/misc/fd0195.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fd0195.4bpp -------------------------------------------------------------------------------- /gfx/misc/fd0403.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fd0403.4bpp -------------------------------------------------------------------------------- /gfx/misc/fd068d.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fd068d.4bpp -------------------------------------------------------------------------------- /gfx/misc/fd0839.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fd0839.4bpp -------------------------------------------------------------------------------- /gfx/misc/fd09e5.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fd09e5.4bpp -------------------------------------------------------------------------------- /gfx/misc/fd0b89.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fd0b89.4bpp -------------------------------------------------------------------------------- /gfx/misc/fd0d33.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fd0d33.4bpp -------------------------------------------------------------------------------- /gfx/misc/fd0f3f.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fd0f3f.4bpp -------------------------------------------------------------------------------- /gfx/misc/fd111d.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fd111d.4bpp -------------------------------------------------------------------------------- /gfx/misc/fd1193.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fd1193.4bpp -------------------------------------------------------------------------------- /gfx/misc/fd1285.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fd1285.4bpp -------------------------------------------------------------------------------- /gfx/misc/fd1497.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fd1497.4bpp -------------------------------------------------------------------------------- /gfx/misc/fd1601.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fd1601.4bpp -------------------------------------------------------------------------------- /gfx/misc/fd171d.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fd171d.4bpp -------------------------------------------------------------------------------- /gfx/misc/fd17e9.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fd17e9.4bpp -------------------------------------------------------------------------------- /gfx/misc/fd1b25.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fd1b25.4bpp -------------------------------------------------------------------------------- /gfx/misc/fd1e6b.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fd1e6b.4bpp -------------------------------------------------------------------------------- /gfx/misc/fd2199.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fd2199.4bpp -------------------------------------------------------------------------------- /gfx/misc/fd24b5.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fd24b5.4bpp -------------------------------------------------------------------------------- /gfx/misc/fd27e7.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fd27e7.4bpp -------------------------------------------------------------------------------- /gfx/misc/fd2b2b.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fd2b2b.4bpp -------------------------------------------------------------------------------- /gfx/misc/fd2e5b.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fd2e5b.4bpp -------------------------------------------------------------------------------- /gfx/misc/fd3179.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fd3179.4bpp -------------------------------------------------------------------------------- /gfx/misc/fd31b3.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fd31b3.4bpp -------------------------------------------------------------------------------- /gfx/misc/fd34c7.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fd34c7.4bpp -------------------------------------------------------------------------------- /gfx/misc/fd37d9.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fd37d9.4bpp -------------------------------------------------------------------------------- /gfx/misc/fd3aed.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fd3aed.4bpp -------------------------------------------------------------------------------- /gfx/misc/fd3dfb.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fd3dfb.4bpp -------------------------------------------------------------------------------- /gfx/misc/fd3ee7.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fd3ee7.4bpp -------------------------------------------------------------------------------- /gfx/misc/fd3f5d.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fd3f5d.4bpp -------------------------------------------------------------------------------- /gfx/misc/fd407f.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fd407f.4bpp -------------------------------------------------------------------------------- /gfx/misc/fd4205.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fd4205.4bpp -------------------------------------------------------------------------------- /gfx/misc/fd438b.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fd438b.4bpp -------------------------------------------------------------------------------- /gfx/misc/fd458b.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fd458b.4bpp -------------------------------------------------------------------------------- /gfx/misc/fd468f.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fd468f.4bpp -------------------------------------------------------------------------------- /gfx/misc/fd4745.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fd4745.4bpp -------------------------------------------------------------------------------- /gfx/misc/fd48cf.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fd48cf.4bpp -------------------------------------------------------------------------------- /gfx/misc/fd4aab.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fd4aab.4bpp -------------------------------------------------------------------------------- /gfx/misc/fd51e5.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fd51e5.4bpp -------------------------------------------------------------------------------- /gfx/misc/fd6893.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fd6893.4bpp -------------------------------------------------------------------------------- /gfx/misc/fd7521.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fd7521.4bpp -------------------------------------------------------------------------------- /gfx/misc/fd778b.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fd778b.4bpp -------------------------------------------------------------------------------- /gfx/misc/fd796f.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fd796f.4bpp -------------------------------------------------------------------------------- /gfx/misc/fd7bb3.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fd7bb3.4bpp -------------------------------------------------------------------------------- /gfx/misc/fd7ed9.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fd7ed9.4bpp -------------------------------------------------------------------------------- /gfx/misc/fd812d.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fd812d.4bpp -------------------------------------------------------------------------------- /gfx/misc/fd8389.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fd8389.4bpp -------------------------------------------------------------------------------- /gfx/misc/fd862d.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fd862d.4bpp -------------------------------------------------------------------------------- /gfx/misc/fd88fb.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fd88fb.4bpp -------------------------------------------------------------------------------- /gfx/misc/fd8ad7.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fd8ad7.4bpp -------------------------------------------------------------------------------- /gfx/misc/fd98c3.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fd98c3.4bpp -------------------------------------------------------------------------------- /gfx/misc/fdaf1f.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fdaf1f.4bpp -------------------------------------------------------------------------------- /gfx/misc/fdb55b.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fdb55b.4bpp -------------------------------------------------------------------------------- /gfx/misc/fdc53d.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fdc53d.4bpp -------------------------------------------------------------------------------- /gfx/misc/fdc655.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fdc655.4bpp -------------------------------------------------------------------------------- /gfx/misc/fdc739.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fdc739.4bpp -------------------------------------------------------------------------------- /gfx/misc/fdc817.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fdc817.4bpp -------------------------------------------------------------------------------- /gfx/misc/fdc8a9.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/misc/fdc8a9.4bpp -------------------------------------------------------------------------------- /gfx/objects/3dea69.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/objects/3dea69.4bpp -------------------------------------------------------------------------------- /gfx/objects/fbd701.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/objects/fbd701.bin -------------------------------------------------------------------------------- /gfx/objects/items.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/objects/items.4bpp -------------------------------------------------------------------------------- /gfx/objects/items/herb.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/objects/items/herb.4bpp -------------------------------------------------------------------------------- /gfx/objects/items/meat.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/objects/items/meat.4bpp -------------------------------------------------------------------------------- /gfx/objects/items/pot.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/objects/items/pot.4bpp -------------------------------------------------------------------------------- /gfx/objects/items/rice.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/objects/items/rice.4bpp -------------------------------------------------------------------------------- /gfx/objects/items/ring.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/objects/items/ring.4bpp -------------------------------------------------------------------------------- /gfx/objects/stairs_up.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/objects/stairs_up.4bpp -------------------------------------------------------------------------------- /gfx/objects/warptile.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/objects/warptile.4bpp -------------------------------------------------------------------------------- /gfx/objects/warptile_1.4bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/objects/warptile_1.4bpp -------------------------------------------------------------------------------- /gfx/ui.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/ui.bin -------------------------------------------------------------------------------- /gfx/ui/fa8083.1bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/ui/fa8083.1bpp -------------------------------------------------------------------------------- /gfx/ui/hud.2bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/ui/hud.2bpp -------------------------------------------------------------------------------- /gfx/ui/shop_numbers.2bpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/gfx/ui/shop_numbers.2bpp -------------------------------------------------------------------------------- /shiren.sha1: -------------------------------------------------------------------------------- 1 | e043f3096f0bd883644287344f18050ee43d69e9 *shiren.sfc -------------------------------------------------------------------------------- /spc/linkfile: -------------------------------------------------------------------------------- 1 | [objects] 2 | SPCEngine.o -------------------------------------------------------------------------------- /tools/brr_decoder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/tools/brr_decoder -------------------------------------------------------------------------------- /tools/brr_encoder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CelestialAmber/shiren/0d404e43b8642f7e2d71dbc0fed5bdd643fc678e/tools/brr_encoder -------------------------------------------------------------------------------- /tools/gbagfx/.gitignore: -------------------------------------------------------------------------------- 1 | gbagfx 2 | --------------------------------------------------------------------------------