├── .gitattributes ├── .github └── workflows │ └── verify-and-test-game.yml ├── .gitignore ├── .python-version ├── CREDITS ├── LICENSE ├── README.md ├── README ├── es.md ├── fr.md ├── zh-cht.md └── zh-cn.md ├── data ├── alterations.xml ├── characters.xml ├── classes.xml ├── en │ ├── __init__.py │ ├── fonts_description.py │ ├── maps │ │ ├── level_0 │ │ │ ├── dialog_0.txt │ │ │ ├── dialog_1.txt │ │ │ ├── house_dialog_0.txt │ │ │ ├── house_dialog_1.txt │ │ │ ├── house_dialog_2.txt │ │ │ ├── house_dialog_3.txt │ │ │ └── map_properties.tmx │ │ ├── level_1 │ │ │ ├── dialog_0.txt │ │ │ ├── dialog_1.txt │ │ │ └── map_properties.tmx │ │ ├── level_2 │ │ │ ├── dialog_0.txt │ │ │ ├── dialog_1.txt │ │ │ └── map_properties.tmx │ │ └── level_3 │ │ │ └── map_properties.tmx │ └── text.py ├── es │ ├── __init__.py │ ├── fonts_description.py │ ├── maps │ │ ├── level_0 │ │ │ ├── dialog_0.txt │ │ │ ├── dialog_1.txt │ │ │ ├── house_dialog_0.txt │ │ │ ├── house_dialog_1.txt │ │ │ ├── house_dialog_2.txt │ │ │ ├── house_dialog_3.txt │ │ │ └── map_properties.tmx │ │ ├── level_1 │ │ │ ├── dialog_0.txt │ │ │ ├── dialog_1.txt │ │ │ └── map_properties.tmx │ │ ├── level_2 │ │ │ ├── dialog_0.txt │ │ │ ├── dialog_1.txt │ │ │ └── map_properties.tmx │ │ └── level_3 │ │ │ └── map_properties.tmx │ └── text.py ├── foes.xml ├── fountains.xml ├── fr │ ├── __init__.py │ ├── fonts_description.py │ ├── maps │ │ ├── level_0 │ │ │ ├── dialog_0.txt │ │ │ ├── dialog_1.txt │ │ │ ├── house_dialog_0.txt │ │ │ ├── house_dialog_1.txt │ │ │ ├── house_dialog_2.txt │ │ │ ├── house_dialog_3.txt │ │ │ └── map_properties.tmx │ │ ├── level_1 │ │ │ ├── dialog_0.txt │ │ │ ├── dialog_1.txt │ │ │ └── map_properties.tmx │ │ ├── level_2 │ │ │ ├── dialog_0.txt │ │ │ ├── dialog_1.txt │ │ │ └── map_properties.tmx │ │ └── level_3 │ │ │ └── map_properties.tmx │ └── text.py ├── items.xml ├── language_instructions.md ├── races.xml ├── skills.xml └── zh_cn │ ├── __init__.py │ ├── fonts_description.py │ ├── maps │ ├── level_0 │ │ ├── dialog_0.txt │ │ ├── dialog_1.txt │ │ ├── house_dialog_0.txt │ │ ├── house_dialog_1.txt │ │ ├── house_dialog_2.txt │ │ ├── house_dialog_3.txt │ │ └── map_properties.tmx │ ├── level_1 │ │ ├── dialog_0.txt │ │ ├── dialog_1.txt │ │ └── map_properties.tmx │ ├── level_2 │ │ ├── dialog_0.txt │ │ ├── dialog_1.txt │ │ └── map_properties.tmx │ └── level_3 │ │ └── map_properties.tmx │ └── text.py ├── entities_uml.png ├── fonts ├── Autonym.ttf ├── _bitmap_font____romulus_by_pix3m-d6aokem.ttf ├── alagard_by_pix3m-d6awiwp.ttf ├── fusion-pixel-12px-proportional-zh_hans.ttf ├── minya_nouvelle_bd.ttf ├── minya_nouvelle_bd_it.ttf ├── minya_nouvelle_it.ttf └── minya_nouvelle_rg.ttf ├── imgs ├── characs │ └── jist.png ├── dungeon_crawl │ ├── LICENSE.txt │ ├── README.txt │ ├── dungeon │ │ ├── altars │ │ │ ├── altar_ashenzari.png │ │ │ ├── altar_base.png │ │ │ ├── altar_beogh.png │ │ │ ├── altar_cheibriados.png │ │ │ ├── altar_cheibriados_10.png │ │ │ ├── altar_cheibriados_12.png │ │ │ ├── altar_cheibriados_2.png │ │ │ ├── altar_cheibriados_3.png │ │ │ ├── altar_cheibriados_4.png │ │ │ ├── altar_cheibriados_6.png │ │ │ ├── altar_cheibriados_8.png │ │ │ ├── altar_cheibriados_9.png │ │ │ ├── altar_elyvilon.png │ │ │ ├── altar_fedhas.png │ │ │ ├── altar_jiyva_0.png │ │ │ ├── altar_jiyva_1.png │ │ │ ├── altar_jiyva_11.png │ │ │ ├── altar_jiyva_2.png │ │ │ ├── altar_jiyva_3.png │ │ │ ├── altar_jiyva_4.png │ │ │ ├── altar_jiyva_5.png │ │ │ ├── altar_jiyva_6.png │ │ │ ├── altar_jiyva_7.png │ │ │ ├── altar_jiyva_8.png │ │ │ ├── altar_jiyva_9.png │ │ │ ├── altar_kikubaaqudgha.png │ │ │ ├── altar_lugonu.png │ │ │ ├── altar_makhleb_flame_1.png │ │ │ ├── altar_makhleb_flame_2.png │ │ │ ├── altar_makhleb_flame_3.png │ │ │ ├── altar_makhleb_flame_4.png │ │ │ ├── altar_makhleb_flame_5.png │ │ │ ├── altar_makhleb_flame_6.png │ │ │ ├── altar_makhleb_flame_7.png │ │ │ ├── altar_makhleb_flame_8.png │ │ │ ├── altar_nemelex_xobeh.png │ │ │ ├── altar_new.png │ │ │ ├── altar_okawaru.png │ │ │ ├── altar_old.png │ │ │ ├── altar_shining_one.png │ │ │ ├── altar_sif_muna.png │ │ │ ├── altar_trog.png │ │ │ ├── altar_vehumet.png │ │ │ ├── altar_xom_0.png │ │ │ ├── altar_xom_1.png │ │ │ ├── altar_xom_2.png │ │ │ ├── altar_xom_3.png │ │ │ ├── altar_xom_4.png │ │ │ ├── altar_xom_5.png │ │ │ ├── altar_xom_6.png │ │ │ ├── altar_xom_7.png │ │ │ ├── altar_yredelemnul.png │ │ │ ├── altar_zin.png │ │ │ ├── ashenzari.png │ │ │ ├── cheibriados.png │ │ │ ├── dithmenos.png │ │ │ ├── dithmenos_2.png │ │ │ ├── dithmenos_3.png │ │ │ ├── fedhas.png │ │ │ ├── gozag_0.png │ │ │ ├── gozag_1.png │ │ │ ├── gozag_2.png │ │ │ ├── lugonu.png │ │ │ ├── misc_altar.png │ │ │ ├── nemelex_1.png │ │ │ ├── nemelex_2.png │ │ │ ├── nemelex_3.png │ │ │ ├── nemelex_4.png │ │ │ ├── nemelex_5.png │ │ │ ├── qazlal_0.png │ │ │ ├── qazlal_1.png │ │ │ ├── qazlal_2.png │ │ │ ├── ru.png │ │ │ ├── shining_one.png │ │ │ ├── sif_muna.png │ │ │ ├── unknown.png │ │ │ ├── vehumet_1.png │ │ │ ├── vehumet_2.png │ │ │ ├── yredelemnul.png │ │ │ └── zin.png │ │ ├── blood_fountain.png │ │ ├── blood_fountain_2.png │ │ ├── blue_fountain.png │ │ ├── blue_fountain_2.png │ │ ├── boulder.png │ │ ├── chest.png │ │ ├── chest_2_closed.png │ │ ├── chest_2_open.png │ │ ├── doors │ │ │ ├── closed_door.png │ │ │ ├── detected_secret_door.png │ │ │ ├── fleshy_orifice_closed.png │ │ │ ├── gate_closed_left.png │ │ │ ├── gate_closed_middle.png │ │ │ ├── gate_closed_right.png │ │ │ ├── gate_open_left.png │ │ │ ├── gate_open_middle.png │ │ │ ├── gate_open_right.png │ │ │ ├── gate_runed_left.png │ │ │ ├── gate_runed_middle.png │ │ │ ├── gate_runed_right.png │ │ │ ├── gate_sealed_left.png │ │ │ ├── gate_sealed_middle.png │ │ │ ├── gate_sealed_right.png │ │ │ ├── open_door.png │ │ │ ├── runed_door.png │ │ │ ├── sealed_door.png │ │ │ ├── vgate_closed_down.png │ │ │ ├── vgate_closed_middle.png │ │ │ ├── vgate_closed_up.png │ │ │ ├── vgate_open_down.png │ │ │ ├── vgate_open_middle.png │ │ │ ├── vgate_open_up.png │ │ │ ├── vgate_runed_down.png │ │ │ ├── vgate_runed_middle.png │ │ │ ├── vgate_runed_up.png │ │ │ ├── vgate_sealed_down.png │ │ │ ├── vgate_sealed_middle.png │ │ │ └── vgate_sealed_up.png │ │ ├── dry_fountain.png │ │ ├── floor │ │ │ ├── acidic_floor_0.png │ │ │ ├── acidic_floor_1.png │ │ │ ├── acidic_floor_2.png │ │ │ ├── acidic_floor_3.png │ │ │ ├── black_cobalt_1.png │ │ │ ├── black_cobalt_10.png │ │ │ ├── black_cobalt_11.png │ │ │ ├── black_cobalt_12.png │ │ │ ├── black_cobalt_2.png │ │ │ ├── black_cobalt_3.png │ │ │ ├── black_cobalt_4.png │ │ │ ├── black_cobalt_5.png │ │ │ ├── black_cobalt_6.png │ │ │ ├── black_cobalt_7.png │ │ │ ├── black_cobalt_8.png │ │ │ ├── black_cobalt_9.png │ │ │ ├── bog_green_0_new.png │ │ │ ├── bog_green_0_old.png │ │ │ ├── bog_green_1_new.png │ │ │ ├── bog_green_1_old.png │ │ │ ├── bog_green_2_new.png │ │ │ ├── bog_green_2_old.png │ │ │ ├── bog_green_3_new.png │ │ │ ├── bog_green_3_old.png │ │ │ ├── cage_0.png │ │ │ ├── cage_1.png │ │ │ ├── cage_2.png │ │ │ ├── cage_3.png │ │ │ ├── cage_4.png │ │ │ ├── cage_5.png │ │ │ ├── cobble_blood_10_new.png │ │ │ ├── cobble_blood_10_old.png │ │ │ ├── cobble_blood_11_new.png │ │ │ ├── cobble_blood_11_old.png │ │ │ ├── cobble_blood_12_new.png │ │ │ ├── cobble_blood_12_old.png │ │ │ ├── cobble_blood_1_new.png │ │ │ ├── cobble_blood_1_old.png │ │ │ ├── cobble_blood_2_new.png │ │ │ ├── cobble_blood_2_old.png │ │ │ ├── cobble_blood_3_new.png │ │ │ ├── cobble_blood_3_old.png │ │ │ ├── cobble_blood_4_new.png │ │ │ ├── cobble_blood_4_old.png │ │ │ ├── cobble_blood_5_new.png │ │ │ ├── cobble_blood_5_old.png │ │ │ ├── cobble_blood_6_new.png │ │ │ ├── cobble_blood_6_old.png │ │ │ ├── cobble_blood_7_new.png │ │ │ ├── cobble_blood_7_old.png │ │ │ ├── cobble_blood_8_new.png │ │ │ ├── cobble_blood_8_old.png │ │ │ ├── cobble_blood_9_new.png │ │ │ ├── cobble_blood_9_old.png │ │ │ ├── crypt_10.png │ │ │ ├── crypt_11.png │ │ │ ├── crypt_domino_1a.png │ │ │ ├── crypt_domino_1b.png │ │ │ ├── crypt_domino_2a.png │ │ │ ├── crypt_domino_3a.png │ │ │ ├── crypt_domino_4a.png │ │ │ ├── crypt_domino_4b.png │ │ │ ├── crypt_domino_5a.png │ │ │ ├── crypt_domino_6a.png │ │ │ ├── crypt_domino_7a.png │ │ │ ├── crypt_domino_8a.png │ │ │ ├── crystal_floor_0.png │ │ │ ├── crystal_floor_1.png │ │ │ ├── crystal_floor_2.png │ │ │ ├── crystal_floor_3.png │ │ │ ├── crystal_floor_4.png │ │ │ ├── crystal_floor_5.png │ │ │ ├── demonic_red_1.png │ │ │ ├── demonic_red_2.png │ │ │ ├── demonic_red_3.png │ │ │ ├── demonic_red_4.png │ │ │ ├── demonic_red_5.png │ │ │ ├── demonic_red_6.png │ │ │ ├── demonic_red_7.png │ │ │ ├── demonic_red_8.png │ │ │ ├── demonic_red_9.png │ │ │ ├── dirt_0_new.png │ │ │ ├── dirt_0_old.png │ │ │ ├── dirt_1_new.png │ │ │ ├── dirt_1_old.png │ │ │ ├── dirt_2_new.png │ │ │ ├── dirt_2_old.png │ │ │ ├── dirt_east_new.png │ │ │ ├── dirt_east_old.png │ │ │ ├── dirt_full_new.png │ │ │ ├── dirt_full_old.png │ │ │ ├── dirt_north_new.png │ │ │ ├── dirt_north_old.png │ │ │ ├── dirt_northeast_new.png │ │ │ ├── dirt_northeast_old.png │ │ │ ├── dirt_northwest_new.png │ │ │ ├── dirt_northwest_old.png │ │ │ ├── dirt_south_new.png │ │ │ ├── dirt_south_old.png │ │ │ ├── dirt_southeast_new.png │ │ │ ├── dirt_southeast_old.png │ │ │ ├── dirt_southwest_new.png │ │ │ ├── dirt_southwest_old.png │ │ │ ├── dirt_west_new.png │ │ │ ├── dirt_west_old.png │ │ │ ├── etched_0.png │ │ │ ├── etched_1.png │ │ │ ├── etched_2.png │ │ │ ├── etched_3.png │ │ │ ├── etched_4.png │ │ │ ├── etched_5.png │ │ │ ├── floor_nerves_0.png │ │ │ ├── floor_nerves_1_new.png │ │ │ ├── floor_nerves_1_old.png │ │ │ ├── floor_nerves_2_new.png │ │ │ ├── floor_nerves_2_old.png │ │ │ ├── floor_nerves_3_new.png │ │ │ ├── floor_nerves_3_old.png │ │ │ ├── floor_nerves_4_new.png │ │ │ ├── floor_nerves_4_old.png │ │ │ ├── floor_nerves_5_new.png │ │ │ ├── floor_nerves_5_old.png │ │ │ ├── floor_nerves_6.png │ │ │ ├── floor_sand_rock_0.png │ │ │ ├── floor_sand_rock_1.png │ │ │ ├── floor_sand_rock_2.png │ │ │ ├── floor_sand_rock_3.png │ │ │ ├── floor_sand_stone_0.png │ │ │ ├── floor_sand_stone_1.png │ │ │ ├── floor_sand_stone_2.png │ │ │ ├── floor_sand_stone_3.png │ │ │ ├── floor_sand_stone_4.png │ │ │ ├── floor_sand_stone_5.png │ │ │ ├── floor_sand_stone_6.png │ │ │ ├── floor_sand_stone_7.png │ │ │ ├── floor_vines_0_new.png │ │ │ ├── floor_vines_0_old.png │ │ │ ├── floor_vines_1_new.png │ │ │ ├── floor_vines_1_old.png │ │ │ ├── floor_vines_2_new.png │ │ │ ├── floor_vines_2_old.png │ │ │ ├── floor_vines_3_new.png │ │ │ ├── floor_vines_3_old.png │ │ │ ├── floor_vines_4_new.png │ │ │ ├── floor_vines_4_old.png │ │ │ ├── floor_vines_5_new.png │ │ │ ├── floor_vines_5_old.png │ │ │ ├── floor_vines_6_new.png │ │ │ ├── floor_vines_6_old.png │ │ │ ├── frozen_0.png │ │ │ ├── frozen_1.png │ │ │ ├── frozen_10.png │ │ │ ├── frozen_11.png │ │ │ ├── frozen_12.png │ │ │ ├── frozen_2.png │ │ │ ├── frozen_3.png │ │ │ ├── frozen_4.png │ │ │ ├── frozen_5.png │ │ │ ├── frozen_6.png │ │ │ ├── frozen_7.png │ │ │ ├── frozen_8.png │ │ │ ├── frozen_9.png │ │ │ ├── grass │ │ │ │ ├── grass0-dirt-mix_1.png │ │ │ │ ├── grass0-dirt-mix_2.png │ │ │ │ ├── grass0-dirt-mix_3.png │ │ │ │ ├── grass_0_new.png │ │ │ │ ├── grass_0_old.png │ │ │ │ ├── grass_1_new.png │ │ │ │ ├── grass_1_old.png │ │ │ │ ├── grass_2_new.png │ │ │ │ ├── grass_2_old.png │ │ │ │ ├── grass_east_new.png │ │ │ │ ├── grass_east_old.png │ │ │ │ ├── grass_flowers_blue_1_new.png │ │ │ │ ├── grass_flowers_blue_1_old.png │ │ │ │ ├── grass_flowers_blue_2_new.png │ │ │ │ ├── grass_flowers_blue_2_old.png │ │ │ │ ├── grass_flowers_blue_3_new.png │ │ │ │ ├── grass_flowers_blue_3_old.png │ │ │ │ ├── grass_flowers_red_1_new.png │ │ │ │ ├── grass_flowers_red_1_old.png │ │ │ │ ├── grass_flowers_red_2_new.png │ │ │ │ ├── grass_flowers_red_2_old.png │ │ │ │ ├── grass_flowers_red_3_new.png │ │ │ │ ├── grass_flowers_red_3_old.png │ │ │ │ ├── grass_flowers_yellow_1_new.png │ │ │ │ ├── grass_flowers_yellow_1_old.png │ │ │ │ ├── grass_flowers_yellow_2_new.png │ │ │ │ ├── grass_flowers_yellow_2_old.png │ │ │ │ ├── grass_flowers_yellow_3_new.png │ │ │ │ ├── grass_flowers_yellow_3_old.png │ │ │ │ ├── grass_full_new.png │ │ │ │ ├── grass_full_old.png │ │ │ │ ├── grass_north_new.png │ │ │ │ ├── grass_north_old.png │ │ │ │ ├── grass_northeast_new.png │ │ │ │ ├── grass_northeast_old.png │ │ │ │ ├── grass_northwest_new.png │ │ │ │ ├── grass_northwest_old.png │ │ │ │ ├── grass_south_new.png │ │ │ │ ├── grass_south_old.png │ │ │ │ ├── grass_southeast_new.png │ │ │ │ ├── grass_southeast_old.png │ │ │ │ ├── grass_southwest_new.png │ │ │ │ ├── grass_southwest_old.png │ │ │ │ ├── grass_west_new.png │ │ │ │ └── grass_west_old.png │ │ │ ├── green_bones_1.png │ │ │ ├── green_bones_10.png │ │ │ ├── green_bones_11.png │ │ │ ├── green_bones_12.png │ │ │ ├── green_bones_2.png │ │ │ ├── green_bones_3.png │ │ │ ├── green_bones_4.png │ │ │ ├── green_bones_5.png │ │ │ ├── green_bones_6.png │ │ │ ├── green_bones_7.png │ │ │ ├── green_bones_8.png │ │ │ ├── green_bones_9.png │ │ │ ├── grey_dirt_0_new.png │ │ │ ├── grey_dirt_0_old.png │ │ │ ├── grey_dirt_1_new.png │ │ │ ├── grey_dirt_1_old.png │ │ │ ├── grey_dirt_2_new.png │ │ │ ├── grey_dirt_2_old.png │ │ │ ├── grey_dirt_3_new.png │ │ │ ├── grey_dirt_3_old.png │ │ │ ├── grey_dirt_4_new.png │ │ │ ├── grey_dirt_4_old.png │ │ │ ├── grey_dirt_5_new.png │ │ │ ├── grey_dirt_5_old.png │ │ │ ├── grey_dirt_6_new.png │ │ │ ├── grey_dirt_6_old.png │ │ │ ├── grey_dirt_7_new.png │ │ │ ├── grey_dirt_7_old.png │ │ │ ├── grey_dirt_b_0.png │ │ │ ├── grey_dirt_b_1.png │ │ │ ├── grey_dirt_b_2.png │ │ │ ├── grey_dirt_b_3.png │ │ │ ├── grey_dirt_b_4.png │ │ │ ├── grey_dirt_b_5.png │ │ │ ├── grey_dirt_b_6.png │ │ │ ├── grey_dirt_b_7.png │ │ │ ├── hive_0.png │ │ │ ├── hive_1.png │ │ │ ├── hive_2.png │ │ │ ├── hive_3.png │ │ │ ├── ice_0_new.png │ │ │ ├── ice_0_old.png │ │ │ ├── ice_1_new.png │ │ │ ├── ice_1_old.png │ │ │ ├── ice_2_new.png │ │ │ ├── ice_2_old.png │ │ │ ├── ice_3_new.png │ │ │ ├── ice_3_old.png │ │ │ ├── infernal_1.png │ │ │ ├── infernal_10.png │ │ │ ├── infernal_11.png │ │ │ ├── infernal_12.png │ │ │ ├── infernal_13.png │ │ │ ├── infernal_14.png │ │ │ ├── infernal_15.png │ │ │ ├── infernal_2.png │ │ │ ├── infernal_3.png │ │ │ ├── infernal_4.png │ │ │ ├── infernal_5.png │ │ │ ├── infernal_6.png │ │ │ ├── infernal_7.png │ │ │ ├── infernal_8.png │ │ │ ├── infernal_9.png │ │ │ ├── infernal_blank.png │ │ │ ├── labyrinth_0.png │ │ │ ├── labyrinth_1.png │ │ │ ├── labyrinth_2.png │ │ │ ├── labyrinth_3.png │ │ │ ├── lair0b.png │ │ │ ├── lair1b.png │ │ │ ├── lair2b.png │ │ │ ├── lair3b.png │ │ │ ├── lair4b.png │ │ │ ├── lair5b.png │ │ │ ├── lair6b.png │ │ │ ├── lair7b.png │ │ │ ├── lair_0_new.png │ │ │ ├── lair_0_old.png │ │ │ ├── lair_1_new.png │ │ │ ├── lair_1_old.png │ │ │ ├── lair_2_new.png │ │ │ ├── lair_2_old.png │ │ │ ├── lair_3_new.png │ │ │ ├── lair_3_old.png │ │ │ ├── lair_4.png │ │ │ ├── lair_5.png │ │ │ ├── lair_6.png │ │ │ ├── lair_7.png │ │ │ ├── lava_0.png │ │ │ ├── lava_1.png │ │ │ ├── lava_2.png │ │ │ ├── lava_3.png │ │ │ ├── lava_old.png │ │ │ ├── limestone_0.png │ │ │ ├── limestone_1.png │ │ │ ├── limestone_2.png │ │ │ ├── limestone_3.png │ │ │ ├── limestone_4.png │ │ │ ├── limestone_5.png │ │ │ ├── limestone_6.png │ │ │ ├── limestone_7.png │ │ │ ├── limestone_8.png │ │ │ ├── limestone_9.png │ │ │ ├── marble_floor_1.png │ │ │ ├── marble_floor_2.png │ │ │ ├── marble_floor_3.png │ │ │ ├── marble_floor_4.png │ │ │ ├── marble_floor_5.png │ │ │ ├── marble_floor_6.png │ │ │ ├── mesh_0_new.png │ │ │ ├── mesh_0_old.png │ │ │ ├── mesh_1_new.png │ │ │ ├── mesh_1_old.png │ │ │ ├── mesh_2_new.png │ │ │ ├── mesh_2_old.png │ │ │ ├── mesh_3_new.png │ │ │ ├── mesh_3_old.png │ │ │ ├── mosaic_0.png │ │ │ ├── mosaic_1.png │ │ │ ├── mosaic_10.png │ │ │ ├── mosaic_11.png │ │ │ ├── mosaic_12.png │ │ │ ├── mosaic_13.png │ │ │ ├── mosaic_14.png │ │ │ ├── mosaic_15.png │ │ │ ├── mosaic_2.png │ │ │ ├── mosaic_3.png │ │ │ ├── mosaic_4.png │ │ │ ├── mosaic_5.png │ │ │ ├── mosaic_6.png │ │ │ ├── mosaic_7.png │ │ │ ├── mosaic_8.png │ │ │ ├── mosaic_9.png │ │ │ ├── moss_0.png │ │ │ ├── moss_1.png │ │ │ ├── moss_2.png │ │ │ ├── moss_3.png │ │ │ ├── mud_0.png │ │ │ ├── mud_1.png │ │ │ ├── mud_2.png │ │ │ ├── mud_3.png │ │ │ ├── orc_0.png │ │ │ ├── orc_1.png │ │ │ ├── orc_2.png │ │ │ ├── orc_3.png │ │ │ ├── orc_4.png │ │ │ ├── orc_5.png │ │ │ ├── orc_6.png │ │ │ ├── orc_7.png │ │ │ ├── pebble_brown_0_new.png │ │ │ ├── pebble_brown_0_old.png │ │ │ ├── pebble_brown_1_new.png │ │ │ ├── pebble_brown_1_old.png │ │ │ ├── pebble_brown_2_new.png │ │ │ ├── pebble_brown_2_old.png │ │ │ ├── pebble_brown_3_new.png │ │ │ ├── pebble_brown_3_old.png │ │ │ ├── pebble_brown_4_new.png │ │ │ ├── pebble_brown_4_old.png │ │ │ ├── pebble_brown_5_new.png │ │ │ ├── pebble_brown_5_old.png │ │ │ ├── pebble_brown_6_new.png │ │ │ ├── pebble_brown_6_old.png │ │ │ ├── pebble_brown_7_new.png │ │ │ ├── pebble_brown_7_old.png │ │ │ ├── pebble_brown_8_new.png │ │ │ ├── pebble_brown_8_old.png │ │ │ ├── pedestal_east.png │ │ │ ├── pedestal_full.png │ │ │ ├── pedestal_north.png │ │ │ ├── pedestal_northeast.png │ │ │ ├── pedestal_northwest.png │ │ │ ├── pedestal_south.png │ │ │ ├── pedestal_southeast.png │ │ │ ├── pedestal_southwest.png │ │ │ ├── pedestal_west.png │ │ │ ├── rect_gray_0_new.png │ │ │ ├── rect_gray_0_old.png │ │ │ ├── rect_gray_1_new.png │ │ │ ├── rect_gray_1_old.png │ │ │ ├── rect_gray_2_new.png │ │ │ ├── rect_gray_2_old.png │ │ │ ├── rect_gray_3_new.png │ │ │ ├── rect_gray_3_old.png │ │ │ ├── rough_red_0.png │ │ │ ├── rough_red_1.png │ │ │ ├── rough_red_2.png │ │ │ ├── rough_red_3.png │ │ │ ├── sand_1.png │ │ │ ├── sand_2.png │ │ │ ├── sand_3.png │ │ │ ├── sand_4.png │ │ │ ├── sand_5.png │ │ │ ├── sand_6.png │ │ │ ├── sand_7.png │ │ │ ├── sand_8.png │ │ │ ├── sandstone_floor_0.png │ │ │ ├── sandstone_floor_1.png │ │ │ ├── sandstone_floor_2.png │ │ │ ├── sandstone_floor_3.png │ │ │ ├── sandstone_floor_4.png │ │ │ ├── sandstone_floor_5.png │ │ │ ├── sandstone_floor_6.png │ │ │ ├── sandstone_floor_7.png │ │ │ ├── sandstone_floor_8.png │ │ │ ├── sandstone_floor_9.png │ │ │ ├── sigil_algiz_left.png │ │ │ ├── sigil_algiz_right.png │ │ │ ├── sigil_circle.png │ │ │ ├── sigil_cross.png │ │ │ ├── sigil_curve_north_east.png │ │ │ ├── sigil_curve_north_west.png │ │ │ ├── sigil_curve_south_east.png │ │ │ ├── sigil_curve_south_west.png │ │ │ ├── sigil_rhombus.png │ │ │ ├── sigil_sharp_east_northeast.png │ │ │ ├── sigil_sharp_west_southwest.png │ │ │ ├── sigil_straight_east_northeast_southwest.png │ │ │ ├── sigil_straight_east_west.png │ │ │ ├── sigil_straight_east_west_northeast_northwest.png │ │ │ ├── sigil_straight_north_south.png │ │ │ ├── sigil_straight_northeast_southwest.png │ │ │ ├── sigil_straight_northwest_southeast.png │ │ │ ├── sigil_wide_east_northwest.png │ │ │ ├── sigil_wide_east_southwest.png │ │ │ ├── sigil_wide_north_southeast.png │ │ │ ├── sigil_wide_north_southwest.png │ │ │ ├── sigil_wide_south_northeast.png │ │ │ ├── sigil_wide_south_northwest.png │ │ │ ├── sigil_wide_west_northeast.png │ │ │ ├── sigil_wide_west_southeast.png │ │ │ ├── sigil_y_east.png │ │ │ ├── sigil_y_left.png │ │ │ ├── sigil_y_north.png │ │ │ ├── sigil_y_right.png │ │ │ ├── sigil_y_south.png │ │ │ ├── sigil_y_west.png │ │ │ ├── sigils │ │ │ │ ├── algiz.png │ │ │ │ ├── algiz_left.png │ │ │ │ ├── algiz_right.png │ │ │ │ ├── angle_wide_east_northwest.png │ │ │ │ ├── angle_wide_east_southwest.png │ │ │ │ ├── angle_wide_north_southeast.png │ │ │ │ ├── angle_wide_north_southwest.png │ │ │ │ ├── angle_wide_south_northeast.png │ │ │ │ ├── angle_wide_south_northwest.png │ │ │ │ ├── angle_wide_west_northeast.png │ │ │ │ ├── angle_wide_west_southeast.png │ │ │ │ ├── circle.png │ │ │ │ ├── cross.png │ │ │ │ ├── curve_north_east.png │ │ │ │ ├── curve_north_west.png │ │ │ │ ├── curve_south_east.png │ │ │ │ ├── curve_south_west.png │ │ │ │ ├── rhombus.png │ │ │ │ ├── sharp_east_northeast.png │ │ │ │ ├── sharp_north_east.png │ │ │ │ ├── sharp_north_west.png │ │ │ │ ├── sharp_south_east.png │ │ │ │ ├── sharp_south_west.png │ │ │ │ ├── sharp_west_southwest.png │ │ │ │ ├── straight_east_northeast_southwest.png │ │ │ │ ├── straight_east_west.png │ │ │ │ ├── straight_east_west_northwest_southeast.png │ │ │ │ ├── straight_north_south.png │ │ │ │ ├── v-shaped_east.png │ │ │ │ ├── v-shaped_north.png │ │ │ │ ├── v-shaped_south.png │ │ │ │ ├── v-shaped_west.png │ │ │ │ ├── x-shaped.png │ │ │ │ ├── y-shaped_east.png │ │ │ │ ├── y-shaped_left.png │ │ │ │ ├── y-shaped_north.png │ │ │ │ ├── y-shaped_right.png │ │ │ │ ├── y-shaped_south.png │ │ │ │ └── y-shaped_west.png │ │ │ ├── slime_overlay_east.png │ │ │ ├── slime_overlay_north.png │ │ │ ├── slime_overlay_northeast.png │ │ │ ├── slime_overlay_northwest.png │ │ │ ├── slime_overlay_south.png │ │ │ ├── slime_overlay_southeast.png │ │ │ ├── slime_overlay_southwest.png │ │ │ ├── slime_overlay_west.png │ │ │ ├── snake-a_0.png │ │ │ ├── snake-a_1.png │ │ │ ├── snake-a_2.png │ │ │ ├── snake-a_3.png │ │ │ ├── snake-c_0.png │ │ │ ├── snake-c_1.png │ │ │ ├── snake-c_2.png │ │ │ ├── snake-c_3.png │ │ │ ├── snake-d_0.png │ │ │ ├── snake-d_1.png │ │ │ ├── snake-d_2.png │ │ │ ├── snake-d_3.png │ │ │ ├── snake_0.png │ │ │ ├── snake_1.png │ │ │ ├── snake_2.png │ │ │ ├── snake_3.png │ │ │ ├── swamp_0_new.png │ │ │ ├── swamp_0_old.png │ │ │ ├── swamp_1_new.png │ │ │ ├── swamp_1_old.png │ │ │ ├── swamp_2_new.png │ │ │ ├── swamp_2_old.png │ │ │ ├── swamp_3_new.png │ │ │ ├── swamp_3_old.png │ │ │ ├── tomb_0_new.png │ │ │ ├── tomb_0_old.png │ │ │ ├── tomb_1_new.png │ │ │ ├── tomb_1_old.png │ │ │ ├── tomb_2_new.png │ │ │ ├── tomb_2_old.png │ │ │ ├── tomb_3_new.png │ │ │ ├── tomb_3_old.png │ │ │ ├── tutorial_pad.png │ │ │ ├── volcanic_floor_0.png │ │ │ ├── volcanic_floor_1.png │ │ │ ├── volcanic_floor_2.png │ │ │ ├── volcanic_floor_3.png │ │ │ ├── volcanic_floor_4.png │ │ │ ├── volcanic_floor_5.png │ │ │ ├── volcanic_floor_6.png │ │ │ ├── white_marble_0.png │ │ │ ├── white_marble_1.png │ │ │ ├── white_marble_2.png │ │ │ ├── white_marble_3.png │ │ │ ├── white_marble_4.png │ │ │ ├── white_marble_5.png │ │ │ ├── white_marble_6.png │ │ │ ├── white_marble_7.png │ │ │ ├── white_marble_8.png │ │ │ └── white_marble_9.png │ │ ├── gateways │ │ │ ├── abyssal_stair.png │ │ │ ├── bailey_gone.png │ │ │ ├── bailey_portal.png │ │ │ ├── bazaar_gone.png │ │ │ ├── bazaar_portal.png │ │ │ ├── branch_stairs.png │ │ │ ├── enter.png │ │ │ ├── enter_abyss.png │ │ │ ├── enter_abyss_1.png │ │ │ ├── enter_abyss_2.png │ │ │ ├── enter_abyss_3.png │ │ │ ├── enter_cocytus.png │ │ │ ├── enter_cocytus_1.png │ │ │ ├── enter_cocytus_2.png │ │ │ ├── enter_cocytus_3.png │ │ │ ├── enter_crypt.png │ │ │ ├── enter_depths.png │ │ │ ├── enter_dis.png │ │ │ ├── enter_dis_1.png │ │ │ ├── enter_dis_2.png │ │ │ ├── enter_dis_3.png │ │ │ ├── enter_gehenna.png │ │ │ ├── enter_gehenna_1.png │ │ │ ├── enter_gehenna_2.png │ │ │ ├── enter_gehenna_3.png │ │ │ ├── enter_hell.png │ │ │ ├── enter_hell_1.png │ │ │ ├── enter_hell_2.png │ │ │ ├── enter_hell_3.png │ │ │ ├── enter_labyrinth.png │ │ │ ├── enter_lair.png │ │ │ ├── enter_orc.png │ │ │ ├── enter_pandemonium_new.png │ │ │ ├── enter_pandemonium_old.png │ │ │ ├── enter_snake.png │ │ │ ├── enter_spider.png │ │ │ ├── enter_tartarus.png │ │ │ ├── enter_tartarus_1.png │ │ │ ├── enter_tartarus_2.png │ │ │ ├── enter_tartarus_3.png │ │ │ ├── enter_tomb.png │ │ │ ├── enter_vaults_closed.png │ │ │ ├── enter_vaults_open.png │ │ │ ├── enter_zot_closed_new.png │ │ │ ├── enter_zot_closed_old.png │ │ │ ├── enter_zot_open_new.png │ │ │ ├── enter_zot_open_old.png │ │ │ ├── entrance.png │ │ │ ├── escape_hatch_down.png │ │ │ ├── escape_hatch_up.png │ │ │ ├── exit.png │ │ │ ├── exit_abyss_flickering_new.png │ │ │ ├── exit_abyss_flickering_old.png │ │ │ ├── exit_abyss_new.png │ │ │ ├── exit_abyss_old.png │ │ │ ├── exit_flickering.png │ │ │ ├── exit_pandemonium.png │ │ │ ├── exit_pandemonium_flickering.png │ │ │ ├── expired_portal.png │ │ │ ├── fleshy_orifice_closed.png │ │ │ ├── fleshy_orifice_open.png │ │ │ ├── hive_gone.png │ │ │ ├── hive_portal.png │ │ │ ├── ice_cave_gone.png │ │ │ ├── lab_gone.png │ │ │ ├── lab_portal.png │ │ │ ├── ossuary_gone.png │ │ │ ├── ossuary_portal.png │ │ │ ├── portal.png │ │ │ ├── portal_rotated.png │ │ │ ├── portal_unknown.png │ │ │ ├── return.png │ │ │ ├── return_depths.png │ │ │ ├── return_hell_new.png │ │ │ ├── return_hell_old.png │ │ │ ├── return_vestibule.png │ │ │ ├── return_zot_new.png │ │ │ ├── return_zot_old.png │ │ │ ├── rock_stairs_down.png │ │ │ ├── rock_stairs_up.png │ │ │ ├── sealed_stairs_down.png │ │ │ ├── sealed_stairs_up.png │ │ │ ├── sewer_portal_rusted.png │ │ │ ├── starry_portal.png │ │ │ ├── stone_arch.png │ │ │ ├── stone_arch_hell.png │ │ │ ├── stone_stairs_down.png │ │ │ ├── stone_stairs_up.png │ │ │ ├── transit_pandemonium_new.png │ │ │ ├── transit_pandemonium_old.png │ │ │ ├── trove_gone.png │ │ │ ├── trove_portal.png │ │ │ ├── volcano_exit.png │ │ │ ├── volcano_gone.png │ │ │ ├── wizlab_gone.png │ │ │ ├── zig_portal.png │ │ │ └── zig_used.png │ │ ├── large_box.png │ │ ├── mold_large_1.png │ │ ├── mold_large_2.png │ │ ├── mold_large_3.png │ │ ├── mold_large_4.png │ │ ├── sarcophagus_open.png │ │ ├── shops │ │ │ ├── abandoned_shop.png │ │ │ ├── enter_shop.png │ │ │ ├── shop_armor.png │ │ │ ├── shop_books.png │ │ │ ├── shop_food.png │ │ │ ├── shop_gadgets.png │ │ │ ├── shop_general.png │ │ │ ├── shop_jewellery.png │ │ │ ├── shop_potions.png │ │ │ ├── shop_scrolls.png │ │ │ ├── shop_wands.png │ │ │ └── shop_weapon.png │ │ ├── sparkling_fountain.png │ │ ├── sparkling_fountain_2.png │ │ ├── statues │ │ │ ├── crumbled_column.png │ │ │ ├── crumbled_column_1.png │ │ │ ├── crumbled_column_2.png │ │ │ ├── crumbled_column_3.png │ │ │ ├── crumbled_column_4.png │ │ │ ├── crumbled_column_5.png │ │ │ ├── crumbled_column_6.png │ │ │ ├── elephant_statue.png │ │ │ ├── granite_statue.png │ │ │ ├── granite_stump_new.png │ │ │ ├── granite_stump_old.png │ │ │ ├── orcish_idol_new.png │ │ │ ├── orcish_idol_old.png │ │ │ ├── pedestal.png │ │ │ ├── statue_ancient_evil.png │ │ │ ├── statue_ancient_hero.png │ │ │ ├── statue_angel.png │ │ │ ├── statue_archer.png │ │ │ ├── statue_bases.png │ │ │ ├── statue_cat.png │ │ │ ├── statue_centaur.png │ │ │ ├── statue_cerebov.png │ │ │ ├── statue_demonic_bust.png │ │ │ ├── statue_dragon.png │ │ │ ├── statue_dwarf.png │ │ │ ├── statue_elephant.png │ │ │ ├── statue_hydra.png │ │ │ ├── statue_imp.png │ │ │ ├── statue_iron.png │ │ │ ├── statue_mermaid.png │ │ │ ├── statue_naga.png │ │ │ ├── statue_orb.png │ │ │ ├── statue_orb_guardian.png │ │ │ ├── statue_princess.png │ │ │ ├── statue_sigmund.png │ │ │ ├── statue_snail.png │ │ │ ├── statue_sword.png │ │ │ ├── statue_tengu.png │ │ │ ├── statue_triangle.png │ │ │ ├── statue_twins.png │ │ │ └── statue_wraith.png │ │ ├── traps │ │ │ ├── alarm.png │ │ │ ├── gas_trap.png │ │ │ ├── passage_of_golubria.png │ │ │ ├── pressure_plate.png │ │ │ ├── shadow.png │ │ │ ├── shadow_dormant.png │ │ │ ├── shaft.png │ │ │ ├── teleport_permanent.png │ │ │ ├── trap_alarm.png │ │ │ ├── trap_arrow.png │ │ │ ├── trap_axe.png │ │ │ ├── trap_blade.png │ │ │ ├── trap_bolt.png │ │ │ ├── trap_dart.png │ │ │ ├── trap_magical.png │ │ │ ├── trap_mechanical.png │ │ │ ├── trap_needle.png │ │ │ ├── trap_net.png │ │ │ ├── trap_shaft.png │ │ │ ├── trap_spear.png │ │ │ ├── trap_teleport.png │ │ │ ├── trap_zot.png │ │ │ ├── zot.png │ │ │ └── zotdef_dart_trap.png │ │ ├── trees │ │ │ ├── mangrove_1.png │ │ │ ├── mangrove_2.png │ │ │ ├── mangrove_3.png │ │ │ ├── tree_1_lightred.png │ │ │ ├── tree_1_red.png │ │ │ ├── tree_1_yellow.png │ │ │ ├── tree_2_lightred.png │ │ │ ├── tree_2_red.png │ │ │ └── tree_2_yellow.png │ │ ├── unseen.png │ │ ├── vaults │ │ │ ├── brick_dark_eyes.png │ │ │ ├── brick_dark_skeleton.png │ │ │ ├── dimension_edge.png │ │ │ ├── disco_ball.png │ │ │ ├── golden_statue_1.png │ │ │ ├── golden_statue_2.png │ │ │ ├── grate.png │ │ │ ├── machine_tukima.png │ │ │ ├── sarcophagus_pedestal_left.png │ │ │ ├── sarcophagus_pedestal_right.png │ │ │ ├── sarcophagus_sealed.png │ │ │ ├── statue_elephant_jade.png │ │ │ ├── statue_iron_golem.png │ │ │ ├── the_teleporter_ice_cave.png │ │ │ └── the_teleporter_vaults.png │ │ ├── wall │ │ │ ├── abyss │ │ │ │ ├── abyss_0.png │ │ │ │ ├── abyss_1.png │ │ │ │ ├── abyss_2.png │ │ │ │ ├── abyss_3.png │ │ │ │ ├── abyss_4.png │ │ │ │ ├── abyss_5.png │ │ │ │ ├── abyss_6.png │ │ │ │ ├── abyss_7.png │ │ │ │ ├── abyss_blue_0.png │ │ │ │ ├── abyss_blue_1.png │ │ │ │ ├── abyss_blue_2.png │ │ │ │ ├── abyss_blue_3.png │ │ │ │ ├── abyss_blue_4.png │ │ │ │ ├── abyss_blue_5.png │ │ │ │ ├── abyss_blue_6.png │ │ │ │ ├── abyss_blue_7.png │ │ │ │ ├── abyss_brown_0.png │ │ │ │ ├── abyss_brown_1.png │ │ │ │ ├── abyss_brown_2.png │ │ │ │ ├── abyss_brown_3.png │ │ │ │ ├── abyss_brown_4.png │ │ │ │ ├── abyss_brown_5.png │ │ │ │ ├── abyss_brown_6.png │ │ │ │ ├── abyss_brown_7.png │ │ │ │ ├── abyss_cyan_0.png │ │ │ │ ├── abyss_cyan_1.png │ │ │ │ ├── abyss_cyan_2.png │ │ │ │ ├── abyss_cyan_3.png │ │ │ │ ├── abyss_cyan_4.png │ │ │ │ ├── abyss_cyan_5.png │ │ │ │ ├── abyss_cyan_6.png │ │ │ │ ├── abyss_cyan_7.png │ │ │ │ ├── abyss_darkgray_0.png │ │ │ │ ├── abyss_darkgray_1.png │ │ │ │ ├── abyss_darkgray_2.png │ │ │ │ ├── abyss_darkgray_3.png │ │ │ │ ├── abyss_darkgray_4.png │ │ │ │ ├── abyss_darkgray_5.png │ │ │ │ ├── abyss_darkgray_6.png │ │ │ │ ├── abyss_darkgray_7.png │ │ │ │ ├── abyss_green_0.png │ │ │ │ ├── abyss_green_1.png │ │ │ │ ├── abyss_green_2.png │ │ │ │ ├── abyss_green_3.png │ │ │ │ ├── abyss_green_4.png │ │ │ │ ├── abyss_green_5.png │ │ │ │ ├── abyss_green_6.png │ │ │ │ ├── abyss_green_7.png │ │ │ │ ├── abyss_lightblue_0.png │ │ │ │ ├── abyss_lightblue_1.png │ │ │ │ ├── abyss_lightblue_2.png │ │ │ │ ├── abyss_lightblue_3.png │ │ │ │ ├── abyss_lightblue_4.png │ │ │ │ ├── abyss_lightblue_5.png │ │ │ │ ├── abyss_lightblue_6.png │ │ │ │ ├── abyss_lightblue_7.png │ │ │ │ ├── abyss_lightcyan_0.png │ │ │ │ ├── abyss_lightcyan_1.png │ │ │ │ ├── abyss_lightcyan_2.png │ │ │ │ ├── abyss_lightcyan_3.png │ │ │ │ ├── abyss_lightcyan_4.png │ │ │ │ ├── abyss_lightcyan_5.png │ │ │ │ ├── abyss_lightcyan_6.png │ │ │ │ ├── abyss_lightcyan_7.png │ │ │ │ ├── abyss_lightgray_0.png │ │ │ │ ├── abyss_lightgray_1.png │ │ │ │ ├── abyss_lightgray_2.png │ │ │ │ ├── abyss_lightgray_3.png │ │ │ │ ├── abyss_lightgray_4.png │ │ │ │ ├── abyss_lightgray_5.png │ │ │ │ ├── abyss_lightgray_6.png │ │ │ │ ├── abyss_lightgray_7.png │ │ │ │ ├── abyss_lightgreen_0.png │ │ │ │ ├── abyss_lightgreen_1.png │ │ │ │ ├── abyss_lightgreen_2.png │ │ │ │ ├── abyss_lightgreen_3.png │ │ │ │ ├── abyss_lightgreen_4.png │ │ │ │ ├── abyss_lightgreen_5.png │ │ │ │ ├── abyss_lightgreen_6.png │ │ │ │ ├── abyss_lightgreen_7.png │ │ │ │ ├── abyss_lightmagenta_0.png │ │ │ │ ├── abyss_lightmagenta_1.png │ │ │ │ ├── abyss_lightmagenta_2.png │ │ │ │ ├── abyss_lightmagenta_3.png │ │ │ │ ├── abyss_lightmagenta_4.png │ │ │ │ ├── abyss_lightmagenta_5.png │ │ │ │ ├── abyss_lightmagenta_6.png │ │ │ │ ├── abyss_lightmagenta_7.png │ │ │ │ ├── abyss_lightred_0.png │ │ │ │ ├── abyss_lightred_1.png │ │ │ │ ├── abyss_lightred_2.png │ │ │ │ ├── abyss_lightred_3.png │ │ │ │ ├── abyss_lightred_4.png │ │ │ │ ├── abyss_lightred_5.png │ │ │ │ ├── abyss_lightred_6.png │ │ │ │ ├── abyss_lightred_7.png │ │ │ │ ├── abyss_magenta_0.png │ │ │ │ ├── abyss_magenta_1.png │ │ │ │ ├── abyss_magenta_2.png │ │ │ │ ├── abyss_magenta_3.png │ │ │ │ ├── abyss_magenta_4.png │ │ │ │ ├── abyss_magenta_5.png │ │ │ │ ├── abyss_magenta_6.png │ │ │ │ ├── abyss_magenta_7.png │ │ │ │ ├── abyss_white_0.png │ │ │ │ ├── abyss_white_1.png │ │ │ │ ├── abyss_white_2.png │ │ │ │ ├── abyss_white_3.png │ │ │ │ ├── abyss_white_4.png │ │ │ │ ├── abyss_white_5.png │ │ │ │ ├── abyss_white_6.png │ │ │ │ ├── abyss_white_7.png │ │ │ │ ├── abyss_yellow_0.png │ │ │ │ ├── abyss_yellow_1.png │ │ │ │ ├── abyss_yellow_2.png │ │ │ │ ├── abyss_yellow_3.png │ │ │ │ ├── abyss_yellow_4.png │ │ │ │ ├── abyss_yellow_5.png │ │ │ │ ├── abyss_yellow_6.png │ │ │ │ └── abyss_yellow_7.png │ │ │ ├── banners │ │ │ │ └── banner_1.png │ │ │ ├── bars_red_1.png │ │ │ ├── bars_red_2.png │ │ │ ├── bars_red_3.png │ │ │ ├── bars_red_4.png │ │ │ ├── bars_red_5.png │ │ │ ├── bars_red_6.png │ │ │ ├── bars_red_7.png │ │ │ ├── bars_red_8.png │ │ │ ├── beehives_0.png │ │ │ ├── beehives_1.png │ │ │ ├── beehives_2.png │ │ │ ├── beehives_3.png │ │ │ ├── beehives_4.png │ │ │ ├── beehives_5.png │ │ │ ├── beehives_6.png │ │ │ ├── beehives_7.png │ │ │ ├── beehives_8.png │ │ │ ├── beehives_9.png │ │ │ ├── brick_brown-vines_1.png │ │ │ ├── brick_brown-vines_2.png │ │ │ ├── brick_brown-vines_3.png │ │ │ ├── brick_brown-vines_4.png │ │ │ ├── brick_brown_0.png │ │ │ ├── brick_brown_1.png │ │ │ ├── brick_brown_2.png │ │ │ ├── brick_brown_3.png │ │ │ ├── brick_brown_4.png │ │ │ ├── brick_brown_5.png │ │ │ ├── brick_brown_6.png │ │ │ ├── brick_brown_7.png │ │ │ ├── brick_dark_0.png │ │ │ ├── brick_dark_1.png │ │ │ ├── brick_dark_2.png │ │ │ ├── brick_dark_3.png │ │ │ ├── brick_dark_4.png │ │ │ ├── brick_dark_5.png │ │ │ ├── brick_dark_6.png │ │ │ ├── brick_gray_0.png │ │ │ ├── brick_gray_1.png │ │ │ ├── brick_gray_2.png │ │ │ ├── brick_gray_3.png │ │ │ ├── catacombs_0.png │ │ │ ├── catacombs_1.png │ │ │ ├── catacombs_10.png │ │ │ ├── catacombs_11.png │ │ │ ├── catacombs_12.png │ │ │ ├── catacombs_13.png │ │ │ ├── catacombs_14.png │ │ │ ├── catacombs_15.png │ │ │ ├── catacombs_2.png │ │ │ ├── catacombs_3.png │ │ │ ├── catacombs_4.png │ │ │ ├── catacombs_5.png │ │ │ ├── catacombs_6.png │ │ │ ├── catacombs_7.png │ │ │ ├── catacombs_8.png │ │ │ ├── catacombs_9.png │ │ │ ├── church_0.png │ │ │ ├── church_1.png │ │ │ ├── church_2.png │ │ │ ├── church_3.png │ │ │ ├── church_4.png │ │ │ ├── cobalt_rock_1.png │ │ │ ├── cobalt_rock_2.png │ │ │ ├── cobalt_rock_3.png │ │ │ ├── cobalt_rock_4.png │ │ │ ├── cobalt_stone_1.png │ │ │ ├── cobalt_stone_10.png │ │ │ ├── cobalt_stone_11.png │ │ │ ├── cobalt_stone_12.png │ │ │ ├── cobalt_stone_2.png │ │ │ ├── cobalt_stone_3.png │ │ │ ├── cobalt_stone_4.png │ │ │ ├── cobalt_stone_5.png │ │ │ ├── cobalt_stone_6.png │ │ │ ├── cobalt_stone_7.png │ │ │ ├── cobalt_stone_8.png │ │ │ ├── cobalt_stone_9.png │ │ │ ├── crystal_wall_0.png │ │ │ ├── crystal_wall_1.png │ │ │ ├── crystal_wall_11.png │ │ │ ├── crystal_wall_12.png │ │ │ ├── crystal_wall_13.png │ │ │ ├── crystal_wall_1_0.png │ │ │ ├── crystal_wall_2.png │ │ │ ├── crystal_wall_3.png │ │ │ ├── crystal_wall_4.png │ │ │ ├── crystal_wall_5.png │ │ │ ├── crystal_wall_6.png │ │ │ ├── crystal_wall_7.png │ │ │ ├── crystal_wall_8.png │ │ │ ├── crystal_wall_9.png │ │ │ ├── crystal_wall_blue.png │ │ │ ├── crystal_wall_brown.png │ │ │ ├── crystal_wall_cyan.png │ │ │ ├── crystal_wall_darkgray.png │ │ │ ├── crystal_wall_green.png │ │ │ ├── crystal_wall_lightblue.png │ │ │ ├── crystal_wall_lightcyan.png │ │ │ ├── crystal_wall_lightgray.png │ │ │ ├── crystal_wall_lightgreen.png │ │ │ ├── crystal_wall_lightmagenta.png │ │ │ ├── crystal_wall_lightred.png │ │ │ ├── crystal_wall_magenta.png │ │ │ ├── crystal_wall_red.png │ │ │ ├── crystal_wall_white.png │ │ │ ├── crystal_wall_yellow.png │ │ │ ├── destroyed_wall.png │ │ │ ├── emerald_1.png │ │ │ ├── emerald_2.png │ │ │ ├── emerald_3.png │ │ │ ├── emerald_4.png │ │ │ ├── emerald_5.png │ │ │ ├── emerald_6.png │ │ │ ├── emerald_7.png │ │ │ ├── emerald_8.png │ │ │ ├── green_crystal_wall.png │ │ │ ├── hell_1.png │ │ │ ├── hell_10.png │ │ │ ├── hell_11.png │ │ │ ├── hell_2.png │ │ │ ├── hell_3.png │ │ │ ├── hell_4.png │ │ │ ├── hell_5.png │ │ │ ├── hell_6.png │ │ │ ├── hell_7.png │ │ │ ├── hell_8.png │ │ │ ├── hell_9.png │ │ │ ├── hive_0.png │ │ │ ├── hive_1.png │ │ │ ├── hive_2.png │ │ │ ├── hive_3.png │ │ │ ├── lab-metal_0.png │ │ │ ├── lab-metal_1.png │ │ │ ├── lab-metal_2.png │ │ │ ├── lab-metal_3.png │ │ │ ├── lab-metal_4.png │ │ │ ├── lab-metal_5.png │ │ │ ├── lab-metal_6.png │ │ │ ├── lab-rock_0.png │ │ │ ├── lab-rock_1.png │ │ │ ├── lab-rock_2.png │ │ │ ├── lab-rock_3.png │ │ │ ├── lab-stone_0.png │ │ │ ├── lab-stone_1.png │ │ │ ├── lab-stone_2.png │ │ │ ├── lab-stone_3.png │ │ │ ├── lab-stone_4.png │ │ │ ├── lab-stone_5.png │ │ │ ├── lair_0_new.png │ │ │ ├── lair_0_old.png │ │ │ ├── lair_1_new.png │ │ │ ├── lair_1_old.png │ │ │ ├── lair_2_new.png │ │ │ ├── lair_2_old.png │ │ │ ├── lair_3_new.png │ │ │ ├── lair_3_old.png │ │ │ ├── marble_wall_1.png │ │ │ ├── marble_wall_10.png │ │ │ ├── marble_wall_11.png │ │ │ ├── marble_wall_12.png │ │ │ ├── marble_wall_2.png │ │ │ ├── marble_wall_3.png │ │ │ ├── marble_wall_4.png │ │ │ ├── marble_wall_5.png │ │ │ ├── marble_wall_6.png │ │ │ ├── marble_wall_7.png │ │ │ ├── marble_wall_8.png │ │ │ ├── marble_wall_9.png │ │ │ ├── metal_wall.png │ │ │ ├── metal_wall_brown.png │ │ │ ├── metal_wall_cracked.png │ │ │ ├── metal_wall_white_0.png │ │ │ ├── metal_wall_white_1.png │ │ │ ├── metal_wall_white_2.png │ │ │ ├── mirrored_wall_new.png │ │ │ ├── mirrored_wall_old.png │ │ │ ├── orc_0.png │ │ │ ├── orc_1.png │ │ │ ├── orc_10.png │ │ │ ├── orc_11.png │ │ │ ├── orc_2.png │ │ │ ├── orc_3.png │ │ │ ├── orc_4.png │ │ │ ├── orc_5.png │ │ │ ├── orc_6.png │ │ │ ├── orc_7.png │ │ │ ├── orc_8.png │ │ │ ├── orc_9.png │ │ │ ├── pebble_red_0_new.png │ │ │ ├── pebble_red_0_old.png │ │ │ ├── pebble_red_1_new.png │ │ │ ├── pebble_red_1_old.png │ │ │ ├── pebble_red_2_new.png │ │ │ ├── pebble_red_2_old.png │ │ │ ├── pebble_red_3_new.png │ │ │ ├── pebble_red_3_old.png │ │ │ ├── permarock_clear_red_0.png │ │ │ ├── permarock_red_0.png │ │ │ ├── relief_0.png │ │ │ ├── relief_1.png │ │ │ ├── relief_2.png │ │ │ ├── relief_3.png │ │ │ ├── relief_brown_0.png │ │ │ ├── relief_brown_1.png │ │ │ ├── relief_brown_2.png │ │ │ ├── relief_brown_3.png │ │ │ ├── sandstone_wall_0.png │ │ │ ├── sandstone_wall_1.png │ │ │ ├── sandstone_wall_2.png │ │ │ ├── sandstone_wall_3.png │ │ │ ├── sandstone_wall_4.png │ │ │ ├── sandstone_wall_5.png │ │ │ ├── sandstone_wall_6.png │ │ │ ├── sandstone_wall_7.png │ │ │ ├── sandstone_wall_8.png │ │ │ ├── sandstone_wall_9.png │ │ │ ├── shadow_east.png │ │ │ ├── shadow_east_darker.png │ │ │ ├── shadow_east_top.png │ │ │ ├── shadow_east_top_darker.png │ │ │ ├── shadow_north.png │ │ │ ├── shadow_north_darker.png │ │ │ ├── shadow_northeast.png │ │ │ ├── shadow_northeast_darker.png │ │ │ ├── shadow_northwest.png │ │ │ ├── shadow_northwest_darker.png │ │ │ ├── shadow_west.png │ │ │ ├── shadow_west_darker.png │ │ │ ├── shadow_west_top.png │ │ │ ├── shadow_west_top_darker.png │ │ │ ├── shoals_wall_1.png │ │ │ ├── shoals_wall_2.png │ │ │ ├── shoals_wall_3.png │ │ │ ├── shoals_wall_4.png │ │ │ ├── silver_wall.png │ │ │ ├── slime_0_new.png │ │ │ ├── slime_0_old.png │ │ │ ├── slime_1_new.png │ │ │ ├── slime_1_old.png │ │ │ ├── slime_2_new.png │ │ │ ├── slime_2_old.png │ │ │ ├── slime_3_new.png │ │ │ ├── slime_3_old.png │ │ │ ├── slime_4.png │ │ │ ├── slime_5.png │ │ │ ├── slime_6.png │ │ │ ├── slime_7.png │ │ │ ├── slime_stone_0.png │ │ │ ├── slime_stone_1.png │ │ │ ├── slime_stone_2.png │ │ │ ├── snake_0.png │ │ │ ├── snake_1.png │ │ │ ├── snake_2.png │ │ │ ├── snake_3.png │ │ │ ├── snake_4.png │ │ │ ├── snake_5.png │ │ │ ├── snake_6.png │ │ │ ├── snake_7.png │ │ │ ├── snake_8.png │ │ │ ├── snake_9.png │ │ │ ├── stone2_brown_2_new.png │ │ │ ├── stone2_brown_2_old.png │ │ │ ├── stone2_brown_3_new.png │ │ │ ├── stone2_brown_3_old.png │ │ │ ├── stone2_dark_2_new.png │ │ │ ├── stone2_dark_2_old.png │ │ │ ├── stone2_dark_3_new.png │ │ │ ├── stone2_dark_3_old.png │ │ │ ├── stone2_gray_2_new.png │ │ │ ├── stone2_gray_2_old.png │ │ │ ├── stone2_gray_3_new.png │ │ │ ├── stone2_gray_3_old.png │ │ │ ├── stone_2_brown0.png │ │ │ ├── stone_2_brown1.png │ │ │ ├── stone_2_brown_0.png │ │ │ ├── stone_2_brown_1.png │ │ │ ├── stone_2_dark0.png │ │ │ ├── stone_2_dark1.png │ │ │ ├── stone_2_dark_0.png │ │ │ ├── stone_2_dark_1.png │ │ │ ├── stone_2_gray0.png │ │ │ ├── stone_2_gray1.png │ │ │ ├── stone_2_gray_0.png │ │ │ ├── stone_2_gray_1.png │ │ │ ├── stone_black_marked_0.png │ │ │ ├── stone_black_marked_1.png │ │ │ ├── stone_black_marked_2.png │ │ │ ├── stone_black_marked_3.png │ │ │ ├── stone_black_marked_4.png │ │ │ ├── stone_black_marked_5.png │ │ │ ├── stone_black_marked_6.png │ │ │ ├── stone_black_marked_7.png │ │ │ ├── stone_black_marked_8.png │ │ │ ├── stone_brick_1.png │ │ │ ├── stone_brick_10.png │ │ │ ├── stone_brick_11.png │ │ │ ├── stone_brick_12.png │ │ │ ├── stone_brick_2.png │ │ │ ├── stone_brick_3.png │ │ │ ├── stone_brick_4.png │ │ │ ├── stone_brick_5.png │ │ │ ├── stone_brick_6.png │ │ │ ├── stone_brick_7.png │ │ │ ├── stone_brick_8.png │ │ │ ├── stone_brick_9.png │ │ │ ├── stone_dark_0.png │ │ │ ├── stone_dark_1.png │ │ │ ├── stone_dark_2.png │ │ │ ├── stone_dark_3.png │ │ │ ├── stone_gray_0.png │ │ │ ├── stone_gray_1.png │ │ │ ├── stone_gray_2.png │ │ │ ├── stone_gray_3.png │ │ │ ├── tomb_0.png │ │ │ ├── tomb_1.png │ │ │ ├── tomb_2.png │ │ │ ├── tomb_3.png │ │ │ ├── torches │ │ │ │ ├── torch_0.png │ │ │ │ ├── torch_1.png │ │ │ │ ├── torch_2.png │ │ │ │ ├── torch_3.png │ │ │ │ └── torch_4.png │ │ │ ├── transparent_flesh.png │ │ │ ├── transparent_stone.png │ │ │ ├── transparent_wall_new.png │ │ │ ├── transparent_wall_old.png │ │ │ ├── undead_0.png │ │ │ ├── undead_1.png │ │ │ ├── undead_2.png │ │ │ ├── undead_3.png │ │ │ ├── undead_brown_0.png │ │ │ ├── undead_brown_1.png │ │ │ ├── undead_brown_2.png │ │ │ ├── undead_brown_3.png │ │ │ ├── vault_0.png │ │ │ ├── vault_1.png │ │ │ ├── vault_2.png │ │ │ ├── vault_3.png │ │ │ ├── volcanic_wall_0.png │ │ │ ├── volcanic_wall_1.png │ │ │ ├── volcanic_wall_2.png │ │ │ ├── volcanic_wall_3.png │ │ │ ├── volcanic_wall_4.png │ │ │ ├── volcanic_wall_5.png │ │ │ ├── volcanic_wall_6.png │ │ │ ├── wall_flesh_0.png │ │ │ ├── wall_flesh_1.png │ │ │ ├── wall_flesh_2.png │ │ │ ├── wall_flesh_3.png │ │ │ ├── wall_flesh_4.png │ │ │ ├── wall_flesh_5.png │ │ │ ├── wall_flesh_6.png │ │ │ ├── wall_vines_0.png │ │ │ ├── wall_vines_1.png │ │ │ ├── wall_vines_2.png │ │ │ ├── wall_vines_3.png │ │ │ ├── wall_vines_4.png │ │ │ ├── wall_vines_5.png │ │ │ ├── wall_vines_6.png │ │ │ ├── wall_yellow_rock_0.png │ │ │ ├── wall_yellow_rock_1.png │ │ │ ├── wall_yellow_rock_2.png │ │ │ ├── wall_yellow_rock_3.png │ │ │ ├── wax_wall_new.png │ │ │ ├── wax_wall_old.png │ │ │ ├── zot_blue_0_new.png │ │ │ ├── zot_blue_0_old.png │ │ │ ├── zot_blue_1_new.png │ │ │ ├── zot_blue_1_old.png │ │ │ ├── zot_blue_2_new.png │ │ │ ├── zot_blue_2_old.png │ │ │ ├── zot_blue_3_new.png │ │ │ └── zot_blue_3_old.png │ │ ├── water │ │ │ ├── deep_water.png │ │ │ ├── deep_water_2.png │ │ │ ├── deep_water_murky.png │ │ │ ├── deep_water_murky_2.png │ │ │ ├── deep_water_wave_corner_northeast.png │ │ │ ├── deep_water_wave_corner_northeast_1.png │ │ │ ├── deep_water_wave_corner_northeast_2.png │ │ │ ├── deep_water_wave_corner_northwest.png │ │ │ ├── deep_water_wave_corner_northwest_1.png │ │ │ ├── deep_water_wave_corner_northwest_2.png │ │ │ ├── deep_water_wave_corner_southeast.png │ │ │ ├── deep_water_wave_corner_southeast_1.png │ │ │ ├── deep_water_wave_corner_southeast_2.png │ │ │ ├── deep_water_wave_corner_southwest.png │ │ │ ├── deep_water_wave_corner_southwest_1.png │ │ │ ├── deep_water_wave_corner_southwest_2.png │ │ │ ├── deep_water_wave_east.png │ │ │ ├── deep_water_wave_east_1.png │ │ │ ├── deep_water_wave_east_2.png │ │ │ ├── deep_water_wave_north.png │ │ │ ├── deep_water_wave_north_1.png │ │ │ ├── deep_water_wave_north_2.png │ │ │ ├── deep_water_wave_south.png │ │ │ ├── deep_water_wave_south_1.png │ │ │ ├── deep_water_wave_south_2.png │ │ │ ├── deep_water_wave_west.png │ │ │ ├── deep_water_wave_west_1.png │ │ │ ├── deep_water_wave_west_2.png │ │ │ ├── grey_dirt_bl.png │ │ │ ├── grey_dirt_border_corner_left.png │ │ │ ├── grey_dirt_border_corner_right.png │ │ │ ├── grey_dirt_border_right.png │ │ │ ├── grey_dirt_border_top.png │ │ │ ├── ink_full.png │ │ │ ├── ink_wave_corner_northeast.png │ │ │ ├── ink_wave_corner_northwest.png │ │ │ ├── ink_wave_corner_southeast.png │ │ │ ├── ink_wave_corner_southwest.png │ │ │ ├── ink_wave_east.png │ │ │ ├── ink_wave_north.png │ │ │ ├── ink_wave_south.png │ │ │ ├── ink_wave_west.png │ │ │ ├── liquefaction_1.png │ │ │ ├── liquefaction_2.png │ │ │ ├── open_sea.png │ │ │ ├── open_sea_2.png │ │ │ ├── shallow_border_bottom.png │ │ │ ├── shallow_border_bottom_left.png │ │ │ ├── shallow_border_bottom_right.png │ │ │ ├── shallow_border_left.png │ │ │ ├── shallow_border_right.png │ │ │ ├── shallow_border_top.png │ │ │ ├── shallow_border_top_left.png │ │ │ ├── shallow_border_top_right.png │ │ │ ├── shallow_water.png │ │ │ ├── shallow_water_2.png │ │ │ ├── shallow_water_disturbance.png │ │ │ ├── shallow_water_disturbance_2.png │ │ │ ├── shallow_water_murky.png │ │ │ ├── shallow_water_murky_2.png │ │ │ ├── shallow_water_murky_disturbance.png │ │ │ ├── shallow_water_murky_disturbance_2.png │ │ │ ├── shallow_water_wave_corner_northeast_new.png │ │ │ ├── shallow_water_wave_corner_northeast_old.png │ │ │ ├── shallow_water_wave_corner_northwest_new.png │ │ │ ├── shallow_water_wave_corner_northwest_old.png │ │ │ ├── shallow_water_wave_corner_southeast_new.png │ │ │ ├── shallow_water_wave_corner_southeast_old.png │ │ │ ├── shallow_water_wave_corner_southwest_new.png │ │ │ ├── shallow_water_wave_corner_southwest_old.png │ │ │ ├── shallow_water_wave_east_new.png │ │ │ ├── shallow_water_wave_east_old.png │ │ │ ├── shallow_water_wave_north_new.png │ │ │ ├── shallow_water_wave_north_old.png │ │ │ ├── shallow_water_wave_south_new.png │ │ │ ├── shallow_water_wave_south_old.png │ │ │ ├── shallow_water_wave_west_new.png │ │ │ ├── shallow_water_wave_west_old.png │ │ │ ├── shoals_deep_water_0.png │ │ │ ├── shoals_deep_water_10.png │ │ │ ├── shoals_deep_water_11.png │ │ │ ├── shoals_deep_water_1_new.png │ │ │ ├── shoals_deep_water_1_old.png │ │ │ ├── shoals_deep_water_1_shape.png │ │ │ ├── shoals_deep_water_2_bubbles.png │ │ │ ├── shoals_deep_water_2_new.png │ │ │ ├── shoals_deep_water_2_old.png │ │ │ ├── shoals_deep_water_2_shape.png │ │ │ ├── shoals_deep_water_3_bubbles.png │ │ │ ├── shoals_deep_water_3_new.png │ │ │ ├── shoals_deep_water_3_old.png │ │ │ ├── shoals_deep_water_4_bubbles.png │ │ │ ├── shoals_deep_water_4_new.png │ │ │ ├── shoals_deep_water_4_old.png │ │ │ ├── shoals_deep_water_5.png │ │ │ ├── shoals_deep_water_6.png │ │ │ ├── shoals_deep_water_7.png │ │ │ ├── shoals_deep_water_8.png │ │ │ ├── shoals_deep_water_9.png │ │ │ ├── shoals_shallow_water_0.png │ │ │ ├── shoals_shallow_water_10.png │ │ │ ├── shoals_shallow_water_11.png │ │ │ ├── shoals_shallow_water_1_new.png │ │ │ ├── shoals_shallow_water_1_old.png │ │ │ ├── shoals_shallow_water_2_new.png │ │ │ ├── shoals_shallow_water_2_old.png │ │ │ ├── shoals_shallow_water_3_new.png │ │ │ ├── shoals_shallow_water_3_old.png │ │ │ ├── shoals_shallow_water_4_new.png │ │ │ ├── shoals_shallow_water_4_old.png │ │ │ ├── shoals_shallow_water_5.png │ │ │ ├── shoals_shallow_water_6.png │ │ │ ├── shoals_shallow_water_7.png │ │ │ ├── shoals_shallow_water_8.png │ │ │ ├── shoals_shallow_water_9.png │ │ │ ├── shoals_shallow_water_disturbance_1_new.png │ │ │ ├── shoals_shallow_water_disturbance_1_old.png │ │ │ ├── shoals_shallow_water_disturbance_2_new.png │ │ │ ├── shoals_shallow_water_disturbance_2_old.png │ │ │ ├── shoals_shallow_water_disturbance_3_new.png │ │ │ └── shoals_shallow_water_disturbance_3_old.png │ │ └── zot_pillar.png │ ├── effect │ │ ├── acid_venom.png │ │ ├── arrow_0.png │ │ ├── arrow_1.png │ │ ├── arrow_2.png │ │ ├── arrow_3.png │ │ ├── arrow_4.png │ │ ├── arrow_5.png │ │ ├── arrow_6.png │ │ ├── arrow_7.png │ │ ├── cloud_acid_0.png │ │ ├── cloud_acid_1.png │ │ ├── cloud_acid_2.png │ │ ├── cloud_black_smoke.png │ │ ├── cloud_blue_smoke.png │ │ ├── cloud_calc_dust_0.png │ │ ├── cloud_calc_dust_1.png │ │ ├── cloud_calc_dust_2.png │ │ ├── cloud_calc_dust_3.png │ │ ├── cloud_chaos_1.png │ │ ├── cloud_chaos_2.png │ │ ├── cloud_chaos_3.png │ │ ├── cloud_chaos_4.png │ │ ├── cloud_chaos_5.png │ │ ├── cloud_cold_0.png │ │ ├── cloud_cold_1.png │ │ ├── cloud_cold_2.png │ │ ├── cloud_fire_0.png │ │ ├── cloud_fire_1.png │ │ ├── cloud_fire_2.png │ │ ├── cloud_forest_fire.png │ │ ├── cloud_gloom_new.png │ │ ├── cloud_gloom_old.png │ │ ├── cloud_grey_smoke.png │ │ ├── cloud_magic_trail_0.png │ │ ├── cloud_magic_trail_1.png │ │ ├── cloud_magic_trail_2.png │ │ ├── cloud_magic_trail_3.png │ │ ├── cloud_meph_0.png │ │ ├── cloud_meph_1.png │ │ ├── cloud_meph_2.png │ │ ├── cloud_mutagenic_large_1.png │ │ ├── cloud_mutagenic_large_2.png │ │ ├── cloud_mutagenic_large_3.png │ │ ├── cloud_mutagenic_large_4.png │ │ ├── cloud_mutagenic_medium_1.png │ │ ├── cloud_mutagenic_medium_2.png │ │ ├── cloud_mutagenic_small_1.png │ │ ├── cloud_mutagenic_small_2.png │ │ ├── cloud_neg_0.png │ │ ├── cloud_neg_1.png │ │ ├── cloud_neg_2.png │ │ ├── cloud_poison_0.png │ │ ├── cloud_poison_1.png │ │ ├── cloud_poison_2.png │ │ ├── cloud_rain_1.png │ │ ├── cloud_rain_2.png │ │ ├── cloud_spectral_0.png │ │ ├── cloud_spectral_1.png │ │ ├── cloud_spectral_2.png │ │ ├── cloud_storm_1.png │ │ ├── cloud_storm_2.png │ │ ├── cloud_tloc_energy.png │ │ ├── cloud_yellow_smoke.png │ │ ├── crossbow_bolt_0.png │ │ ├── crossbow_bolt_1.png │ │ ├── crossbow_bolt_2.png │ │ ├── crossbow_bolt_3.png │ │ ├── crossbow_bolt_4.png │ │ ├── crossbow_bolt_5.png │ │ ├── crossbow_bolt_6.png │ │ ├── crossbow_bolt_7.png │ │ ├── crystal_spear_0.png │ │ ├── crystal_spear_1.png │ │ ├── crystal_spear_2.png │ │ ├── crystal_spear_3.png │ │ ├── crystal_spear_4.png │ │ ├── crystal_spear_5.png │ │ ├── crystal_spear_6.png │ │ ├── crystal_spear_7.png │ │ ├── dart_0.png │ │ ├── dart_1.png │ │ ├── dart_2.png │ │ ├── dart_3.png │ │ ├── dart_4.png │ │ ├── dart_5.png │ │ ├── dart_6.png │ │ ├── dart_7.png │ │ ├── disjunct_0.png │ │ ├── disjunct_1.png │ │ ├── disjunct_2.png │ │ ├── disjunct_3.png │ │ ├── drain_0_new.png │ │ ├── drain_0_old.png │ │ ├── drain_1_new.png │ │ ├── drain_1_old.png │ │ ├── drain_2_new.png │ │ ├── drain_2_old.png │ │ ├── drain_red_0.png │ │ ├── drain_red_1.png │ │ ├── drain_red_2.png │ │ ├── eye_filled_portal.png │ │ ├── flame_0.png │ │ ├── flame_1.png │ │ ├── flame_2.png │ │ ├── frost_0.png │ │ ├── frost_1.png │ │ ├── gold_sparkles_1.png │ │ ├── gold_sparkles_2.png │ │ ├── gold_sparkles_3.png │ │ ├── goldaura_0.png │ │ ├── goldaura_1.png │ │ ├── goldaura_2.png │ │ ├── heataura_0.png │ │ ├── heataura_1.png │ │ ├── heataura_2.png │ │ ├── icicle_0.png │ │ ├── icicle_1.png │ │ ├── icicle_2.png │ │ ├── icicle_3.png │ │ ├── icicle_4.png │ │ ├── icicle_5.png │ │ ├── icicle_6.png │ │ ├── icicle_7.png │ │ ├── iron_shot_0.png │ │ ├── iron_shot_1.png │ │ ├── iron_shot_2.png │ │ ├── iron_shot_3.png │ │ ├── iron_shot_4.png │ │ ├── iron_shot_5.png │ │ ├── iron_shot_6.png │ │ ├── iron_shot_7.png │ │ ├── irradiate_0.png │ │ ├── irradiate_1.png │ │ ├── irradiate_2.png │ │ ├── irradiate_3.png │ │ ├── javelin_0_new.png │ │ ├── javelin_0_old.png │ │ ├── javelin_1.png │ │ ├── javelin_2.png │ │ ├── javelin_3_new.png │ │ ├── javelin_3_old.png │ │ ├── javelin_4_new.png │ │ ├── javelin_4_old.png │ │ ├── javelin_5_new.png │ │ ├── javelin_5_old.png │ │ ├── javelin_6_new.png │ │ ├── javelin_6_old.png │ │ ├── javelin_7_new.png │ │ ├── javelin_7_old.png │ │ ├── magic_bolt_1.png │ │ ├── magic_bolt_2.png │ │ ├── magic_bolt_3.png │ │ ├── magic_bolt_4.png │ │ ├── magic_bolt_5.png │ │ ├── magic_bolt_6.png │ │ ├── magic_bolt_7.png │ │ ├── magic_bolt_8.png │ │ ├── magic_dart_0.png │ │ ├── magic_dart_1.png │ │ ├── magic_dart_2.png │ │ ├── magic_dart_3.png │ │ ├── magic_dart_4.png │ │ ├── magic_dart_5.png │ │ ├── needle_0.png │ │ ├── needle_1.png │ │ ├── needle_2.png │ │ ├── needle_3.png │ │ ├── needle_4.png │ │ ├── needle_5.png │ │ ├── needle_6.png │ │ ├── needle_7.png │ │ ├── net_trap.png │ │ ├── orb_glow_0.png │ │ ├── orb_glow_1.png │ │ ├── poison_arrow_0.png │ │ ├── poison_arrow_1.png │ │ ├── poison_arrow_2.png │ │ ├── poison_arrow_3.png │ │ ├── poison_arrow_4.png │ │ ├── poison_arrow_5.png │ │ ├── poison_arrow_6.png │ │ ├── poison_arrow_7.png │ │ ├── quad_glow.png │ │ ├── rock_0_new.png │ │ ├── rock_0_old.png │ │ ├── sanctuary.png │ │ ├── sandblast_0.png │ │ ├── sandblast_1.png │ │ ├── sandblast_2.png │ │ ├── searing_ray_0.png │ │ ├── searing_ray_1.png │ │ ├── searing_ray_2.png │ │ ├── searing_ray_3.png │ │ ├── searing_ray_4.png │ │ ├── searing_ray_5.png │ │ ├── silenced.png │ │ ├── sling_bullet_0_new.png │ │ ├── sling_bullet_0_old.png │ │ ├── sting_0.png │ │ ├── sting_1.png │ │ ├── sting_2.png │ │ ├── stone_0_new.png │ │ ├── stone_0_old.png │ │ ├── stone_arrow_0.png │ │ ├── stone_arrow_1.png │ │ ├── stone_arrow_2.png │ │ ├── stone_arrow_3.png │ │ ├── stone_arrow_4.png │ │ ├── stone_arrow_5.png │ │ ├── stone_arrow_6.png │ │ ├── stone_arrow_7.png │ │ ├── throwing_net_0.png │ │ ├── throwing_net_1.png │ │ ├── throwing_net_2.png │ │ ├── throwing_net_3.png │ │ ├── throwing_net_4.png │ │ ├── throwing_net_5.png │ │ ├── throwing_net_6.png │ │ ├── throwing_net_7.png │ │ ├── tomahawk_0.png │ │ ├── tomahawk_1.png │ │ ├── tomahawk_2.png │ │ ├── tomahawk_3.png │ │ ├── tomahawk_4.png │ │ ├── tomahawk_5.png │ │ ├── tomahawk_6.png │ │ ├── tomahawk_7.png │ │ ├── tornado_1.png │ │ ├── tornado_2.png │ │ ├── umbra_0.png │ │ ├── umbra_1.png │ │ ├── umbra_2.png │ │ ├── umbra_3.png │ │ ├── xom_sparkles_blue.png │ │ ├── zap_0.png │ │ ├── zap_1.png │ │ ├── zap_2.png │ │ └── zap_3.png │ ├── emissaries │ │ ├── elyvilon_bottom.png │ │ ├── elyvilon_top.png │ │ ├── okawaru_bottom.png │ │ ├── okawaru_top.png │ │ ├── trog_bottom.png │ │ ├── trog_top.png │ │ ├── tso_bottom.png │ │ ├── tso_top.png │ │ ├── vehumet_bottom.png │ │ ├── vehumet_top.png │ │ ├── zin_bottom.png │ │ └── zin_top.png │ ├── gui │ │ ├── abilities │ │ │ ├── dig.png │ │ │ ├── evoke_fog.png │ │ │ ├── evoke_teleport_control.png │ │ │ ├── jump.png │ │ │ ├── shaft_self.png │ │ │ ├── stop_recall.png │ │ │ └── stop_singing.png │ │ ├── commands │ │ │ ├── add_waypoint.png │ │ │ ├── clear_excludes.png │ │ │ ├── display_map.png │ │ │ ├── exclude_area.png │ │ │ ├── find_altar.png │ │ │ ├── find_downstair.png │ │ │ ├── find_excluded.png │ │ │ ├── find_portal.png │ │ │ ├── find_stash.png │ │ │ ├── find_traps.png │ │ │ ├── find_upstair.png │ │ │ ├── find_waypoint.png │ │ │ ├── find_you.png │ │ │ ├── goto_level.png │ │ │ ├── goto_target.png │ │ │ ├── keyboard.png │ │ │ ├── lookup_help.png │ │ │ ├── next_level.png │ │ │ └── prev_level.png │ │ ├── invocations │ │ │ ├── beogh_gift.png │ │ │ ├── dithmenos_shadow_form.png │ │ │ ├── dithmenos_shadow_step.png │ │ │ ├── elyvilon_heal_other.png │ │ │ ├── gozag_bribe_branch.png │ │ │ ├── gozag_call_merchant.png │ │ │ ├── gozag_potion_petition.png │ │ │ ├── kiku_bless_weapon.png │ │ │ ├── kiku_necronomicon.png │ │ │ ├── lugonu_bless_weapon.png │ │ │ ├── qazlal_disaster_area.png │ │ │ ├── qazlal_elemental_force.png │ │ │ ├── qazlal_upheaval.png │ │ │ ├── ru_apocalypse.png │ │ │ ├── ru_draw_out_power.png │ │ │ ├── ru_power_leap.png │ │ │ ├── ru_reject_sacrifices.png │ │ │ ├── ru_sacrifice_arcana.png │ │ │ ├── ru_sacrifice_artifice.png │ │ │ ├── ru_sacrifice_courage.png │ │ │ ├── ru_sacrifice_drink.png │ │ │ ├── ru_sacrifice_durability.png │ │ │ ├── ru_sacrifice_essence.png │ │ │ ├── ru_sacrifice_experience.png │ │ │ ├── ru_sacrifice_eye.png │ │ │ ├── ru_sacrifice_hand.png │ │ │ ├── ru_sacrifice_health.png │ │ │ ├── ru_sacrifice_love.png │ │ │ ├── ru_sacrifice_nimbleness.png │ │ │ ├── ru_sacrifice_purity.png │ │ │ ├── ru_sacrifice_resistance.png │ │ │ ├── ru_sacrifice_skill.png │ │ │ ├── ru_sacrifice_stealth.png │ │ │ ├── ru_sacrifice_words.png │ │ │ ├── tso_bless_weapon.png │ │ │ └── zin_donate.png │ │ ├── prompt_no.png │ │ ├── prompt_yes.png │ │ ├── skills │ │ │ ├── air_magic.png │ │ │ ├── armor.png │ │ │ ├── axes.png │ │ │ ├── bows.png │ │ │ ├── charms.png │ │ │ ├── conjurations.png │ │ │ ├── crossbows.png │ │ │ ├── disabled-base.png │ │ │ ├── disabled-fg.png │ │ │ ├── divinations.png │ │ │ ├── dodging.png │ │ │ ├── earth_magic.png │ │ │ ├── enabled-base.png │ │ │ ├── enabled-fg.png │ │ │ ├── evocations.png │ │ │ ├── fighting.png │ │ │ ├── fire_magic.png │ │ │ ├── focused-fg.png │ │ │ ├── hexes.png │ │ │ ├── ice_magic.png │ │ │ ├── invocations.png │ │ │ ├── long_blades.png │ │ │ ├── maces_flails.png │ │ │ ├── mastered-base.png │ │ │ ├── mastered-fg.png │ │ │ ├── necromancy.png │ │ │ ├── poison_magic.png │ │ │ ├── polearms.png │ │ │ ├── shields.png │ │ │ ├── short_blades.png │ │ │ ├── slings.png │ │ │ ├── spellcasting.png │ │ │ ├── stabbing.png │ │ │ ├── staves.png │ │ │ ├── summonings.png │ │ │ ├── throwing.png │ │ │ ├── translocations.png │ │ │ ├── transmutations.png │ │ │ ├── traps.png │ │ │ └── unarmed_combat.png │ │ ├── spells │ │ │ ├── abjuration.png │ │ │ ├── air │ │ │ │ ├── airstrike_new.png │ │ │ │ ├── airstrike_old.png │ │ │ │ ├── chain_lightning_new.png │ │ │ │ ├── chain_lightning_old.png │ │ │ │ ├── cloud_cone.png │ │ │ │ ├── conjure_ball_lightning_new.png │ │ │ │ ├── conjure_ball_lightning_old.png │ │ │ │ ├── deflect_missiles_new.png │ │ │ │ ├── deflect_missiles_old.png │ │ │ │ ├── flight.png │ │ │ │ ├── insulation.png │ │ │ │ ├── levitation.png │ │ │ │ ├── lightning_bolt_new.png │ │ │ │ ├── lightning_bolt_old.png │ │ │ │ ├── repel_missiles_new.png │ │ │ │ ├── repel_missiles_old.png │ │ │ │ ├── shock_new.png │ │ │ │ ├── shock_old.png │ │ │ │ ├── silence_new.png │ │ │ │ ├── silence_old.png │ │ │ │ ├── static_discharge_new.png │ │ │ │ ├── static_discharge_old.png │ │ │ │ ├── swiftness_new.png │ │ │ │ ├── swiftness_old.png │ │ │ │ └── tornado.png │ │ │ ├── components │ │ │ │ ├── arrow.png │ │ │ │ ├── bird.png │ │ │ │ ├── bolt.png │ │ │ │ ├── bowl.png │ │ │ │ ├── corpse.png │ │ │ │ ├── dog_1.png │ │ │ │ ├── dog_2.png │ │ │ │ ├── dragon.png │ │ │ │ ├── eye.png │ │ │ │ ├── face.png │ │ │ │ ├── hand_1.png │ │ │ │ ├── hand_2.png │ │ │ │ ├── hand_3.png │ │ │ │ ├── hand_4.png │ │ │ │ ├── hand_5.png │ │ │ │ ├── horn.png │ │ │ │ ├── ice.png │ │ │ │ ├── ice_spear.png │ │ │ │ ├── pentagram_horizontal.png │ │ │ │ ├── pentagram_vertical.png │ │ │ │ ├── person_1.png │ │ │ │ ├── person_2.png │ │ │ │ ├── person_3.png │ │ │ │ ├── person_4.png │ │ │ │ ├── rat.png │ │ │ │ ├── running.png │ │ │ │ ├── scroll.png │ │ │ │ ├── skull.png │ │ │ │ ├── snowflake.png │ │ │ │ ├── stone.png │ │ │ │ ├── stone_cracked.png │ │ │ │ ├── stones.png │ │ │ │ ├── sword.png │ │ │ │ └── tornado.png │ │ │ ├── conjuration │ │ │ │ ├── battlesphere.png │ │ │ │ ├── dazzling_spray.png │ │ │ │ ├── force_lance.png │ │ │ │ ├── fulminant_prism.png │ │ │ │ ├── iskenderuns_mystic_blast_new.png │ │ │ │ ├── iskenderuns_mystic_blast_old.png │ │ │ │ ├── magic_dart.png │ │ │ │ ├── orb_of_destruction.png │ │ │ │ ├── orb_of_destruction_big.png │ │ │ │ ├── orb_of_destruction_new.png │ │ │ │ ├── orb_of_destruction_small.png │ │ │ │ └── searing_ray.png │ │ │ ├── controlled_teleport.png │ │ │ ├── disciplines │ │ │ │ ├── air.png │ │ │ │ ├── conjuration.png │ │ │ │ ├── divination.png │ │ │ │ ├── earth.png │ │ │ │ ├── enchantment.png │ │ │ │ ├── fire.png │ │ │ │ ├── ice.png │ │ │ │ ├── necromancy.png │ │ │ │ ├── poison.png │ │ │ │ ├── summoning.png │ │ │ │ ├── translocation.png │ │ │ │ └── transmutation.png │ │ │ ├── divination │ │ │ │ ├── detect_creatures.png │ │ │ │ ├── detect_curse.png │ │ │ │ ├── detect_items.png │ │ │ │ ├── detect_secret_doors.png │ │ │ │ ├── detect_traps.png │ │ │ │ ├── forescry.png │ │ │ │ ├── identify.png │ │ │ │ └── magic_mapping.png │ │ │ ├── earth │ │ │ │ ├── dig_new.png │ │ │ │ ├── dig_old.png │ │ │ │ ├── iron_shot_new.png │ │ │ │ ├── iron_shot_old.png │ │ │ │ ├── ledas_liquefaction.png │ │ │ │ ├── lees_rapid_deconstruction_new.png │ │ │ │ ├── lees_rapid_deconstruction_old.png │ │ │ │ ├── lehudibs_crystal_spear_new.png │ │ │ │ ├── lehudibs_crystal_spear_old.png │ │ │ │ ├── maxwells_silver_hammer.png │ │ │ │ ├── passwall_new.png │ │ │ │ ├── passwall_old.png │ │ │ │ ├── petrify.png │ │ │ │ ├── sandblast_new.png │ │ │ │ ├── sandblast_old.png │ │ │ │ ├── shatter_new.png │ │ │ │ ├── shatter_old.png │ │ │ │ ├── statue_form_new.png │ │ │ │ ├── statue_form_old.png │ │ │ │ ├── stone_arrow_new.png │ │ │ │ ├── stone_arrow_old.png │ │ │ │ ├── stoneskin_new.png │ │ │ │ └── stoneskin_old.png │ │ │ ├── enchantment │ │ │ │ ├── berserker_rage_new.png │ │ │ │ ├── berserker_rage_old.png │ │ │ │ ├── cause_fear_new.png │ │ │ │ ├── cause_fear_old.png │ │ │ │ ├── confuse_new.png │ │ │ │ ├── confuse_old.png │ │ │ │ ├── confusing_touch_new.png │ │ │ │ ├── confusing_touch_old.png │ │ │ │ ├── corona.png │ │ │ │ ├── darkness.png │ │ │ │ ├── discord.png │ │ │ │ ├── enslavement_new.png │ │ │ │ ├── enslavement_old.png │ │ │ │ ├── extension.png │ │ │ │ ├── haste_new.png │ │ │ │ ├── haste_old.png │ │ │ │ ├── infusion.png │ │ │ │ ├── invisibility_new.png │ │ │ │ ├── invisibility_old.png │ │ │ │ ├── mass_confusion_new.png │ │ │ │ ├── mass_confusion_old.png │ │ │ │ ├── petrify.png │ │ │ │ ├── projected_noise.png │ │ │ │ ├── see_invisible.png │ │ │ │ ├── selective_amnesia.png │ │ │ │ ├── slow_new.png │ │ │ │ ├── slow_old.png │ │ │ │ ├── song_of_slaying.png │ │ │ │ ├── spectral_weapon.png │ │ │ │ ├── sure_blade_new.png │ │ │ │ ├── sure_blade_old.png │ │ │ │ ├── tame_beasts.png │ │ │ │ ├── tukimas_dance_new.png │ │ │ │ ├── tukimas_dance_old.png │ │ │ │ └── tukimas_vorpal_blade.png │ │ │ ├── fire │ │ │ │ ├── bolt_of_fire_new.png │ │ │ │ ├── bolt_of_fire_old.png │ │ │ │ ├── bolt_of_magma_new.png │ │ │ │ ├── bolt_of_magma_old.png │ │ │ │ ├── conjure_flame_new.png │ │ │ │ ├── conjure_flame_old.png │ │ │ │ ├── delayed_fireball.png │ │ │ │ ├── evaporate.png │ │ │ │ ├── fire_brand.png │ │ │ │ ├── fire_storm_new.png │ │ │ │ ├── fire_storm_old.png │ │ │ │ ├── fireball_new.png │ │ │ │ ├── fireball_old.png │ │ │ │ ├── flame_tongue_new.png │ │ │ │ ├── flame_tongue_old.png │ │ │ │ ├── ignite_poison_new.png │ │ │ │ ├── ignite_poison_old.png │ │ │ │ ├── inner_flame.png │ │ │ │ ├── ring_of_flames_new.png │ │ │ │ ├── ring_of_flames_old.png │ │ │ │ ├── sticky_flame_new.png │ │ │ │ ├── sticky_flame_old.png │ │ │ │ ├── throw_flame_new.png │ │ │ │ └── throw_flame_old.png │ │ │ ├── forceful_dismissal.png │ │ │ ├── ice │ │ │ │ ├── bolt_of_cold_new.png │ │ │ │ ├── bolt_of_cold_old.png │ │ │ │ ├── condensation_shield_new.png │ │ │ │ ├── condensation_shield_old.png │ │ │ │ ├── ensorcelled_hibernation_new.png │ │ │ │ ├── ensorcelled_hibernation_old.png │ │ │ │ ├── freeze_new.png │ │ │ │ ├── freeze_old.png │ │ │ │ ├── freezing_aura.png │ │ │ │ ├── freezing_cloud_new.png │ │ │ │ ├── freezing_cloud_old.png │ │ │ │ ├── ice_form_new.png │ │ │ │ ├── ice_form_old.png │ │ │ │ ├── ice_storm_new.png │ │ │ │ ├── ice_storm_old.png │ │ │ │ ├── metabolic_englaciation_new.png │ │ │ │ ├── metabolic_englaciation_old.png │ │ │ │ ├── ozocubus_armor_new.png │ │ │ │ ├── ozocubus_armor_old.png │ │ │ │ ├── ozocubus_refrigeration_new.png │ │ │ │ ├── ozocubus_refrigeration_old.png │ │ │ │ ├── throw_frost_new.png │ │ │ │ ├── throw_frost_old.png │ │ │ │ ├── throw_icicle_new.png │ │ │ │ └── throw_icicle_old.png │ │ │ ├── memorise.png │ │ │ ├── monster │ │ │ │ ├── air_elementals.png │ │ │ │ ├── blink_other.png │ │ │ │ ├── brain_feed.png │ │ │ │ ├── cantrip.png │ │ │ │ ├── cold_breath.png │ │ │ │ ├── earth_elementals.png │ │ │ │ ├── fake_mara_summon.png │ │ │ │ ├── fake_rakshasa_summon.png │ │ │ │ ├── fire_breath.png │ │ │ │ ├── fire_elementals.png │ │ │ │ ├── haste_other.png │ │ │ │ ├── hellfire_burst.png │ │ │ │ ├── iron_elementals.png │ │ │ │ ├── metal_splinters.png │ │ │ │ ├── miasma_breath.png │ │ │ │ ├── quicksilver_bolt.png │ │ │ │ ├── steam_ball.png │ │ │ │ ├── sticky_flame_range.png │ │ │ │ ├── sticky_flame_splash.png │ │ │ │ ├── summon_drakes.png │ │ │ │ ├── summon_eyeballs.png │ │ │ │ ├── summon_hell_beast.png │ │ │ │ ├── summon_minor_demon.png │ │ │ │ ├── summon_mushrooms.png │ │ │ │ ├── summon_ufetubus.png │ │ │ │ ├── summon_undead.png │ │ │ │ ├── summon_vermin.png │ │ │ │ └── water_elementals.png │ │ │ ├── necromancy │ │ │ │ ├── agony.png │ │ │ │ ├── agony_new.png │ │ │ │ ├── agony_old.png │ │ │ │ ├── animate_dead_new.png │ │ │ │ ├── animate_dead_old.png │ │ │ │ ├── animate_skeleton.png │ │ │ │ ├── animate_skeleton_new.png │ │ │ │ ├── animate_skeleton_old.png │ │ │ │ ├── bolt_of_draining_new.png │ │ │ │ ├── bolt_of_draining_old.png │ │ │ │ ├── bone_shards.png │ │ │ │ ├── borgnjors_revivification_new.png │ │ │ │ ├── borgnjors_revivification_old.png │ │ │ │ ├── cigotuvis_degeneration.png │ │ │ │ ├── cigotuvis_embrace.png │ │ │ │ ├── control_undead.png │ │ │ │ ├── control_undead_new.png │ │ │ │ ├── control_undead_old.png │ │ │ │ ├── corpse_rot_new.png │ │ │ │ ├── corpse_rot_old.png │ │ │ │ ├── death_channel.png │ │ │ │ ├── death_channel_new.png │ │ │ │ ├── death_channel_old.png │ │ │ │ ├── deaths_door_new.png │ │ │ │ ├── deaths_door_old.png │ │ │ │ ├── dispel_undead_new.png │ │ │ │ ├── dispel_undead_old.png │ │ │ │ ├── excruciating_wounds_new.png │ │ │ │ ├── excruciating_wounds_old.png │ │ │ │ ├── fulsome_distillation.png │ │ │ │ ├── haunt_new.png │ │ │ │ ├── haunt_old.png │ │ │ │ ├── lethal_infusion.png │ │ │ │ ├── necromutation_new.png │ │ │ │ ├── necromutation_old.png │ │ │ │ ├── pain_new.png │ │ │ │ ├── pain_old.png │ │ │ │ ├── regeneration_new.png │ │ │ │ ├── regeneration_old.png │ │ │ │ ├── simulacrum_new.png │ │ │ │ ├── simulacrum_old.png │ │ │ │ ├── sublimation_of_blood.png │ │ │ │ ├── sublimation_of_blood_new.png │ │ │ │ ├── sublimation_of_blood_old.png │ │ │ │ ├── symbol_of_torment.png │ │ │ │ ├── symbol_of_torment_new.png │ │ │ │ ├── symbol_of_torment_old.png │ │ │ │ ├── tomb_of_doroklohe.png │ │ │ │ ├── twisted_resurrection_new.png │ │ │ │ ├── twisted_resurrection_old.png │ │ │ │ ├── vampiric_draining_new.png │ │ │ │ └── vampiric_draining_old.png │ │ │ ├── poison │ │ │ │ ├── alistairs_intoxication_new.png │ │ │ │ ├── alistairs_intoxication_old.png │ │ │ │ ├── cure_poison_new.png │ │ │ │ ├── cure_poison_old.png │ │ │ │ ├── mephitic_cloud.png │ │ │ │ ├── mephitic_cloud_new.png │ │ │ │ ├── mephitic_cloud_old.png │ │ │ │ ├── olgrebs_toxic_radiance_new.png │ │ │ │ ├── olgrebs_toxic_radiance_old.png │ │ │ │ ├── poison_ammunition.png │ │ │ │ ├── poison_arrow_new.png │ │ │ │ ├── poison_arrow_old.png │ │ │ │ ├── poison_brand.png │ │ │ │ ├── poisonous_cloud_new.png │ │ │ │ ├── poisonous_cloud_old.png │ │ │ │ ├── resist_poison.png │ │ │ │ ├── spider_form.png │ │ │ │ ├── sting_new.png │ │ │ │ ├── sting_old.png │ │ │ │ ├── venom_bolt_new.png │ │ │ │ └── venom_bolt_old.png │ │ │ ├── remove_curse.png │ │ │ ├── stonemail.png │ │ │ ├── summoning │ │ │ │ ├── abjuration.png │ │ │ │ ├── call_canine_familiar_new.png │ │ │ │ ├── call_canine_familiar_old.png │ │ │ │ ├── call_imp_new.png │ │ │ │ ├── call_imp_old.png │ │ │ │ ├── demonic_horde.png │ │ │ │ ├── mass_abjuration.png │ │ │ │ ├── monstrous_menagerie.png │ │ │ │ ├── recall_new.png │ │ │ │ ├── recall_old.png │ │ │ │ ├── spellforged_servitor.png │ │ │ │ ├── sticks_to_snakes_new.png │ │ │ │ ├── sticks_to_snakes_old.png │ │ │ │ ├── summon_butterflies_new.png │ │ │ │ ├── summon_butterflies_old.png │ │ │ │ ├── summon_demon.png │ │ │ │ ├── summon_demon_new.png │ │ │ │ ├── summon_demon_old.png │ │ │ │ ├── summon_dragon.png │ │ │ │ ├── summon_elemental.png │ │ │ │ ├── summon_forest.png │ │ │ │ ├── summon_greater_demon.png │ │ │ │ ├── summon_greater_demon_new.png │ │ │ │ ├── summon_greater_demon_old.png │ │ │ │ ├── summon_guardian_golem.png │ │ │ │ ├── summon_horrible_things.png │ │ │ │ ├── summon_hydra.png │ │ │ │ ├── summon_ice_beast_new.png │ │ │ │ ├── summon_ice_beast_old.png │ │ │ │ ├── summon_lightning_spire.png │ │ │ │ ├── summon_mana_viper.png │ │ │ │ ├── summon_scorpions_new.png │ │ │ │ ├── summon_scorpions_old.png │ │ │ │ ├── summon_shadow_creatures_new.png │ │ │ │ ├── summon_shadow_creatures_old.png │ │ │ │ ├── summon_small_mammal.png │ │ │ │ ├── summon_small_mammals.png │ │ │ │ ├── summon_ugly_thing.png │ │ │ │ └── summon_wraiths.png │ │ │ ├── translocation │ │ │ │ ├── apportation_new.png │ │ │ │ ├── apportation_old.png │ │ │ │ ├── banishment.png │ │ │ │ ├── blink.png │ │ │ │ ├── controlled_blink_new.png │ │ │ │ ├── controlled_blink_old.png │ │ │ │ ├── controlled_teleport.png │ │ │ │ ├── disjunction.png │ │ │ │ ├── dispersal_new.png │ │ │ │ ├── dispersal_old.png │ │ │ │ ├── gravitas.png │ │ │ │ ├── passage_of_golubria.png │ │ │ │ ├── phase_shift_new.png │ │ │ │ ├── phase_shift_old.png │ │ │ │ ├── portal.png │ │ │ │ ├── portal_projectile_new.png │ │ │ │ ├── portal_projectile_old.png │ │ │ │ ├── shroud_of_golubria.png │ │ │ │ ├── teleport.png │ │ │ │ ├── teleport_other_new.png │ │ │ │ ├── teleport_other_old.png │ │ │ │ ├── warp_weapon_new.png │ │ │ │ └── warp_weapon_old.png │ │ │ └── transmutation │ │ │ │ ├── alter_self.png │ │ │ │ ├── beastly_appendage.png │ │ │ │ ├── blade_hands_new.png │ │ │ │ ├── blade_hands_old.png │ │ │ │ ├── dragon_form.png │ │ │ │ ├── hydra_form.png │ │ │ │ ├── irradiate.png │ │ │ │ └── polymorph_other.png │ │ ├── startup │ │ │ ├── arena.png │ │ │ ├── dungeon_sprint.png │ │ │ ├── hints_mode.png │ │ │ ├── instructions.png │ │ │ ├── stonesoup.png │ │ │ ├── tutorial.png │ │ │ └── zot_defence.png │ │ ├── tabs │ │ │ ├── tab_label_item.png │ │ │ ├── tab_label_item_sword.png │ │ │ ├── tab_label_memorise.png │ │ │ ├── tab_label_memorise_m.png │ │ │ ├── tab_label_metacommands.png │ │ │ ├── tab_label_monster.png │ │ │ ├── tab_label_spell.png │ │ │ ├── tab_label_spell_flame.png │ │ │ ├── tab_mouseover.png │ │ │ ├── tab_selected.png │ │ │ ├── tab_selected_square.png │ │ │ ├── tab_unselected.png │ │ │ └── tab_unselected_square.png │ │ └── tavern.png │ ├── item │ │ ├── amulet │ │ │ ├── artefact │ │ │ │ ├── urand_air_new.png │ │ │ │ ├── urand_air_old.png │ │ │ │ ├── urand_bloodlust_new.png │ │ │ │ ├── urand_bloodlust_old.png │ │ │ │ ├── urand_brooch_of_shielding_new.png │ │ │ │ ├── urand_brooch_of_shielding_old.png │ │ │ │ ├── urand_cekugob_new.png │ │ │ │ ├── urand_cekugob_old.png │ │ │ │ ├── urand_finger.png │ │ │ │ ├── urand_four_winds_new.png │ │ │ │ ├── urand_four_winds_old.png │ │ │ │ └── urand_vitality.png │ │ │ ├── bone_gray.png │ │ │ ├── cameo_blue.png │ │ │ ├── cameo_orange.png │ │ │ ├── celtic_blue.png │ │ │ ├── celtic_red.png │ │ │ ├── celtic_yellow.png │ │ │ ├── crystal_green.png │ │ │ ├── crystal_red.png │ │ │ ├── crystal_white.png │ │ │ ├── cylinder_gray.png │ │ │ ├── eye_cyan.png │ │ │ ├── eye_green.png │ │ │ ├── eye_magenta.png │ │ │ ├── face_1_gold.png │ │ │ ├── face_2.png │ │ │ ├── penta_green.png │ │ │ ├── penta_orange.png │ │ │ ├── ring_cyan.png │ │ │ ├── ring_green.png │ │ │ ├── ring_red.png │ │ │ ├── stone_1_cyan.png │ │ │ ├── stone_1_green.png │ │ │ ├── stone_1_pink.png │ │ │ ├── stone_2_blue.png │ │ │ ├── stone_2_green.png │ │ │ ├── stone_2_red.png │ │ │ ├── stone_3_blue.png │ │ │ ├── stone_3_green.png │ │ │ └── stone_3_magenta.png │ │ ├── armor │ │ │ ├── artefact │ │ │ │ ├── urand_alchemist.png │ │ │ │ ├── urand_assassin.png │ │ │ │ ├── urand_augmentation.png │ │ │ │ ├── urand_bear.png │ │ │ │ ├── urand_bk_barding.png │ │ │ │ ├── urand_bullseye.png │ │ │ │ ├── urand_clouds.png │ │ │ │ ├── urand_dragon_king.png │ │ │ │ ├── urand_dragonmask.png │ │ │ │ ├── urand_dragonskin.png │ │ │ │ ├── urand_dyrovepreva_new.png │ │ │ │ ├── urand_dyrovepreva_old.png │ │ │ │ ├── urand_eternal_torment.png │ │ │ │ ├── urand_etheric_cage.png │ │ │ │ ├── urand_faerie.png │ │ │ │ ├── urand_fencer_new.png │ │ │ │ ├── urand_fencer_old.png │ │ │ │ ├── urand_flash.png │ │ │ │ ├── urand_folly.png │ │ │ │ ├── urand_gong.png │ │ │ │ ├── urand_high_council.png │ │ │ │ ├── urand_ignorance.png │ │ │ │ ├── urand_lear.png │ │ │ │ ├── urand_lightning_scales.png │ │ │ │ ├── urand_maxwell.png │ │ │ │ ├── urand_misfortune.png │ │ │ │ ├── urand_night_new.png │ │ │ │ ├── urand_night_old.png │ │ │ │ ├── urand_orange_crystal.png │ │ │ │ ├── urand_pondering_new.png │ │ │ │ ├── urand_pondering_old.png │ │ │ │ ├── urand_ratskin_cloak.png │ │ │ │ ├── urand_resistance.png │ │ │ │ ├── urand_salamander.png │ │ │ │ ├── urand_starlight.png │ │ │ │ ├── urand_thief.png │ │ │ │ ├── urand_war.png │ │ │ │ └── urand_zhor.png │ │ │ ├── back │ │ │ │ ├── cloak_1_leather.png │ │ │ │ ├── cloak_2.png │ │ │ │ ├── cloak_3.png │ │ │ │ └── cloak_4.png │ │ │ ├── bardings │ │ │ │ ├── centaur_barding_blue.png │ │ │ │ ├── centaur_barding_magenta.png │ │ │ │ ├── centaur_barding_metal.png │ │ │ │ ├── centaur_barding_red.png │ │ │ │ ├── naga_barding_blue.png │ │ │ │ ├── naga_barding_magenta.png │ │ │ │ ├── naga_barding_metal.png │ │ │ │ └── naga_barding_red.png │ │ │ ├── feet │ │ │ │ ├── boots_1_brown_new.png │ │ │ │ ├── boots_1_brown_old.png │ │ │ │ ├── boots_2_jackboots.png │ │ │ │ ├── boots_3_stripe_new.png │ │ │ │ ├── boots_3_stripe_old.png │ │ │ │ ├── boots_4_green.png │ │ │ │ ├── boots_iron_2.png │ │ │ │ ├── dark_boots.png │ │ │ │ └── low_boots.png │ │ │ ├── hands │ │ │ │ ├── gauntlet_1.png │ │ │ │ ├── glove_1_new.png │ │ │ │ ├── glove_1_old.png │ │ │ │ ├── glove_2_new.png │ │ │ │ ├── glove_2_old.png │ │ │ │ ├── glove_3_new.png │ │ │ │ ├── glove_3_old.png │ │ │ │ ├── glove_4_gauntlets.png │ │ │ │ ├── glove_4_new.png │ │ │ │ ├── glove_4_old.png │ │ │ │ └── glove_5.png │ │ │ ├── headgear │ │ │ │ ├── black_hood.png │ │ │ │ ├── cap_1.png │ │ │ │ ├── cap_2.png │ │ │ │ ├── cap_jester.png │ │ │ │ ├── cornuthaum.png │ │ │ │ ├── crested_helmet.png │ │ │ │ ├── elven_leather_helm.png │ │ │ │ ├── green_mask.png │ │ │ │ ├── hat_1.png │ │ │ │ ├── hat_2.png │ │ │ │ ├── hat_3.png │ │ │ │ ├── helmet_1.png │ │ │ │ ├── helmet_1_visored.png │ │ │ │ ├── helmet_2.png │ │ │ │ ├── helmet_2_etched.png │ │ │ │ ├── helmet_3_new.png │ │ │ │ ├── helmet_3_old.png │ │ │ │ ├── helmet_4.png │ │ │ │ ├── helmet_4_visor.png │ │ │ │ ├── helmet_5.png │ │ │ │ ├── helmet_art_1.png │ │ │ │ ├── helmet_art_2.png │ │ │ │ ├── helmet_art_3.png │ │ │ │ ├── helmet_ego_1.png │ │ │ │ ├── helmet_ego_2.png │ │ │ │ ├── helmet_ego_3.png │ │ │ │ ├── helmet_ego_4.png │ │ │ │ ├── plumed_helmet.png │ │ │ │ ├── wizard_hat_1.png │ │ │ │ └── wizard_hat_2.png │ │ │ ├── shields │ │ │ │ ├── buckler_1_new.png │ │ │ │ ├── buckler_1_old.png │ │ │ │ ├── buckler_2_new.png │ │ │ │ ├── buckler_2_old.png │ │ │ │ ├── buckler_3_new.png │ │ │ │ ├── buckler_3_old.png │ │ │ │ ├── dwarven_buckler_1.png │ │ │ │ ├── dwarven_buckler_2.png │ │ │ │ ├── elven_buckler_1.png │ │ │ │ ├── elven_buckler_2.png │ │ │ │ ├── large_shield_1_new.png │ │ │ │ ├── large_shield_1_old.png │ │ │ │ ├── large_shield_2_new.png │ │ │ │ ├── large_shield_2_old.png │ │ │ │ ├── large_shield_3_new.png │ │ │ │ ├── large_shield_3_old.png │ │ │ │ ├── lshield_dd_dk.png │ │ │ │ ├── lshield_louise.png │ │ │ │ ├── shield_1.png │ │ │ │ ├── shield_1_elven.png │ │ │ │ ├── shield_2_kite.png │ │ │ │ ├── shield_2_new.png │ │ │ │ ├── shield_2_old.png │ │ │ │ ├── shield_3.png │ │ │ │ ├── shield_3_round.png │ │ │ │ ├── shield_4_spriggan.png │ │ │ │ ├── shield_dd.png │ │ │ │ ├── shield_dd_scion.png │ │ │ │ ├── shield_donald.png │ │ │ │ └── shield_of_reflection.png │ │ │ └── torso │ │ │ │ ├── animal_skin_1_new.png │ │ │ │ ├── animal_skin_1_old.png │ │ │ │ ├── animal_skin_2_new.png │ │ │ │ ├── animal_skin_2_old.png │ │ │ │ ├── animal_skin_3.png │ │ │ │ ├── banded_mail_1.png │ │ │ │ ├── banded_mail_2.png │ │ │ │ ├── blue_dragon_scale_mail_new.png │ │ │ │ ├── blue_dragon_scale_mail_old.png │ │ │ │ ├── blue_dragon_scales_new.png │ │ │ │ ├── blue_dragon_scales_old.png │ │ │ │ ├── chain_mail_1.png │ │ │ │ ├── chain_mail_2.png │ │ │ │ ├── chain_mail_3.png │ │ │ │ ├── crystal_plate_mail.png │ │ │ │ ├── dwarven_ringmail.png │ │ │ │ ├── elven_leather_armor.png │ │ │ │ ├── elven_ringmail.png │ │ │ │ ├── elven_scalemail.png │ │ │ │ ├── gold_dragon_armor_new.png │ │ │ │ ├── gold_dragon_armor_old.png │ │ │ │ ├── gold_dragon_hide_new.png │ │ │ │ ├── gold_dragon_hide_old.png │ │ │ │ ├── green_dragon_scale_mail.png │ │ │ │ ├── green_dragon_scales.png │ │ │ │ ├── ice_dragon_armor_new.png │ │ │ │ ├── ice_dragon_armor_old.png │ │ │ │ ├── ice_dragon_hide_new.png │ │ │ │ ├── ice_dragon_hide_old.png │ │ │ │ ├── leather_armor_1.png │ │ │ │ ├── leather_armor_2.png │ │ │ │ ├── leather_armor_3.png │ │ │ │ ├── mottled_dragon_armor_new.png │ │ │ │ ├── mottled_dragon_armor_old.png │ │ │ │ ├── mottled_dragon_hide_new.png │ │ │ │ ├── mottled_dragon_hide_old.png │ │ │ │ ├── orcish_chain_mail.png │ │ │ │ ├── orcish_leather_armor.png │ │ │ │ ├── orcish_plate_2.png │ │ │ │ ├── orcish_platemail.png │ │ │ │ ├── orcish_ringmail.png │ │ │ │ ├── pearl_dragon_armor.png │ │ │ │ ├── pearl_dragon_hide.png │ │ │ │ ├── plate_1.png │ │ │ │ ├── plate_mail_1.png │ │ │ │ ├── plate_mail_2.png │ │ │ │ ├── quicksilver_dragon_scale_mail.png │ │ │ │ ├── quicksilver_dragon_scales.png │ │ │ │ ├── ring_mail_1_new.png │ │ │ │ ├── ring_mail_1_old.png │ │ │ │ ├── ring_mail_2_new.png │ │ │ │ ├── ring_mail_2_old.png │ │ │ │ ├── ring_mail_3.png │ │ │ │ ├── robe_1_new.png │ │ │ │ ├── robe_1_old.png │ │ │ │ ├── robe_2_new.png │ │ │ │ ├── robe_2_old.png │ │ │ │ ├── robe_3.png │ │ │ │ ├── robe_art_1.png │ │ │ │ ├── robe_art_2.png │ │ │ │ ├── robe_ego_1.png │ │ │ │ ├── robe_ego_2.png │ │ │ │ ├── scale_mail_1_new.png │ │ │ │ ├── scale_mail_1_old.png │ │ │ │ ├── scale_mail_2_new.png │ │ │ │ ├── scale_mail_2_old.png │ │ │ │ ├── scale_mail_3.png │ │ │ │ ├── shadow_dragon_scale_mail.png │ │ │ │ ├── shadow_dragon_scales.png │ │ │ │ ├── shimmering_dragon_scales.png │ │ │ │ ├── silver_dragon_scale_mail_new.png │ │ │ │ ├── silver_dragon_scale_mail_old.png │ │ │ │ ├── silver_dragon_scales_new.png │ │ │ │ ├── silver_dragon_scales_old.png │ │ │ │ ├── splint_mail_1.png │ │ │ │ ├── splint_mail_2.png │ │ │ │ ├── studded_leather_armor.png │ │ │ │ ├── swamp_dragon_armor_new.png │ │ │ │ ├── swamp_dragon_armor_old.png │ │ │ │ ├── swamp_dragon_hide_new.png │ │ │ │ ├── swamp_dragon_hide_old.png │ │ │ │ ├── troll_hide.png │ │ │ │ └── troll_leather_armor.png │ │ ├── book │ │ │ ├── artefact │ │ │ │ ├── bookmark_new.png │ │ │ │ ├── bookmark_old.png │ │ │ │ ├── buckle_new.png │ │ │ │ ├── buckle_old.png │ │ │ │ ├── thick_new.png │ │ │ │ ├── thick_old.png │ │ │ │ ├── thin_new.png │ │ │ │ ├── thin_old.png │ │ │ │ ├── vellum_new.png │ │ │ │ ├── vellum_old.png │ │ │ │ ├── velvet_new.png │ │ │ │ ├── velvet_old.png │ │ │ │ ├── wrinkled_new.png │ │ │ │ └── wrinkled_old.png │ │ │ ├── book_dog_eared.png │ │ │ ├── book_gray.png │ │ │ ├── book_indigo.png │ │ │ ├── book_of_the_dead_new.png │ │ │ ├── book_of_the_dead_old.png │ │ │ ├── book_orange.png │ │ │ ├── bronze.png │ │ │ ├── cloth_new.png │ │ │ ├── cloth_old.png │ │ │ ├── copper.png │ │ │ ├── cyan_new.png │ │ │ ├── cyan_old.png │ │ │ ├── dark_blue_new.png │ │ │ ├── dark_blue_old.png │ │ │ ├── dark_brown_new.png │ │ │ ├── dark_brown_old.png │ │ │ ├── dark_gray_new.png │ │ │ ├── dark_gray_old.png │ │ │ ├── dark_green_new.png │ │ │ ├── dark_green_old.png │ │ │ ├── glittering.png │ │ │ ├── gold.png │ │ │ ├── leather_new.png │ │ │ ├── leather_old.png │ │ │ ├── light_blue_new.png │ │ │ ├── light_blue_old.png │ │ │ ├── light_brown_new.png │ │ │ ├── light_brown_old.png │ │ │ ├── light_gray_new.png │ │ │ ├── light_gray_old.png │ │ │ ├── light_green_new.png │ │ │ ├── light_green_old.png │ │ │ ├── magenta_new.png │ │ │ ├── magenta_old.png │ │ │ ├── manual_1.png │ │ │ ├── manual_2.png │ │ │ ├── metal_blue_new.png │ │ │ ├── metal_blue_old.png │ │ │ ├── metal_cyan_new.png │ │ │ ├── metal_cyan_old.png │ │ │ ├── metal_green_new.png │ │ │ ├── metal_green_old.png │ │ │ ├── misc_book.png │ │ │ ├── parchment_new.png │ │ │ ├── parchment_old.png │ │ │ ├── pink.png │ │ │ ├── plaid_new.png │ │ │ ├── plaid_old.png │ │ │ ├── purple_new.png │ │ │ ├── purple_old.png │ │ │ ├── red_new.png │ │ │ ├── red_old.png │ │ │ ├── silver.png │ │ │ ├── tan_new.png │ │ │ ├── tan_old.png │ │ │ ├── turquoise_new.png │ │ │ ├── turquoise_old.png │ │ │ ├── white_new.png │ │ │ ├── white_old.png │ │ │ ├── yellow_new.png │ │ │ └── yellow_old.png │ │ ├── food │ │ │ ├── apple.png │ │ │ ├── apricot_new.png │ │ │ ├── apricot_old.png │ │ │ ├── banana_new.png │ │ │ ├── banana_old.png │ │ │ ├── beef_jerky_new.png │ │ │ ├── beef_jerky_old.png │ │ │ ├── bone.png │ │ │ ├── bread_ration_new.png │ │ │ ├── bread_ration_old.png │ │ │ ├── cheese.png │ │ │ ├── choko.png │ │ │ ├── chunk.png │ │ │ ├── chunk_rotten.png │ │ │ ├── fruit.png │ │ │ ├── grape.png │ │ │ ├── honeycomb_new.png │ │ │ ├── honeycomb_old.png │ │ │ ├── lemon_new.png │ │ │ ├── lemon_old.png │ │ │ ├── lump_of_royal_jelly_new.png │ │ │ ├── lump_of_royal_jelly_old.png │ │ │ ├── lychee_new.png │ │ │ ├── lychee_old.png │ │ │ ├── meat_ration_new.png │ │ │ ├── meat_ration_old.png │ │ │ ├── orange.png │ │ │ ├── pear.png │ │ │ ├── piece_of_ambrosia_new.png │ │ │ ├── piece_of_ambrosia_old.png │ │ │ ├── pizza_new.png │ │ │ ├── pizza_old.png │ │ │ ├── rambutan_new.png │ │ │ ├── rambutan_old.png │ │ │ ├── sausage.png │ │ │ ├── snozzcumber.png │ │ │ ├── strawberry_new.png │ │ │ ├── strawberry_old.png │ │ │ └── sultana.png │ │ ├── gem_stone │ │ │ └── topaz.png │ │ ├── gold │ │ │ ├── gold_pile.png │ │ │ ├── gold_pile_1.png │ │ │ ├── gold_pile_10.png │ │ │ ├── gold_pile_16.png │ │ │ ├── gold_pile_19.png │ │ │ ├── gold_pile_2.png │ │ │ ├── gold_pile_23.png │ │ │ ├── gold_pile_25.png │ │ │ ├── gold_pile_3.png │ │ │ ├── gold_pile_4.png │ │ │ ├── gold_pile_5.png │ │ │ ├── gold_pile_6.png │ │ │ ├── gold_pile_7.png │ │ │ ├── gold_pile_8.png │ │ │ └── gold_pile_9.png │ │ ├── misc │ │ │ ├── key.png │ │ │ ├── magic_lamp.png │ │ │ ├── mirror.png │ │ │ ├── misc_bottle.png │ │ │ ├── misc_box.png │ │ │ ├── misc_crystal_new.png │ │ │ ├── misc_crystal_old.png │ │ │ ├── misc_deck_legendary_new.png │ │ │ ├── misc_deck_legendary_old.png │ │ │ ├── misc_deck_new.png │ │ │ ├── misc_deck_old.png │ │ │ ├── misc_deck_rare_new.png │ │ │ ├── misc_deck_rare_old.png │ │ │ ├── misc_disc_new.png │ │ │ ├── misc_disc_old.png │ │ │ ├── misc_fan_inert.png │ │ │ ├── misc_fan_new.png │ │ │ ├── misc_fan_old.png │ │ │ ├── misc_horn.png │ │ │ ├── misc_lamp_inert.png │ │ │ ├── misc_lamp_new.png │ │ │ ├── misc_lamp_old.png │ │ │ ├── misc_lantern.png │ │ │ ├── misc_orb.png │ │ │ ├── misc_orb_2.png │ │ │ ├── misc_phantom_mirror.png │ │ │ ├── misc_phial.png │ │ │ ├── misc_phial_inert.png │ │ │ ├── misc_quad.png │ │ │ ├── misc_rune.png │ │ │ ├── misc_stone_inert.png │ │ │ ├── misc_stone_new.png │ │ │ ├── misc_stone_old.png │ │ │ └── runes │ │ │ │ ├── generic.png │ │ │ │ ├── rune_abyss.png │ │ │ │ ├── rune_cerebov_new.png │ │ │ │ ├── rune_cerebov_old.png │ │ │ │ ├── rune_cocytus_new.png │ │ │ │ ├── rune_cocytus_old.png │ │ │ │ ├── rune_demonic_1.png │ │ │ │ ├── rune_demonic_2.png │ │ │ │ ├── rune_demonic_3.png │ │ │ │ ├── rune_demonic_4.png │ │ │ │ ├── rune_demonic_5.png │ │ │ │ ├── rune_demonic_6.png │ │ │ │ ├── rune_dis_new.png │ │ │ │ ├── rune_dis_old.png │ │ │ │ ├── rune_elven.png │ │ │ │ ├── rune_gehenna_new.png │ │ │ │ ├── rune_gehenna_old.png │ │ │ │ ├── rune_gloorx_vloq_new.png │ │ │ │ ├── rune_gloorx_vloq_old.png │ │ │ │ ├── rune_lom_lobon_new.png │ │ │ │ ├── rune_lom_lobon_old.png │ │ │ │ ├── rune_mnoleg_new.png │ │ │ │ ├── rune_mnoleg_old.png │ │ │ │ ├── rune_shoals.png │ │ │ │ ├── rune_slime.png │ │ │ │ ├── rune_spider.png │ │ │ │ ├── rune_swamp.png │ │ │ │ ├── rune_tartarus_new.png │ │ │ │ ├── rune_tartarus_old.png │ │ │ │ ├── rune_tomb.png │ │ │ │ └── rune_vaults.png │ │ ├── potion │ │ │ ├── black_new.png │ │ │ ├── black_old.png │ │ │ ├── brilliant_blue_new.png │ │ │ ├── brilliant_blue_old.png │ │ │ ├── brown_new.png │ │ │ ├── brown_old.png │ │ │ ├── bubbly.png │ │ │ ├── clear.png │ │ │ ├── cloudy.png │ │ │ ├── cyan_new.png │ │ │ ├── cyan_old.png │ │ │ ├── dark.png │ │ │ ├── effervescent.png │ │ │ ├── emerald.png │ │ │ ├── empty_bottle.png │ │ │ ├── fizzy.png │ │ │ ├── golden.png │ │ │ ├── i-label.png │ │ │ ├── magenta_new.png │ │ │ ├── magenta_old.png │ │ │ ├── murky.png │ │ │ ├── orange_new.png │ │ │ ├── orange_old.png │ │ │ ├── pink.png │ │ │ ├── potion_bubbly.png │ │ │ ├── potion_cloudy.png │ │ │ ├── potion_effervescent.png │ │ │ ├── potion_fizzy.png │ │ │ ├── potion_golden.png │ │ │ ├── potion_murky.png │ │ │ ├── potion_puce.png │ │ │ ├── potion_purple_red.png │ │ │ ├── potion_sky_blue.png │ │ │ ├── puce.png │ │ │ ├── purple_red.png │ │ │ ├── ruby_new.png │ │ │ ├── ruby_old.png │ │ │ ├── silver.png │ │ │ ├── sky_blue.png │ │ │ ├── unknown.png │ │ │ ├── white_new.png │ │ │ ├── white_old.png │ │ │ ├── yellow_new.png │ │ │ └── yellow_old.png │ │ ├── ring │ │ │ ├── agate.png │ │ │ ├── artefact │ │ │ │ ├── urand_mage.png │ │ │ │ ├── urand_octoring.png │ │ │ │ ├── urand_robustness.png │ │ │ │ ├── urand_shadows_new.png │ │ │ │ ├── urand_shadows_old.png │ │ │ │ └── urand_shaolin.png │ │ │ ├── brass.png │ │ │ ├── bronze.png │ │ │ ├── clay.png │ │ │ ├── copper.png │ │ │ ├── coral.png │ │ │ ├── diamond.png │ │ │ ├── emerald.png │ │ │ ├── glass.png │ │ │ ├── gold.png │ │ │ ├── gold_blue.png │ │ │ ├── gold_green.png │ │ │ ├── gold_red.png │ │ │ ├── granite.png │ │ │ ├── iron.png │ │ │ ├── jade.png │ │ │ ├── moonstone.png │ │ │ ├── opal.png │ │ │ ├── pearl.png │ │ │ ├── plain_black.png │ │ │ ├── plain_red.png │ │ │ ├── plain_yellow.png │ │ │ ├── ring_black_onyx.png │ │ │ ├── ring_engagement.png │ │ │ ├── ring_gold_cyan.png │ │ │ ├── ring_gold_magenta.png │ │ │ ├── ring_gold_white.png │ │ │ ├── ring_gold_yellow.png │ │ │ ├── ring_ivory.png │ │ │ ├── ring_plain_blue.png │ │ │ ├── ring_plain_green.png │ │ │ ├── ring_plain_magenta.png │ │ │ ├── ring_ruby.png │ │ │ ├── ring_sapphire.png │ │ │ ├── ring_shiny.png │ │ │ ├── ring_topaz.png │ │ │ ├── ring_twisted.png │ │ │ ├── ruby.png │ │ │ ├── silver.png │ │ │ ├── steel.png │ │ │ ├── tiger_eye.png │ │ │ ├── tourmaline.png │ │ │ └── wooden.png │ │ ├── rod │ │ │ ├── rod_0_new.png │ │ │ ├── rod_0_old.png │ │ │ ├── rod_1_new.png │ │ │ ├── rod_1_old.png │ │ │ ├── rod_2_new.png │ │ │ ├── rod_2_old.png │ │ │ ├── rod_3_new.png │ │ │ ├── rod_3_old.png │ │ │ ├── rod_4_new.png │ │ │ ├── rod_4_old.png │ │ │ ├── rod_5_new.png │ │ │ ├── rod_5_old.png │ │ │ ├── rod_6_new.png │ │ │ ├── rod_6_old.png │ │ │ ├── rod_7_new.png │ │ │ ├── rod_7_old.png │ │ │ ├── rod_8_new.png │ │ │ ├── rod_8_old.png │ │ │ ├── rod_9_new.png │ │ │ ├── rod_9_old.png │ │ │ └── rod_forked.png │ │ ├── scroll │ │ │ ├── blank_paper.png │ │ │ ├── scroll-blue.png │ │ │ ├── scroll-brown.png │ │ │ ├── scroll-cyan.png │ │ │ ├── scroll-green.png │ │ │ ├── scroll-grey.png │ │ │ ├── scroll-purple.png │ │ │ ├── scroll-red.png │ │ │ ├── scroll-yellow.png │ │ │ ├── scroll_new.png │ │ │ └── scroll_old.png │ │ ├── staff │ │ │ ├── staff_0.png │ │ │ ├── staff_1.png │ │ │ ├── staff_2.png │ │ │ ├── staff_3.png │ │ │ ├── staff_4.png │ │ │ ├── staff_5.png │ │ │ ├── staff_6.png │ │ │ ├── staff_7.png │ │ │ ├── staff_8.png │ │ │ └── staff_9.png │ │ ├── wand │ │ │ ├── gem_bone_new.png │ │ │ ├── gem_bone_old.png │ │ │ ├── gem_brass_new.png │ │ │ ├── gem_brass_old.png │ │ │ ├── gem_bronze_new.png │ │ │ ├── gem_bronze_old.png │ │ │ ├── gem_copper_new.png │ │ │ ├── gem_copper_old.png │ │ │ ├── gem_glass_new.png │ │ │ ├── gem_glass_old.png │ │ │ ├── gem_gold_new.png │ │ │ ├── gem_gold_old.png │ │ │ ├── gem_iron_new.png │ │ │ ├── gem_iron_old.png │ │ │ ├── gem_ivory_new.png │ │ │ ├── gem_ivory_old.png │ │ │ ├── gem_lead_new.png │ │ │ ├── gem_lead_old.png │ │ │ ├── gem_plastic_new.png │ │ │ ├── gem_plastic_old.png │ │ │ ├── gem_silver_new.png │ │ │ ├── gem_silver_old.png │ │ │ ├── gem_wood_new.png │ │ │ ├── gem_wood_old.png │ │ │ ├── wand_brass.png │ │ │ ├── wand_copper.png │ │ │ └── wand_silver.png │ │ └── weapon │ │ │ ├── ancient_sword.png │ │ │ ├── ankus.png │ │ │ ├── artefact │ │ │ ├── spwpn_glaive_of_prune_new.png │ │ │ ├── spwpn_glaive_of_prune_old.png │ │ │ ├── spwpn_mace_of_variability_new.png │ │ │ ├── spwpn_mace_of_variability_old.png │ │ │ ├── spwpn_majin.png │ │ │ ├── spwpn_scepter_of_asmodeus.png │ │ │ ├── spwpn_scepter_of_asmodeus_2.png │ │ │ ├── spwpn_scepter_of_torment.png │ │ │ ├── spwpn_scepter_of_torment_2.png │ │ │ ├── spwpn_sceptre_of_asmodeus.png │ │ │ ├── spwpn_sceptre_of_torment.png │ │ │ ├── spwpn_scythe_of_curses_new.png │ │ │ ├── spwpn_scythe_of_curses_old.png │ │ │ ├── spwpn_singing_sword.png │ │ │ ├── spwpn_staff_of_dispater_2.png │ │ │ ├── spwpn_staff_of_dispater_new.png │ │ │ ├── spwpn_staff_of_dispater_old.png │ │ │ ├── spwpn_staff_of_olgreb.png │ │ │ ├── spwpn_sword_of_cerebov_new.png │ │ │ ├── spwpn_sword_of_cerebov_old.png │ │ │ ├── spwpn_sword_of_power_new.png │ │ │ ├── spwpn_sword_of_power_old.png │ │ │ ├── spwpn_sword_of_zonguldrok_2.png │ │ │ ├── spwpn_sword_of_zonguldrok_new.png │ │ │ ├── spwpn_sword_of_zonguldrok_old.png │ │ │ ├── spwpn_vampires_tooth.png │ │ │ ├── spwpn_wrath_of_trog_2.png │ │ │ ├── spwpn_wrath_of_trog_new.png │ │ │ ├── spwpn_wrath_of_trog_old.png │ │ │ ├── spwpn_wucad_mu_new.png │ │ │ ├── spwpn_wucad_mu_old.png │ │ │ ├── urand_arc_blade.png │ │ │ ├── urand_arga_new.png │ │ │ ├── urand_arga_old.png │ │ │ ├── urand_axe_of_woe.png │ │ │ ├── urand_bloodbane_new.png │ │ │ ├── urand_bloodbane_old.png │ │ │ ├── urand_blowgun.png │ │ │ ├── urand_botono.png │ │ │ ├── urand_brilliance.png │ │ │ ├── urand_chilly_death_new.png │ │ │ ├── urand_chilly_death_old.png │ │ │ ├── urand_crystal_spear_new.png │ │ │ ├── urand_crystal_spear_old.png │ │ │ ├── urand_cutlass_new.png │ │ │ ├── urand_cutlass_old.png │ │ │ ├── urand_doom_knight_new.png │ │ │ ├── urand_doom_knight_old.png │ │ │ ├── urand_elemental.png │ │ │ ├── urand_eos.png │ │ │ ├── urand_finisher.png │ │ │ ├── urand_firestarter.png │ │ │ ├── urand_flaming_death_new.png │ │ │ ├── urand_flaming_death_old.png │ │ │ ├── urand_guard_new.png │ │ │ ├── urand_guard_old.png │ │ │ ├── urand_gyre.png │ │ │ ├── urand_hellfire.png │ │ │ ├── urand_jihad_new.png │ │ │ ├── urand_jihad_old.png │ │ │ ├── urand_katana.png │ │ │ ├── urand_knife_of_accuracy.png │ │ │ ├── urand_krishna_new.png │ │ │ ├── urand_krishna_old.png │ │ │ ├── urand_leech.png │ │ │ ├── urand_morg.png │ │ │ ├── urand_octopus_king.png │ │ │ ├── urand_order.png │ │ │ ├── urand_piercer_new.png │ │ │ ├── urand_piercer_old.png │ │ │ ├── urand_plutonium_new.png │ │ │ ├── urand_plutonium_old.png │ │ │ ├── urand_punk.png │ │ │ ├── urand_serpent_scourge.png │ │ │ ├── urand_shillelagh.png │ │ │ ├── urand_skullcrusher.png │ │ │ ├── urand_snakebite.png │ │ │ ├── urand_sniper.png │ │ │ ├── urand_spriggans_knife_new.png │ │ │ ├── urand_spriggans_knife_old.png │ │ │ ├── urand_storm_bow.png │ │ │ ├── urand_undeadhunter.png │ │ │ ├── urand_wyrmbane_new.png │ │ │ └── urand_wyrmbane_old.png │ │ │ ├── axe.png │ │ │ ├── bardiche_1.png │ │ │ ├── bardiche_2.png │ │ │ ├── bardiche_4.png │ │ │ ├── bardiche_5.png │ │ │ ├── battle_axe_1.png │ │ │ ├── battle_axe_2.png │ │ │ ├── battle_axe_3.png │ │ │ ├── battle_axe_4.png │ │ │ ├── battle_axe_5.png │ │ │ ├── battle_axe_6.png │ │ │ ├── battle_axe_7.png │ │ │ ├── blessed_blade.png │ │ │ ├── broad_axe_1.png │ │ │ ├── broad_axe_2.png │ │ │ ├── broad_axe_3.png │ │ │ ├── broad_axe_4.png │ │ │ ├── broad_axe_5.png │ │ │ ├── broad_axe_6.png │ │ │ ├── broad_axe_7.png │ │ │ ├── bullwhip_2.png │ │ │ ├── bullwhip_3.png │ │ │ ├── bullwhip_new.png │ │ │ ├── bullwhip_old.png │ │ │ ├── claymore.png │ │ │ ├── claymore_2.png │ │ │ ├── claymore_3.png │ │ │ ├── claymore_blessed.png │ │ │ ├── club_2.png │ │ │ ├── club_new.png │ │ │ ├── club_old.png │ │ │ ├── cutlass_1.png │ │ │ ├── cutlass_3.png │ │ │ ├── cutlass_4.png │ │ │ ├── cutlass_5.png │ │ │ ├── cutlass_6.png │ │ │ ├── cutlass_7.png │ │ │ ├── cutlass_8.png │ │ │ ├── cutlass_9.png │ │ │ ├── dagger_3.png │ │ │ ├── dagger_6.png │ │ │ ├── dagger_7.png │ │ │ ├── dagger_new.png │ │ │ ├── dagger_old.png │ │ │ ├── demon_blade.png │ │ │ ├── demon_trident.png │ │ │ ├── demon_whip.png │ │ │ ├── dire_flail_1.png │ │ │ ├── dire_flail_2.png │ │ │ ├── dire_flail_3.png │ │ │ ├── double_sword_2.png │ │ │ ├── double_sword_3.png │ │ │ ├── double_sword_new.png │ │ │ ├── double_sword_old.png │ │ │ ├── elven_broadsword.png │ │ │ ├── elven_dagger.png │ │ │ ├── elven_short_sword.png │ │ │ ├── eveningstar_1_new.png │ │ │ ├── eveningstar_1_old.png │ │ │ ├── eveningstar_2_new.png │ │ │ ├── eveningstar_2_old.png │ │ │ ├── eveningstar_3.png │ │ │ ├── eveningstar_4.png │ │ │ ├── eveningstar_5.png │ │ │ ├── eveningstar_6.png │ │ │ ├── eveningstar_7.png │ │ │ ├── executioner_axe.png │ │ │ ├── executioner_axe_1.png │ │ │ ├── executioner_axe_2_new.png │ │ │ ├── executioner_axe_2_old.png │ │ │ ├── executioner_axe_4.png │ │ │ ├── executioner_axe_5.png │ │ │ ├── executioner_axe_6.png │ │ │ ├── executioner_axe_7.png │ │ │ ├── falchion_1_new.png │ │ │ ├── falchion_1_old.png │ │ │ ├── falchion_2_new.png │ │ │ ├── falchion_2_old.png │ │ │ ├── falchion_3.png │ │ │ ├── falchion_4.png │ │ │ ├── falchion_5.png │ │ │ ├── falchion_6.png │ │ │ ├── falchion_7.png │ │ │ ├── flail_1_new.png │ │ │ ├── flail_1_old.png │ │ │ ├── flail_2_new.png │ │ │ ├── flail_2_old.png │ │ │ ├── flail_3.png │ │ │ ├── flail_6.png │ │ │ ├── flail_7.png │ │ │ ├── giant_club_2.png │ │ │ ├── giant_club_3.png │ │ │ ├── giant_club_new.png │ │ │ ├── giant_club_old.png │ │ │ ├── giant_spiked_club_2.png │ │ │ ├── giant_spiked_club_3.png │ │ │ ├── giant_spiked_club_new.png │ │ │ ├── giant_spiked_club_old.png │ │ │ ├── glaive_1.png │ │ │ ├── glaive_2.png │ │ │ ├── golden_sword.png │ │ │ ├── great_flail_1.png │ │ │ ├── great_flail_2.png │ │ │ ├── greatsword_1_new.png │ │ │ ├── greatsword_1_old.png │ │ │ ├── greatsword_2.png │ │ │ ├── greatsword_3_new.png │ │ │ ├── greatsword_3_old.png │ │ │ ├── greatsword_4.png │ │ │ ├── halberd_1.png │ │ │ ├── halberd_2.png │ │ │ ├── halberd_4.png │ │ │ ├── halberd_5.png │ │ │ ├── hammer_1_new.png │ │ │ ├── hammer_1_old.png │ │ │ ├── hammer_2_new.png │ │ │ ├── hammer_2_old.png │ │ │ ├── hammer_3.png │ │ │ ├── hand_axe_1_new.png │ │ │ ├── hand_axe_1_old.png │ │ │ ├── hand_axe_2_new.png │ │ │ ├── hand_axe_2_old.png │ │ │ ├── hand_axe_3.png │ │ │ ├── hand_crossbow.png │ │ │ ├── hand_crossbow_2.png │ │ │ ├── holy_scourge.png │ │ │ ├── katana.png │ │ │ ├── katana_1.png │ │ │ ├── katana_2.png │ │ │ ├── knife.png │ │ │ ├── lajatang_1.png │ │ │ ├── lajatang_2.png │ │ │ ├── long_sword_1_new.png │ │ │ ├── long_sword_1_old.png │ │ │ ├── long_sword_2.png │ │ │ ├── long_sword_3.png │ │ │ ├── long_sword_5.png │ │ │ ├── long_sword_6.png │ │ │ ├── long_sword_7.png │ │ │ ├── lucern_hammer.png │ │ │ ├── mace_1_new.png │ │ │ ├── mace_1_old.png │ │ │ ├── mace_2_new.png │ │ │ ├── mace_2_old.png │ │ │ ├── mace_3_new.png │ │ │ ├── mace_3_old.png │ │ │ ├── mace_7.png │ │ │ ├── mace_large_1_new.png │ │ │ ├── mace_large_1_old.png │ │ │ ├── mace_large_2_new.png │ │ │ ├── mace_large_2_old.png │ │ │ ├── mace_large_3.png │ │ │ ├── morningstar_1_new.png │ │ │ ├── morningstar_1_old.png │ │ │ ├── morningstar_2_new.png │ │ │ ├── morningstar_2_old.png │ │ │ ├── morningstar_3.png │ │ │ ├── morningstar_4.png │ │ │ ├── morningstar_5.png │ │ │ ├── morningstar_6.png │ │ │ ├── morningstar_7.png │ │ │ ├── orcish_dagger.png │ │ │ ├── orcish_glaive.png │ │ │ ├── orcish_great_sword.png │ │ │ ├── orcish_long_sword.png │ │ │ ├── orcish_short_sword.png │ │ │ ├── pickaxe.png │ │ │ ├── quarterstaff_2.png │ │ │ ├── quarterstaff_3.png │ │ │ ├── quarterstaff_new.png │ │ │ ├── quarterstaff_old.png │ │ │ ├── quickblade.png │ │ │ ├── ranged │ │ │ ├── arbalest_1.png │ │ │ ├── arbalest_2.png │ │ │ ├── arbalest_3.png │ │ │ ├── blowgun_1.png │ │ │ ├── blowgun_2.png │ │ │ ├── bow_1.png │ │ │ ├── bow_2.png │ │ │ ├── crossbow_1.png │ │ │ ├── crossbow_2.png │ │ │ ├── elven_arrow.png │ │ │ ├── greatsling.png │ │ │ ├── greatsling_2.png │ │ │ ├── hand_crossbow.png │ │ │ ├── hand_crossbow_2.png │ │ │ ├── hand_crossbow_3.png │ │ │ ├── longbow.png │ │ │ ├── longbow_1.png │ │ │ ├── longbow_2.png │ │ │ ├── longbow_3.png │ │ │ ├── needle-c.png │ │ │ ├── orcish_arrow.png │ │ │ ├── rock_new.png │ │ │ ├── rock_old.png │ │ │ ├── shortbow_1.png │ │ │ ├── shortbow_2.png │ │ │ ├── shortbow_3.png │ │ │ ├── silver_arrow.png │ │ │ ├── silver_tomahawk.png │ │ │ ├── sling_1.png │ │ │ ├── sling_2.png │ │ │ ├── sling_bullet_1_new.png │ │ │ ├── sling_bullet_1_old.png │ │ │ ├── sling_bullet_2_new.png │ │ │ ├── sling_bullet_2_old.png │ │ │ ├── steel_tomahawk.png │ │ │ ├── stone_new.png │ │ │ ├── stone_old.png │ │ │ ├── throwing_net.png │ │ │ ├── tomahawk_1.png │ │ │ └── tomahawk_2.png │ │ │ ├── rapier_1.png │ │ │ ├── rapier_2.png │ │ │ ├── rapier_3.png │ │ │ ├── sabre_1_silver.png │ │ │ ├── sabre_2.png │ │ │ ├── scimitar_1_new.png │ │ │ ├── scimitar_1_old.png │ │ │ ├── scimitar_2.png │ │ │ ├── scimitar_3.png │ │ │ ├── scythe_1_new.png │ │ │ ├── scythe_1_old.png │ │ │ ├── scythe_2_new.png │ │ │ ├── scythe_2_old.png │ │ │ ├── scythe_3.png │ │ │ ├── short_sword_1_new.png │ │ │ ├── short_sword_1_old.png │ │ │ ├── short_sword_2_new.png │ │ │ ├── short_sword_2_old.png │ │ │ ├── short_sword_3.png │ │ │ ├── short_sword_5.png │ │ │ ├── short_sword_6.png │ │ │ ├── short_sword_7.png │ │ │ ├── spear.png │ │ │ ├── spear_1.png │ │ │ ├── spear_1_elven.png │ │ │ ├── spear_2_new.png │ │ │ ├── spear_2_old.png │ │ │ ├── spear_3.png │ │ │ ├── spear_4.png │ │ │ ├── spear_5.png │ │ │ ├── spear_6.png │ │ │ ├── spear_7.png │ │ │ ├── spiked_flail_1_new.png │ │ │ ├── spiked_flail_1_old.png │ │ │ ├── spiked_flail_2_new.png │ │ │ ├── spiked_flail_2_old.png │ │ │ ├── spiked_flail_3.png │ │ │ ├── staff_mummy.png │ │ │ ├── trident_1.png │ │ │ ├── trident_2.png │ │ │ ├── triple_sword_2.png │ │ │ ├── triple_sword_3.png │ │ │ ├── triple_sword_new.png │ │ │ ├── triple_sword_old.png │ │ │ ├── trishula.png │ │ │ ├── tsurugi.png │ │ │ ├── two_handed_sword.png │ │ │ ├── war_axe_1.png │ │ │ ├── war_axe_2.png │ │ │ ├── war_axe_4.png │ │ │ ├── war_axe_5.png │ │ │ ├── war_axe_6.png │ │ │ ├── war_axe_7.png │ │ │ └── war_hammer.png │ ├── misc │ │ ├── attackable.png │ │ ├── blood │ │ │ ├── blood_green_1.png │ │ │ ├── blood_green_2.png │ │ │ ├── blood_green_3.png │ │ │ ├── blood_green_4.png │ │ │ ├── blood_green_new.png │ │ │ ├── blood_green_old.png │ │ │ ├── blood_puddle_red.png │ │ │ ├── blood_puddle_red_1.png │ │ │ ├── blood_puddle_red_2.png │ │ │ ├── blood_puddle_red_3.png │ │ │ ├── blood_puddle_red_4.png │ │ │ ├── blood_red.png │ │ │ ├── blood_red_0.png │ │ │ ├── blood_red_10.png │ │ │ ├── blood_red_11.png │ │ │ ├── blood_red_12.png │ │ │ ├── blood_red_13.png │ │ │ ├── blood_red_14.png │ │ │ ├── blood_red_15.png │ │ │ ├── blood_red_16.png │ │ │ ├── blood_red_17.png │ │ │ ├── blood_red_18.png │ │ │ ├── blood_red_19.png │ │ │ ├── blood_red_1_new.png │ │ │ ├── blood_red_1_old.png │ │ │ ├── blood_red_20.png │ │ │ ├── blood_red_21.png │ │ │ ├── blood_red_22.png │ │ │ ├── blood_red_23.png │ │ │ ├── blood_red_24.png │ │ │ ├── blood_red_25.png │ │ │ ├── blood_red_26.png │ │ │ ├── blood_red_27.png │ │ │ ├── blood_red_28.png │ │ │ ├── blood_red_29.png │ │ │ ├── blood_red_2_new.png │ │ │ ├── blood_red_2_old.png │ │ │ ├── blood_red_3_new.png │ │ │ ├── blood_red_3_old.png │ │ │ ├── blood_red_4_new.png │ │ │ ├── blood_red_4_old.png │ │ │ ├── blood_red_5.png │ │ │ ├── blood_red_6.png │ │ │ ├── blood_red_7.png │ │ │ ├── blood_red_8.png │ │ │ ├── blood_red_9.png │ │ │ ├── wall_blood_0_east.png │ │ │ ├── wall_blood_0_north.png │ │ │ ├── wall_blood_0_south.png │ │ │ ├── wall_blood_0_west.png │ │ │ ├── wall_blood_10_east.png │ │ │ ├── wall_blood_10_north.png │ │ │ ├── wall_blood_10_south.png │ │ │ ├── wall_blood_10_west.png │ │ │ ├── wall_blood_11_east.png │ │ │ ├── wall_blood_11_north.png │ │ │ ├── wall_blood_11_south.png │ │ │ ├── wall_blood_11_west.png │ │ │ ├── wall_blood_12_east.png │ │ │ ├── wall_blood_12_north.png │ │ │ ├── wall_blood_12_south.png │ │ │ ├── wall_blood_12_west.png │ │ │ ├── wall_blood_13_east.png │ │ │ ├── wall_blood_13_north.png │ │ │ ├── wall_blood_13_south.png │ │ │ ├── wall_blood_13_west.png │ │ │ ├── wall_blood_14_east.png │ │ │ ├── wall_blood_14_north.png │ │ │ ├── wall_blood_14_south.png │ │ │ ├── wall_blood_14_west.png │ │ │ ├── wall_blood_15_east.png │ │ │ ├── wall_blood_15_north.png │ │ │ ├── wall_blood_15_south.png │ │ │ ├── wall_blood_15_west.png │ │ │ ├── wall_blood_16_east.png │ │ │ ├── wall_blood_16_north.png │ │ │ ├── wall_blood_16_south.png │ │ │ ├── wall_blood_16_west.png │ │ │ ├── wall_blood_17_east.png │ │ │ ├── wall_blood_17_north.png │ │ │ ├── wall_blood_17_south.png │ │ │ ├── wall_blood_17_west.png │ │ │ ├── wall_blood_18_east.png │ │ │ ├── wall_blood_18_north.png │ │ │ ├── wall_blood_18_south.png │ │ │ ├── wall_blood_18_west.png │ │ │ ├── wall_blood_1_east.png │ │ │ ├── wall_blood_1_north.png │ │ │ ├── wall_blood_1_south.png │ │ │ ├── wall_blood_1_west.png │ │ │ ├── wall_blood_3_east.png │ │ │ ├── wall_blood_3_north.png │ │ │ ├── wall_blood_3_south.png │ │ │ ├── wall_blood_3_west.png │ │ │ ├── wall_blood_4_east.png │ │ │ ├── wall_blood_4_north.png │ │ │ ├── wall_blood_4_south.png │ │ │ ├── wall_blood_4_west.png │ │ │ ├── wall_blood_5_east.png │ │ │ ├── wall_blood_5_north.png │ │ │ ├── wall_blood_5_south.png │ │ │ ├── wall_blood_5_west.png │ │ │ ├── wall_blood_6_east.png │ │ │ ├── wall_blood_6_north.png │ │ │ ├── wall_blood_6_south.png │ │ │ ├── wall_blood_6_west.png │ │ │ ├── wall_blood_7_east.png │ │ │ ├── wall_blood_7_north.png │ │ │ ├── wall_blood_7_south.png │ │ │ ├── wall_blood_7_west.png │ │ │ ├── wall_blood_8_east.png │ │ │ ├── wall_blood_8_north.png │ │ │ ├── wall_blood_8_south.png │ │ │ ├── wall_blood_8_west.png │ │ │ ├── wall_blood_9_east.png │ │ │ ├── wall_blood_9_north.png │ │ │ ├── wall_blood_9_south.png │ │ │ ├── wall_blood_9_west.png │ │ │ ├── wall_old_blood_0.png │ │ │ ├── wall_old_blood_1.png │ │ │ ├── wall_old_blood_2.png │ │ │ ├── wall_old_blood_3.png │ │ │ ├── wall_old_blood_4.png │ │ │ ├── wall_old_blood_5.png │ │ │ ├── wall_old_blood_6.png │ │ │ ├── wall_old_blood_7.png │ │ │ ├── wall_old_blood_8.png │ │ │ └── wall_old_blood_9.png │ │ ├── brands │ │ │ ├── bottom_left │ │ │ │ ├── demon_pentagram-large_1.png │ │ │ │ ├── demon_pentagram-large_2.png │ │ │ │ ├── demon_pentagram-large_3.png │ │ │ │ ├── demon_pentagram-large_4.png │ │ │ │ ├── demon_pentagram-large_5.png │ │ │ │ ├── demon_pentagram_1.png │ │ │ │ ├── demon_pentagram_2.png │ │ │ │ ├── demon_pentagram_3.png │ │ │ │ ├── demon_pentagram_4.png │ │ │ │ ├── demon_pentagram_5.png │ │ │ │ ├── something_under_new.png │ │ │ │ └── something_under_old.png │ │ │ ├── bottom_right │ │ │ │ ├── i-acquirement_new.png │ │ │ │ ├── i-acquirement_old.png │ │ │ │ ├── i-ambrosia.png │ │ │ │ ├── i-amnesia.png │ │ │ │ ├── i-antimagic_new.png │ │ │ │ ├── i-antimagic_old.png │ │ │ │ ├── i-archery_new.png │ │ │ │ ├── i-archery_old.png │ │ │ │ ├── i-archmagi_new.png │ │ │ │ ├── i-archmagi_old.png │ │ │ │ ├── i-berserk-rage_new.png │ │ │ │ ├── i-berserk-rage_old.png │ │ │ │ ├── i-blinking_new.png │ │ │ │ ├── i-blinking_old.png │ │ │ │ ├── i-blood_new.png │ │ │ │ ├── i-blood_old.png │ │ │ │ ├── i-brand-weapon.png │ │ │ │ ├── i-c-teleport_new.png │ │ │ │ ├── i-c-teleport_old.png │ │ │ │ ├── i-cancel.png │ │ │ │ ├── i-chaos_new.png │ │ │ │ ├── i-chaos_old.png │ │ │ │ ├── i-coagulated-blood_new.png │ │ │ │ ├── i-coagulated-blood_old.png │ │ │ │ ├── i-cold-res_new.png │ │ │ │ ├── i-cold-res_old.png │ │ │ │ ├── i-cold_new.png │ │ │ │ ├── i-cold_old.png │ │ │ │ ├── i-confusion_new.png │ │ │ │ ├── i-confusion_old.png │ │ │ │ ├── i-curare.png │ │ │ │ ├── i-cure-mutation_new.png │ │ │ │ ├── i-cure-mutation_old.png │ │ │ │ ├── i-curing.png │ │ │ │ ├── i-curse-jewellery.png │ │ │ │ ├── i-curse_armor_new.png │ │ │ │ ├── i-curse_armor_old.png │ │ │ │ ├── i-curse_weapon_new.png │ │ │ │ ├── i-curse_weapon_old.png │ │ │ │ ├── i-darkness.png │ │ │ │ ├── i-decay_new.png │ │ │ │ ├── i-decay_old.png │ │ │ │ ├── i-deck_changes_new.png │ │ │ │ ├── i-deck_changes_old.png │ │ │ │ ├── i-deck_defense_new.png │ │ │ │ ├── i-deck_defense_old.png │ │ │ │ ├── i-deck_destruction_new.png │ │ │ │ ├── i-deck_destruction_old.png │ │ │ │ ├── i-deck_dungeons_new.png │ │ │ │ ├── i-deck_dungeons_old.png │ │ │ │ ├── i-deck_escape_new.png │ │ │ │ ├── i-deck_escape_old.png │ │ │ │ ├── i-deck_summoning_new.png │ │ │ │ ├── i-deck_summoning_old.png │ │ │ │ ├── i-deck_war_new.png │ │ │ │ ├── i-deck_war_old.png │ │ │ │ ├── i-deck_wonders_new.png │ │ │ │ ├── i-deck_wonders_old.png │ │ │ │ ├── i-degeneration_new.png │ │ │ │ ├── i-degeneration_old.png │ │ │ │ ├── i-detect_curse.png │ │ │ │ ├── i-dexterity_new.png │ │ │ │ ├── i-dexterity_old.png │ │ │ │ ├── i-digging_new.png │ │ │ │ ├── i-digging_old.png │ │ │ │ ├── i-disintegration_new.png │ │ │ │ ├── i-disintegration_old.png │ │ │ │ ├── i-dispersal.png │ │ │ │ ├── i-distortion_new.png │ │ │ │ ├── i-distortion_old.png │ │ │ │ ├── i-dragon_slaying_new.png │ │ │ │ ├── i-dragon_slaying_old.png │ │ │ │ ├── i-draining.png │ │ │ │ ├── i-enchant-weapon.png │ │ │ │ ├── i-enchant-weapon_1.png │ │ │ │ ├── i-enchant-weapon_2.png │ │ │ │ ├── i-enchant-weapon_3.png │ │ │ │ ├── i-enchant_armor_new.png │ │ │ │ ├── i-enchant_armor_old.png │ │ │ │ ├── i-enslavement_new.png │ │ │ │ ├── i-enslavement_old.png │ │ │ │ ├── i-evasion_new.png │ │ │ │ ├── i-evasion_old.png │ │ │ │ ├── i-experience_new.png │ │ │ │ ├── i-experience_old.png │ │ │ │ ├── i-explosion_new.png │ │ │ │ ├── i-explosion_old.png │ │ │ │ ├── i-fear_new.png │ │ │ │ ├── i-fear_old.png │ │ │ │ ├── i-fire-res_new.png │ │ │ │ ├── i-fire-res_old.png │ │ │ │ ├── i-fire.png │ │ │ │ ├── i-fire_2.png │ │ │ │ ├── i-fireball_new.png │ │ │ │ ├── i-fireball_old.png │ │ │ │ ├── i-flame_new.png │ │ │ │ ├── i-flame_old.png │ │ │ │ ├── i-flight.png │ │ │ │ ├── i-fog_new.png │ │ │ │ ├── i-fog_old.png │ │ │ │ ├── i-forbidden_new.png │ │ │ │ ├── i-forbidden_old.png │ │ │ │ ├── i-frost_new.png │ │ │ │ ├── i-frost_old.png │ │ │ │ ├── i-gain-dexterity_new.png │ │ │ │ ├── i-gain-dexterity_old.png │ │ │ │ ├── i-gain-intelligence_new.png │ │ │ │ ├── i-gain-intelligence_old.png │ │ │ │ ├── i-gain-strength_new.png │ │ │ │ ├── i-gain-strength_old.png │ │ │ │ ├── i-good-mutation.png │ │ │ │ ├── i-haste.png │ │ │ │ ├── i-hasting.png │ │ │ │ ├── i-heal-wounds_2.png │ │ │ │ ├── i-heal-wounds_new.png │ │ │ │ ├── i-heal-wounds_old.png │ │ │ │ ├── i-heal_wounds.png │ │ │ │ ├── i-healing.png │ │ │ │ ├── i-holy_word_new.png │ │ │ │ ├── i-holy_word_old.png │ │ │ │ ├── i-hunger_new.png │ │ │ │ ├── i-hunger_old.png │ │ │ │ ├── i-ice.png │ │ │ │ ├── i-identify_new.png │ │ │ │ ├── i-identify_old.png │ │ │ │ ├── i-immolation.png │ │ │ │ ├── i-inedible.png │ │ │ │ ├── i-intelligence_new.png │ │ │ │ ├── i-intelligence_old.png │ │ │ │ ├── i-invisibility_new.png │ │ │ │ ├── i-invisibility_old.png │ │ │ │ ├── i-jumping.png │ │ │ │ ├── i-label_new.png │ │ │ │ ├── i-label_old.png │ │ │ │ ├── i-levitation.png │ │ │ │ ├── i-levitation_2.png │ │ │ │ ├── i-levitation_3.png │ │ │ │ ├── i-life-protection_new.png │ │ │ │ ├── i-life-protection_old.png │ │ │ │ ├── i-lightning_new.png │ │ │ │ ├── i-lightning_old.png │ │ │ │ ├── i-lignify.png │ │ │ │ ├── i-loudness.png │ │ │ │ ├── i-magic-res.png │ │ │ │ ├── i-magic.png │ │ │ │ ├── i-magic_darts_new.png │ │ │ │ ├── i-magic_darts_old.png │ │ │ │ ├── i-magic_mapping_new.png │ │ │ │ ├── i-magic_mapping_old.png │ │ │ │ ├── i-magical-power_new.png │ │ │ │ ├── i-magical-power_old.png │ │ │ │ ├── i-might_new.png │ │ │ │ ├── i-might_old.png │ │ │ │ ├── i-mutation_new.png │ │ │ │ ├── i-mutation_old.png │ │ │ │ ├── i-noise_new.png │ │ │ │ ├── i-noise_old.png │ │ │ │ ├── i-orc_slaying.png │ │ │ │ ├── i-pain_new.png │ │ │ │ ├── i-pain_old.png │ │ │ │ ├── i-paralysis_new.png │ │ │ │ ├── i-paralysis_old.png │ │ │ │ ├── i-penetration_new.png │ │ │ │ ├── i-penetration_old.png │ │ │ │ ├── i-poison-res.png │ │ │ │ ├── i-poison_2.png │ │ │ │ ├── i-poison_new.png │ │ │ │ ├── i-poison_old.png │ │ │ │ ├── i-polymorph.png │ │ │ │ ├── i-polymorph_other.png │ │ │ │ ├── i-ponderous.png │ │ │ │ ├── i-porridge_new.png │ │ │ │ ├── i-porridge_old.png │ │ │ │ ├── i-positive-energy.png │ │ │ │ ├── i-preservation_new.png │ │ │ │ ├── i-preservation_old.png │ │ │ │ ├── i-protection_new.png │ │ │ │ ├── i-protection_old.png │ │ │ │ ├── i-r-cold.png │ │ │ │ ├── i-r-fire.png │ │ │ │ ├── i-r-lightning_new.png │ │ │ │ ├── i-r-lightning_old.png │ │ │ │ ├── i-r-magic_new.png │ │ │ │ ├── i-r-magic_old.png │ │ │ │ ├── i-r-poison_new.png │ │ │ │ ├── i-r-poison_old.png │ │ │ │ ├── i-random_effects.png │ │ │ │ ├── i-reaching.png │ │ │ │ ├── i-reaping_new.png │ │ │ │ ├── i-reaping_old.png │ │ │ │ ├── i-recharging_new.png │ │ │ │ ├── i-recharging_old.png │ │ │ │ ├── i-reflection_new.png │ │ │ │ ├── i-reflection_old.png │ │ │ │ ├── i-regeneration_new.png │ │ │ │ ├── i-regeneration_old.png │ │ │ │ ├── i-remove_curse_new.png │ │ │ │ ├── i-remove_curse_old.png │ │ │ │ ├── i-resistance_new.png │ │ │ │ ├── i-resistance_old.png │ │ │ │ ├── i-restore-abilities_new.png │ │ │ │ ├── i-restore-abilities_old.png │ │ │ │ ├── i-returning_new.png │ │ │ │ ├── i-returning_old.png │ │ │ │ ├── i-rod_clouds.png │ │ │ │ ├── i-rod_demonology.png │ │ │ │ ├── i-rod_destruction.png │ │ │ │ ├── i-rod_destruction_inaccuracy.png │ │ │ │ ├── i-rod_destruction_lightning.png │ │ │ │ ├── i-rod_discovery.png │ │ │ │ ├── i-rod_inaccuracy.png │ │ │ │ ├── i-rod_shadows.png │ │ │ │ ├── i-rod_smiting.png │ │ │ │ ├── i-rod_striking_new.png │ │ │ │ ├── i-rod_striking_old.png │ │ │ │ ├── i-rod_summoning.png │ │ │ │ ├── i-rod_venom_new.png │ │ │ │ ├── i-rod_venom_old.png │ │ │ │ ├── i-rod_warding_new.png │ │ │ │ ├── i-rod_warding_old.png │ │ │ │ ├── i-rotten.png │ │ │ │ ├── i-running.png │ │ │ │ ├── i-s-abil.png │ │ │ │ ├── i-s-attr.png │ │ │ │ ├── i-see-invis_new.png │ │ │ │ ├── i-see-invis_old.png │ │ │ │ ├── i-sickness_new.png │ │ │ │ ├── i-sickness_old.png │ │ │ │ ├── i-slaying_new.png │ │ │ │ ├── i-slaying_old.png │ │ │ │ ├── i-slowing_new.png │ │ │ │ ├── i-slowing_old.png │ │ │ │ ├── i-speed_.png │ │ │ │ ├── i-speed_new.png │ │ │ │ ├── i-speed_old.png │ │ │ │ ├── i-spirit_new.png │ │ │ │ ├── i-spirit_old.png │ │ │ │ ├── i-staff_air_new.png │ │ │ │ ├── i-staff_air_old.png │ │ │ │ ├── i-staff_channeling_new.png │ │ │ │ ├── i-staff_channeling_old.png │ │ │ │ ├── i-staff_cold.png │ │ │ │ ├── i-staff_conjuration_new.png │ │ │ │ ├── i-staff_conjuration_old.png │ │ │ │ ├── i-staff_death.png │ │ │ │ ├── i-staff_earth_new.png │ │ │ │ ├── i-staff_earth_old.png │ │ │ │ ├── i-staff_enchantment_new.png │ │ │ │ ├── i-staff_enchantment_old.png │ │ │ │ ├── i-staff_energy_new.png │ │ │ │ ├── i-staff_energy_old.png │ │ │ │ ├── i-staff_poison.png │ │ │ │ ├── i-staff_power.png │ │ │ │ ├── i-stealth.png │ │ │ │ ├── i-strength_new.png │ │ │ │ ├── i-strength_old.png │ │ │ │ ├── i-strong-poison_new.png │ │ │ │ ├── i-strong-poison_old.png │ │ │ │ ├── i-summoning.png │ │ │ │ ├── i-sustenance_new.png │ │ │ │ ├── i-sustenance_old.png │ │ │ │ ├── i-teleportation_new.png │ │ │ │ ├── i-teleportation_old.png │ │ │ │ ├── i-torment_new.png │ │ │ │ ├── i-torment_old.png │ │ │ │ ├── i-vampiricism.png │ │ │ │ ├── i-venom_new.png │ │ │ │ ├── i-venom_old.png │ │ │ │ ├── i-vorpal.png │ │ │ │ ├── i-vulnerability_new.png │ │ │ │ ├── i-vulnerability_old.png │ │ │ │ ├── i-water.png │ │ │ │ ├── i-wizardry_new.png │ │ │ │ └── i-wizardry_old.png │ │ │ ├── top_left │ │ │ │ ├── animated_weapon_new.png │ │ │ │ ├── animated_weapon_old.png │ │ │ │ ├── i-c-flight.png │ │ │ │ ├── i-clarity_new.png │ │ │ │ ├── i-clarity_old.png │ │ │ │ ├── i-conservation_new.png │ │ │ │ ├── i-conservation_old.png │ │ │ │ ├── i-faith_new.png │ │ │ │ ├── i-faith_old.png │ │ │ │ ├── i-gourmand_new.png │ │ │ │ ├── i-gourmand_old.png │ │ │ │ ├── i-inaccuracy_new.png │ │ │ │ ├── i-inaccuracy_old.png │ │ │ │ ├── i-r-corrosion_new.png │ │ │ │ ├── i-r-corrosion_old.png │ │ │ │ ├── i-r-mutation_new.png │ │ │ │ ├── i-r-mutation_old.png │ │ │ │ ├── i-rage_new.png │ │ │ │ ├── i-rage_old.png │ │ │ │ ├── i-spirit_new.png │ │ │ │ ├── i-spirit_old.png │ │ │ │ ├── i-stasis_new.png │ │ │ │ ├── i-stasis_old.png │ │ │ │ ├── i-warding_new.png │ │ │ │ ├── i-warding_old.png │ │ │ │ ├── summoned.png │ │ │ │ └── summoned_durable.png │ │ │ └── top_right │ │ │ │ ├── blind.png │ │ │ │ ├── constricted.png │ │ │ │ ├── deaths_door.png │ │ │ │ ├── drain.png │ │ │ │ ├── flame.png │ │ │ │ ├── fleeing.png │ │ │ │ ├── good_neutral_new.png │ │ │ │ ├── good_neutral_old.png │ │ │ │ ├── hasted.png │ │ │ │ ├── heart_new.png │ │ │ │ ├── heart_old.png │ │ │ │ ├── inner_flame.png │ │ │ │ ├── may_stab_brand_new.png │ │ │ │ ├── may_stab_brand_old.png │ │ │ │ ├── might.png │ │ │ │ ├── neutral_new.png │ │ │ │ ├── neutral_old.png │ │ │ │ ├── new_stair_new.png │ │ │ │ ├── new_stair_old.png │ │ │ │ ├── pain_mirror.png │ │ │ │ ├── petrified.png │ │ │ │ ├── petrifying.png │ │ │ │ ├── poison_new.png │ │ │ │ ├── poison_old.png │ │ │ │ ├── recall.png │ │ │ │ ├── sleeping.png │ │ │ │ ├── sleeping_2.png │ │ │ │ ├── sleeping_full.png │ │ │ │ └── sticky_flame.png │ │ ├── cursor.png │ │ ├── cursor_green.png │ │ ├── cursor_red.png │ │ ├── damage_meter_almost_dead.png │ │ ├── damage_meter_heavily_damaged.png │ │ ├── damage_meter_lightly_damaged.png │ │ ├── damage_meter_moderately_damaged.png │ │ ├── damage_meter_sample.png │ │ ├── damage_meter_severely_damaged.png │ │ ├── error.png │ │ ├── halo.png │ │ ├── landing.png │ │ ├── magicmap.png │ │ ├── mask_deep_water.png │ │ ├── mask_deep_water_murky.png │ │ ├── mask_deep_water_shoals.png │ │ ├── mask_lava.png │ │ ├── mask_shallow_water.png │ │ ├── mask_shallow_water_murky.png │ │ ├── mask_shallow_water_shoals.png │ │ ├── mdam_almost_dead.png │ │ ├── mdam_heavily_damaged.png │ │ ├── mdam_lightly_damaged.png │ │ ├── mdam_moderately_damaged.png │ │ ├── mdam_severely_damaged.png │ │ ├── mold_glowing_1.png │ │ ├── mold_glowing_2.png │ │ ├── mold_glowing_3.png │ │ ├── mold_glowing_4.png │ │ ├── move.png │ │ ├── numbers │ │ │ ├── demon_number_1.png │ │ │ ├── demon_number_2.png │ │ │ ├── demon_number_3.png │ │ │ ├── demon_number_4.png │ │ │ ├── demon_number_5.png │ │ │ ├── minus_1.png │ │ │ ├── minus_2.png │ │ │ ├── minus_3.png │ │ │ ├── minus_4.png │ │ │ ├── minus_5.png │ │ │ ├── num_0.png │ │ │ ├── num_1.png │ │ │ ├── num_2.png │ │ │ ├── num_3.png │ │ │ ├── num_4.png │ │ │ ├── num_5.png │ │ │ ├── num_6.png │ │ │ ├── num_7.png │ │ │ ├── num_8.png │ │ │ ├── num_9.png │ │ │ ├── number_0.png │ │ │ ├── number_1.png │ │ │ ├── number_2.png │ │ │ ├── number_3.png │ │ │ ├── number_4.png │ │ │ ├── number_5.png │ │ │ ├── number_6.png │ │ │ ├── number_7.png │ │ │ ├── number_8.png │ │ │ ├── number_9.png │ │ │ ├── plus_1.png │ │ │ ├── plus_2.png │ │ │ ├── plus_3.png │ │ │ ├── plus_4.png │ │ │ ├── plus_5.png │ │ │ └── zero.png │ │ ├── out_of_range.png │ │ ├── out_of_sight_new.png │ │ ├── out_of_sight_old.png │ │ ├── ray.png │ │ ├── ray_out_of_range.png │ │ ├── sensed_monster_easy.png │ │ ├── sensed_monster_friendly.png │ │ ├── sensed_monster_nasty.png │ │ ├── sensed_monster_tough.png │ │ ├── sensed_monster_trivial.png │ │ ├── slot.png │ │ ├── slot_cursed.png │ │ ├── slot_equipped.png │ │ ├── slot_equipped_cursed.png │ │ ├── slot_melded.png │ │ ├── slot_vehumet.png │ │ ├── stab_brand.png │ │ ├── suppressed.png │ │ ├── todo.png │ │ ├── travel_exclusion_center_new.png │ │ ├── travel_exclusion_center_old.png │ │ ├── travel_exclusion_new.png │ │ ├── travel_exclusion_old.png │ │ ├── travel_path_from_1.png │ │ ├── travel_path_from_2.png │ │ ├── travel_path_from_3.png │ │ ├── travel_path_from_4.png │ │ ├── travel_path_from_5.png │ │ ├── travel_path_from_6.png │ │ ├── travel_path_from_7.png │ │ ├── travel_path_from_8.png │ │ ├── travel_path_to_1.png │ │ ├── travel_path_to_2.png │ │ ├── travel_path_to_3.png │ │ ├── travel_path_to_4.png │ │ ├── travel_path_to_5.png │ │ ├── travel_path_to_6.png │ │ ├── travel_path_to_7.png │ │ ├── travel_path_to_8.png │ │ ├── tried.png │ │ ├── tutorial_cursor.png │ │ ├── unseen_armor_new.png │ │ ├── unseen_armor_old.png │ │ ├── unseen_item_new.png │ │ ├── unseen_item_old.png │ │ ├── unseen_monster.png │ │ ├── unseen_weapon_new.png │ │ └── unseen_weapon_old.png │ ├── monster │ │ ├── aberration │ │ │ ├── unseen_horror_new.png │ │ │ └── unseen_horror_old.png │ │ ├── abyss │ │ │ ├── ancient_zyme.png │ │ │ ├── apocalypse_crab.png │ │ │ ├── lurking_horror.png │ │ │ ├── silver_star.png │ │ │ ├── starcursed_mass.png │ │ │ ├── tentacled_starspawn.png │ │ │ ├── worldbinder.png │ │ │ └── wretched_star.png │ │ ├── amorphous │ │ │ ├── acid_blob.png │ │ │ ├── azure_jelly_new.png │ │ │ ├── azure_jelly_old.png │ │ │ ├── death_ooze_new.png │ │ │ ├── death_ooze_old.png │ │ │ ├── jelly.png │ │ │ ├── ooze_new.png │ │ │ └── ooze_old.png │ │ ├── angel.png │ │ ├── animals │ │ │ ├── adder.png │ │ │ ├── alligator.png │ │ │ ├── alligator_baby.png │ │ │ ├── alligator_snapping_turtle_new.png │ │ │ ├── alligator_snapping_turtle_old.png │ │ │ ├── alligator_snapping_turtle_shell.png │ │ │ ├── anaconda_new.png │ │ │ ├── anaconda_old.png │ │ │ ├── ball_python.png │ │ │ ├── basilisk.png │ │ │ ├── bat.png │ │ │ ├── bear.png │ │ │ ├── big_fish.png │ │ │ ├── black_bear_new.png │ │ │ ├── black_bear_old.png │ │ │ ├── black_mamba_new.png │ │ │ ├── black_mamba_old.png │ │ │ ├── black_sheep.png │ │ │ ├── blink_frog_new.png │ │ │ ├── blink_frog_old.png │ │ │ ├── boring_beetle.png │ │ │ ├── boulder_beetle.png │ │ │ ├── brain_worm_new.png │ │ │ ├── brain_worm_old.png │ │ │ ├── bumblebee.png │ │ │ ├── butterfly_10.png │ │ │ ├── butterfly_1_new.png │ │ │ ├── butterfly_1_old.png │ │ │ ├── butterfly_2.png │ │ │ ├── butterfly_3_new.png │ │ │ ├── butterfly_3_old.png │ │ │ ├── butterfly_4_new.png │ │ │ ├── butterfly_4_old.png │ │ │ ├── butterfly_5.png │ │ │ ├── butterfly_6_new.png │ │ │ ├── butterfly_6_old.png │ │ │ ├── butterfly_7.png │ │ │ ├── butterfly_8.png │ │ │ ├── butterfly_9.png │ │ │ ├── butterfly_new.png │ │ │ ├── butterfly_old.png │ │ │ ├── catoblepas.png │ │ │ ├── caustic_shrike.png │ │ │ ├── crocodile.png │ │ │ ├── death_yak_new.png │ │ │ ├── death_yak_old.png │ │ │ ├── elephant_demonic_new.png │ │ │ ├── elephant_demonic_old.png │ │ │ ├── elephant_dire_new.png │ │ │ ├── elephant_dire_old.png │ │ │ ├── elephant_new.png │ │ │ ├── elephant_old.png │ │ │ ├── elephant_slug.png │ │ │ ├── emperor_scorpion.png │ │ │ ├── fire_bat.png │ │ │ ├── fire_crab.png │ │ │ ├── ghost_moth_new.png │ │ │ ├── ghost_moth_old.png │ │ │ ├── giant_ant.png │ │ │ ├── giant_bat.png │ │ │ ├── giant_beetle.png │ │ │ ├── giant_blowfly.png │ │ │ ├── giant_centipede.png │ │ │ ├── giant_cockroach_new.png │ │ │ ├── giant_cockroach_old.png │ │ │ ├── giant_firefly.png │ │ │ ├── giant_frog.png │ │ │ ├── giant_gecko.png │ │ │ ├── giant_goldfish.png │ │ │ ├── giant_leech.png │ │ │ ├── giant_leech_new.png │ │ │ ├── giant_leech_old.png │ │ │ ├── giant_lizard.png │ │ │ ├── giant_mite.png │ │ │ ├── giant_mosquito.png │ │ │ ├── giant_newt_new.png │ │ │ ├── giant_newt_old.png │ │ │ ├── giant_scorpion.png │ │ │ ├── giant_slug.png │ │ │ ├── giant_snail.png │ │ │ ├── giant_toad.png │ │ │ ├── gila_monster.png │ │ │ ├── green_rat.png │ │ │ ├── grey_rat.png │ │ │ ├── grey_snake.png │ │ │ ├── grizzly_bear.png │ │ │ ├── hell_hog_new.png │ │ │ ├── hell_hog_old.png │ │ │ ├── hell_hound_new.png │ │ │ ├── hell_hound_old.png │ │ │ ├── hog_new.png │ │ │ ├── hog_old.png │ │ │ ├── holy_swine.png │ │ │ ├── hound.png │ │ │ ├── ice_beast.png │ │ │ ├── iguana.png │ │ │ ├── jackal_new.png │ │ │ ├── jackal_old.png │ │ │ ├── jellyfish.png │ │ │ ├── jumping_spider_new.png │ │ │ ├── jumping_spider_old.png │ │ │ ├── killer_bee.png │ │ │ ├── killer_bee_larva.png │ │ │ ├── komodo_dragon.png │ │ │ ├── lava_fish.png │ │ │ ├── lava_worm.png │ │ │ ├── mana_viper.png │ │ │ ├── moth_of_wrath_new.png │ │ │ ├── moth_of_wrath_old.png │ │ │ ├── orange_rat.png │ │ │ ├── orb_spider.png │ │ │ ├── polar_bear.png │ │ │ ├── queen_ant_new.png │ │ │ ├── queen_ant_old.png │ │ │ ├── queen_bee.png │ │ │ ├── quokka_new.png │ │ │ ├── quokka_old.png │ │ │ ├── raiju.png │ │ │ ├── rat.png │ │ │ ├── red_wasp.png │ │ │ ├── redback_new.png │ │ │ ├── redback_old.png │ │ │ ├── rock_worm.png │ │ │ ├── salamander.png │ │ │ ├── scorpion_new.png │ │ │ ├── scorpion_old.png │ │ │ ├── sea_snake_new.png │ │ │ ├── sea_snake_old.png │ │ │ ├── sheep.png │ │ │ ├── shock_serpent.png │ │ │ ├── small_snake.png │ │ │ ├── snake.png │ │ │ ├── snapping_turtle_new.png │ │ │ ├── snapping_turtle_old.png │ │ │ ├── snapping_turtle_shell.png │ │ │ ├── soldier_ant_new.png │ │ │ ├── soldier_ant_old.png │ │ │ ├── spider.png │ │ │ ├── spiny_frog.png │ │ │ ├── spiny_worm.png │ │ │ ├── tarantella_new.png │ │ │ ├── tarantella_old.png │ │ │ ├── trapdoor_spider_new.png │ │ │ ├── trapdoor_spider_old.png │ │ │ ├── turtle.png │ │ │ ├── viper.png │ │ │ ├── war_dog.png │ │ │ ├── warg.png │ │ │ ├── water_moccasin_new.png │ │ │ ├── water_moccasin_old.png │ │ │ ├── wolf.png │ │ │ ├── wolf_spider_new.png │ │ │ ├── wolf_spider_old.png │ │ │ ├── worker_ant.png │ │ │ ├── worm_new.png │ │ │ ├── worm_old.png │ │ │ ├── yak_new.png │ │ │ ├── yak_old.png │ │ │ ├── yellow_snake.png │ │ │ └── yellow_wasp.png │ │ ├── anubis_guard.png │ │ ├── aquatic │ │ │ ├── electric_eel.png │ │ │ ├── kraken_head_new.png │ │ │ ├── kraken_head_old.png │ │ │ ├── lava_snake_new.png │ │ │ ├── lava_snake_old.png │ │ │ ├── shark_new.png │ │ │ ├── shark_old.png │ │ │ ├── swamp_worm_new.png │ │ │ └── swamp_worm_old.png │ │ ├── big_kobold_new.png │ │ ├── big_kobold_old.png │ │ ├── boggart_new.png │ │ ├── boggart_old.png │ │ ├── brown_ooze.png │ │ ├── centaur-melee.png │ │ ├── centaur.png │ │ ├── centaur_warrior-melee.png │ │ ├── centaur_warrior.png │ │ ├── cyclops_new.png │ │ ├── cyclops_old.png │ │ ├── daeva.png │ │ ├── death_drake.png │ │ ├── death_knight.png │ │ ├── deep_dwarf.png │ │ ├── deep_dwarf_artificer.png │ │ ├── deep_dwarf_berserker.png │ │ ├── deep_dwarf_death_knight.png │ │ ├── deep_elf_annihilator.png │ │ ├── deep_elf_blademaster.png │ │ ├── deep_elf_conjurer.png │ │ ├── deep_elf_death_mage.png │ │ ├── deep_elf_demonologist.png │ │ ├── deep_elf_fighter_new.png │ │ ├── deep_elf_fighter_old.png │ │ ├── deep_elf_high_priest.png │ │ ├── deep_elf_knight_new.png │ │ ├── deep_elf_knight_old.png │ │ ├── deep_elf_mage.png │ │ ├── deep_elf_master_archer.png │ │ ├── deep_elf_priest.png │ │ ├── deep_elf_soldier.png │ │ ├── deep_elf_sorcerer.png │ │ ├── deep_elf_summoner.png │ │ ├── deep_troll.png │ │ ├── deep_troll_berserker.png │ │ ├── deep_troll_earth_mage.png │ │ ├── deep_troll_shaman.png │ │ ├── demons │ │ │ ├── abomination_large.png │ │ │ ├── abomination_large_1.png │ │ │ ├── abomination_large_2.png │ │ │ ├── abomination_large_3.png │ │ │ ├── abomination_large_4.png │ │ │ ├── abomination_large_5.png │ │ │ ├── abomination_large_6.png │ │ │ ├── abomination_small.png │ │ │ ├── abomination_small_1.png │ │ │ ├── balrug_new.png │ │ │ ├── balrug_old.png │ │ │ ├── beast.png │ │ │ ├── blizzard_demon.png │ │ │ ├── blue_death.png │ │ │ ├── blue_devil_new.png │ │ │ ├── blue_devil_old.png │ │ │ ├── cacodemon.png │ │ │ ├── chaos_spawn.png │ │ │ ├── chaos_spawn_1.png │ │ │ ├── chaos_spawn_2.png │ │ │ ├── chaos_spawn_3.png │ │ │ ├── chaos_spawn_4.png │ │ │ ├── chaos_spawn_5.png │ │ │ ├── cigotuvis_monster.png │ │ │ ├── demonic_crawler.png │ │ │ ├── dimme.png │ │ │ ├── efreet.png │ │ │ ├── executioner.png │ │ │ ├── fiend.png │ │ │ ├── green_death.png │ │ │ ├── hairy_devil.png │ │ │ ├── hell_sentinel.png │ │ │ ├── hellion_new.png │ │ │ ├── hellion_old.png │ │ │ ├── hellwing.png │ │ │ ├── ice_devil.png │ │ │ ├── ice_fiend.png │ │ │ ├── imp.png │ │ │ ├── iron_devil.png │ │ │ ├── iron_imp_new.png │ │ │ ├── iron_imp_old.png │ │ │ ├── lemure.png │ │ │ ├── lorocyproca_new.png │ │ │ ├── lorocyproca_old.png │ │ │ ├── midge.png │ │ │ ├── neqoxec_new.png │ │ │ ├── neqoxec_old.png │ │ │ ├── orange_demon_new.png │ │ │ ├── orange_demon_old.png │ │ │ ├── pit_fiend.png │ │ │ ├── quasit_new.png │ │ │ ├── quasit_old.png │ │ │ ├── rakshasa.png │ │ │ ├── reaper_new.png │ │ │ ├── reaper_old.png │ │ │ ├── red_devil_new.png │ │ │ ├── red_devil_old.png │ │ │ ├── rotting_devil.png │ │ │ ├── rust_devil.png │ │ │ ├── shadow_demon.png │ │ │ ├── shadow_fiend_new.png │ │ │ ├── shadow_fiend_old.png │ │ │ ├── shadow_imp_new.png │ │ │ ├── shadow_imp_old.png │ │ │ ├── sixfirhy_new.png │ │ │ ├── sixfirhy_old.png │ │ │ ├── smoke_demon_new.png │ │ │ ├── smoke_demon_old.png │ │ │ ├── soul_eater.png │ │ │ ├── sun_demon.png │ │ │ ├── tentacled_monstrosity.png │ │ │ ├── tormentor_new.png │ │ │ ├── tormentor_old.png │ │ │ ├── ufetubus.png │ │ │ ├── ugly_thing.png │ │ │ ├── ugly_thing_1.png │ │ │ ├── ugly_thing_2.png │ │ │ ├── ugly_thing_3.png │ │ │ ├── ugly_thing_4.png │ │ │ ├── ugly_thing_5.png │ │ │ ├── unspeakable_bottom.png │ │ │ ├── unspeakable_top.png │ │ │ ├── very_ugly_thing.png │ │ │ ├── very_ugly_thing_1.png │ │ │ ├── very_ugly_thing_2.png │ │ │ ├── very_ugly_thing_3.png │ │ │ ├── very_ugly_thing_4.png │ │ │ ├── very_ugly_thing_5.png │ │ │ ├── white_imp.png │ │ │ ├── ynoxinul_new.png │ │ │ └── ynoxinul_old.png │ │ ├── demonspawn.png │ │ ├── demonspawn │ │ │ ├── black_sun.png │ │ │ ├── blood_saint.png │ │ │ ├── chaos_champion.png │ │ │ ├── corrupter.png │ │ │ ├── demonspawn.png │ │ │ ├── gelid.png │ │ │ ├── infernal.png │ │ │ ├── monstrous.png │ │ │ ├── putrid.png │ │ │ ├── torturous.png │ │ │ └── warmonger.png │ │ ├── draconic │ │ │ ├── draconic_base-black_new.png │ │ │ ├── draconic_base-black_old.png │ │ │ ├── draconic_base-brown_new.png │ │ │ ├── draconic_base-brown_old.png │ │ │ ├── draconic_base-green_new.png │ │ │ ├── draconic_base-green_old.png │ │ │ ├── draconic_base-mottle_new.png │ │ │ ├── draconic_base-mottle_old.png │ │ │ ├── draconic_base-pale_new.png │ │ │ ├── draconic_base-pale_old.png │ │ │ ├── draconic_base-purple_new.png │ │ │ ├── draconic_base-purple_old.png │ │ │ ├── draconic_base-red_new.png │ │ │ ├── draconic_base-red_old.png │ │ │ ├── draconic_base-white_new.png │ │ │ ├── draconic_base-white_old.png │ │ │ ├── draconic_base-yellow_new.png │ │ │ ├── draconic_base-yellow_old.png │ │ │ ├── draconic_job-annihilator_new.png │ │ │ ├── draconic_job-annihilator_old.png │ │ │ ├── draconic_job-caller_new.png │ │ │ ├── draconic_job-caller_old.png │ │ │ ├── draconic_job-knight_new.png │ │ │ ├── draconic_job-knight_old.png │ │ │ ├── draconic_job-monk_new.png │ │ │ ├── draconic_job-monk_old.png │ │ │ ├── draconic_job-scorcher_new.png │ │ │ ├── draconic_job-scorcher_old.png │ │ │ ├── draconic_job-shifter_new.png │ │ │ ├── draconic_job-shifter_old.png │ │ │ ├── draconic_job-zealot_new.png │ │ │ └── draconic_job-zealot_old.png │ │ ├── dragons │ │ │ ├── dragon.png │ │ │ ├── golden_dragon.png │ │ │ ├── hydra_1_new.png │ │ │ ├── hydra_2_new.png │ │ │ ├── hydra_3_new.png │ │ │ ├── hydra_4_new.png │ │ │ ├── hydra_5_new.png │ │ │ ├── ice_dragon_new.png │ │ │ ├── iron_dragon.png │ │ │ ├── mottled_dragon.png │ │ │ ├── quicksilver_dragon_new.png │ │ │ ├── quicksilver_dragon_old.png │ │ │ ├── shadow_dragon.png │ │ │ ├── steam_dragon.png │ │ │ ├── storm_dragon_new.png │ │ │ ├── swamp_dragon_new.png │ │ │ └── wyvern_new.png │ │ ├── dryad.png │ │ ├── dwarf_new.png │ │ ├── dwarf_old.png │ │ ├── elf_new.png │ │ ├── elf_old.png │ │ ├── enchantress_human.png │ │ ├── entropy_weaver.png │ │ ├── ettin_new.png │ │ ├── ettin_old.png │ │ ├── eyes │ │ │ ├── eye_of_devastation_new.png │ │ │ ├── eye_of_devastation_old.png │ │ │ ├── eye_of_draining.png │ │ │ ├── giant_eyeball.png │ │ │ ├── golden_eye_new.png │ │ │ ├── golden_eye_old.png │ │ │ ├── great_orb_of_eyes.png │ │ │ ├── shining_eye_new.png │ │ │ └── shining_eye_old.png │ │ ├── faun.png │ │ ├── fire_drake.png │ │ ├── fire_giant_new.png │ │ ├── fire_giant_old.png │ │ ├── forest_drake.png │ │ ├── formicid.png │ │ ├── formicid_venom_mage.png │ │ ├── frost_giant_new.png │ │ ├── frost_giant_old.png │ │ ├── fungi_plants │ │ │ ├── briar_patch.png │ │ │ ├── bush_2.png │ │ │ ├── bush_3.png │ │ │ ├── bush_4.png │ │ │ ├── deathcap.png │ │ │ ├── giant_spore.png │ │ │ ├── hyperactive_ballistomycete.png │ │ │ ├── oklob_plant.png │ │ │ ├── plant.png │ │ │ ├── plant_crypt.png │ │ │ ├── plant_demonic.png │ │ │ ├── thorn_hunter.png │ │ │ ├── thorn_lotus.png │ │ │ ├── treant.png │ │ │ ├── vine_stalker.png │ │ │ ├── wandering_mushroom_new.png │ │ │ └── wandering_mushroom_old.png │ │ ├── giant_amoeba_new.png │ │ ├── giant_amoeba_old.png │ │ ├── giant_orange_brain.png │ │ ├── glowing_shapeshifter.png │ │ ├── gnoll_new.png │ │ ├── gnoll_old.png │ │ ├── gnoll_sergeant.png │ │ ├── gnoll_shaman.png │ │ ├── gnome.png │ │ ├── goblin_new.png │ │ ├── goblin_old.png │ │ ├── golden_dragon.png │ │ ├── grand_avatar.png │ │ ├── greater_naga.png │ │ ├── griffon.png │ │ ├── guardian_naga.png │ │ ├── guardian_serpent_new.png │ │ ├── guardian_serpent_old.png │ │ ├── halfling_new.png │ │ ├── halfling_old.png │ │ ├── harpy.png │ │ ├── hell_knight_new.png │ │ ├── hell_knight_old.png │ │ ├── hill_giant_new.png │ │ ├── hill_giant_old.png │ │ ├── hippogriff_new.png │ │ ├── hippogriff_old.png │ │ ├── hobgoblin_new.png │ │ ├── hobgoblin_old.png │ │ ├── holy │ │ │ ├── angel_mace.png │ │ │ ├── angel_new.png │ │ │ ├── angel_old.png │ │ │ ├── apis.png │ │ │ ├── centaur_paladin.png │ │ │ ├── cherub.png │ │ │ ├── daeva.png │ │ │ ├── eastern_dragon.png │ │ │ ├── holy_dragon.png │ │ │ ├── ophan.png │ │ │ ├── paladin.png │ │ │ ├── seraph_bottom.png │ │ │ ├── seraph_top.png │ │ │ ├── shedu_new.png │ │ │ └── shedu_old.png │ │ ├── human.png │ │ ├── human_monk_ghost.png │ │ ├── human_new.png │ │ ├── human_old.png │ │ ├── human_slave.png │ │ ├── hydrataur.png │ │ ├── ice_beast.png │ │ ├── iron_troll.png │ │ ├── iron_troll_monk_ghost.png │ │ ├── ironbrand_convoker.png │ │ ├── ironheart_preserver.png │ │ ├── jelly.png │ │ ├── juggernaut.png │ │ ├── kenku_winged.png │ │ ├── killer_klown.png │ │ ├── killer_klown_blue.png │ │ ├── killer_klown_green.png │ │ ├── killer_klown_purple.png │ │ ├── killer_klown_red.png │ │ ├── killer_klown_yellow.png │ │ ├── kobold_demonologist.png │ │ ├── kobold_new.png │ │ ├── kobold_old.png │ │ ├── labrat_unseen.png │ │ ├── lava_worm.png │ │ ├── lindwurm.png │ │ ├── manticore.png │ │ ├── merfolk.png │ │ ├── merfolk_aquamancer_new.png │ │ ├── merfolk_aquamancer_old.png │ │ ├── merfolk_aquamancer_water_new.png │ │ ├── merfolk_aquamancer_water_old.png │ │ ├── merfolk_avatar.png │ │ ├── merfolk_avatar_water.png │ │ ├── merfolk_fighter.png │ │ ├── merfolk_fighter_water.png │ │ ├── merfolk_impaler_new.png │ │ ├── merfolk_impaler_old.png │ │ ├── merfolk_impaler_water_new.png │ │ ├── merfolk_impaler_water_old.png │ │ ├── merfolk_javelineer_new.png │ │ ├── merfolk_javelineer_old.png │ │ ├── merfolk_javelineer_water_new.png │ │ ├── merfolk_javelineer_water_old.png │ │ ├── merfolk_plain.png │ │ ├── merfolk_plain_water.png │ │ ├── merfolk_water.png │ │ ├── mermaid.png │ │ ├── mermaid_water.png │ │ ├── minotaur.png │ │ ├── moth_of_suppression.png │ │ ├── mutant_beast.png │ │ ├── naga.png │ │ ├── naga_mage.png │ │ ├── naga_ritualist.png │ │ ├── naga_sharpshooter.png │ │ ├── naga_warrior.png │ │ ├── naga_warrior_unique.png │ │ ├── necromancer_new.png │ │ ├── necromancer_old.png │ │ ├── nonliving │ │ │ ├── air_elemental_new.png │ │ │ ├── air_elemental_old.png │ │ │ ├── ball_lightning.png │ │ │ ├── battlesphere.png │ │ │ ├── clay_golem.png │ │ │ ├── crystal_golem.png │ │ │ ├── crystal_guardian.png │ │ │ ├── earth_elemental.png │ │ │ ├── electric_golem.png │ │ │ ├── fire_elemental_new.png │ │ │ ├── fire_elemental_old.png │ │ │ ├── fire_vortex.png │ │ │ ├── fire_vortex_1.png │ │ │ ├── fire_vortex_2.png │ │ │ ├── fire_vortex_3.png │ │ │ ├── fire_vortex_4.png │ │ │ ├── flesh_golem.png │ │ │ ├── fulminant_prism_1.png │ │ │ ├── fulminant_prism_2.png │ │ │ ├── fulminant_prism_3.png │ │ │ ├── fulminant_prism_4.png │ │ │ ├── gargoyle.png │ │ │ ├── guardian_golem.png │ │ │ ├── insubstantial_wisp.png │ │ │ ├── iron_elemental.png │ │ │ ├── iron_golem.png │ │ │ ├── maelstrom_1.png │ │ │ ├── maelstrom_2.png │ │ │ ├── maelstrom_3.png │ │ │ ├── maelstrom_4.png │ │ │ ├── metal_gargoyle.png │ │ │ ├── molten_gargoyle.png │ │ │ ├── orb_of_destruction_1.png │ │ │ ├── orb_of_destruction_2.png │ │ │ ├── orb_of_electricity.png │ │ │ ├── orb_of_fire_new.png │ │ │ ├── orb_of_fire_old.png │ │ │ ├── orb_of_ice.png │ │ │ ├── spatial_vortex.png │ │ │ ├── spatial_vortex_1.png │ │ │ ├── spatial_vortex_2.png │ │ │ ├── spatial_vortex_3.png │ │ │ ├── spatial_vortex_4.png │ │ │ ├── spectral_axe.png │ │ │ ├── spectral_lbl.png │ │ │ ├── spectral_mace.png │ │ │ ├── spectral_sbl.png │ │ │ ├── spectral_spear.png │ │ │ ├── spectral_staff.png │ │ │ ├── spectral_whip.png │ │ │ ├── spellforged_servitor.png │ │ │ ├── stone_golem.png │ │ │ ├── test_spawner_new.png │ │ │ ├── test_spawner_old.png │ │ │ ├── toenail_golem.png │ │ │ ├── twister_1.png │ │ │ ├── twister_2.png │ │ │ ├── twister_3.png │ │ │ ├── twister_4.png │ │ │ ├── ushabti.png │ │ │ ├── vapour.png │ │ │ ├── water_elemental_new.png │ │ │ ├── water_elemental_old.png │ │ │ ├── wellspring.png │ │ │ └── wood_golem.png │ │ ├── ogre_mage_new.png │ │ ├── ogre_mage_old.png │ │ ├── ogre_new.png │ │ ├── ogre_old.png │ │ ├── orb_guardian_new.png │ │ ├── orb_guardian_old.png │ │ ├── orc_high_priest_new.png │ │ ├── orc_high_priest_old.png │ │ ├── orc_knight_new.png │ │ ├── orc_knight_old.png │ │ ├── orc_new.png │ │ ├── orc_old.png │ │ ├── orc_priest_new.png │ │ ├── orc_priest_old.png │ │ ├── orc_sorcerer_new.png │ │ ├── orc_sorcerer_old.png │ │ ├── orc_warlord.png │ │ ├── orc_warrior_new.png │ │ ├── orc_warrior_old.png │ │ ├── orc_wizard_new.png │ │ ├── orc_wizard_old.png │ │ ├── panlord │ │ │ ├── demon_body_armor_bottom.png │ │ │ ├── demon_body_armor_top.png │ │ │ ├── demon_body_caterpillar_bottom.png │ │ │ ├── demon_body_caterpillar_top.png │ │ │ ├── demon_body_crouch_bottom.png │ │ │ ├── demon_body_crouch_top.png │ │ │ ├── demon_body_fat_bottom_new.png │ │ │ ├── demon_body_fat_bottom_old.png │ │ │ ├── demon_body_fat_top_new.png │ │ │ ├── demon_body_fat_top_old.png │ │ │ ├── demon_body_fatter_bottom_new.png │ │ │ ├── demon_body_fatter_bottom_old.png │ │ │ ├── demon_body_fatter_top_new.png │ │ │ ├── demon_body_fatter_top_old.png │ │ │ ├── demon_body_mantis_bottom.png │ │ │ ├── demon_body_mantis_top.png │ │ │ ├── demon_body_normal_bottom_new.png │ │ │ ├── demon_body_normal_bottom_old.png │ │ │ ├── demon_body_normal_top_new.png │ │ │ ├── demon_body_normal_top_old.png │ │ │ ├── demon_body_skeletal_bottom.png │ │ │ ├── demon_body_skeletal_top.png │ │ │ ├── demon_body_spiked_bottom_new.png │ │ │ ├── demon_body_spiked_bottom_old.png │ │ │ ├── demon_body_spiked_top_new.png │ │ │ ├── demon_body_spiked_top_old.png │ │ │ ├── demon_body_spotty_bottom_new.png │ │ │ ├── demon_body_spotty_bottom_old.png │ │ │ ├── demon_body_spotty_top_new.png │ │ │ ├── demon_body_spotty_top_old.png │ │ │ ├── demon_body_succubus_bottom.png │ │ │ ├── demon_body_succubus_top.png │ │ │ ├── demon_body_tentacley_bottom.png │ │ │ ├── demon_body_tentacley_top.png │ │ │ ├── demon_body_thin_bottom_new.png │ │ │ ├── demon_body_thin_bottom_old.png │ │ │ ├── demon_body_thin_top_new.png │ │ │ ├── demon_body_thin_top_old.png │ │ │ ├── demon_head_bird_top_new.png │ │ │ ├── demon_head_bird_top_old.png │ │ │ ├── demon_head_boxes_top.png │ │ │ ├── demon_head_brain_top.png │ │ │ ├── demon_head_butterfly_top.png │ │ │ ├── demon_head_cow_skull_top.png │ │ │ ├── demon_head_cthulhu_top_new.png │ │ │ ├── demon_head_cthulhu_top_old.png │ │ │ ├── demon_head_elephant_top_new.png │ │ │ ├── demon_head_elephant_top_old.png │ │ │ ├── demon_head_eyeball_top_new.png │ │ │ ├── demon_head_eyeball_top_old.png │ │ │ ├── demon_head_fly_top.png │ │ │ ├── demon_head_frog_top.png │ │ │ ├── demon_head_fungus_top.png │ │ │ ├── demon_head_hair_top.png │ │ │ ├── demon_head_heads_top.png │ │ │ ├── demon_head_helmet_top_new.png │ │ │ ├── demon_head_helmet_top_old.png │ │ │ ├── demon_head_horn_top.png │ │ │ ├── demon_head_horns_top_new.png │ │ │ ├── demon_head_horns_top_old.png │ │ │ ├── demon_head_horse_top_new.png │ │ │ ├── demon_head_horse_top_old.png │ │ │ ├── demon_head_incubus_top.png │ │ │ ├── demon_head_medusa_top_new.png │ │ │ ├── demon_head_medusa_top_old.png │ │ │ ├── demon_head_monkey_top_new.png │ │ │ ├── demon_head_monkey_top_old.png │ │ │ ├── demon_head_mouse_top_new.png │ │ │ ├── demon_head_mouse_top_old.png │ │ │ ├── demon_head_ram_top_new.png │ │ │ ├── demon_head_ram_top_old.png │ │ │ ├── demon_head_rhino_top_new.png │ │ │ ├── demon_head_rhino_top_old.png │ │ │ ├── demon_head_skull_top.png │ │ │ ├── demon_head_succubus_top.png │ │ │ ├── demon_head_teeth_top.png │ │ │ ├── demon_head_tentacles_top_new.png │ │ │ ├── demon_head_tentacles_top_old.png │ │ │ ├── demon_head_worm_top.png │ │ │ ├── demon_wings_bat_top.png │ │ │ ├── demon_wings_bones_bottom.png │ │ │ ├── demon_wings_bones_top_new.png │ │ │ ├── demon_wings_bones_top_old.png │ │ │ ├── demon_wings_butterfly_bottom.png │ │ │ ├── demon_wings_butterfly_small_top.png │ │ │ ├── demon_wings_butterfly_top_new.png │ │ │ ├── demon_wings_butterfly_top_old.png │ │ │ ├── demon_wings_demonic_top_new.png │ │ │ ├── demon_wings_demonic_top_old.png │ │ │ ├── demon_wings_dragonfly_top.png │ │ │ ├── demon_wings_hooked_top.png │ │ │ ├── demon_wings_knobs_top.png │ │ │ ├── demon_wings_large_bottom.png │ │ │ ├── demon_wings_large_top_new.png │ │ │ ├── demon_wings_large_top_old.png │ │ │ ├── demon_wings_medium_bottom.png │ │ │ ├── demon_wings_medium_top_new.png │ │ │ ├── demon_wings_medium_top_old.png │ │ │ ├── demon_wings_red_bottom.png │ │ │ ├── demon_wings_red_top_new.png │ │ │ ├── demon_wings_red_top_old.png │ │ │ ├── demon_wings_sparrow_top.png │ │ │ ├── demon_wings_torn_top.png │ │ │ └── pandemonium_demon.png │ │ ├── phoenix.png │ │ ├── pulsating_lump.png │ │ ├── quasit.png │ │ ├── raven.png │ │ ├── rock_troll.png │ │ ├── rock_troll_monk_ghost.png │ │ ├── salamander.png │ │ ├── salamander_firebrand.png │ │ ├── salamander_mystic.png │ │ ├── salamander_stormcaller.png │ │ ├── satyr.png │ │ ├── shadow_imp.png │ │ ├── shapeshifter.png │ │ ├── siren_new.png │ │ ├── siren_old.png │ │ ├── siren_water_new.png │ │ ├── siren_water_old.png │ │ ├── slave_freed.png │ │ ├── sphinx_new.png │ │ ├── sphinx_old.png │ │ ├── spriggan │ │ │ ├── spriggan.png │ │ │ ├── spriggan_air_mage.png │ │ │ ├── spriggan_defender.png │ │ │ ├── spriggan_druid.png │ │ │ └── spriggan_rider.png │ │ ├── spriggan_berserker.png │ │ ├── spriggan_defender_shieldless.png │ │ ├── spriggan_enchanter.png │ │ ├── spriggan_rider.png │ │ ├── statues │ │ │ ├── air_elementalist_statue.png │ │ │ ├── block_of_ice.png │ │ │ ├── block_of_ice_2.png │ │ │ ├── chilling_statue.png │ │ │ ├── dark_vine_statue_base_new.png │ │ │ ├── dark_vine_statue_base_old.png │ │ │ ├── earth_elementalist_statue.png │ │ │ ├── fire_elementalist_statue.png │ │ │ ├── firespitter_statue_new.png │ │ │ ├── firespitter_statue_old.png │ │ │ ├── guardian-eyeclosed-flame_1.png │ │ │ ├── guardian-eyeclosed-flame_2.png │ │ │ ├── guardian-eyeclosed-flame_3.png │ │ │ ├── guardian-eyeclosed-flame_4.png │ │ │ ├── guardian-eyeopen-flame_1.png │ │ │ ├── guardian-eyeopen-flame_2.png │ │ │ ├── guardian-eyeopen-flame_3.png │ │ │ ├── guardian-eyeopen-flame_4.png │ │ │ ├── ice_statue.png │ │ │ ├── light_vine_statue_base_new.png │ │ │ ├── light_vine_statue_base_old.png │ │ │ ├── obelisk.png │ │ │ ├── orange_crystal_statue_new.png │ │ │ ├── orange_crystal_statue_old.png │ │ │ ├── overlay_axe_new.png │ │ │ ├── overlay_axe_old.png │ │ │ ├── overlay_bow_new.png │ │ │ ├── overlay_bow_old.png │ │ │ ├── overlay_crossbow_new.png │ │ │ ├── overlay_crossbow_old.png │ │ │ ├── overlay_mace_new.png │ │ │ ├── overlay_mace_old.png │ │ │ ├── overlay_mage.png │ │ │ ├── overlay_mage_hat_new.png │ │ │ ├── overlay_mage_hat_old.png │ │ │ ├── overlay_scythe_new.png │ │ │ ├── overlay_scythe_old.png │ │ │ ├── overlay_sword_new.png │ │ │ ├── overlay_sword_old.png │ │ │ ├── overlay_whip_new.png │ │ │ ├── overlay_whip_old.png │ │ │ ├── pillar_of_salt.png │ │ │ ├── silver_statue.png │ │ │ ├── snail_statue.png │ │ │ ├── spooky_statue.png │ │ │ ├── statue_base_new.png │ │ │ ├── statue_base_old.png │ │ │ ├── training_dummy_new.png │ │ │ ├── training_dummy_old.png │ │ │ ├── water_elementalist_statue.png │ │ │ ├── wucad_mu_statue_new.png │ │ │ ├── wucad_mu_statue_old.png │ │ │ └── zot_statue.png │ │ ├── stone_giant_new.png │ │ ├── stone_giant_old.png │ │ ├── swamp_drake.png │ │ ├── tengu.png │ │ ├── tengu_conjurer.png │ │ ├── tengu_reaver.png │ │ ├── tengu_warrior.png │ │ ├── tentacles │ │ │ ├── eldritch_corners │ │ │ │ ├── eldritch_corner_northeast.png │ │ │ │ ├── eldritch_corner_northwest.png │ │ │ │ ├── eldritch_corner_southeast.png │ │ │ │ └── eldritch_corner_southwest.png │ │ │ ├── eldritch_ends │ │ │ │ ├── eldritch_tentacle_1.png │ │ │ │ ├── eldritch_tentacle_10.png │ │ │ │ ├── eldritch_tentacle_2.png │ │ │ │ ├── eldritch_tentacle_3.png │ │ │ │ ├── eldritch_tentacle_4.png │ │ │ │ ├── eldritch_tentacle_5.png │ │ │ │ ├── eldritch_tentacle_6.png │ │ │ │ ├── eldritch_tentacle_7.png │ │ │ │ ├── eldritch_tentacle_8.png │ │ │ │ └── eldritch_tentacle_9.png │ │ │ ├── kraken_corners │ │ │ │ ├── kraken_corner_northeast.png │ │ │ │ ├── kraken_corner_northwest.png │ │ │ │ ├── kraken_corner_southeast.png │ │ │ │ └── kraken_corner_southwest.png │ │ │ ├── kraken_ends │ │ │ │ ├── kraken_tentacle_1.png │ │ │ │ ├── kraken_tentacle_2.png │ │ │ │ ├── kraken_tentacle_3.png │ │ │ │ ├── kraken_tentacle_4.png │ │ │ │ ├── kraken_tentacle_5.png │ │ │ │ └── kraken_tentacle_6.png │ │ │ ├── kraken_segments │ │ │ │ ├── kraken_tentacle_segment_east_northwest.png │ │ │ │ ├── kraken_tentacle_segment_east_southwest.png │ │ │ │ ├── kraken_tentacle_segment_north_southeast.png │ │ │ │ ├── kraken_tentacle_segment_north_southwest.png │ │ │ │ ├── kraken_tentacle_segment_northeast_northwest.png │ │ │ │ ├── kraken_tentacle_segment_northeast_southeast.png │ │ │ │ ├── kraken_tentacle_segment_northwest_southwest.png │ │ │ │ ├── kraken_tentacle_segment_south_northeast.png │ │ │ │ ├── kraken_tentacle_segment_south_northwest.png │ │ │ │ ├── kraken_tentacle_segment_southeast_southwest.png │ │ │ │ ├── kraken_tentacle_segment_west_northeast.png │ │ │ │ └── kraken_tentacle_segment_west_southeast.png │ │ │ ├── starspawn_corners │ │ │ │ ├── starspawn_corner_northeast.png │ │ │ │ ├── starspawn_corner_northwest.png │ │ │ │ ├── starspawn_corner_southeast.png │ │ │ │ └── starspawn_corner_southwest.png │ │ │ ├── starspawn_ends │ │ │ │ ├── starspawn_tentacle_east.png │ │ │ │ ├── starspawn_tentacle_north.png │ │ │ │ ├── starspawn_tentacle_northeast.png │ │ │ │ ├── starspawn_tentacle_northwest.png │ │ │ │ ├── starspawn_tentacle_south.png │ │ │ │ ├── starspawn_tentacle_southeast.png │ │ │ │ ├── starspawn_tentacle_southwest.png │ │ │ │ └── starspawn_tentacle_west.png │ │ │ ├── starspawn_segments │ │ │ │ ├── starspawn_tentacle_segment_east_north.png │ │ │ │ ├── starspawn_tentacle_segment_east_northwest.png │ │ │ │ ├── starspawn_tentacle_segment_east_south.png │ │ │ │ ├── starspawn_tentacle_segment_east_southwest.png │ │ │ │ ├── starspawn_tentacle_segment_east_west.png │ │ │ │ ├── starspawn_tentacle_segment_north_south.png │ │ │ │ ├── starspawn_tentacle_segment_north_southeast.png │ │ │ │ ├── starspawn_tentacle_segment_north_southwest.png │ │ │ │ ├── starspawn_tentacle_segment_north_west.png │ │ │ │ ├── starspawn_tentacle_segment_northeast_northwest.png │ │ │ │ ├── starspawn_tentacle_segment_northeast_southeast.png │ │ │ │ ├── starspawn_tentacle_segment_northeast_southwest.png │ │ │ │ ├── starspawn_tentacle_segment_northwest_southeast.png │ │ │ │ ├── starspawn_tentacle_segment_northwest_southwest.png │ │ │ │ ├── starspawn_tentacle_segment_south_northeast.png │ │ │ │ ├── starspawn_tentacle_segment_south_northwest.png │ │ │ │ ├── starspawn_tentacle_segment_south_west.png │ │ │ │ ├── starspawn_tentacle_segment_southeast_southwest.png │ │ │ │ ├── starspawn_tentacle_segment_west_northeast.png │ │ │ │ └── starspawn_tentacle_segment_west_southeast.png │ │ │ ├── vine_corners │ │ │ │ ├── vine_corner_northeast.png │ │ │ │ ├── vine_corner_northwest.png │ │ │ │ ├── vine_corner_southeast.png │ │ │ │ └── vine_corner_southwest.png │ │ │ ├── vine_ends │ │ │ │ ├── vine_east.png │ │ │ │ ├── vine_north.png │ │ │ │ ├── vine_northeast.png │ │ │ │ ├── vine_northwest.png │ │ │ │ ├── vine_south.png │ │ │ │ ├── vine_southeast.png │ │ │ │ ├── vine_southwest.png │ │ │ │ └── vine_west.png │ │ │ └── vine_segments │ │ │ │ ├── vine_segment_east_north.png │ │ │ │ ├── vine_segment_east_northeast.png │ │ │ │ ├── vine_segment_east_northwest.png │ │ │ │ ├── vine_segment_east_south.png │ │ │ │ ├── vine_segment_east_southeast.png │ │ │ │ ├── vine_segment_east_southwest.png │ │ │ │ ├── vine_segment_east_west.png │ │ │ │ ├── vine_segment_north_northeast.png │ │ │ │ ├── vine_segment_north_northwest.png │ │ │ │ ├── vine_segment_north_south.png │ │ │ │ ├── vine_segment_north_southeast.png │ │ │ │ ├── vine_segment_north_southwest.png │ │ │ │ ├── vine_segment_north_west.png │ │ │ │ ├── vine_segment_northeast_northwest.png │ │ │ │ ├── vine_segment_northeast_southeast.png │ │ │ │ ├── vine_segment_northeast_southwest.png │ │ │ │ ├── vine_segment_northwest_southeast.png │ │ │ │ ├── vine_segment_northwest_southwest.png │ │ │ │ ├── vine_segment_south_northeast.png │ │ │ │ ├── vine_segment_south_northwest.png │ │ │ │ ├── vine_segment_south_southeast.png │ │ │ │ ├── vine_segment_south_southwest.png │ │ │ │ ├── vine_segment_south_west.png │ │ │ │ ├── vine_segment_southeast_southwest.png │ │ │ │ ├── vine_segment_west_northeast.png │ │ │ │ ├── vine_segment_west_northwest.png │ │ │ │ ├── vine_segment_west_southeast.png │ │ │ │ └── vine_segment_west_southwest.png │ │ ├── thugs │ │ │ ├── basic_assassin.png │ │ │ ├── cultist.png │ │ │ └── mutanter_cultist.png │ │ ├── titan_new.png │ │ ├── titan_old.png │ │ ├── troll.png │ │ ├── two_headed_ogre_new.png │ │ ├── two_headed_ogre_old.png │ │ ├── undead │ │ │ ├── ancient_lich_new.png │ │ │ ├── ancient_lich_old.png │ │ │ ├── bog_body.png │ │ │ ├── bone_dragon_new.png │ │ │ ├── bone_dragon_old.png │ │ │ ├── crawling_corpse.png │ │ │ ├── curse_skull.png │ │ │ ├── curse_toe.png │ │ │ ├── death_cob.png │ │ │ ├── drowned_soul.png │ │ │ ├── eidolon.png │ │ │ ├── flayed_ghost_new.png │ │ │ ├── flayed_ghost_old.png │ │ │ ├── flying_skull.png │ │ │ ├── freezing_wraith.png │ │ │ ├── ghost_new.png │ │ │ ├── ghost_old.png │ │ │ ├── ghoul.png │ │ │ ├── greater_mummy.png │ │ │ ├── guardian_mummy.png │ │ │ ├── hungry_ghost.png │ │ │ ├── jiangshi.png │ │ │ ├── lich.png │ │ │ ├── lost_soul.png │ │ │ ├── macabre_mass.png │ │ │ ├── manes.png │ │ │ ├── missing_ghost.png │ │ │ ├── mummy.png │ │ │ ├── mummy_priest.png │ │ │ ├── necrophage_new.png │ │ │ ├── necrophage_old.png │ │ │ ├── phantasmal_warrior.png │ │ │ ├── phantom_new.png │ │ │ ├── phantom_old.png │ │ │ ├── profane_servitor.png │ │ │ ├── revenant.png │ │ │ ├── rotting_hulk_new.png │ │ │ ├── rotting_hulk_old.png │ │ │ ├── shadow_new.png │ │ │ ├── shadow_old.png │ │ │ ├── shadow_wraith.png │ │ │ ├── silent_spectre.png │ │ │ ├── simulacra │ │ │ │ ├── simulacrum_ant.png │ │ │ │ ├── simulacrum_bat.png │ │ │ │ ├── simulacrum_bee.png │ │ │ │ ├── simulacrum_centaur.png │ │ │ │ ├── simulacrum_dragon.png │ │ │ │ ├── simulacrum_drake.png │ │ │ │ ├── simulacrum_fish.png │ │ │ │ ├── simulacrum_hydra_1.png │ │ │ │ ├── simulacrum_hydra_2.png │ │ │ │ ├── simulacrum_hydra_3.png │ │ │ │ ├── simulacrum_hydra_4.png │ │ │ │ ├── simulacrum_hydra_5.png │ │ │ │ ├── simulacrum_kraken.png │ │ │ │ ├── simulacrum_large_new.png │ │ │ │ ├── simulacrum_large_old.png │ │ │ │ ├── simulacrum_lizard.png │ │ │ │ ├── simulacrum_naga.png │ │ │ │ ├── simulacrum_quadruped_large.png │ │ │ │ ├── simulacrum_quadruped_small.png │ │ │ │ ├── simulacrum_small_new.png │ │ │ │ ├── simulacrum_small_old.png │ │ │ │ ├── simulacrum_snake.png │ │ │ │ └── simulacrum_spider.png │ │ │ ├── skeletal_warrior_new.png │ │ │ ├── skeletal_warrior_old.png │ │ │ ├── skeletons │ │ │ │ ├── skeleton_bat.png │ │ │ │ ├── skeleton_centaur.png │ │ │ │ ├── skeleton_dragon.png │ │ │ │ ├── skeleton_fish.png │ │ │ │ ├── skeleton_humanoid_large_new.png │ │ │ │ ├── skeleton_humanoid_large_old.png │ │ │ │ ├── skeleton_humanoid_small_new.png │ │ │ │ ├── skeleton_humanoid_small_old.png │ │ │ │ ├── skeleton_hydra_1_new.png │ │ │ │ ├── skeleton_hydra_1_old.png │ │ │ │ ├── skeleton_hydra_2_new.png │ │ │ │ ├── skeleton_hydra_2_old.png │ │ │ │ ├── skeleton_hydra_3_new.png │ │ │ │ ├── skeleton_hydra_3_old.png │ │ │ │ ├── skeleton_hydra_4_new.png │ │ │ │ ├── skeleton_hydra_4_old.png │ │ │ │ ├── skeleton_hydra_5_new.png │ │ │ │ ├── skeleton_hydra_5_old.png │ │ │ │ ├── skeleton_naga.png │ │ │ │ ├── skeleton_quadruped_large_new.png │ │ │ │ ├── skeleton_quadruped_large_old.png │ │ │ │ ├── skeleton_quadruped_small.png │ │ │ │ ├── skeleton_small.png │ │ │ │ ├── skeleton_snake.png │ │ │ │ └── skeleton_ugly_thing.png │ │ │ ├── spectral_warrior.png │ │ │ ├── spectrals │ │ │ │ ├── spectral_ant_new.png │ │ │ │ ├── spectral_ant_old.png │ │ │ │ ├── spectral_bat_new.png │ │ │ │ ├── spectral_bat_old.png │ │ │ │ ├── spectral_bee_new.png │ │ │ │ ├── spectral_bee_old.png │ │ │ │ ├── spectral_centaur_new.png │ │ │ │ ├── spectral_centaur_old.png │ │ │ │ ├── spectral_dragon_new.png │ │ │ │ ├── spectral_dragon_old.png │ │ │ │ ├── spectral_drake.png │ │ │ │ ├── spectral_fish_new.png │ │ │ │ ├── spectral_fish_old.png │ │ │ │ ├── spectral_hydra_1_new.png │ │ │ │ ├── spectral_hydra_1_old.png │ │ │ │ ├── spectral_hydra_2_new.png │ │ │ │ ├── spectral_hydra_2_old.png │ │ │ │ ├── spectral_hydra_3_new.png │ │ │ │ ├── spectral_hydra_3_old.png │ │ │ │ ├── spectral_hydra_4_new.png │ │ │ │ ├── spectral_hydra_4_old.png │ │ │ │ ├── spectral_hydra_5_new.png │ │ │ │ ├── spectral_hydra_5_old.png │ │ │ │ ├── spectral_kraken.png │ │ │ │ ├── spectral_large.png │ │ │ │ ├── spectral_lizard.png │ │ │ │ ├── spectral_naga_new.png │ │ │ │ ├── spectral_naga_old.png │ │ │ │ ├── spectral_quadruped_large_new.png │ │ │ │ ├── spectral_quadruped_large_old.png │ │ │ │ ├── spectral_quadruped_small_new.png │ │ │ │ ├── spectral_quadruped_small_old.png │ │ │ │ ├── spectral_small.png │ │ │ │ ├── spectral_snake_new.png │ │ │ │ ├── spectral_snake_old.png │ │ │ │ ├── spectral_spider_new.png │ │ │ │ ├── spectral_spider_old.png │ │ │ │ ├── spectral_thing.png │ │ │ │ └── spectral_worm.png │ │ │ ├── unborn.png │ │ │ ├── vampire_knight_new.png │ │ │ ├── vampire_knight_old.png │ │ │ ├── vampire_mage_new.png │ │ │ ├── vampire_mage_old.png │ │ │ ├── vampire_new.png │ │ │ ├── vampire_old.png │ │ │ ├── wight_king.png │ │ │ ├── wight_new.png │ │ │ ├── wight_old.png │ │ │ ├── wraith.png │ │ │ ├── zombies │ │ │ │ ├── zombie_crab.png │ │ │ │ ├── zombie_drake.png │ │ │ │ ├── zombie_hound.png │ │ │ │ ├── zombie_kraken_head.png │ │ │ │ ├── zombie_lizard.png │ │ │ │ ├── zombie_octopode.png │ │ │ │ ├── zombie_ogre.png │ │ │ │ ├── zombie_rat.png │ │ │ │ ├── zombie_small.png │ │ │ │ ├── zombie_toad.png │ │ │ │ ├── zombie_turtle.png │ │ │ │ └── zombie_ugly_thing.png │ │ │ ├── zonguldrok_lich_1.png │ │ │ └── zonguldrok_lich_2.png │ │ ├── unique │ │ │ ├── agnes_new.png │ │ │ ├── agnes_old.png │ │ │ ├── aizul_new.png │ │ │ ├── aizul_old.png │ │ │ ├── antaeus.png │ │ │ ├── asmodeus.png │ │ │ ├── asmodeus_bottom.png │ │ │ ├── asmodeus_small.png │ │ │ ├── asmodeus_top.png │ │ │ ├── azrael.png │ │ │ ├── blork_the_orc_new.png │ │ │ ├── blork_the_orc_old.png │ │ │ ├── boris_new.png │ │ │ ├── boris_old.png │ │ │ ├── cerebov.png │ │ │ ├── cerebov_bottom.png │ │ │ ├── cerebov_top.png │ │ │ ├── chuck.png │ │ │ ├── crazy_yiuf.png │ │ │ ├── dispater.png │ │ │ ├── dispater_bottom.png │ │ │ ├── dispater_small.png │ │ │ ├── dispater_top.png │ │ │ ├── dissolution_new.png │ │ │ ├── dissolution_old.png │ │ │ ├── donald.png │ │ │ ├── donald_new.png │ │ │ ├── donald_old.png │ │ │ ├── duane.png │ │ │ ├── edmund_new.png │ │ │ ├── edmund_old.png │ │ │ ├── enchantress.png │ │ │ ├── ereshkigal.png │ │ │ ├── ereshkigal_bottom.png │ │ │ ├── ereshkigal_small.png │ │ │ ├── ereshkigal_top.png │ │ │ ├── erica_new.png │ │ │ ├── erica_old.png │ │ │ ├── erolcha_new.png │ │ │ ├── erolcha_old.png │ │ │ ├── eustachio_new.png │ │ │ ├── eustachio_old.png │ │ │ ├── fannar.png │ │ │ ├── frances.png │ │ │ ├── frances_male.png │ │ │ ├── francis.png │ │ │ ├── frederick_new.png │ │ │ ├── frederick_old.png │ │ │ ├── gastronok_new.png │ │ │ ├── gastronok_old.png │ │ │ ├── geryon_new.png │ │ │ ├── geryon_old.png │ │ │ ├── giaggostuono.png │ │ │ ├── gloorx_vloq.png │ │ │ ├── gloorx_vloq_bottom.png │ │ │ ├── gloorx_vloq_top.png │ │ │ ├── grinder_cleaver.png │ │ │ ├── grinder_new.png │ │ │ ├── grinder_old.png │ │ │ ├── grum.png │ │ │ ├── harold.png │ │ │ ├── ignacio.png │ │ │ ├── ijyb_new.png │ │ │ ├── ijyb_old.png │ │ │ ├── ilsuiw_new.png │ │ │ ├── ilsuiw_old.png │ │ │ ├── ilsuiw_water_new.png │ │ │ ├── ilsuiw_water_old.png │ │ │ ├── iron_giant.png │ │ │ ├── jessica_new.png │ │ │ ├── jessica_old.png │ │ │ ├── jorgrun.png │ │ │ ├── jormungandr.png │ │ │ ├── jory.png │ │ │ ├── joseph_new.png │ │ │ ├── joseph_old.png │ │ │ ├── josephine_new.png │ │ │ ├── josephine_old.png │ │ │ ├── jozef.png │ │ │ ├── kirke_new.png │ │ │ ├── kirke_old.png │ │ │ ├── lamia.png │ │ │ ├── lernaean_hydra.png │ │ │ ├── lernaean_hydra_10_top.png │ │ │ ├── lernaean_hydra_1_bottom.png │ │ │ ├── lernaean_hydra_1_top.png │ │ │ ├── lernaean_hydra_2_top.png │ │ │ ├── lernaean_hydra_3_top.png │ │ │ ├── lernaean_hydra_4_top.png │ │ │ ├── lernaean_hydra_5_bottom.png │ │ │ ├── lernaean_hydra_5_top.png │ │ │ ├── lernaean_hydra_6_top.png │ │ │ ├── lernaean_hydra_7_bottom.png │ │ │ ├── lernaean_hydra_7_top.png │ │ │ ├── lernaean_hydra_8_bottom.png │ │ │ ├── lernaean_hydra_9_bottom.png │ │ │ ├── lernaean_hydra_9_top.png │ │ │ ├── leshy.png │ │ │ ├── lom_lobon.png │ │ │ ├── lom_lobon_bottom.png │ │ │ ├── lom_lobon_top.png │ │ │ ├── louise.png │ │ │ ├── mara.png │ │ │ ├── margery_new.png │ │ │ ├── margery_old.png │ │ │ ├── maud_new.png │ │ │ ├── maud_old.png │ │ │ ├── maurice_new.png │ │ │ ├── maurice_old.png │ │ │ ├── menkaure.png │ │ │ ├── mennas.png │ │ │ ├── michael.png │ │ │ ├── mnoleg.png │ │ │ ├── mnoleg_bottom.png │ │ │ ├── mnoleg_top.png │ │ │ ├── murray.png │ │ │ ├── natasha.png │ │ │ ├── nellie_new.png │ │ │ ├── nellie_old.png │ │ │ ├── nergalle_new.png │ │ │ ├── nergalle_old.png │ │ │ ├── nessos_new.png │ │ │ ├── nessos_old.png │ │ │ ├── norbert.png │ │ │ ├── norris.png │ │ │ ├── norris_with_board.png │ │ │ ├── polyphemus_new.png │ │ │ ├── polyphemus_old.png │ │ │ ├── prince_ribbit.png │ │ │ ├── psyche_new.png │ │ │ ├── psyche_old.png │ │ │ ├── purgy_new.png │ │ │ ├── purgy_old.png │ │ │ ├── robin.png │ │ │ ├── roxanne_new.png │ │ │ ├── roxanne_old.png │ │ │ ├── royal_jelly.png │ │ │ ├── royal_jelly_bottom.png │ │ │ ├── royal_jelly_top.png │ │ │ ├── rupert_new.png │ │ │ ├── rupert_old.png │ │ │ ├── saint_roka_new.png │ │ │ ├── saint_roka_old.png │ │ │ ├── serpent_of_hell-coc_bottom.png │ │ │ ├── serpent_of_hell-coc_top.png │ │ │ ├── serpent_of_hell-dis_bottom.png │ │ │ ├── serpent_of_hell-dis_top.png │ │ │ ├── serpent_of_hell-geh_bottom.png │ │ │ ├── serpent_of_hell-geh_top.png │ │ │ ├── serpent_of_hell-tar_bottom.png │ │ │ ├── serpent_of_hell-tar_top.png │ │ │ ├── serpent_of_hell.png │ │ │ ├── sigmund_new.png │ │ │ ├── sigmund_old.png │ │ │ ├── snorg_new.png │ │ │ ├── snorg_old.png │ │ │ ├── sojobo.png │ │ │ ├── sonja_new.png │ │ │ ├── sonja_old.png │ │ │ ├── terence_new.png │ │ │ ├── terence_old.png │ │ │ ├── tiamat.png │ │ │ ├── tiamat_black.png │ │ │ ├── tiamat_green.png │ │ │ ├── tiamat_grey.png │ │ │ ├── tiamat_mottled.png │ │ │ ├── tiamat_pale.png │ │ │ ├── tiamat_red.png │ │ │ ├── tiamat_white.png │ │ │ ├── tiamat_yellow.png │ │ │ ├── urug_new.png │ │ │ ├── urug_old.png │ │ │ ├── vashnia.png │ │ │ ├── wiglaf_new.png │ │ │ ├── wiglaf_old.png │ │ │ ├── xtahua_new.png │ │ │ └── xtahua_old.png │ │ ├── vault │ │ │ ├── cigotuvis_monster.png │ │ │ ├── deformed_elf.png │ │ │ ├── deformed_human.png │ │ │ ├── deformed_orc.png │ │ │ ├── demonspawn_monk_ghost.png │ │ │ ├── draconian_monk_ghost.png │ │ │ ├── gigabat.png │ │ │ ├── hell_wizard_100.png │ │ │ ├── hell_wizard_50.png │ │ │ ├── hell_wizard_75.png │ │ │ ├── hellbinder.png │ │ │ ├── megabat.png │ │ │ ├── microbat.png │ │ │ ├── moon_troll.png │ │ │ ├── phase_bat.png │ │ │ ├── vault_guard_new.png │ │ │ ├── vault_guard_old.png │ │ │ ├── vault_sentinel.png │ │ │ └── vault_warden.png │ │ ├── water_nymph.png │ │ ├── wizard.png │ │ ├── yaktaur-melee_new.png │ │ ├── yaktaur-melee_old.png │ │ ├── yaktaur_captain-melee_new.png │ │ ├── yaktaur_captain-melee_old.png │ │ ├── yaktaur_captain_new.png │ │ ├── yaktaur_captain_old.png │ │ ├── yaktaur_new.png │ │ └── yaktaur_old.png │ └── player │ │ ├── barding │ │ ├── black_knight.png │ │ ├── centaur_barding_blue.png │ │ ├── centaur_barding_magenta.png │ │ ├── centaur_barding_metal.png │ │ ├── centaur_barding_red.png │ │ ├── lightning_scales.png │ │ ├── naga_barding_blue.png │ │ ├── naga_barding_magenta.png │ │ ├── naga_barding_metal.png │ │ └── naga_barding_red.png │ │ ├── base │ │ ├── centaur_brown_female.png │ │ ├── centaur_brown_male.png │ │ ├── centaur_darkbrown_female.png │ │ ├── centaur_darkbrown_male.png │ │ ├── centaur_darkgrey_female.png │ │ ├── centaur_darkgrey_male.png │ │ ├── centaur_lightbrown_female.png │ │ ├── centaur_lightbrown_male.png │ │ ├── centaur_lightgrey_female.png │ │ ├── centaur_lightgrey_male.png │ │ ├── deep_dwarf_female.png │ │ ├── deep_dwarf_male.png │ │ ├── deep_elf_female.png │ │ ├── deep_elf_male.png │ │ ├── demigod_male.png │ │ ├── demonspawn_black_female.png │ │ ├── demonspawn_black_male.png │ │ ├── demonspawn_pink.png │ │ ├── demonspawn_red_female.png │ │ ├── demonspawn_red_male.png │ │ ├── draconian_black_female.png │ │ ├── draconian_black_male.png │ │ ├── draconian_female.png │ │ ├── draconian_gold_female.png │ │ ├── draconian_gold_male.png │ │ ├── draconian_gray_female.png │ │ ├── draconian_gray_male.png │ │ ├── draconian_green_female.png │ │ ├── draconian_green_male.png │ │ ├── draconian_male.png │ │ ├── draconian_mottled_female.png │ │ ├── draconian_mottled_male.png │ │ ├── draconian_pale_female.png │ │ ├── draconian_pale_male.png │ │ ├── draconian_purple_female.png │ │ ├── draconian_purple_male.png │ │ ├── draconian_red_female.png │ │ ├── draconian_red_male.png │ │ ├── draconian_white_female.png │ │ ├── draconian_white_male.png │ │ ├── dwarf_female.png │ │ ├── dwarf_male.png │ │ ├── elf_female.png │ │ ├── elf_male.png │ │ ├── formicid.png │ │ ├── gargoyle_female.png │ │ ├── gargoyle_male.png │ │ ├── ghoul.png │ │ ├── ghoul_2_female.png │ │ ├── ghoul_2_male.png │ │ ├── gnome_female.png │ │ ├── gnome_male.png │ │ ├── halfling_female.png │ │ ├── halfling_male.png │ │ ├── human_female.png │ │ ├── human_male.png │ │ ├── kenku_winged_female.png │ │ ├── kenku_winged_male.png │ │ ├── kenku_wingless_female.png │ │ ├── kenku_wingless_male.png │ │ ├── kobold_female_new.png │ │ ├── kobold_female_old.png │ │ ├── kobold_male_new.png │ │ ├── kobold_male_old.png │ │ ├── lorc_female_0.png │ │ ├── lorc_female_1.png │ │ ├── lorc_female_2.png │ │ ├── lorc_female_3.png │ │ ├── lorc_female_4.png │ │ ├── lorc_female_5.png │ │ ├── lorc_female_6.png │ │ ├── lorc_male_0.png │ │ ├── lorc_male_1.png │ │ ├── lorc_male_2.png │ │ ├── lorc_male_3.png │ │ ├── lorc_male_4.png │ │ ├── lorc_male_5.png │ │ ├── lorc_male_6.png │ │ ├── merfolk_female.png │ │ ├── merfolk_male.png │ │ ├── merfolk_water_female.png │ │ ├── merfolk_water_male.png │ │ ├── minotaur_brown_1_male.png │ │ ├── minotaur_brown_2_male.png │ │ ├── minotaur_female.png │ │ ├── minotaur_male.png │ │ ├── mummy_female.png │ │ ├── mummy_male.png │ │ ├── naga_blue_female.png │ │ ├── naga_blue_male.png │ │ ├── naga_darkgreen_female.png │ │ ├── naga_darkgreen_male.png │ │ ├── naga_female.png │ │ ├── naga_lightgreen_female.png │ │ ├── naga_lightgreen_male.png │ │ ├── naga_male.png │ │ ├── naga_red_female.png │ │ ├── naga_red_male.png │ │ ├── octopode_1.png │ │ ├── octopode_2.png │ │ ├── octopode_3.png │ │ ├── octopode_4.png │ │ ├── octopode_5.png │ │ ├── ogre_female.png │ │ ├── ogre_male.png │ │ ├── orc_female.png │ │ ├── orc_male.png │ │ ├── shadow.png │ │ ├── spriggan_female.png │ │ ├── spriggan_male.png │ │ ├── tengu_wingless_brown_female.png │ │ ├── tengu_wingless_brown_male.png │ │ ├── troll_female.png │ │ ├── troll_male.png │ │ ├── vampire_female.png │ │ └── vampire_male.png │ │ ├── beard │ │ ├── long_black.png │ │ ├── long_green.png │ │ ├── long_red.png │ │ ├── long_white.png │ │ ├── long_yellow.png │ │ ├── pj.png │ │ ├── short_black.png │ │ ├── short_green.png │ │ ├── short_red.png │ │ ├── short_white.png │ │ └── short_yellow.png │ │ ├── body │ │ ├── animal_skin.png │ │ ├── aragorn.png │ │ ├── aragorn_2.png │ │ ├── armor_blue_gold.png │ │ ├── armor_mummy.png │ │ ├── arwen.png │ │ ├── banded.png │ │ ├── banded_2.png │ │ ├── belt_1.png │ │ ├── belt_2.png │ │ ├── bikini_red.png │ │ ├── bloody.png │ │ ├── boromir.png │ │ ├── bplate_green.png │ │ ├── bplate_metal_1.png │ │ ├── breast_black.png │ │ ├── chainmail.png │ │ ├── chainmail_3.png │ │ ├── china_red.png │ │ ├── china_red_2.png │ │ ├── chunli.png │ │ ├── coat_black.png │ │ ├── coat_red.png │ │ ├── crystal_plate.png │ │ ├── dragon_armor_blue_new.png │ │ ├── dragon_armor_blue_old.png │ │ ├── dragon_armor_brown_new.png │ │ ├── dragon_armor_brown_old.png │ │ ├── dragon_armor_cyan_new.png │ │ ├── dragon_armor_cyan_old.png │ │ ├── dragon_armor_gold_new.png │ │ ├── dragon_armor_gold_old.png │ │ ├── dragon_armor_green.png │ │ ├── dragon_armor_magenta_new.png │ │ ├── dragon_armor_magenta_old.png │ │ ├── dragon_armor_pearl.png │ │ ├── dragon_armor_quicksilver.png │ │ ├── dragon_armor_shadow.png │ │ ├── dragon_armor_white_new.png │ │ ├── dragon_armor_white_old.png │ │ ├── dragon_scale_blue_new.png │ │ ├── dragon_scale_blue_old.png │ │ ├── dragon_scale_brown_new.png │ │ ├── dragon_scale_brown_old.png │ │ ├── dragon_scale_cyan_new.png │ │ ├── dragon_scale_cyan_old.png │ │ ├── dragon_scale_gold_new.png │ │ ├── dragon_scale_gold_old.png │ │ ├── dragon_scale_green.png │ │ ├── dragon_scale_magenta_new.png │ │ ├── dragon_scale_magenta_old.png │ │ ├── dragon_scale_pearl.png │ │ ├── dragon_scale_quicksilver.png │ │ ├── dragon_scale_shadow.png │ │ ├── dragon_scale_white_new.png │ │ ├── dragon_scale_white_old.png │ │ ├── dress_green.png │ │ ├── dress_white.png │ │ ├── faerie_dragon_armor.png │ │ ├── frodo.png │ │ ├── gandalf_g.png │ │ ├── gil-galad.png │ │ ├── gimli.png │ │ ├── green_chain.png │ │ ├── green_susp.png │ │ ├── half_plate.png │ │ ├── half_plate_2.png │ │ ├── half_plate_3.png │ │ ├── isildur.png │ │ ├── jacket_2.png │ │ ├── jacket_3.png │ │ ├── jacket_stud.png │ │ ├── jessica.png │ │ ├── karate.png │ │ ├── karate_2.png │ │ ├── lears_chain_mail.png │ │ ├── leather_2.png │ │ ├── leather_armor.png │ │ ├── leather_armor_2.png │ │ ├── leather_armor_3.png │ │ ├── leather_green.png │ │ ├── leather_heavy.png │ │ ├── leather_jacket.png │ │ ├── leather_metal.png │ │ ├── leather_red.png │ │ ├── leather_short.png │ │ ├── leather_stud.png │ │ ├── legolas.png │ │ ├── maxwell_new.png │ │ ├── maxwell_old.png │ │ ├── merry.png │ │ ├── mesh_black.png │ │ ├── mesh_red.png │ │ ├── metal_blue.png │ │ ├── monk_black.png │ │ ├── monk_blue.png │ │ ├── neck.png │ │ ├── orange_crystal.png │ │ ├── outfits │ │ │ └── spy_outfit.png │ │ ├── pipin.png │ │ ├── pj.png │ │ ├── plate.png │ │ ├── plate_2.png │ │ ├── plate_and_cloth.png │ │ ├── plate_and_cloth_2.png │ │ ├── plate_black.png │ │ ├── ringmail.png │ │ ├── robe_black.png │ │ ├── robe_black_gold.png │ │ ├── robe_black_hood.png │ │ ├── robe_black_red.png │ │ ├── robe_blue.png │ │ ├── robe_blue_green.png │ │ ├── robe_blue_white.png │ │ ├── robe_brown.png │ │ ├── robe_brown_2.png │ │ ├── robe_brown_3.png │ │ ├── robe_clouds.png │ │ ├── robe_cyan.png │ │ ├── robe_gray_2.png │ │ ├── robe_green.png │ │ ├── robe_green_gold.png │ │ ├── robe_jester.png │ │ ├── robe_misfortune.png │ │ ├── robe_of_night.png │ │ ├── robe_purple.png │ │ ├── robe_rainbow.png │ │ ├── robe_red.png │ │ ├── robe_red_2.png │ │ ├── robe_red_3.png │ │ ├── robe_red_gold.png │ │ ├── robe_white.png │ │ ├── robe_white_2.png │ │ ├── robe_white_blue.png │ │ ├── robe_white_green.png │ │ ├── robe_white_red.png │ │ ├── robe_yellow.png │ │ ├── sam.png │ │ ├── saruman.png │ │ ├── scalemail.png │ │ ├── scalemail_2.png │ │ ├── shirt_black.png │ │ ├── shirt_black_3.png │ │ ├── shirt_black_and_cloth.png │ │ ├── shirt_blue.png │ │ ├── shirt_check.png │ │ ├── shirt_hawaii.png │ │ ├── shirt_vest.png │ │ ├── shirt_white_1.png │ │ ├── shirt_white_2.png │ │ ├── shirt_white_3.png │ │ ├── shirt_white_yellow.png │ │ ├── shoulder_pad.png │ │ ├── skirt_onep_grey.png │ │ ├── slit_black.png │ │ ├── susp_black.png │ │ ├── troll_hide.png │ │ ├── vanhel_1.png │ │ ├── vest_red.png │ │ ├── vest_red_2.png │ │ └── zhor.png │ │ ├── boots │ │ ├── blue_gold.png │ │ ├── hooves.png │ │ ├── long_red.png │ │ ├── long_white.png │ │ ├── mesh_black.png │ │ ├── mesh_blue.png │ │ ├── mesh_red.png │ │ ├── mesh_white.png │ │ ├── middle_brown.png │ │ ├── middle_brown_2.png │ │ ├── middle_brown_3.png │ │ ├── middle_gold.png │ │ ├── middle_gray.png │ │ ├── middle_green.png │ │ ├── middle_purple.png │ │ ├── middle_ybrown.png │ │ ├── pj.png │ │ ├── short_brown.png │ │ ├── short_brown_2.png │ │ ├── short_purple.png │ │ ├── short_red.png │ │ └── spider.png │ │ ├── cloak │ │ ├── black.png │ │ ├── blue.png │ │ ├── brown.png │ │ ├── cyan.png │ │ ├── dragonskin.png │ │ ├── gray.png │ │ ├── green.png │ │ ├── magenta.png │ │ ├── ratskin.png │ │ ├── red.png │ │ ├── white.png │ │ └── yellow.png │ │ ├── draconic_head │ │ ├── draconic_head_black.png │ │ ├── draconic_head_brown.png │ │ ├── draconic_head_green.png │ │ ├── draconic_head_grey.png │ │ ├── draconic_head_mottled.png │ │ ├── draconic_head_pale.png │ │ ├── draconic_head_purple.png │ │ ├── draconic_head_red.png │ │ ├── draconic_head_white.png │ │ └── draconic_head_yellow.png │ │ ├── draconic_wing │ │ ├── draconic_wing_black.png │ │ ├── draconic_wing_brown.png │ │ ├── draconic_wing_green.png │ │ ├── draconic_wing_grey.png │ │ ├── draconic_wing_mottled.png │ │ ├── draconic_wing_pale.png │ │ ├── draconic_wing_purple.png │ │ ├── draconic_wing_red.png │ │ ├── draconic_wing_white.png │ │ └── draconic_wing_yellow.png │ │ ├── enchantment │ │ └── sticky_flame.png │ │ ├── felids │ │ ├── cat_10.png │ │ ├── cat_6.png │ │ ├── cat_7.png │ │ ├── cat_8.png │ │ └── cat_9.png │ │ ├── gloves │ │ ├── claws.png │ │ ├── gauntlet_blue.png │ │ ├── glove_black.png │ │ ├── glove_black_2.png │ │ ├── glove_blue.png │ │ ├── glove_brown.png │ │ ├── glove_chunli.png │ │ ├── glove_gold.png │ │ ├── glove_gray.png │ │ ├── glove_grayfist.png │ │ ├── glove_orange.png │ │ ├── glove_purple.png │ │ ├── glove_red.png │ │ ├── glove_short_blue.png │ │ ├── glove_short_gray.png │ │ ├── glove_short_green.png │ │ ├── glove_short_green.png - Raccourci.lnk │ │ ├── glove_short_red.png │ │ ├── glove_short_white.png │ │ ├── glove_short_yellow.png │ │ ├── glove_white.png │ │ └── glove_wrist_purple.png │ │ ├── hair │ │ ├── aragorn.png │ │ ├── arwen.png │ │ ├── boromir.png │ │ ├── brown_1.png │ │ ├── brown_2.png │ │ ├── djinn_1.png │ │ ├── djinn_2.png │ │ ├── elf_black.png │ │ ├── elf_red.png │ │ ├── elf_white.png │ │ ├── elf_yellow.png │ │ ├── fem_black.png │ │ ├── fem_red.png │ │ ├── fem_white.png │ │ ├── fem_yellow.png │ │ ├── frodo.png │ │ ├── green.png │ │ ├── knot_red.png │ │ ├── legolas.png │ │ ├── long_black.png │ │ ├── long_red.png │ │ ├── long_white.png │ │ ├── long_yellow.png │ │ ├── merry.png │ │ ├── pigtail_red.png │ │ ├── pigtails_brown.png │ │ ├── pigtails_yellow.png │ │ ├── pj.png │ │ ├── ponytail_yellow.png │ │ ├── sam.png │ │ ├── short_black.png │ │ ├── short_red.png │ │ ├── short_white.png │ │ ├── short_yellow.png │ │ └── tengu_comb.png │ │ ├── halo │ │ └── halo_player.png │ │ ├── hand_left │ │ ├── boromir.png │ │ ├── buckler_green.png │ │ ├── buckler_rb.png │ │ ├── buckler_round_2.png │ │ ├── buckler_round_3.png │ │ ├── buckler_spiral.png │ │ ├── bullseye.png │ │ ├── gil-galad.png │ │ ├── gong.png │ │ ├── lshield_gold.png │ │ ├── lshield_green.png │ │ ├── lshield_long_red.png │ │ ├── lshield_louise.png │ │ ├── lshield_quartered.png │ │ ├── lshield_spiral.png │ │ ├── lshield_teal.png │ │ ├── misc │ │ │ ├── book_black.png │ │ │ ├── book_blue.png │ │ │ ├── book_blue_dim.png │ │ │ ├── book_cyan.png │ │ │ ├── book_cyan_dim.png │ │ │ ├── book_green.png │ │ │ ├── book_green_dim.png │ │ │ ├── book_magenta.png │ │ │ ├── book_magenta_dim.png │ │ │ ├── book_red.png │ │ │ ├── book_red_dim.png │ │ │ ├── book_sky.png │ │ │ ├── book_white.png │ │ │ ├── book_yellow.png │ │ │ ├── book_yellow_dim.png │ │ │ ├── dagger_new.png │ │ │ ├── dagger_old.png │ │ │ ├── fire_cyan.png │ │ │ ├── fire_dark.png │ │ │ ├── fire_green.png │ │ │ ├── fire_white.png │ │ │ ├── fire_white_2.png │ │ │ ├── flail_great.png │ │ │ ├── flail_great_2.png │ │ │ ├── giant_club.png │ │ │ ├── giant_club_plain.png │ │ │ ├── giant_club_slant.png │ │ │ ├── giant_club_spike.png │ │ │ ├── giant_club_spike_slant.png │ │ │ ├── great_mace.png │ │ │ ├── great_mace_2.png │ │ │ ├── lantern.png │ │ │ ├── light_blue.png │ │ │ ├── light_red.png │ │ │ ├── light_yellow.png │ │ │ ├── pj.png │ │ │ ├── rapier_2.png │ │ │ ├── sabre.png │ │ │ ├── short_sword_slant_2.png │ │ │ ├── short_sword_slant_new.png │ │ │ ├── short_sword_slant_old.png │ │ │ ├── spark.png │ │ │ ├── torch.png │ │ │ └── torch_2.png │ │ ├── shield_dd.png │ │ ├── shield_dd_scion.png │ │ ├── shield_diamond_yellow.png │ │ ├── shield_donald.png │ │ ├── shield_draconic_knight.png │ │ ├── shield_goblin.png │ │ ├── shield_holy.png │ │ ├── shield_kite_1.png │ │ ├── shield_kite_2.png │ │ ├── shield_kite_3.png │ │ ├── shield_kite_4.png │ │ ├── shield_knight_blue.png │ │ ├── shield_knight_gray.png │ │ ├── shield_knight_rw.png │ │ ├── shield_large_dd_dk.png │ │ ├── shield_long_cross.png │ │ ├── shield_long_red.png │ │ ├── shield_middle_black.png │ │ ├── shield_middle_brown.png │ │ ├── shield_middle_cyan.png │ │ ├── shield_middle_ethn.png │ │ ├── shield_middle_gray.png │ │ ├── shield_middle_round.png │ │ ├── shield_middle_unicorn.png │ │ ├── shield_of_ignorance.png │ │ ├── shield_of_resistance.png │ │ ├── shield_round_1.png │ │ ├── shield_round_2.png │ │ ├── shield_round_3.png │ │ ├── shield_round_4.png │ │ ├── shield_round_5.png │ │ ├── shield_round_6.png │ │ ├── shield_round_7.png │ │ ├── shield_round_small.png │ │ ├── shield_round_white.png │ │ ├── shield_shaman.png │ │ ├── shield_skull.png │ │ └── shield_spriggan.png │ │ ├── hand_right │ │ ├── aragorn.png │ │ ├── artefact │ │ │ ├── arc_blade.png │ │ │ ├── arga_new.png │ │ │ ├── arga_old.png │ │ │ ├── asmodeus_new.png │ │ │ ├── asmodeus_old.png │ │ │ ├── axe_of_woe.png │ │ │ ├── axe_trog.png │ │ │ ├── bloodbane_new.png │ │ │ ├── bloodbane_old.png │ │ │ ├── blowgun_assassin.png │ │ │ ├── botono.png │ │ │ ├── chilly_death_new.png │ │ │ ├── chilly_death_old.png │ │ │ ├── crossbow_fire.png │ │ │ ├── crystal_spear_new.png │ │ │ ├── crystal_spear_old.png │ │ │ ├── cutlass.png │ │ │ ├── dire_lajatang.png │ │ │ ├── dispater_new.png │ │ │ ├── dispater_old.png │ │ │ ├── doom_knight_new.png │ │ │ ├── doom_knight_old.png │ │ │ ├── elemental_staff.png │ │ │ ├── eos.png │ │ │ ├── finisher.png │ │ │ ├── firestarter.png │ │ │ ├── flaming_death_new.png │ │ │ ├── flaming_death_old.png │ │ │ ├── glaive_of_prune_new.png │ │ │ ├── glaive_of_prune_old.png │ │ │ ├── glaive_of_the_guard_new.png │ │ │ ├── glaive_of_the_guard_old.png │ │ │ ├── gyre.png │ │ │ ├── jihad.png │ │ │ ├── knife_of_accuracy.png │ │ │ ├── krishna.png │ │ │ ├── leech.png │ │ │ ├── mace_of_brilliance.png │ │ │ ├── mace_of_variability.png │ │ │ ├── majin.png │ │ │ ├── morg.png │ │ │ ├── olgreb.png │ │ │ ├── order.png │ │ │ ├── plutonium_sword_new.png │ │ │ ├── plutonium_sword_old.png │ │ │ ├── punk.png │ │ │ ├── serpent_scourge.png │ │ │ ├── shillelagh.png │ │ │ ├── singing_sword.png │ │ │ ├── sniper.png │ │ │ ├── spriggans_knife_new.png │ │ │ ├── spriggans_knife_old.png │ │ │ ├── sword_of_power_new.png │ │ │ ├── sword_of_power_old.png │ │ │ ├── trident_octopus_king.png │ │ │ ├── undeadhunter.png │ │ │ ├── vampires_tooth.png │ │ │ ├── wucad_mu.png │ │ │ ├── wyrmbane.png │ │ │ └── zonguldrok.png │ │ ├── arwen.png │ │ ├── axe.png │ │ ├── axe_blood.png │ │ ├── axe_double.png │ │ ├── axe_executioner_2.png │ │ ├── axe_executioner_new.png │ │ ├── axe_executioner_old.png │ │ ├── axe_short.png │ │ ├── axe_small.png │ │ ├── battleaxe.png │ │ ├── battleaxe_2.png │ │ ├── black_sword.png │ │ ├── black_whip_new.png │ │ ├── black_whip_old.png │ │ ├── blessed_blade.png │ │ ├── blowgun.png │ │ ├── boromir.png │ │ ├── bow.png │ │ ├── bow_2.png │ │ ├── bow_3.png │ │ ├── bow_blue.png │ │ ├── broad_axe.png │ │ ├── broadsword.png │ │ ├── club.png │ │ ├── club_2.png │ │ ├── club_3.png │ │ ├── club_slant.png │ │ ├── crossbow.png │ │ ├── crossbow_2.png │ │ ├── crossbow_3.png │ │ ├── crossbow_4.png │ │ ├── d_glaive.png │ │ ├── dagger_new.png │ │ ├── dagger_old.png │ │ ├── dagger_slant_2.png │ │ ├── dagger_slant_new.png │ │ ├── dagger_slant_old.png │ │ ├── dart.png │ │ ├── double_sword_2.png │ │ ├── double_sword_3.png │ │ ├── double_sword_new.png │ │ ├── double_sword_old.png │ │ ├── enchantress_dagger.png │ │ ├── eveningstar_2.png │ │ ├── eveningstar_new.png │ │ ├── eveningstar_old.png │ │ ├── falchion_2.png │ │ ├── falchion_new.png │ │ ├── falchion_old.png │ │ ├── flail_ball_2_new.png │ │ ├── flail_ball_2_old.png │ │ ├── flail_ball_3.png │ │ ├── flail_ball_4.png │ │ ├── flail_ball_new.png │ │ ├── flail_ball_old.png │ │ ├── flail_balls.png │ │ ├── flail_great.png │ │ ├── flail_great_2.png │ │ ├── flail_spike.png │ │ ├── flail_spike_2.png │ │ ├── flail_stick.png │ │ ├── flail_stick_slant.png │ │ ├── fork_2.png │ │ ├── frodo.png │ │ ├── gandalf.png │ │ ├── giant_club.png │ │ ├── giant_club_plain.png │ │ ├── giant_club_slant.png │ │ ├── giant_club_spike.png │ │ ├── giant_club_spike_slant.png │ │ ├── gimli.png │ │ ├── glaive_2.png │ │ ├── glaive_3.png │ │ ├── glaive_new.png │ │ ├── glaive_old.png │ │ ├── glaive_three.png │ │ ├── glaive_three_2.png │ │ ├── great_axe.png │ │ ├── great_bow.png │ │ ├── great_mace.png │ │ ├── great_mace_2.png │ │ ├── great_staff.png │ │ ├── great_sword.png │ │ ├── great_sword_slant_2.png │ │ ├── great_sword_slant_new.png │ │ ├── great_sword_slant_old.png │ │ ├── greatsling.png │ │ ├── halberd_new.png │ │ ├── halberd_old.png │ │ ├── hammer_2_new.png │ │ ├── hammer_2_old.png │ │ ├── hammer_3.png │ │ ├── hammer_new.png │ │ ├── hammer_old.png │ │ ├── hand_axe_2.png │ │ ├── hand_axe_new.png │ │ ├── hand_axe_old.png │ │ ├── hand_crossbow.png │ │ ├── heavy_sword.png │ │ ├── holy_scourge_1.png │ │ ├── holy_scourge_2.png │ │ ├── hook.png │ │ ├── katana.png │ │ ├── katana_slant.png │ │ ├── knife.png │ │ ├── lance.png │ │ ├── lance_2.png │ │ ├── large_mace.png │ │ ├── legolas.png │ │ ├── long_sword.png │ │ ├── long_sword_slant_2.png │ │ ├── long_sword_slant_new.png │ │ ├── long_sword_slant_old.png │ │ ├── mace_2_new.png │ │ ├── mace_2_old.png │ │ ├── mace_3.png │ │ ├── mace_new.png │ │ ├── mace_old.png │ │ ├── mace_ruby_new.png │ │ ├── mace_ruby_old.png │ │ ├── misc │ │ │ ├── bladehands_fe.png │ │ │ ├── bladehands_new.png │ │ │ ├── bladehands_old.png │ │ │ ├── bladehands_op.png │ │ │ ├── bone_lantern.png │ │ │ ├── bottle.png │ │ │ ├── box.png │ │ │ ├── crystal.png │ │ │ ├── deck.png │ │ │ ├── disc.png │ │ │ ├── fan.png │ │ │ ├── fire_blue.png │ │ │ ├── fire_cyan.png │ │ │ ├── fire_dark.png │ │ │ ├── fire_green.png │ │ │ ├── fire_red.png │ │ │ ├── fire_white.png │ │ │ ├── fire_white_2.png │ │ │ ├── head.png │ │ │ ├── horn.png │ │ │ ├── lantern.png │ │ │ ├── light_blue.png │ │ │ ├── light_red.png │ │ │ ├── light_yellow.png │ │ │ ├── orb.png │ │ │ ├── skull.png │ │ │ ├── spark.png │ │ │ └── stone.png │ │ ├── morningstar_2_new.png │ │ ├── morningstar_2_old.png │ │ ├── morningstar_new.png │ │ ├── morningstar_old.png │ │ ├── nunchaku.png │ │ ├── pick_axe.png │ │ ├── pike.png │ │ ├── pole_forked.png │ │ ├── quarterstaff.png │ │ ├── quarterstaff_1.png │ │ ├── quarterstaff_2_new.png │ │ ├── quarterstaff_2_old.png │ │ ├── quarterstaff_3.png │ │ ├── quarterstaff_4.png │ │ ├── quarterstaff_jester.png │ │ ├── rapier.png │ │ ├── rapier_2.png │ │ ├── rod_aries_new.png │ │ ├── rod_aries_old.png │ │ ├── rod_blue_new.png │ │ ├── rod_blue_old.png │ │ ├── rod_brown_new.png │ │ ├── rod_brown_old.png │ │ ├── rod_emerald_new.png │ │ ├── rod_emerald_old.png │ │ ├── rod_forked_new.png │ │ ├── rod_forked_old.png │ │ ├── rod_hammer_new.png │ │ ├── rod_hammer_old.png │ │ ├── rod_magenta_new.png │ │ ├── rod_magenta_old.png │ │ ├── rod_moon_new.png │ │ ├── rod_moon_old.png │ │ ├── rod_ruby_new.png │ │ ├── rod_ruby_old.png │ │ ├── rod_thick_new.png │ │ ├── rod_thick_old.png │ │ ├── sabre.png │ │ ├── saruman.png │ │ ├── scepter.png │ │ ├── scimitar_new.png │ │ ├── scimitar_old.png │ │ ├── scythe_2.png │ │ ├── scythe_new.png │ │ ├── scythe_old.png │ │ ├── scythe_slant.png │ │ ├── short_sword.png │ │ ├── short_sword_2.png │ │ ├── short_sword_slant_2.png │ │ ├── short_sword_slant_3.png │ │ ├── short_sword_slant_new.png │ │ ├── short_sword_slant_old.png │ │ ├── sickle.png │ │ ├── sling.png │ │ ├── spear.png │ │ ├── spear_1.png │ │ ├── spear_2_new.png │ │ ├── spear_2_old.png │ │ ├── spear_3.png │ │ ├── spear_4.png │ │ ├── spear_5.png │ │ ├── staff_evil.png │ │ ├── staff_fancy.png │ │ ├── staff_fork.png │ │ ├── staff_large.png │ │ ├── staff_mage.png │ │ ├── staff_mage_2.png │ │ ├── staff_mummy.png │ │ ├── staff_organic.png │ │ ├── staff_plain.png │ │ ├── staff_ring_blue.png │ │ ├── staff_ruby.png │ │ ├── staff_scepter.png │ │ ├── staff_skull.png │ │ ├── stick.png │ │ ├── sword_2.png │ │ ├── sword_3.png │ │ ├── sword_black.png │ │ ├── sword_breaker.png │ │ ├── sword_jag.png │ │ ├── sword_seven.png │ │ ├── sword_thief.png │ │ ├── sword_tri.png │ │ ├── sword_twist.png │ │ ├── trident.png │ │ ├── trident_2.png │ │ ├── trident_3.png │ │ ├── trident_demon.png │ │ ├── trident_elec.png │ │ ├── trident_two.png │ │ ├── trident_two_2.png │ │ ├── triple_sword_2.png │ │ ├── triple_sword_new.png │ │ ├── triple_sword_old.png │ │ ├── trishula.png │ │ ├── war_axe_new.png │ │ ├── war_axe_old.png │ │ ├── whip_2.png │ │ ├── whip_new.png │ │ └── whip_old.png │ │ ├── head │ │ ├── art_dragonhelm.png │ │ ├── band_blue.png │ │ ├── band_magenta.png │ │ ├── band_red.png │ │ ├── band_white.png │ │ ├── band_yellow.png │ │ ├── bandana_ybrown.png │ │ ├── bear.png │ │ ├── black_horn.png │ │ ├── black_horn_2.png │ │ ├── blue_horn_gold.png │ │ ├── brown_gold.png │ │ ├── cap_black_1.png │ │ ├── cap_blue.png │ │ ├── chain.png │ │ ├── cheek_red.png │ │ ├── clown_1.png │ │ ├── clown_2.png │ │ ├── cone_blue.png │ │ ├── cone_red.png │ │ ├── crown_gold_1.png │ │ ├── crown_gold_2.png │ │ ├── crown_gold_3.png │ │ ├── dyrovepreva_new.png │ │ ├── dyrovepreva_old.png │ │ ├── eternal_torment.png │ │ ├── etheric_cage.png │ │ ├── feather_blue.png │ │ ├── feather_green.png │ │ ├── feather_red.png │ │ ├── feather_white.png │ │ ├── feather_yellow.png │ │ ├── fhelm_gray_3.png │ │ ├── fhelm_horn_2.png │ │ ├── fhelm_horn_yellow.png │ │ ├── full_black.png │ │ ├── full_gold.png │ │ ├── gandalf.png │ │ ├── hat_black.png │ │ ├── healer.png │ │ ├── helm_gimli.png │ │ ├── helm_green.png │ │ ├── helm_plume.png │ │ ├── helm_red.png │ │ ├── hood_black_2.png │ │ ├── hood_cyan.png │ │ ├── hood_gray.png │ │ ├── hood_green.png │ │ ├── hood_green_2.png │ │ ├── hood_orange.png │ │ ├── hood_red.png │ │ ├── hood_red_2.png │ │ ├── hood_white.png │ │ ├── hood_white_2.png │ │ ├── hood_ybrown.png │ │ ├── horn_evil.png │ │ ├── horn_gray.png │ │ ├── horned.png │ │ ├── horns_1.png │ │ ├── horns_2.png │ │ ├── horns_3.png │ │ ├── iron_1.png │ │ ├── iron_2.png │ │ ├── iron_3.png │ │ ├── iron_red.png │ │ ├── isildur.png │ │ ├── mummy.png │ │ ├── ninja_black.png │ │ ├── straw.png │ │ ├── taiso_blue.png │ │ ├── taiso_magenta.png │ │ ├── taiso_red.png │ │ ├── taiso_white.png │ │ ├── taiso_yellow.png │ │ ├── turban_brown.png │ │ ├── turban_purple.png │ │ ├── turban_white.png │ │ ├── viking_brown_1.png │ │ ├── viking_brown_2.png │ │ ├── viking_gold.png │ │ ├── wizard_blackgold.png │ │ ├── wizard_blackred.png │ │ ├── wizard_blue.png │ │ ├── wizard_bluegreen.png │ │ ├── wizard_brown.png │ │ ├── wizard_darkgreen.png │ │ ├── wizard_lightgreen.png │ │ ├── wizard_purple.png │ │ ├── wizard_red.png │ │ ├── wizard_white.png │ │ └── yellow_wing.png │ │ ├── legs │ │ ├── belt_gray.png │ │ ├── belt_redbrown.png │ │ ├── bikini_red.png │ │ ├── chunli.png │ │ ├── garter.png │ │ ├── leg_armor_0.png │ │ ├── leg_armor_1.png │ │ ├── leg_armor_2.png │ │ ├── leg_armor_3.png │ │ ├── leg_armor_4.png │ │ ├── leg_armor_5.png │ │ ├── loincloth_red.png │ │ ├── long_red.png │ │ ├── metal_gray.png │ │ ├── metal_green.png │ │ ├── pants_16.png │ │ ├── pants_black.png │ │ ├── pants_blue.png │ │ ├── pants_brown.png │ │ ├── pants_darkgreen.png │ │ ├── pants_l_white.png │ │ ├── pants_orange.png │ │ ├── pants_red.png │ │ ├── pants_short_brown.png │ │ ├── pants_short_brown_3.png │ │ ├── pants_short_darkbrown.png │ │ ├── pants_short_gray.png │ │ ├── pj.png │ │ ├── skirt_blue.png │ │ ├── skirt_green.png │ │ ├── skirt_red.png │ │ ├── skirt_white.png │ │ ├── skirt_white_2.png │ │ └── trouser_green.png │ │ ├── mutations │ │ ├── cat_10.png │ │ ├── cat_6.png │ │ ├── cat_7.png │ │ ├── cat_8.png │ │ ├── cat_9.png │ │ └── octopode_1.png │ │ └── transform │ │ ├── bat_form.png │ │ ├── dragon_form.png │ │ ├── dragon_form_black.png │ │ ├── dragon_form_green.png │ │ ├── dragon_form_grey.png │ │ ├── dragon_form_mottled.png │ │ ├── dragon_form_pale.png │ │ ├── dragon_form_purple.png │ │ ├── dragon_form_red.png │ │ ├── dragon_form_white.png │ │ ├── dragon_form_yellow.png │ │ ├── ice_form.png │ │ ├── lich_form.png │ │ ├── lich_form_octopode.png │ │ ├── mushroom_form.png │ │ ├── pig_form_new.png │ │ ├── pig_form_old.png │ │ ├── shadow_form.png │ │ ├── statue_form_centaur.png │ │ ├── statue_form_felid.png │ │ ├── statue_form_humanoid.png │ │ ├── statue_form_naga.png │ │ └── tree_form.png ├── houses │ ├── blue_house.png │ ├── blue_house_side.png │ ├── red_house.png │ ├── red_house_side.png │ ├── row-3-col-1.png │ ├── row-3-col-2.png │ ├── row-3-col-3.png │ ├── row-3-col-4.png │ ├── row-3-col-5.png │ ├── row-3-col-6.png │ ├── row-4-col-2.png │ ├── row-4-col-4.png │ ├── row-4-col-6.png │ ├── row-5-col-2.png │ ├── row-5-col-4.png │ ├── row-5-col-6.png │ ├── row-6-col-2.png │ ├── row-6-col-4.png │ ├── row-6-col-5.png │ ├── row-6-col-6.png │ ├── shop.png │ ├── tavern.png │ ├── yellow_house.png │ └── yellow_house_side.png ├── interface │ ├── GUI0.png │ ├── MenuButtonInactiv.png │ ├── MenuButtonPreLight.png │ ├── PopUpMenu.png │ ├── blue_frame.png │ ├── dialog.png │ ├── frame.png │ ├── green_frame.png │ ├── grey_frame.png │ ├── item_frame.png │ ├── main_menu_background.jpg │ ├── new_turn.png │ ├── sidebar.png │ └── white_frame.png └── tiled_tilesets │ ├── dungeon.png │ ├── dungeon.tsx │ ├── houses.png │ ├── houses.tsx │ └── thugs.tsx ├── main.py ├── maps ├── level_0 │ ├── dialog_0.txt │ ├── dialog_1.txt │ ├── house_dialog_0.txt │ ├── house_dialog_1.txt │ ├── house_dialog_2.txt │ ├── house_dialog_3.txt │ └── map.tmx ├── level_1 │ ├── dialog_0.txt │ ├── dialog_1.txt │ └── map.tmx ├── level_2 │ ├── dialog_0.txt │ ├── dialog_1.txt │ └── map.tmx └── level_3 │ └── map.tmx ├── pyproject.toml ├── screenshots ├── inventory_screen.png ├── main_screen.png ├── player_moves_and_attacks.png ├── shop_screen.png ├── status_screen.png └── trade_interface.png ├── sound_fx ├── armor.ogg ├── attack.ogg ├── cent_walk.ogg ├── chest.ogg ├── door.ogg ├── inventory.ogg ├── necro_walk.ogg ├── potion.ogg ├── skeleton_walk.ogg ├── soundtrack.ogg ├── talking.ogg ├── trade.ogg ├── waiting.ogg └── walk.ogg ├── src ├── __init__.py ├── constants.py ├── game_entities │ ├── __init__.py │ ├── alteration.py │ ├── book.py │ ├── breakable.py │ ├── building.py │ ├── character.py │ ├── chest.py │ ├── consumable.py │ ├── destroyable.py │ ├── door.py │ ├── effect.py │ ├── entity.py │ ├── equipment.py │ ├── foe.py │ ├── fountain.py │ ├── gold.py │ ├── item.py │ ├── key.py │ ├── mission.py │ ├── movable.py │ ├── objective.py │ ├── obstacle.py │ ├── player.py │ ├── portal.py │ ├── potion.py │ ├── shield.py │ ├── shop.py │ ├── skill.py │ ├── spellbook.py │ └── weapon.py ├── gui │ ├── __init__.py │ ├── animation.py │ ├── constant_sprites.py │ ├── fade_in_out_animation.py │ ├── fonts.py │ ├── position.py │ ├── sidebar.py │ └── tools.py ├── scenes │ ├── __init__.py │ ├── level_loading_scene.py │ ├── level_scene.py │ ├── scene.py │ └── start_scene.py └── services │ ├── __init__.py │ ├── global_foes.py │ ├── language.py │ ├── load_from_tmx_manager.py │ ├── load_from_xml_manager.py │ ├── menu_creator_manager.py │ ├── menus.py │ ├── options_manager.py │ ├── save_state_manager.py │ └── scene_manager.py ├── tests ├── README.txt ├── __init__.py ├── random_data_library.py ├── test_alteration.py ├── test_building.py ├── test_character.py ├── test_chest.py ├── test_destroyable.py ├── test_entity.py ├── test_equipment.py ├── test_item.py ├── test_level_utilitarian.py ├── test_mission.py ├── test_movable.py ├── test_save_and_load.py ├── test_saves │ ├── complete_first_level_save.xml │ └── simple_save.xml ├── test_shop.py ├── test_start_screen.py ├── test_weapon.py └── tools.py └── uv.lock /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/verify-and-test-game.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/.github/workflows/verify-and-test-game.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.13 2 | -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/CREDITS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/README.md -------------------------------------------------------------------------------- /README/es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/README/es.md -------------------------------------------------------------------------------- /README/fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/README/fr.md -------------------------------------------------------------------------------- /README/zh-cht.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/README/zh-cht.md -------------------------------------------------------------------------------- /README/zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/README/zh-cn.md -------------------------------------------------------------------------------- /data/alterations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/alterations.xml -------------------------------------------------------------------------------- /data/characters.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/characters.xml -------------------------------------------------------------------------------- /data/classes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/classes.xml -------------------------------------------------------------------------------- /data/en/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/en/fonts_description.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/en/fonts_description.py -------------------------------------------------------------------------------- /data/en/maps/level_0/dialog_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/en/maps/level_0/dialog_0.txt -------------------------------------------------------------------------------- /data/en/maps/level_0/dialog_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/en/maps/level_0/dialog_1.txt -------------------------------------------------------------------------------- /data/en/maps/level_0/house_dialog_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/en/maps/level_0/house_dialog_0.txt -------------------------------------------------------------------------------- /data/en/maps/level_0/house_dialog_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/en/maps/level_0/house_dialog_1.txt -------------------------------------------------------------------------------- /data/en/maps/level_0/house_dialog_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/en/maps/level_0/house_dialog_2.txt -------------------------------------------------------------------------------- /data/en/maps/level_0/house_dialog_3.txt: -------------------------------------------------------------------------------- 1 | What goods are you looking to buy or sell? 2 | -------------------------------------------------------------------------------- /data/en/maps/level_0/map_properties.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/en/maps/level_0/map_properties.tmx -------------------------------------------------------------------------------- /data/en/maps/level_1/dialog_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/en/maps/level_1/dialog_0.txt -------------------------------------------------------------------------------- /data/en/maps/level_1/dialog_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/en/maps/level_1/dialog_1.txt -------------------------------------------------------------------------------- /data/en/maps/level_1/map_properties.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/en/maps/level_1/map_properties.tmx -------------------------------------------------------------------------------- /data/en/maps/level_2/dialog_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/en/maps/level_2/dialog_0.txt -------------------------------------------------------------------------------- /data/en/maps/level_2/dialog_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/en/maps/level_2/dialog_1.txt -------------------------------------------------------------------------------- /data/en/maps/level_2/map_properties.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/en/maps/level_2/map_properties.tmx -------------------------------------------------------------------------------- /data/en/maps/level_3/map_properties.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/en/maps/level_3/map_properties.tmx -------------------------------------------------------------------------------- /data/en/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/en/text.py -------------------------------------------------------------------------------- /data/es/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/es/fonts_description.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/es/fonts_description.py -------------------------------------------------------------------------------- /data/es/maps/level_0/dialog_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/es/maps/level_0/dialog_0.txt -------------------------------------------------------------------------------- /data/es/maps/level_0/dialog_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/es/maps/level_0/dialog_1.txt -------------------------------------------------------------------------------- /data/es/maps/level_0/house_dialog_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/es/maps/level_0/house_dialog_0.txt -------------------------------------------------------------------------------- /data/es/maps/level_0/house_dialog_1.txt: -------------------------------------------------------------------------------- 1 | ¡No! ¡No dejaré que muertos vivientes como tú me maten! 2 | LARGASE!!! 3 | [Te lanzan un cuchillo] 4 | -------------------------------------------------------------------------------- /data/es/maps/level_0/house_dialog_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/es/maps/level_0/house_dialog_2.txt -------------------------------------------------------------------------------- /data/es/maps/level_0/house_dialog_3.txt: -------------------------------------------------------------------------------- 1 | ¿Qué artículos desea comprar o vender? -------------------------------------------------------------------------------- /data/es/maps/level_0/map_properties.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/es/maps/level_0/map_properties.tmx -------------------------------------------------------------------------------- /data/es/maps/level_1/dialog_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/es/maps/level_1/dialog_0.txt -------------------------------------------------------------------------------- /data/es/maps/level_1/dialog_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/es/maps/level_1/dialog_1.txt -------------------------------------------------------------------------------- /data/es/maps/level_1/map_properties.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/es/maps/level_1/map_properties.tmx -------------------------------------------------------------------------------- /data/es/maps/level_2/dialog_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/es/maps/level_2/dialog_0.txt -------------------------------------------------------------------------------- /data/es/maps/level_2/dialog_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/es/maps/level_2/dialog_1.txt -------------------------------------------------------------------------------- /data/es/maps/level_2/map_properties.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/es/maps/level_2/map_properties.tmx -------------------------------------------------------------------------------- /data/es/maps/level_3/map_properties.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/es/maps/level_3/map_properties.tmx -------------------------------------------------------------------------------- /data/es/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/es/text.py -------------------------------------------------------------------------------- /data/foes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/foes.xml -------------------------------------------------------------------------------- /data/fountains.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/fountains.xml -------------------------------------------------------------------------------- /data/fr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/fr/fonts_description.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/fr/fonts_description.py -------------------------------------------------------------------------------- /data/fr/maps/level_0/dialog_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/fr/maps/level_0/dialog_0.txt -------------------------------------------------------------------------------- /data/fr/maps/level_0/dialog_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/fr/maps/level_0/dialog_1.txt -------------------------------------------------------------------------------- /data/fr/maps/level_0/house_dialog_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/fr/maps/level_0/house_dialog_0.txt -------------------------------------------------------------------------------- /data/fr/maps/level_0/house_dialog_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/fr/maps/level_0/house_dialog_1.txt -------------------------------------------------------------------------------- /data/fr/maps/level_0/house_dialog_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/fr/maps/level_0/house_dialog_2.txt -------------------------------------------------------------------------------- /data/fr/maps/level_0/house_dialog_3.txt: -------------------------------------------------------------------------------- 1 | Quels articles souhaitez-vous acheter ou vendre ? -------------------------------------------------------------------------------- /data/fr/maps/level_0/map_properties.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/fr/maps/level_0/map_properties.tmx -------------------------------------------------------------------------------- /data/fr/maps/level_1/dialog_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/fr/maps/level_1/dialog_0.txt -------------------------------------------------------------------------------- /data/fr/maps/level_1/dialog_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/fr/maps/level_1/dialog_1.txt -------------------------------------------------------------------------------- /data/fr/maps/level_1/map_properties.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/fr/maps/level_1/map_properties.tmx -------------------------------------------------------------------------------- /data/fr/maps/level_2/dialog_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/fr/maps/level_2/dialog_0.txt -------------------------------------------------------------------------------- /data/fr/maps/level_2/dialog_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/fr/maps/level_2/dialog_1.txt -------------------------------------------------------------------------------- /data/fr/maps/level_2/map_properties.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/fr/maps/level_2/map_properties.tmx -------------------------------------------------------------------------------- /data/fr/maps/level_3/map_properties.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/fr/maps/level_3/map_properties.tmx -------------------------------------------------------------------------------- /data/fr/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/fr/text.py -------------------------------------------------------------------------------- /data/items.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/items.xml -------------------------------------------------------------------------------- /data/language_instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/language_instructions.md -------------------------------------------------------------------------------- /data/races.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/races.xml -------------------------------------------------------------------------------- /data/skills.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/skills.xml -------------------------------------------------------------------------------- /data/zh_cn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/zh_cn/fonts_description.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/zh_cn/fonts_description.py -------------------------------------------------------------------------------- /data/zh_cn/maps/level_0/dialog_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/zh_cn/maps/level_0/dialog_0.txt -------------------------------------------------------------------------------- /data/zh_cn/maps/level_0/dialog_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/zh_cn/maps/level_0/dialog_1.txt -------------------------------------------------------------------------------- /data/zh_cn/maps/level_0/house_dialog_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/zh_cn/maps/level_0/house_dialog_0.txt -------------------------------------------------------------------------------- /data/zh_cn/maps/level_0/house_dialog_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/zh_cn/maps/level_0/house_dialog_1.txt -------------------------------------------------------------------------------- /data/zh_cn/maps/level_0/house_dialog_2.txt: -------------------------------------------------------------------------------- 1 | 对不起,我不能让你进我家…… 2 | 这里不再安全了! 我得被关起来一段时间。 -------------------------------------------------------------------------------- /data/zh_cn/maps/level_0/house_dialog_3.txt: -------------------------------------------------------------------------------- 1 | 您想购买或出售什么商品? -------------------------------------------------------------------------------- /data/zh_cn/maps/level_0/map_properties.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/zh_cn/maps/level_0/map_properties.tmx -------------------------------------------------------------------------------- /data/zh_cn/maps/level_1/dialog_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/zh_cn/maps/level_1/dialog_0.txt -------------------------------------------------------------------------------- /data/zh_cn/maps/level_1/dialog_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/zh_cn/maps/level_1/dialog_1.txt -------------------------------------------------------------------------------- /data/zh_cn/maps/level_1/map_properties.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/zh_cn/maps/level_1/map_properties.tmx -------------------------------------------------------------------------------- /data/zh_cn/maps/level_2/dialog_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/zh_cn/maps/level_2/dialog_0.txt -------------------------------------------------------------------------------- /data/zh_cn/maps/level_2/dialog_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/zh_cn/maps/level_2/dialog_1.txt -------------------------------------------------------------------------------- /data/zh_cn/maps/level_2/map_properties.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/zh_cn/maps/level_2/map_properties.tmx -------------------------------------------------------------------------------- /data/zh_cn/maps/level_3/map_properties.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/zh_cn/maps/level_3/map_properties.tmx -------------------------------------------------------------------------------- /data/zh_cn/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/data/zh_cn/text.py -------------------------------------------------------------------------------- /entities_uml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/entities_uml.png -------------------------------------------------------------------------------- /fonts/Autonym.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/fonts/Autonym.ttf -------------------------------------------------------------------------------- /fonts/alagard_by_pix3m-d6awiwp.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/fonts/alagard_by_pix3m-d6awiwp.ttf -------------------------------------------------------------------------------- /fonts/minya_nouvelle_bd.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/fonts/minya_nouvelle_bd.ttf -------------------------------------------------------------------------------- /fonts/minya_nouvelle_bd_it.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/fonts/minya_nouvelle_bd_it.ttf -------------------------------------------------------------------------------- /fonts/minya_nouvelle_it.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/fonts/minya_nouvelle_it.ttf -------------------------------------------------------------------------------- /fonts/minya_nouvelle_rg.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/fonts/minya_nouvelle_rg.ttf -------------------------------------------------------------------------------- /imgs/characs/jist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/characs/jist.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/LICENSE.txt -------------------------------------------------------------------------------- /imgs/dungeon_crawl/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/README.txt -------------------------------------------------------------------------------- /imgs/dungeon_crawl/dungeon/altars/ru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/dungeon/altars/ru.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/dungeon/altars/zin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/dungeon/altars/zin.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/dungeon/boulder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/dungeon/boulder.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/dungeon/chest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/dungeon/chest.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/dungeon/floor/mud_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/dungeon/floor/mud_0.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/dungeon/floor/mud_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/dungeon/floor/mud_1.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/dungeon/floor/mud_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/dungeon/floor/mud_2.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/dungeon/floor/mud_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/dungeon/floor/mud_3.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/dungeon/floor/orc_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/dungeon/floor/orc_0.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/dungeon/floor/orc_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/dungeon/floor/orc_1.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/dungeon/floor/orc_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/dungeon/floor/orc_2.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/dungeon/floor/orc_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/dungeon/floor/orc_3.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/dungeon/floor/orc_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/dungeon/floor/orc_4.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/dungeon/floor/orc_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/dungeon/floor/orc_5.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/dungeon/floor/orc_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/dungeon/floor/orc_6.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/dungeon/floor/orc_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/dungeon/floor/orc_7.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/dungeon/large_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/dungeon/large_box.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/dungeon/traps/alarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/dungeon/traps/alarm.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/dungeon/traps/shaft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/dungeon/traps/shaft.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/dungeon/traps/zot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/dungeon/traps/zot.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/dungeon/unseen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/dungeon/unseen.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/dungeon/wall/hell_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/dungeon/wall/hell_1.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/dungeon/wall/hell_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/dungeon/wall/hell_2.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/dungeon/wall/hell_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/dungeon/wall/hell_3.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/dungeon/wall/hell_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/dungeon/wall/hell_4.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/dungeon/wall/hell_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/dungeon/wall/hell_5.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/dungeon/wall/hell_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/dungeon/wall/hell_6.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/dungeon/wall/hell_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/dungeon/wall/hell_7.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/dungeon/wall/hell_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/dungeon/wall/hell_8.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/dungeon/wall/hell_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/dungeon/wall/hell_9.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/dungeon/wall/hive_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/dungeon/wall/hive_0.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/dungeon/wall/hive_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/dungeon/wall/hive_1.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/dungeon/wall/hive_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/dungeon/wall/hive_2.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/dungeon/wall/hive_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/dungeon/wall/hive_3.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/dungeon/wall/orc_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/dungeon/wall/orc_0.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/dungeon/wall/orc_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/dungeon/wall/orc_1.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/dungeon/wall/orc_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/dungeon/wall/orc_10.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/dungeon/wall/orc_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/dungeon/wall/orc_11.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/dungeon/wall/orc_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/dungeon/wall/orc_2.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/dungeon/wall/orc_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/dungeon/wall/orc_3.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/dungeon/wall/orc_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/dungeon/wall/orc_4.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/dungeon/wall/orc_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/dungeon/wall/orc_5.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/dungeon/wall/orc_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/dungeon/wall/orc_6.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/dungeon/wall/orc_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/dungeon/wall/orc_7.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/dungeon/wall/orc_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/dungeon/wall/orc_8.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/dungeon/wall/orc_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/dungeon/wall/orc_9.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/dungeon/wall/tomb_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/dungeon/wall/tomb_0.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/dungeon/wall/tomb_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/dungeon/wall/tomb_1.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/dungeon/wall/tomb_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/dungeon/wall/tomb_2.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/dungeon/wall/tomb_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/dungeon/wall/tomb_3.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/dungeon/zot_pillar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/dungeon/zot_pillar.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/acid_venom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/acid_venom.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/arrow_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/arrow_0.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/arrow_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/arrow_1.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/arrow_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/arrow_2.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/arrow_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/arrow_3.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/arrow_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/arrow_4.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/arrow_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/arrow_5.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/arrow_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/arrow_6.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/arrow_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/arrow_7.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/cloud_acid_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/cloud_acid_0.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/cloud_acid_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/cloud_acid_1.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/cloud_acid_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/cloud_acid_2.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/cloud_cold_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/cloud_cold_0.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/cloud_cold_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/cloud_cold_1.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/cloud_cold_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/cloud_cold_2.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/cloud_fire_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/cloud_fire_0.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/cloud_fire_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/cloud_fire_1.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/cloud_fire_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/cloud_fire_2.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/cloud_meph_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/cloud_meph_0.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/cloud_meph_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/cloud_meph_1.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/cloud_meph_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/cloud_meph_2.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/cloud_neg_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/cloud_neg_0.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/cloud_neg_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/cloud_neg_1.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/cloud_neg_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/cloud_neg_2.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/cloud_rain_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/cloud_rain_1.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/cloud_rain_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/cloud_rain_2.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/dart_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/dart_0.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/dart_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/dart_1.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/dart_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/dart_2.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/dart_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/dart_3.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/dart_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/dart_4.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/dart_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/dart_5.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/dart_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/dart_6.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/dart_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/dart_7.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/disjunct_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/disjunct_0.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/disjunct_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/disjunct_1.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/disjunct_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/disjunct_2.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/disjunct_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/disjunct_3.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/drain_0_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/drain_0_new.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/drain_0_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/drain_0_old.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/drain_1_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/drain_1_new.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/drain_1_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/drain_1_old.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/drain_2_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/drain_2_new.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/drain_2_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/drain_2_old.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/drain_red_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/drain_red_0.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/drain_red_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/drain_red_1.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/drain_red_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/drain_red_2.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/flame_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/flame_0.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/flame_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/flame_1.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/flame_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/flame_2.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/frost_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/frost_0.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/frost_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/frost_1.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/goldaura_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/goldaura_0.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/goldaura_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/goldaura_1.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/goldaura_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/goldaura_2.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/heataura_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/heataura_0.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/heataura_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/heataura_1.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/heataura_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/heataura_2.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/icicle_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/icicle_0.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/icicle_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/icicle_1.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/icicle_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/icicle_2.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/icicle_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/icicle_3.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/icicle_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/icicle_4.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/icicle_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/icicle_5.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/icicle_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/icicle_6.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/icicle_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/icicle_7.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/iron_shot_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/iron_shot_0.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/iron_shot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/iron_shot_1.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/iron_shot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/iron_shot_2.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/iron_shot_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/iron_shot_3.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/iron_shot_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/iron_shot_4.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/iron_shot_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/iron_shot_5.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/iron_shot_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/iron_shot_6.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/iron_shot_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/iron_shot_7.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/irradiate_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/irradiate_0.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/irradiate_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/irradiate_1.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/irradiate_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/irradiate_2.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/irradiate_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/irradiate_3.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/javelin_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/javelin_1.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/javelin_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/javelin_2.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/magic_bolt_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/magic_bolt_1.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/magic_bolt_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/magic_bolt_2.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/magic_bolt_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/magic_bolt_3.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/magic_bolt_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/magic_bolt_4.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/magic_bolt_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/magic_bolt_5.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/magic_bolt_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/magic_bolt_6.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/magic_bolt_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/magic_bolt_7.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/magic_bolt_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/magic_bolt_8.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/magic_dart_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/magic_dart_0.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/magic_dart_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/magic_dart_1.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/magic_dart_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/magic_dart_2.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/magic_dart_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/magic_dart_3.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/magic_dart_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/magic_dart_4.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/magic_dart_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/magic_dart_5.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/needle_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/needle_0.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/needle_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/needle_1.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/needle_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/needle_2.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/needle_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/needle_3.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/needle_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/needle_4.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/needle_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/needle_5.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/needle_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/needle_6.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/needle_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/needle_7.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/net_trap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/net_trap.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/orb_glow_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/orb_glow_0.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/orb_glow_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/orb_glow_1.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/quad_glow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/quad_glow.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/rock_0_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/rock_0_new.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/rock_0_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/rock_0_old.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/sanctuary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/sanctuary.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/sandblast_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/sandblast_0.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/sandblast_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/sandblast_1.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/sandblast_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/sandblast_2.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/silenced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/silenced.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/sting_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/sting_0.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/sting_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/sting_1.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/sting_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/sting_2.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/stone_0_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/stone_0_new.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/stone_0_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/stone_0_old.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/tomahawk_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/tomahawk_0.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/tomahawk_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/tomahawk_1.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/tomahawk_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/tomahawk_2.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/tomahawk_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/tomahawk_3.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/tomahawk_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/tomahawk_4.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/tomahawk_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/tomahawk_5.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/tomahawk_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/tomahawk_6.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/tomahawk_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/tomahawk_7.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/tornado_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/tornado_1.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/tornado_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/tornado_2.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/umbra_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/umbra_0.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/umbra_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/umbra_1.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/umbra_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/umbra_2.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/umbra_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/umbra_3.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/zap_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/zap_0.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/zap_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/zap_1.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/zap_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/zap_2.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/effect/zap_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/effect/zap_3.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/emissaries/trog_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/emissaries/trog_top.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/emissaries/tso_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/emissaries/tso_top.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/emissaries/zin_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/emissaries/zin_top.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/gui/abilities/dig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/gui/abilities/dig.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/gui/abilities/jump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/gui/abilities/jump.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/gui/prompt_no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/gui/prompt_no.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/gui/prompt_yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/gui/prompt_yes.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/gui/skills/armor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/gui/skills/armor.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/gui/skills/axes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/gui/skills/axes.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/gui/skills/bows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/gui/skills/bows.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/gui/skills/charms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/gui/skills/charms.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/gui/skills/dodging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/gui/skills/dodging.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/gui/skills/fighting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/gui/skills/fighting.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/gui/skills/hexes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/gui/skills/hexes.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/gui/skills/polearms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/gui/skills/polearms.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/gui/skills/shields.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/gui/skills/shields.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/gui/skills/slings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/gui/skills/slings.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/gui/skills/stabbing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/gui/skills/stabbing.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/gui/skills/staves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/gui/skills/staves.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/gui/skills/throwing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/gui/skills/throwing.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/gui/skills/traps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/gui/skills/traps.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/gui/spells/memorise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/gui/spells/memorise.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/gui/startup/arena.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/gui/startup/arena.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/gui/tavern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/gui/tavern.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/amulet/face_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/amulet/face_2.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/book/book_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/book/book_gray.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/book/bronze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/book/bronze.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/book/cloth_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/book/cloth_new.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/book/cloth_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/book/cloth_old.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/book/copper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/book/copper.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/book/cyan_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/book/cyan_new.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/book/cyan_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/book/cyan_old.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/book/gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/book/gold.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/book/manual_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/book/manual_1.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/book/manual_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/book/manual_2.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/book/misc_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/book/misc_book.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/book/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/book/pink.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/book/plaid_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/book/plaid_new.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/book/plaid_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/book/plaid_old.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/book/red_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/book/red_new.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/book/red_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/book/red_old.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/book/silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/book/silver.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/book/tan_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/book/tan_new.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/book/tan_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/book/tan_old.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/book/white_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/book/white_new.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/book/white_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/book/white_old.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/food/apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/food/apple.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/food/bone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/food/bone.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/food/cheese.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/food/cheese.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/food/choko.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/food/choko.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/food/chunk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/food/chunk.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/food/fruit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/food/fruit.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/food/grape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/food/grape.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/food/lemon_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/food/lemon_new.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/food/lemon_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/food/lemon_old.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/food/orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/food/orange.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/food/pear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/food/pear.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/food/pizza_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/food/pizza_new.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/food/pizza_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/food/pizza_old.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/food/sausage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/food/sausage.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/food/sultana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/food/sultana.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/gold/gold_pile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/gold/gold_pile.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/misc/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/misc/key.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/misc/mirror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/misc/mirror.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/misc/misc_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/misc/misc_box.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/misc/misc_horn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/misc/misc_horn.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/misc/misc_orb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/misc/misc_orb.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/misc/misc_quad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/misc/misc_quad.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/misc/misc_rune.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/misc/misc_rune.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/potion/bubbly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/potion/bubbly.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/potion/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/potion/clear.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/potion/cloudy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/potion/cloudy.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/potion/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/potion/dark.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/potion/emerald.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/potion/emerald.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/potion/fizzy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/potion/fizzy.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/potion/golden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/potion/golden.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/potion/i-label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/potion/i-label.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/potion/murky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/potion/murky.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/potion/pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/potion/pink.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/potion/puce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/potion/puce.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/potion/silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/potion/silver.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/potion/unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/potion/unknown.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/ring/agate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/ring/agate.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/ring/brass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/ring/brass.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/ring/bronze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/ring/bronze.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/ring/clay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/ring/clay.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/ring/copper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/ring/copper.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/ring/coral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/ring/coral.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/ring/diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/ring/diamond.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/ring/emerald.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/ring/emerald.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/ring/glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/ring/glass.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/ring/gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/ring/gold.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/ring/gold_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/ring/gold_blue.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/ring/gold_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/ring/gold_red.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/ring/granite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/ring/granite.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/ring/iron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/ring/iron.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/ring/jade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/ring/jade.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/ring/moonstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/ring/moonstone.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/ring/opal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/ring/opal.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/ring/pearl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/ring/pearl.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/ring/plain_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/ring/plain_red.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/ring/ring_ruby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/ring/ring_ruby.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/ring/ruby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/ring/ruby.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/ring/silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/ring/silver.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/ring/steel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/ring/steel.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/ring/tiger_eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/ring/tiger_eye.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/ring/wooden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/ring/wooden.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/rod/rod_0_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/rod/rod_0_new.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/rod/rod_0_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/rod/rod_0_old.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/rod/rod_1_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/rod/rod_1_new.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/rod/rod_1_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/rod/rod_1_old.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/rod/rod_2_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/rod/rod_2_new.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/rod/rod_2_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/rod/rod_2_old.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/rod/rod_3_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/rod/rod_3_new.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/rod/rod_3_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/rod/rod_3_old.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/rod/rod_4_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/rod/rod_4_new.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/rod/rod_4_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/rod/rod_4_old.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/rod/rod_5_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/rod/rod_5_new.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/rod/rod_5_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/rod/rod_5_old.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/rod/rod_6_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/rod/rod_6_new.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/rod/rod_6_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/rod/rod_6_old.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/rod/rod_7_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/rod/rod_7_new.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/rod/rod_7_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/rod/rod_7_old.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/rod/rod_8_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/rod/rod_8_new.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/rod/rod_8_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/rod/rod_8_old.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/rod/rod_9_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/rod/rod_9_new.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/rod/rod_9_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/rod/rod_9_old.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/rod/rod_forked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/rod/rod_forked.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/staff/staff_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/staff/staff_0.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/staff/staff_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/staff/staff_1.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/staff/staff_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/staff/staff_2.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/staff/staff_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/staff/staff_3.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/staff/staff_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/staff/staff_4.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/staff/staff_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/staff/staff_5.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/staff/staff_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/staff/staff_6.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/staff/staff_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/staff/staff_7.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/staff/staff_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/staff/staff_8.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/staff/staff_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/staff/staff_9.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/weapon/ankus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/weapon/ankus.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/weapon/axe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/weapon/axe.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/weapon/club_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/weapon/club_2.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/weapon/flail_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/weapon/flail_3.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/weapon/flail_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/weapon/flail_6.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/weapon/flail_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/weapon/flail_7.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/weapon/katana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/weapon/katana.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/weapon/knife.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/weapon/knife.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/weapon/mace_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/weapon/mace_7.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/weapon/pickaxe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/weapon/pickaxe.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/weapon/sabre_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/weapon/sabre_2.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/weapon/spear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/weapon/spear.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/weapon/spear_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/weapon/spear_1.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/weapon/spear_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/weapon/spear_3.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/weapon/spear_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/weapon/spear_4.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/weapon/spear_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/weapon/spear_5.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/weapon/spear_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/weapon/spear_6.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/weapon/spear_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/weapon/spear_7.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/item/weapon/tsurugi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/item/weapon/tsurugi.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/misc/attackable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/misc/attackable.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/misc/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/misc/cursor.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/misc/cursor_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/misc/cursor_green.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/misc/cursor_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/misc/cursor_red.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/misc/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/misc/error.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/misc/halo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/misc/halo.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/misc/landing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/misc/landing.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/misc/magicmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/misc/magicmap.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/misc/mask_lava.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/misc/mask_lava.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/misc/mold_glowing_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/misc/mold_glowing_1.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/misc/mold_glowing_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/misc/mold_glowing_2.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/misc/mold_glowing_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/misc/mold_glowing_3.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/misc/mold_glowing_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/misc/mold_glowing_4.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/misc/move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/misc/move.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/misc/numbers/num_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/misc/numbers/num_0.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/misc/numbers/num_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/misc/numbers/num_1.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/misc/numbers/num_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/misc/numbers/num_2.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/misc/numbers/num_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/misc/numbers/num_3.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/misc/numbers/num_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/misc/numbers/num_4.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/misc/numbers/num_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/misc/numbers/num_5.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/misc/numbers/num_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/misc/numbers/num_6.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/misc/numbers/num_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/misc/numbers/num_7.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/misc/numbers/num_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/misc/numbers/num_8.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/misc/numbers/num_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/misc/numbers/num_9.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/misc/numbers/plus_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/misc/numbers/plus_1.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/misc/numbers/plus_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/misc/numbers/plus_2.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/misc/numbers/plus_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/misc/numbers/plus_3.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/misc/numbers/plus_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/misc/numbers/plus_4.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/misc/numbers/plus_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/misc/numbers/plus_5.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/misc/numbers/zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/misc/numbers/zero.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/misc/out_of_range.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/misc/out_of_range.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/misc/ray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/misc/ray.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/misc/slot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/misc/slot.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/misc/slot_cursed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/misc/slot_cursed.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/misc/slot_equipped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/misc/slot_equipped.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/misc/slot_melded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/misc/slot_melded.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/misc/slot_vehumet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/misc/slot_vehumet.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/misc/stab_brand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/misc/stab_brand.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/misc/suppressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/misc/suppressed.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/misc/todo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/misc/todo.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/misc/tried.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/misc/tried.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/misc/unseen_monster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/misc/unseen_monster.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/angel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/angel.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/animals/bat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/animals/bat.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/animals/rat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/animals/rat.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/boggart_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/boggart_new.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/boggart_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/boggart_old.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/brown_ooze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/brown_ooze.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/centaur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/centaur.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/cyclops_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/cyclops_new.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/cyclops_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/cyclops_old.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/daeva.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/daeva.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/death_drake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/death_drake.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/deep_dwarf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/deep_dwarf.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/deep_troll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/deep_troll.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/demons/imp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/demons/imp.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/demonspawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/demonspawn.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/dryad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/dryad.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/dwarf_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/dwarf_new.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/dwarf_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/dwarf_old.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/elf_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/elf_new.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/elf_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/elf_old.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/ettin_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/ettin_new.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/ettin_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/ettin_old.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/faun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/faun.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/fire_drake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/fire_drake.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/formicid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/formicid.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/gnoll_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/gnoll_new.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/gnoll_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/gnoll_old.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/gnome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/gnome.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/goblin_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/goblin_new.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/goblin_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/goblin_old.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/griffon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/griffon.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/harpy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/harpy.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/holy/apis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/holy/apis.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/holy/cherub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/holy/cherub.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/holy/daeva.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/holy/daeva.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/holy/ophan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/holy/ophan.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/human.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/human.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/human_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/human_new.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/human_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/human_old.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/human_slave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/human_slave.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/hydrataur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/hydrataur.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/ice_beast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/ice_beast.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/iron_troll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/iron_troll.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/jelly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/jelly.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/juggernaut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/juggernaut.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/kobold_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/kobold_new.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/kobold_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/kobold_old.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/lava_worm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/lava_worm.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/lindwurm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/lindwurm.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/manticore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/manticore.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/merfolk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/merfolk.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/mermaid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/mermaid.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/minotaur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/minotaur.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/naga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/naga.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/naga_mage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/naga_mage.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/ogre_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/ogre_new.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/ogre_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/ogre_old.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/orc_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/orc_new.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/orc_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/orc_old.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/orc_warlord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/orc_warlord.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/phoenix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/phoenix.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/quasit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/quasit.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/raven.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/raven.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/rock_troll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/rock_troll.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/salamander.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/salamander.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/satyr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/satyr.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/shadow_imp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/shadow_imp.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/siren_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/siren_new.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/siren_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/siren_old.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/slave_freed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/slave_freed.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/sphinx_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/sphinx_new.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/sphinx_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/sphinx_old.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/swamp_drake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/swamp_drake.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/tengu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/tengu.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/titan_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/titan_new.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/titan_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/titan_old.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/troll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/troll.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/undead/lich.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/undead/lich.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/unique/grum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/unique/grum.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/unique/jory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/unique/jory.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/unique/mara.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/unique/mara.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/water_nymph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/water_nymph.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/wizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/wizard.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/yaktaur_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/yaktaur_new.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/monster/yaktaur_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/monster/yaktaur_old.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/base/ghoul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/base/ghoul.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/base/shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/base/shadow.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/beard/pj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/beard/pj.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/body/aragorn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/body/aragorn.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/body/arwen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/body/arwen.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/body/banded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/body/banded.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/body/belt_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/body/belt_1.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/body/belt_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/body/belt_2.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/body/bloody.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/body/bloody.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/body/boromir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/body/boromir.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/body/chunli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/body/chunli.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/body/frodo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/body/frodo.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/body/gimli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/body/gimli.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/body/isildur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/body/isildur.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/body/jessica.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/body/jessica.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/body/karate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/body/karate.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/body/legolas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/body/legolas.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/body/merry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/body/merry.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/body/neck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/body/neck.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/body/pipin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/body/pipin.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/body/pj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/body/pj.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/body/plate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/body/plate.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/body/plate_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/body/plate_2.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/body/sam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/body/sam.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/body/saruman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/body/saruman.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/body/zhor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/body/zhor.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/boots/hooves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/boots/hooves.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/boots/pj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/boots/pj.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/boots/spider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/boots/spider.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/cloak/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/cloak/black.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/cloak/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/cloak/blue.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/cloak/brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/cloak/brown.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/cloak/cyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/cloak/cyan.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/cloak/gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/cloak/gray.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/cloak/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/cloak/green.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/cloak/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/cloak/red.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/cloak/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/cloak/white.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/cloak/yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/cloak/yellow.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/felids/cat_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/felids/cat_6.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/felids/cat_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/felids/cat_7.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/felids/cat_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/felids/cat_8.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/felids/cat_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/felids/cat_9.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/gloves/claws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/gloves/claws.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/hair/aragorn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/hair/aragorn.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/hair/arwen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/hair/arwen.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/hair/boromir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/hair/boromir.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/hair/brown_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/hair/brown_1.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/hair/brown_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/hair/brown_2.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/hair/djinn_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/hair/djinn_1.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/hair/djinn_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/hair/djinn_2.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/hair/elf_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/hair/elf_red.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/hair/fem_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/hair/fem_red.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/hair/frodo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/hair/frodo.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/hair/green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/hair/green.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/hair/legolas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/hair/legolas.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/hair/merry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/hair/merry.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/hair/pj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/hair/pj.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/hair/sam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/hair/sam.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/head/bear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/head/bear.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/head/chain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/head/chain.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/head/clown_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/head/clown_1.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/head/clown_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/head/clown_2.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/head/gandalf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/head/gandalf.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/head/healer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/head/healer.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/head/horned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/head/horned.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/head/horns_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/head/horns_1.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/head/horns_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/head/horns_2.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/head/horns_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/head/horns_3.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/head/iron_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/head/iron_1.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/head/iron_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/head/iron_2.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/head/iron_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/head/iron_3.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/head/isildur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/head/isildur.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/head/mummy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/head/mummy.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/head/straw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/head/straw.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/legs/chunli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/legs/chunli.png -------------------------------------------------------------------------------- /imgs/dungeon_crawl/player/legs/pj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/dungeon_crawl/player/legs/pj.png -------------------------------------------------------------------------------- /imgs/houses/blue_house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/houses/blue_house.png -------------------------------------------------------------------------------- /imgs/houses/blue_house_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/houses/blue_house_side.png -------------------------------------------------------------------------------- /imgs/houses/red_house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/houses/red_house.png -------------------------------------------------------------------------------- /imgs/houses/red_house_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/houses/red_house_side.png -------------------------------------------------------------------------------- /imgs/houses/row-3-col-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/houses/row-3-col-1.png -------------------------------------------------------------------------------- /imgs/houses/row-3-col-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/houses/row-3-col-2.png -------------------------------------------------------------------------------- /imgs/houses/row-3-col-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/houses/row-3-col-3.png -------------------------------------------------------------------------------- /imgs/houses/row-3-col-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/houses/row-3-col-4.png -------------------------------------------------------------------------------- /imgs/houses/row-3-col-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/houses/row-3-col-5.png -------------------------------------------------------------------------------- /imgs/houses/row-3-col-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/houses/row-3-col-6.png -------------------------------------------------------------------------------- /imgs/houses/row-4-col-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/houses/row-4-col-2.png -------------------------------------------------------------------------------- /imgs/houses/row-4-col-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/houses/row-4-col-4.png -------------------------------------------------------------------------------- /imgs/houses/row-4-col-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/houses/row-4-col-6.png -------------------------------------------------------------------------------- /imgs/houses/row-5-col-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/houses/row-5-col-2.png -------------------------------------------------------------------------------- /imgs/houses/row-5-col-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/houses/row-5-col-4.png -------------------------------------------------------------------------------- /imgs/houses/row-5-col-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/houses/row-5-col-6.png -------------------------------------------------------------------------------- /imgs/houses/row-6-col-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/houses/row-6-col-2.png -------------------------------------------------------------------------------- /imgs/houses/row-6-col-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/houses/row-6-col-4.png -------------------------------------------------------------------------------- /imgs/houses/row-6-col-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/houses/row-6-col-5.png -------------------------------------------------------------------------------- /imgs/houses/row-6-col-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/houses/row-6-col-6.png -------------------------------------------------------------------------------- /imgs/houses/shop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/houses/shop.png -------------------------------------------------------------------------------- /imgs/houses/tavern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/houses/tavern.png -------------------------------------------------------------------------------- /imgs/houses/yellow_house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/houses/yellow_house.png -------------------------------------------------------------------------------- /imgs/houses/yellow_house_side.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/houses/yellow_house_side.png -------------------------------------------------------------------------------- /imgs/interface/GUI0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/interface/GUI0.png -------------------------------------------------------------------------------- /imgs/interface/MenuButtonInactiv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/interface/MenuButtonInactiv.png -------------------------------------------------------------------------------- /imgs/interface/MenuButtonPreLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/interface/MenuButtonPreLight.png -------------------------------------------------------------------------------- /imgs/interface/PopUpMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/interface/PopUpMenu.png -------------------------------------------------------------------------------- /imgs/interface/blue_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/interface/blue_frame.png -------------------------------------------------------------------------------- /imgs/interface/dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/interface/dialog.png -------------------------------------------------------------------------------- /imgs/interface/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/interface/frame.png -------------------------------------------------------------------------------- /imgs/interface/green_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/interface/green_frame.png -------------------------------------------------------------------------------- /imgs/interface/grey_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/interface/grey_frame.png -------------------------------------------------------------------------------- /imgs/interface/item_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/interface/item_frame.png -------------------------------------------------------------------------------- /imgs/interface/main_menu_background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/interface/main_menu_background.jpg -------------------------------------------------------------------------------- /imgs/interface/new_turn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/interface/new_turn.png -------------------------------------------------------------------------------- /imgs/interface/sidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/interface/sidebar.png -------------------------------------------------------------------------------- /imgs/interface/white_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/interface/white_frame.png -------------------------------------------------------------------------------- /imgs/tiled_tilesets/dungeon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/tiled_tilesets/dungeon.png -------------------------------------------------------------------------------- /imgs/tiled_tilesets/dungeon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/tiled_tilesets/dungeon.tsx -------------------------------------------------------------------------------- /imgs/tiled_tilesets/houses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/tiled_tilesets/houses.png -------------------------------------------------------------------------------- /imgs/tiled_tilesets/houses.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/tiled_tilesets/houses.tsx -------------------------------------------------------------------------------- /imgs/tiled_tilesets/thugs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/imgs/tiled_tilesets/thugs.tsx -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/main.py -------------------------------------------------------------------------------- /maps/level_0/dialog_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/maps/level_0/dialog_0.txt -------------------------------------------------------------------------------- /maps/level_0/dialog_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/maps/level_0/dialog_1.txt -------------------------------------------------------------------------------- /maps/level_0/house_dialog_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/maps/level_0/house_dialog_0.txt -------------------------------------------------------------------------------- /maps/level_0/house_dialog_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/maps/level_0/house_dialog_1.txt -------------------------------------------------------------------------------- /maps/level_0/house_dialog_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/maps/level_0/house_dialog_2.txt -------------------------------------------------------------------------------- /maps/level_0/house_dialog_3.txt: -------------------------------------------------------------------------------- 1 | What goods are you looking to buy or sell? 2 | -------------------------------------------------------------------------------- /maps/level_0/map.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/maps/level_0/map.tmx -------------------------------------------------------------------------------- /maps/level_1/dialog_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/maps/level_1/dialog_0.txt -------------------------------------------------------------------------------- /maps/level_1/dialog_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/maps/level_1/dialog_1.txt -------------------------------------------------------------------------------- /maps/level_1/map.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/maps/level_1/map.tmx -------------------------------------------------------------------------------- /maps/level_2/dialog_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/maps/level_2/dialog_0.txt -------------------------------------------------------------------------------- /maps/level_2/dialog_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/maps/level_2/dialog_1.txt -------------------------------------------------------------------------------- /maps/level_2/map.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/maps/level_2/map.tmx -------------------------------------------------------------------------------- /maps/level_3/map.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/maps/level_3/map.tmx -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/pyproject.toml -------------------------------------------------------------------------------- /screenshots/inventory_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/screenshots/inventory_screen.png -------------------------------------------------------------------------------- /screenshots/main_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/screenshots/main_screen.png -------------------------------------------------------------------------------- /screenshots/shop_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/screenshots/shop_screen.png -------------------------------------------------------------------------------- /screenshots/status_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/screenshots/status_screen.png -------------------------------------------------------------------------------- /screenshots/trade_interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/screenshots/trade_interface.png -------------------------------------------------------------------------------- /sound_fx/armor.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/sound_fx/armor.ogg -------------------------------------------------------------------------------- /sound_fx/attack.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/sound_fx/attack.ogg -------------------------------------------------------------------------------- /sound_fx/cent_walk.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/sound_fx/cent_walk.ogg -------------------------------------------------------------------------------- /sound_fx/chest.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/sound_fx/chest.ogg -------------------------------------------------------------------------------- /sound_fx/door.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/sound_fx/door.ogg -------------------------------------------------------------------------------- /sound_fx/inventory.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/sound_fx/inventory.ogg -------------------------------------------------------------------------------- /sound_fx/necro_walk.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/sound_fx/necro_walk.ogg -------------------------------------------------------------------------------- /sound_fx/potion.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/sound_fx/potion.ogg -------------------------------------------------------------------------------- /sound_fx/skeleton_walk.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/sound_fx/skeleton_walk.ogg -------------------------------------------------------------------------------- /sound_fx/soundtrack.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/sound_fx/soundtrack.ogg -------------------------------------------------------------------------------- /sound_fx/talking.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/sound_fx/talking.ogg -------------------------------------------------------------------------------- /sound_fx/trade.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/sound_fx/trade.ogg -------------------------------------------------------------------------------- /sound_fx/waiting.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/sound_fx/waiting.ogg -------------------------------------------------------------------------------- /sound_fx/walk.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/sound_fx/walk.ogg -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/src/constants.py -------------------------------------------------------------------------------- /src/game_entities/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/game_entities/alteration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/src/game_entities/alteration.py -------------------------------------------------------------------------------- /src/game_entities/book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/src/game_entities/book.py -------------------------------------------------------------------------------- /src/game_entities/breakable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/src/game_entities/breakable.py -------------------------------------------------------------------------------- /src/game_entities/building.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/src/game_entities/building.py -------------------------------------------------------------------------------- /src/game_entities/character.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/src/game_entities/character.py -------------------------------------------------------------------------------- /src/game_entities/chest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/src/game_entities/chest.py -------------------------------------------------------------------------------- /src/game_entities/consumable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/src/game_entities/consumable.py -------------------------------------------------------------------------------- /src/game_entities/destroyable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/src/game_entities/destroyable.py -------------------------------------------------------------------------------- /src/game_entities/door.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/src/game_entities/door.py -------------------------------------------------------------------------------- /src/game_entities/effect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/src/game_entities/effect.py -------------------------------------------------------------------------------- /src/game_entities/entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/src/game_entities/entity.py -------------------------------------------------------------------------------- /src/game_entities/equipment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/src/game_entities/equipment.py -------------------------------------------------------------------------------- /src/game_entities/foe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/src/game_entities/foe.py -------------------------------------------------------------------------------- /src/game_entities/fountain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/src/game_entities/fountain.py -------------------------------------------------------------------------------- /src/game_entities/gold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/src/game_entities/gold.py -------------------------------------------------------------------------------- /src/game_entities/item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/src/game_entities/item.py -------------------------------------------------------------------------------- /src/game_entities/key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/src/game_entities/key.py -------------------------------------------------------------------------------- /src/game_entities/mission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/src/game_entities/mission.py -------------------------------------------------------------------------------- /src/game_entities/movable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/src/game_entities/movable.py -------------------------------------------------------------------------------- /src/game_entities/objective.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/src/game_entities/objective.py -------------------------------------------------------------------------------- /src/game_entities/obstacle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/src/game_entities/obstacle.py -------------------------------------------------------------------------------- /src/game_entities/player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/src/game_entities/player.py -------------------------------------------------------------------------------- /src/game_entities/portal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/src/game_entities/portal.py -------------------------------------------------------------------------------- /src/game_entities/potion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/src/game_entities/potion.py -------------------------------------------------------------------------------- /src/game_entities/shield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/src/game_entities/shield.py -------------------------------------------------------------------------------- /src/game_entities/shop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/src/game_entities/shop.py -------------------------------------------------------------------------------- /src/game_entities/skill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/src/game_entities/skill.py -------------------------------------------------------------------------------- /src/game_entities/spellbook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/src/game_entities/spellbook.py -------------------------------------------------------------------------------- /src/game_entities/weapon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/src/game_entities/weapon.py -------------------------------------------------------------------------------- /src/gui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/gui/animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/src/gui/animation.py -------------------------------------------------------------------------------- /src/gui/constant_sprites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/src/gui/constant_sprites.py -------------------------------------------------------------------------------- /src/gui/fade_in_out_animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/src/gui/fade_in_out_animation.py -------------------------------------------------------------------------------- /src/gui/fonts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/src/gui/fonts.py -------------------------------------------------------------------------------- /src/gui/position.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/src/gui/position.py -------------------------------------------------------------------------------- /src/gui/sidebar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/src/gui/sidebar.py -------------------------------------------------------------------------------- /src/gui/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/src/gui/tools.py -------------------------------------------------------------------------------- /src/scenes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/scenes/level_loading_scene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/src/scenes/level_loading_scene.py -------------------------------------------------------------------------------- /src/scenes/level_scene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/src/scenes/level_scene.py -------------------------------------------------------------------------------- /src/scenes/scene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/src/scenes/scene.py -------------------------------------------------------------------------------- /src/scenes/start_scene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/src/scenes/start_scene.py -------------------------------------------------------------------------------- /src/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/services/global_foes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/src/services/global_foes.py -------------------------------------------------------------------------------- /src/services/language.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/src/services/language.py -------------------------------------------------------------------------------- /src/services/load_from_tmx_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/src/services/load_from_tmx_manager.py -------------------------------------------------------------------------------- /src/services/load_from_xml_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/src/services/load_from_xml_manager.py -------------------------------------------------------------------------------- /src/services/menu_creator_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/src/services/menu_creator_manager.py -------------------------------------------------------------------------------- /src/services/menus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/src/services/menus.py -------------------------------------------------------------------------------- /src/services/options_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/src/services/options_manager.py -------------------------------------------------------------------------------- /src/services/save_state_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/src/services/save_state_manager.py -------------------------------------------------------------------------------- /src/services/scene_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/src/services/scene_manager.py -------------------------------------------------------------------------------- /tests/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/tests/README.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/random_data_library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/tests/random_data_library.py -------------------------------------------------------------------------------- /tests/test_alteration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/tests/test_alteration.py -------------------------------------------------------------------------------- /tests/test_building.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/tests/test_building.py -------------------------------------------------------------------------------- /tests/test_character.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/tests/test_character.py -------------------------------------------------------------------------------- /tests/test_chest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/tests/test_chest.py -------------------------------------------------------------------------------- /tests/test_destroyable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/tests/test_destroyable.py -------------------------------------------------------------------------------- /tests/test_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/tests/test_entity.py -------------------------------------------------------------------------------- /tests/test_equipment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/tests/test_equipment.py -------------------------------------------------------------------------------- /tests/test_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/tests/test_item.py -------------------------------------------------------------------------------- /tests/test_level_utilitarian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/tests/test_level_utilitarian.py -------------------------------------------------------------------------------- /tests/test_mission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/tests/test_mission.py -------------------------------------------------------------------------------- /tests/test_movable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/tests/test_movable.py -------------------------------------------------------------------------------- /tests/test_save_and_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/tests/test_save_and_load.py -------------------------------------------------------------------------------- /tests/test_saves/simple_save.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/tests/test_saves/simple_save.xml -------------------------------------------------------------------------------- /tests/test_shop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/tests/test_shop.py -------------------------------------------------------------------------------- /tests/test_start_screen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/tests/test_start_screen.py -------------------------------------------------------------------------------- /tests/test_weapon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/tests/test_weapon.py -------------------------------------------------------------------------------- /tests/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/tests/tools.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Grimmys/rpg_tactical_fantasy_game/HEAD/uv.lock --------------------------------------------------------------------------------