├── .gitignore ├── LICENSE ├── README.md ├── binaries ├── AshgardKeep_Linux.zip └── AshgardKeep_Windows.zip ├── docs ├── ASCII look.png ├── DebuggingNotes.txt ├── NewScreenshot.png ├── README.md ├── TreeView.txt ├── _config.yml ├── credits.txt ├── small_animation.gif └── wasd.png ├── engine.cfg ├── fonts ├── font_characters_32.fnt ├── font_characters_32.inc ├── font_characters_32.sv.png ├── font_characters_32.sv.png.flags ├── font_title.fnt ├── font_title.inc ├── font_title.sv.png ├── font_title.sv.png.flags ├── font_ui.fnt ├── font_ui.inc ├── font_ui.sv.png └── font_ui.sv.png.flags ├── global ├── DungeonGen.gd ├── DungeonThemes.gd ├── FOVGen.gd ├── GameData.gd ├── PathGen.gd ├── PlotGen.gd ├── Transition.gd └── Transition.tscn ├── graphics ├── brands │ ├── i-confusion.png │ ├── i-equipped1.png │ ├── i-equipped2.png │ ├── i-fireball.png │ └── i-lightning.png ├── dungeon │ ├── floorsx24 │ │ ├── bog_green0.png │ │ ├── bog_green1.png │ │ ├── bog_green2.png │ │ ├── bog_green3.png │ │ ├── cobble_blood1.png │ │ ├── cobble_blood10.png │ │ ├── cobble_blood11.png │ │ ├── cobble_blood12.png │ │ ├── cobble_blood2.png │ │ ├── cobble_blood3.png │ │ ├── cobble_blood4.png │ │ ├── cobble_blood5.png │ │ ├── cobble_blood6.png │ │ ├── cobble_blood7.png │ │ ├── cobble_blood8.png │ │ ├── cobble_blood9.png │ │ ├── dot.png │ │ ├── grey_dirt0.png │ │ ├── grey_dirt0.png.import │ │ ├── grey_dirt1.png │ │ ├── grey_dirt1.png.import │ │ ├── grey_dirt2.png │ │ ├── grey_dirt2.png.import │ │ ├── grey_dirt3.png │ │ ├── grey_dirt3.png.import │ │ ├── grey_dirt4.png │ │ ├── grey_dirt4.png.import │ │ ├── grey_dirt5.png │ │ ├── grey_dirt5.png.import │ │ ├── grey_dirt6.png │ │ ├── grey_dirt6.png.import │ │ ├── marble_floor_0_0.png │ │ ├── marble_floor_0_1.png │ │ ├── marble_floor_0_2.png │ │ ├── marble_floor_0_3.png │ │ ├── marble_floor_0_4.png │ │ ├── marble_floor_0_6.png │ │ ├── marble_floor_0_7.png │ │ ├── marble_floor_1_0.png │ │ ├── normals │ │ │ ├── bog_green_normal0.png │ │ │ ├── bog_green_normal1.png │ │ │ ├── bog_green_normal2.png │ │ │ ├── bog_green_normal3.png │ │ │ ├── cobble_blood10_normal.png │ │ │ ├── cobble_blood11_normal.png │ │ │ ├── cobble_blood12_normal.png │ │ │ ├── cobble_blood1_normal.png │ │ │ ├── cobble_blood2_normal.png │ │ │ ├── cobble_blood3_normal.png │ │ │ ├── cobble_blood4_normal.png │ │ │ ├── cobble_blood5_normal.png │ │ │ ├── cobble_blood6_normal.png │ │ │ ├── cobble_blood7_normal.png │ │ │ ├── cobble_blood8_normal.png │ │ │ ├── cobble_blood9_normal.png │ │ │ ├── grey_dirt0_normal.png │ │ │ ├── grey_dirt1_normal.png │ │ │ ├── grey_dirt2_normal.png │ │ │ ├── grey_dirt3_normal.png │ │ │ ├── grey_dirt4_normal.png │ │ │ ├── grey_dirt5_normal.png │ │ │ ├── grey_dirt6_normal.png │ │ │ ├── marble_floor_normal_0_0.png │ │ │ ├── marble_floor_normal_0_1.png │ │ │ ├── marble_floor_normal_0_2.png │ │ │ ├── marble_floor_normal_0_3.png │ │ │ ├── marble_floor_normal_0_4.png │ │ │ ├── marble_floor_normal_0_6.png │ │ │ ├── marble_floor_normal_0_7.png │ │ │ ├── marble_floor_normal_1_0.png │ │ │ ├── sandstone_floor0_normal.png │ │ │ ├── sandstone_floor0_normal.png.import │ │ │ ├── sandstone_floor1_normal.png │ │ │ ├── sandstone_floor1_normal.png.import │ │ │ ├── sandstone_floor2_normal.png │ │ │ ├── sandstone_floor2_normal.png.import │ │ │ ├── sandstone_floor3_normal.png │ │ │ ├── sandstone_floor3_normal.png.import │ │ │ ├── sandstone_floor4_normal.png │ │ │ ├── sandstone_floor4_normal.png.import │ │ │ ├── sandstone_floor5_normal.png │ │ │ ├── sandstone_floor5_normal.png.import │ │ │ ├── sandstone_floor6_normal.png │ │ │ ├── sandstone_floor6_normal.png.import │ │ │ ├── sandstone_floor7_normal.png │ │ │ ├── sandstone_floor7_normal.png.import │ │ │ ├── sandstone_floor8_normal.png │ │ │ ├── sandstone_floor8_normal.png.import │ │ │ ├── sandstone_floor9_normal.png │ │ │ ├── sandstone_floor9_normal.png.import │ │ │ ├── slab10_normal.png │ │ │ ├── slab11_normal.png │ │ │ ├── slab12_normal.png │ │ │ ├── slab13_normal.png │ │ │ ├── slab14_normal.png │ │ │ ├── slab15_normal.png │ │ │ ├── slab16_normal.png │ │ │ ├── slab1_normal.png │ │ │ ├── slab2_normal.png │ │ │ ├── slab3_normal.png │ │ │ ├── slab4_normal.png │ │ │ ├── slab5_normal.png │ │ │ ├── slab6_normal.png │ │ │ ├── slab7_normal.png │ │ │ ├── slab8_normal.png │ │ │ └── slab9_normal.png │ │ ├── sandstone_floor0.png │ │ ├── sandstone_floor0.png.import │ │ ├── sandstone_floor1.png │ │ ├── sandstone_floor1.png.import │ │ ├── sandstone_floor2.png │ │ ├── sandstone_floor2.png.import │ │ ├── sandstone_floor3.png │ │ ├── sandstone_floor3.png.import │ │ ├── sandstone_floor4.png │ │ ├── sandstone_floor4.png.import │ │ ├── sandstone_floor5.png │ │ ├── sandstone_floor5.png.import │ │ ├── sandstone_floor6.png │ │ ├── sandstone_floor6.png.import │ │ ├── sandstone_floor7.png │ │ ├── sandstone_floor7.png.import │ │ ├── sandstone_floor8.png │ │ ├── sandstone_floor8.png.import │ │ ├── sandstone_floor9.png │ │ ├── sandstone_floor9.png.import │ │ ├── slab1.png │ │ ├── slab10.png │ │ ├── slab11.png │ │ ├── slab12.png │ │ ├── slab13.png │ │ ├── slab14.png │ │ ├── slab15.png │ │ ├── slab16.png │ │ ├── slab2.png │ │ ├── slab3.png │ │ ├── slab4.png │ │ ├── slab5.png │ │ ├── slab6.png │ │ ├── slab7.png │ │ ├── slab8.png │ │ └── slab9.png │ ├── misc │ │ ├── fog.png.flags │ │ └── fogx30.png │ └── wallsx24 │ │ ├── brick_brown0.png │ │ ├── brick_brown1.png │ │ ├── brick_brown2.png │ │ ├── brick_brown3.png │ │ ├── brick_brown4.png │ │ ├── brick_brown5.png │ │ ├── brick_brown6.png │ │ ├── brick_brown7.png │ │ ├── brick_dark0.png │ │ ├── brick_dark0.png.import │ │ ├── brick_dark1.png │ │ ├── brick_dark1.png.import │ │ ├── brick_dark2.png │ │ ├── brick_dark2.png.import │ │ ├── brick_dark3.png │ │ ├── brick_dark3.png.import │ │ ├── brick_dark4.png │ │ ├── brick_dark4.png.import │ │ ├── brick_dark5.png │ │ ├── brick_dark5.png.import │ │ ├── brick_dark6.png │ │ ├── brick_dark6.png.import │ │ ├── hash.png │ │ ├── sandstone_wall0.png │ │ ├── sandstone_wall0.png.import │ │ ├── sandstone_wall1.png │ │ ├── sandstone_wall1.png.import │ │ ├── sandstone_wall2.png │ │ ├── sandstone_wall2.png.import │ │ ├── sandstone_wall3.png │ │ ├── sandstone_wall3.png.import │ │ ├── sandstone_wall4.png │ │ ├── sandstone_wall4.png.import │ │ ├── sandstone_wall5.png │ │ ├── sandstone_wall5.png.import │ │ ├── sandstone_wall6.png │ │ ├── sandstone_wall6.png.import │ │ ├── sandstone_wall7.png │ │ ├── sandstone_wall7.png.import │ │ ├── sandstone_wall8.png │ │ ├── sandstone_wall8.png.import │ │ ├── sandstone_wall9.png │ │ ├── sandstone_wall9.png.import │ │ ├── slime0.png │ │ ├── slime1.png │ │ ├── slime2.png │ │ ├── slime3.png │ │ ├── stone_gray0.png │ │ ├── stone_gray1.png │ │ ├── stone_gray2.png │ │ └── stone_gray3.png ├── fx │ ├── blood_green0.png │ ├── blood_green1.png │ ├── blood_green2.png │ ├── blood_green3.png │ ├── blood_green4.png │ ├── blood_jade0.png │ ├── blood_jade1.png │ ├── blood_jade2.png │ ├── blood_jade3.png │ ├── blood_jade4.png │ ├── blood_red0.png │ ├── blood_red1.png │ ├── blood_red2.png │ ├── blood_red3.png │ ├── blood_red4.png │ ├── blood_scarlet0.png │ ├── blood_scarlet1.png │ ├── blood_scarlet2.png │ ├── blood_scarlet3.png │ ├── blood_scarlet4.png │ ├── bolt_electricity.png │ ├── bolt_fire.png │ ├── cursor.png │ ├── portal.png │ ├── smoke_particle.png │ └── web.png ├── gui │ ├── AT_teal.png │ ├── ashgard_keep.png │ ├── black.png │ ├── button.png │ ├── loading0.png │ ├── loading1.png │ ├── loading2.png │ ├── message_shader.png │ ├── ml_torch.png │ ├── slot.png │ ├── sword.png │ ├── torch_extinguished.png │ └── torch_lit.png ├── lights │ ├── spark.png │ ├── torch.png │ └── torch.png.flags ├── monster │ └── AT_green.png └── particles │ ├── Flames.gd │ ├── Flames.tscn │ ├── blood_drain.gd │ ├── blood_drain.tscn │ ├── bolt.png │ ├── bolt.png.flags │ ├── electricity.gd │ ├── electricity.tscn │ ├── fairy_dust.gd │ ├── fairy_dust.tscn │ ├── fire_particle.png │ ├── green_skull.png │ ├── necro_energy.gd │ ├── necro_energy.tscn │ ├── necrotic_bolt.png │ ├── necrotic_spark.png │ ├── pixie_dust.gd │ ├── pixie_dust.tscn │ ├── pixie_warrior_dust.tscn │ ├── portal_spark.png │ ├── skull.png │ ├── spore_cloud.gd │ ├── spore_cloud.tscn │ ├── voodoo_bolt.png │ ├── voodoo_energy.tscn │ ├── voodoo_particles.gd │ ├── voodoo_particles.tscn │ └── voodoo_spark.png ├── icon.png ├── icon.png.flags ├── objects ├── Player │ ├── CameraShake.gd │ ├── Player.png │ ├── Player.tscn │ └── Torch.gd ├── armour │ ├── Bone_armour.png │ ├── Bone_armour.tex │ ├── Skin_armour.png │ ├── Skin_armour.tex │ ├── bone_armour.tscn │ ├── chainmail_armour.png │ ├── chainmail_armour.tscn │ ├── crude_leather_armour.tscn │ ├── fine_leather_armour.tscn │ ├── heavy_cloth_armour.tscn │ ├── leather_armour1.png │ ├── leather_armour1.tex │ ├── leather_armour2.png │ ├── new_bone_armour.png │ ├── new_bone_armour.tex │ └── skin_armour.tscn ├── components │ ├── Armour │ │ ├── Armour.gd │ │ └── Armour.tscn │ ├── Controller │ │ ├── Controller.gd │ │ └── Controller.tscn │ ├── Fighter │ │ ├── Fighter.gd │ │ └── Fighter.tscn │ ├── Item │ │ ├── Item.gd │ │ └── Item.tscn │ ├── Object │ │ ├── HPBar.tscn │ │ ├── Object.gd │ │ └── Object.tscn │ └── Weapon │ │ ├── Weapon.gd │ │ └── Weapon.tscn ├── items │ ├── GreaterHealthPotion.tscn │ ├── HealthPotion.tscn │ ├── Portal.tscn │ ├── Rock.tscn │ ├── Scroll_Confusion.tscn │ ├── Scroll_Fireball.tscn │ ├── Scroll_LightningBolt.tscn │ ├── StealthPotion.tscn │ ├── books │ │ ├── Book_necro1.tscn │ │ ├── Book_necro2.tscn │ │ ├── book_of_the_dead.png │ │ ├── book_of_the_dead.tex │ │ ├── lore_necro1.gd │ │ └── lore_necro2.gd │ ├── misc_stone.png │ ├── portal_script.gd │ ├── purple.png │ ├── red.png │ ├── scroll_2.png │ └── torch │ │ └── torch.tscn ├── monsters │ ├── animals │ │ ├── bat.tscn │ │ ├── bat_AI.gd │ │ ├── lvl2 │ │ │ ├── blood_bat.tscn │ │ │ ├── blood_bat_AI.gd │ │ │ ├── ratling.tscn │ │ │ ├── ratling_AI.gd │ │ │ ├── ratling_inventory.gd │ │ │ ├── scorpion.tscn │ │ │ └── scorpion_AI.gd │ │ ├── lvl3 │ │ │ ├── rabid_wolf.tscn │ │ │ ├── rabid_wolf_AI.gd │ │ │ └── vampire_bat.tscn │ │ ├── rat.tscn │ │ └── rat_AI.gd │ ├── fey │ │ ├── fairy_assassin.tscn │ │ ├── fairy_assassin_AI.gd │ │ ├── lvl2 │ │ │ ├── pixie_beserker.tscn │ │ │ ├── pixie_beserkerl_AI.gd │ │ │ └── pixie_beserkerl_Inventory.gd │ │ └── lvl3 │ │ │ └── pixie_warrior.tscn │ ├── fungus │ │ ├── blue_fungus.tscn │ │ ├── blue_fungus_AI.gd │ │ ├── green_fungus.tscn │ │ ├── lvl2 │ │ │ ├── goblin_mushroom.tscn │ │ │ ├── goblin_mushroom_AI.gd │ │ │ ├── mushroom_person.tscn │ │ │ └── mushroom_person_AI.gd │ │ ├── lvl3 │ │ │ ├── matango.tscn │ │ │ ├── matango_AI.gd │ │ │ ├── mushroom_person.tscn │ │ │ └── mushroom_person_AI.gd │ │ ├── yellow_fungus.tscn │ │ └── yellow_fungus_AI.gd │ ├── greenskins │ │ ├── goblin.tscn │ │ ├── goblin_AI.gd │ │ ├── goblin_inventory.gd │ │ ├── goblin_witch_dr_AI.gd │ │ ├── lvl2 │ │ │ ├── goblin.tscn │ │ │ ├── goblin_AI.gd │ │ │ ├── goblin_warrior.tscn │ │ │ ├── orc_warrior.tscn │ │ │ ├── orc_warrior_AI.gd │ │ │ ├── orc_warrior_Inventory.gd │ │ │ ├── orc_warrior_inventory.gd │ │ │ ├── shaman.tscn │ │ │ ├── shaman_AI.gd │ │ │ └── shaman_Inventory.gd │ │ ├── lvl3 │ │ │ ├── goblin_warrior.tscn │ │ │ ├── goblin_warrior_Inventory.gd │ │ │ ├── orc_warrior.tscn │ │ │ └── orc_warrior_Inventory.gd │ │ ├── rock_thrower_goblin.tscn │ │ ├── rock_thrower_goblin_AI.gd │ │ ├── rock_thrower_goblin_inventory.gd │ │ ├── witch_doctor.tscn │ │ ├── witch_doctor_AI.gd │ │ └── witch_doctor_Inventory.gd │ ├── shadow.tscn │ ├── shadow_AI.gd │ ├── trolls │ │ ├── rock_troll.tscn │ │ ├── rock_troll_AI.gd │ │ └── rock_troll_Inventory.gd │ └── undead │ │ ├── diseased_zombie.tscn │ │ ├── ghoul_rat.tscn │ │ ├── ghoul_rat_AI.gd │ │ ├── lvl2 │ │ ├── ghoul.tscn │ │ ├── ghoul_AI.gd │ │ ├── ghoul_inventory.gd │ │ ├── hell_puppy.tscn │ │ ├── hell_puppy_AI.gd │ │ ├── necromancer2.tscn │ │ └── necromancer2_inventory.gd │ │ ├── lvl3 │ │ ├── demonic_puppy.tscn │ │ ├── demonic_puppy_AI.gd │ │ ├── hell_hound.tscn │ │ ├── hell_hound_AI.gd │ │ ├── patchwork_bride.tscn │ │ ├── patchwork_bride_AI.gd │ │ ├── patchwork_golem.tscn │ │ ├── patchwork_golem_AI.gd │ │ ├── patchwork_golem_inventory.gd │ │ ├── vampire.tscn │ │ ├── vampire_AI.gd │ │ ├── vampire_inventory.gd │ │ ├── zombie_warrior.tscn │ │ ├── zombie_warrior_AI.gd │ │ └── zombie_warrior_inventory.gd │ │ ├── necromancer.tscn │ │ ├── necromancer_AI.gd │ │ ├── necromancer_inventory.gd │ │ ├── poison_cloud.gd │ │ ├── poison_cloud.tscn │ │ ├── zombie.tscn │ │ └── zombie_AI.gd ├── traps │ ├── fungus_trap.tscn │ ├── web.gd │ └── web.tscn └── weapons │ ├── blood_drinker.png │ ├── blood_drinker.tscn │ ├── bone_dagger.png │ ├── bone_dagger.tscn │ ├── club.png │ ├── club.tscn │ ├── crude_dagger.tscn │ ├── dagger.png │ ├── dagger2.png │ ├── goblin_axe.png │ ├── goblin_axe.tscn │ ├── goblin_dagger.tscn │ ├── orc_blade.png │ ├── orc_blade.tscn │ ├── orcish_dagger.png │ ├── rusty_dagger.tscn │ ├── shard_sword.tscn │ ├── spiked_club.png │ ├── spiked_club.tscn │ ├── spiked_mace.png │ ├── spiked_mace.tscn │ ├── sword1.png │ └── tsurugi.png ├── resources ├── Theme.tres ├── black_panel.tres ├── borderframe_aqua.tres ├── borderframe_blank.tres ├── borderframe_green.tres └── panelframe_stone.tres ├── scenes ├── Game │ ├── Game.gd │ ├── Game.tscn │ ├── Inventory.gd │ ├── InventoryMenu.gd │ ├── InventorySlot.gd │ ├── InventorySlot.tscn │ ├── ItemButton.gd │ ├── ItemButton.tscn │ ├── LevelUp.gd │ ├── PlayerInfo.gd │ └── PlayerInfo.tscn ├── GameOver │ ├── RIPScreen.gd │ └── RIPScreen.tscn ├── Map │ ├── Fogmap.gd │ ├── Map.gd │ └── Map.tscn ├── Start.gd ├── Start.tscn └── TitleMenu │ ├── LoadingScreen.gd │ ├── LoadingScreen.tscn │ ├── TitleMenu.gd │ └── TitleMenu.tscn └── tilesets ├── Dungeon_edit.tscn ├── FogSet.tres ├── FogSet.tscn └── dungeon.tres /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/README.md -------------------------------------------------------------------------------- /binaries/AshgardKeep_Linux.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/binaries/AshgardKeep_Linux.zip -------------------------------------------------------------------------------- /binaries/AshgardKeep_Windows.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/binaries/AshgardKeep_Windows.zip -------------------------------------------------------------------------------- /docs/ASCII look.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/docs/ASCII look.png -------------------------------------------------------------------------------- /docs/DebuggingNotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/docs/DebuggingNotes.txt -------------------------------------------------------------------------------- /docs/NewScreenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/docs/NewScreenshot.png -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/TreeView.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/docs/TreeView.txt -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/credits.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/docs/credits.txt -------------------------------------------------------------------------------- /docs/small_animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/docs/small_animation.gif -------------------------------------------------------------------------------- /docs/wasd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/docs/wasd.png -------------------------------------------------------------------------------- /engine.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/engine.cfg -------------------------------------------------------------------------------- /fonts/font_characters_32.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/fonts/font_characters_32.fnt -------------------------------------------------------------------------------- /fonts/font_characters_32.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/fonts/font_characters_32.inc -------------------------------------------------------------------------------- /fonts/font_characters_32.sv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/fonts/font_characters_32.sv.png -------------------------------------------------------------------------------- /fonts/font_characters_32.sv.png.flags: -------------------------------------------------------------------------------- 1 | filter=true 2 | -------------------------------------------------------------------------------- /fonts/font_title.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/fonts/font_title.fnt -------------------------------------------------------------------------------- /fonts/font_title.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/fonts/font_title.inc -------------------------------------------------------------------------------- /fonts/font_title.sv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/fonts/font_title.sv.png -------------------------------------------------------------------------------- /fonts/font_title.sv.png.flags: -------------------------------------------------------------------------------- 1 | filter=true 2 | -------------------------------------------------------------------------------- /fonts/font_ui.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/fonts/font_ui.fnt -------------------------------------------------------------------------------- /fonts/font_ui.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/fonts/font_ui.inc -------------------------------------------------------------------------------- /fonts/font_ui.sv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/fonts/font_ui.sv.png -------------------------------------------------------------------------------- /fonts/font_ui.sv.png.flags: -------------------------------------------------------------------------------- 1 | filter=true 2 | -------------------------------------------------------------------------------- /global/DungeonGen.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/global/DungeonGen.gd -------------------------------------------------------------------------------- /global/DungeonThemes.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/global/DungeonThemes.gd -------------------------------------------------------------------------------- /global/FOVGen.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/global/FOVGen.gd -------------------------------------------------------------------------------- /global/GameData.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/global/GameData.gd -------------------------------------------------------------------------------- /global/PathGen.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/global/PathGen.gd -------------------------------------------------------------------------------- /global/PlotGen.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/global/PlotGen.gd -------------------------------------------------------------------------------- /global/Transition.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/global/Transition.gd -------------------------------------------------------------------------------- /global/Transition.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/global/Transition.tscn -------------------------------------------------------------------------------- /graphics/brands/i-confusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/brands/i-confusion.png -------------------------------------------------------------------------------- /graphics/brands/i-equipped1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/brands/i-equipped1.png -------------------------------------------------------------------------------- /graphics/brands/i-equipped2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/brands/i-equipped2.png -------------------------------------------------------------------------------- /graphics/brands/i-fireball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/brands/i-fireball.png -------------------------------------------------------------------------------- /graphics/brands/i-lightning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/brands/i-lightning.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/bog_green0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/bog_green0.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/bog_green1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/bog_green1.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/bog_green2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/bog_green2.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/bog_green3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/bog_green3.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/cobble_blood1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/cobble_blood1.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/cobble_blood10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/cobble_blood10.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/cobble_blood11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/cobble_blood11.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/cobble_blood12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/cobble_blood12.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/cobble_blood2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/cobble_blood2.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/cobble_blood3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/cobble_blood3.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/cobble_blood4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/cobble_blood4.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/cobble_blood5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/cobble_blood5.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/cobble_blood6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/cobble_blood6.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/cobble_blood7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/cobble_blood7.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/cobble_blood8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/cobble_blood8.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/cobble_blood9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/cobble_blood9.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/dot.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/grey_dirt0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/grey_dirt0.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/grey_dirt0.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/grey_dirt0.png.import -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/grey_dirt1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/grey_dirt1.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/grey_dirt1.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/grey_dirt1.png.import -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/grey_dirt2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/grey_dirt2.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/grey_dirt2.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/grey_dirt2.png.import -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/grey_dirt3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/grey_dirt3.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/grey_dirt3.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/grey_dirt3.png.import -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/grey_dirt4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/grey_dirt4.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/grey_dirt4.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/grey_dirt4.png.import -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/grey_dirt5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/grey_dirt5.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/grey_dirt5.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/grey_dirt5.png.import -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/grey_dirt6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/grey_dirt6.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/grey_dirt6.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/grey_dirt6.png.import -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/marble_floor_0_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/marble_floor_0_0.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/marble_floor_0_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/marble_floor_0_1.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/marble_floor_0_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/marble_floor_0_2.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/marble_floor_0_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/marble_floor_0_3.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/marble_floor_0_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/marble_floor_0_4.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/marble_floor_0_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/marble_floor_0_6.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/marble_floor_0_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/marble_floor_0_7.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/marble_floor_1_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/marble_floor_1_0.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/bog_green_normal0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/bog_green_normal0.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/bog_green_normal1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/bog_green_normal1.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/bog_green_normal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/bog_green_normal2.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/bog_green_normal3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/bog_green_normal3.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/cobble_blood10_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/cobble_blood10_normal.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/cobble_blood11_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/cobble_blood11_normal.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/cobble_blood12_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/cobble_blood12_normal.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/cobble_blood1_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/cobble_blood1_normal.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/cobble_blood2_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/cobble_blood2_normal.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/cobble_blood3_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/cobble_blood3_normal.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/cobble_blood4_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/cobble_blood4_normal.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/cobble_blood5_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/cobble_blood5_normal.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/cobble_blood6_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/cobble_blood6_normal.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/cobble_blood7_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/cobble_blood7_normal.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/cobble_blood8_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/cobble_blood8_normal.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/cobble_blood9_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/cobble_blood9_normal.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/grey_dirt0_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/grey_dirt0_normal.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/grey_dirt1_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/grey_dirt1_normal.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/grey_dirt2_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/grey_dirt2_normal.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/grey_dirt3_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/grey_dirt3_normal.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/grey_dirt4_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/grey_dirt4_normal.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/grey_dirt5_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/grey_dirt5_normal.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/grey_dirt6_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/grey_dirt6_normal.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/marble_floor_normal_0_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/marble_floor_normal_0_0.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/marble_floor_normal_0_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/marble_floor_normal_0_1.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/marble_floor_normal_0_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/marble_floor_normal_0_2.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/marble_floor_normal_0_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/marble_floor_normal_0_3.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/marble_floor_normal_0_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/marble_floor_normal_0_4.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/marble_floor_normal_0_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/marble_floor_normal_0_6.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/marble_floor_normal_0_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/marble_floor_normal_0_7.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/marble_floor_normal_1_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/marble_floor_normal_1_0.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/sandstone_floor0_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/sandstone_floor0_normal.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/sandstone_floor0_normal.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/sandstone_floor0_normal.png.import -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/sandstone_floor1_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/sandstone_floor1_normal.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/sandstone_floor1_normal.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/sandstone_floor1_normal.png.import -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/sandstone_floor2_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/sandstone_floor2_normal.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/sandstone_floor2_normal.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/sandstone_floor2_normal.png.import -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/sandstone_floor3_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/sandstone_floor3_normal.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/sandstone_floor3_normal.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/sandstone_floor3_normal.png.import -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/sandstone_floor4_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/sandstone_floor4_normal.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/sandstone_floor4_normal.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/sandstone_floor4_normal.png.import -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/sandstone_floor5_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/sandstone_floor5_normal.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/sandstone_floor5_normal.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/sandstone_floor5_normal.png.import -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/sandstone_floor6_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/sandstone_floor6_normal.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/sandstone_floor6_normal.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/sandstone_floor6_normal.png.import -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/sandstone_floor7_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/sandstone_floor7_normal.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/sandstone_floor7_normal.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/sandstone_floor7_normal.png.import -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/sandstone_floor8_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/sandstone_floor8_normal.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/sandstone_floor8_normal.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/sandstone_floor8_normal.png.import -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/sandstone_floor9_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/sandstone_floor9_normal.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/sandstone_floor9_normal.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/sandstone_floor9_normal.png.import -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/slab10_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/slab10_normal.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/slab11_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/slab11_normal.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/slab12_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/slab12_normal.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/slab13_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/slab13_normal.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/slab14_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/slab14_normal.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/slab15_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/slab15_normal.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/slab16_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/slab16_normal.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/slab1_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/slab1_normal.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/slab2_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/slab2_normal.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/slab3_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/slab3_normal.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/slab4_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/slab4_normal.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/slab5_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/slab5_normal.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/slab6_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/slab6_normal.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/slab7_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/slab7_normal.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/slab8_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/slab8_normal.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/normals/slab9_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/normals/slab9_normal.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/sandstone_floor0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/sandstone_floor0.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/sandstone_floor0.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/sandstone_floor0.png.import -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/sandstone_floor1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/sandstone_floor1.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/sandstone_floor1.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/sandstone_floor1.png.import -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/sandstone_floor2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/sandstone_floor2.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/sandstone_floor2.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/sandstone_floor2.png.import -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/sandstone_floor3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/sandstone_floor3.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/sandstone_floor3.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/sandstone_floor3.png.import -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/sandstone_floor4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/sandstone_floor4.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/sandstone_floor4.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/sandstone_floor4.png.import -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/sandstone_floor5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/sandstone_floor5.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/sandstone_floor5.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/sandstone_floor5.png.import -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/sandstone_floor6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/sandstone_floor6.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/sandstone_floor6.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/sandstone_floor6.png.import -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/sandstone_floor7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/sandstone_floor7.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/sandstone_floor7.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/sandstone_floor7.png.import -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/sandstone_floor8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/sandstone_floor8.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/sandstone_floor8.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/sandstone_floor8.png.import -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/sandstone_floor9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/sandstone_floor9.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/sandstone_floor9.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/sandstone_floor9.png.import -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/slab1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/slab1.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/slab10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/slab10.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/slab11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/slab11.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/slab12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/slab12.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/slab13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/slab13.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/slab14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/slab14.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/slab15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/slab15.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/slab16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/slab16.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/slab2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/slab2.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/slab3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/slab3.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/slab4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/slab4.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/slab5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/slab5.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/slab6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/slab6.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/slab7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/slab7.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/slab8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/slab8.png -------------------------------------------------------------------------------- /graphics/dungeon/floorsx24/slab9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/floorsx24/slab9.png -------------------------------------------------------------------------------- /graphics/dungeon/misc/fog.png.flags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/misc/fog.png.flags -------------------------------------------------------------------------------- /graphics/dungeon/misc/fogx30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/misc/fogx30.png -------------------------------------------------------------------------------- /graphics/dungeon/wallsx24/brick_brown0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/wallsx24/brick_brown0.png -------------------------------------------------------------------------------- /graphics/dungeon/wallsx24/brick_brown1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/wallsx24/brick_brown1.png -------------------------------------------------------------------------------- /graphics/dungeon/wallsx24/brick_brown2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/wallsx24/brick_brown2.png -------------------------------------------------------------------------------- /graphics/dungeon/wallsx24/brick_brown3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/wallsx24/brick_brown3.png -------------------------------------------------------------------------------- /graphics/dungeon/wallsx24/brick_brown4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/wallsx24/brick_brown4.png -------------------------------------------------------------------------------- /graphics/dungeon/wallsx24/brick_brown5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/wallsx24/brick_brown5.png -------------------------------------------------------------------------------- /graphics/dungeon/wallsx24/brick_brown6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/wallsx24/brick_brown6.png -------------------------------------------------------------------------------- /graphics/dungeon/wallsx24/brick_brown7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/wallsx24/brick_brown7.png -------------------------------------------------------------------------------- /graphics/dungeon/wallsx24/brick_dark0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/wallsx24/brick_dark0.png -------------------------------------------------------------------------------- /graphics/dungeon/wallsx24/brick_dark0.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/wallsx24/brick_dark0.png.import -------------------------------------------------------------------------------- /graphics/dungeon/wallsx24/brick_dark1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/wallsx24/brick_dark1.png -------------------------------------------------------------------------------- /graphics/dungeon/wallsx24/brick_dark1.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/wallsx24/brick_dark1.png.import -------------------------------------------------------------------------------- /graphics/dungeon/wallsx24/brick_dark2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/wallsx24/brick_dark2.png -------------------------------------------------------------------------------- /graphics/dungeon/wallsx24/brick_dark2.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/wallsx24/brick_dark2.png.import -------------------------------------------------------------------------------- /graphics/dungeon/wallsx24/brick_dark3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/wallsx24/brick_dark3.png -------------------------------------------------------------------------------- /graphics/dungeon/wallsx24/brick_dark3.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/wallsx24/brick_dark3.png.import -------------------------------------------------------------------------------- /graphics/dungeon/wallsx24/brick_dark4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/wallsx24/brick_dark4.png -------------------------------------------------------------------------------- /graphics/dungeon/wallsx24/brick_dark4.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/wallsx24/brick_dark4.png.import -------------------------------------------------------------------------------- /graphics/dungeon/wallsx24/brick_dark5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/wallsx24/brick_dark5.png -------------------------------------------------------------------------------- /graphics/dungeon/wallsx24/brick_dark5.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/wallsx24/brick_dark5.png.import -------------------------------------------------------------------------------- /graphics/dungeon/wallsx24/brick_dark6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/wallsx24/brick_dark6.png -------------------------------------------------------------------------------- /graphics/dungeon/wallsx24/brick_dark6.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/wallsx24/brick_dark6.png.import -------------------------------------------------------------------------------- /graphics/dungeon/wallsx24/hash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/wallsx24/hash.png -------------------------------------------------------------------------------- /graphics/dungeon/wallsx24/sandstone_wall0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/wallsx24/sandstone_wall0.png -------------------------------------------------------------------------------- /graphics/dungeon/wallsx24/sandstone_wall0.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/wallsx24/sandstone_wall0.png.import -------------------------------------------------------------------------------- /graphics/dungeon/wallsx24/sandstone_wall1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/wallsx24/sandstone_wall1.png -------------------------------------------------------------------------------- /graphics/dungeon/wallsx24/sandstone_wall1.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/wallsx24/sandstone_wall1.png.import -------------------------------------------------------------------------------- /graphics/dungeon/wallsx24/sandstone_wall2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/wallsx24/sandstone_wall2.png -------------------------------------------------------------------------------- /graphics/dungeon/wallsx24/sandstone_wall2.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/wallsx24/sandstone_wall2.png.import -------------------------------------------------------------------------------- /graphics/dungeon/wallsx24/sandstone_wall3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/wallsx24/sandstone_wall3.png -------------------------------------------------------------------------------- /graphics/dungeon/wallsx24/sandstone_wall3.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/wallsx24/sandstone_wall3.png.import -------------------------------------------------------------------------------- /graphics/dungeon/wallsx24/sandstone_wall4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/wallsx24/sandstone_wall4.png -------------------------------------------------------------------------------- /graphics/dungeon/wallsx24/sandstone_wall4.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/wallsx24/sandstone_wall4.png.import -------------------------------------------------------------------------------- /graphics/dungeon/wallsx24/sandstone_wall5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/wallsx24/sandstone_wall5.png -------------------------------------------------------------------------------- /graphics/dungeon/wallsx24/sandstone_wall5.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/wallsx24/sandstone_wall5.png.import -------------------------------------------------------------------------------- /graphics/dungeon/wallsx24/sandstone_wall6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/wallsx24/sandstone_wall6.png -------------------------------------------------------------------------------- /graphics/dungeon/wallsx24/sandstone_wall6.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/wallsx24/sandstone_wall6.png.import -------------------------------------------------------------------------------- /graphics/dungeon/wallsx24/sandstone_wall7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/wallsx24/sandstone_wall7.png -------------------------------------------------------------------------------- /graphics/dungeon/wallsx24/sandstone_wall7.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/wallsx24/sandstone_wall7.png.import -------------------------------------------------------------------------------- /graphics/dungeon/wallsx24/sandstone_wall8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/wallsx24/sandstone_wall8.png -------------------------------------------------------------------------------- /graphics/dungeon/wallsx24/sandstone_wall8.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/wallsx24/sandstone_wall8.png.import -------------------------------------------------------------------------------- /graphics/dungeon/wallsx24/sandstone_wall9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/wallsx24/sandstone_wall9.png -------------------------------------------------------------------------------- /graphics/dungeon/wallsx24/sandstone_wall9.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/wallsx24/sandstone_wall9.png.import -------------------------------------------------------------------------------- /graphics/dungeon/wallsx24/slime0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/wallsx24/slime0.png -------------------------------------------------------------------------------- /graphics/dungeon/wallsx24/slime1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/wallsx24/slime1.png -------------------------------------------------------------------------------- /graphics/dungeon/wallsx24/slime2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/wallsx24/slime2.png -------------------------------------------------------------------------------- /graphics/dungeon/wallsx24/slime3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/wallsx24/slime3.png -------------------------------------------------------------------------------- /graphics/dungeon/wallsx24/stone_gray0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/wallsx24/stone_gray0.png -------------------------------------------------------------------------------- /graphics/dungeon/wallsx24/stone_gray1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/wallsx24/stone_gray1.png -------------------------------------------------------------------------------- /graphics/dungeon/wallsx24/stone_gray2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/wallsx24/stone_gray2.png -------------------------------------------------------------------------------- /graphics/dungeon/wallsx24/stone_gray3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/dungeon/wallsx24/stone_gray3.png -------------------------------------------------------------------------------- /graphics/fx/blood_green0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/fx/blood_green0.png -------------------------------------------------------------------------------- /graphics/fx/blood_green1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/fx/blood_green1.png -------------------------------------------------------------------------------- /graphics/fx/blood_green2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/fx/blood_green2.png -------------------------------------------------------------------------------- /graphics/fx/blood_green3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/fx/blood_green3.png -------------------------------------------------------------------------------- /graphics/fx/blood_green4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/fx/blood_green4.png -------------------------------------------------------------------------------- /graphics/fx/blood_jade0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/fx/blood_jade0.png -------------------------------------------------------------------------------- /graphics/fx/blood_jade1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/fx/blood_jade1.png -------------------------------------------------------------------------------- /graphics/fx/blood_jade2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/fx/blood_jade2.png -------------------------------------------------------------------------------- /graphics/fx/blood_jade3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/fx/blood_jade3.png -------------------------------------------------------------------------------- /graphics/fx/blood_jade4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/fx/blood_jade4.png -------------------------------------------------------------------------------- /graphics/fx/blood_red0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/fx/blood_red0.png -------------------------------------------------------------------------------- /graphics/fx/blood_red1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/fx/blood_red1.png -------------------------------------------------------------------------------- /graphics/fx/blood_red2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/fx/blood_red2.png -------------------------------------------------------------------------------- /graphics/fx/blood_red3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/fx/blood_red3.png -------------------------------------------------------------------------------- /graphics/fx/blood_red4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/fx/blood_red4.png -------------------------------------------------------------------------------- /graphics/fx/blood_scarlet0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/fx/blood_scarlet0.png -------------------------------------------------------------------------------- /graphics/fx/blood_scarlet1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/fx/blood_scarlet1.png -------------------------------------------------------------------------------- /graphics/fx/blood_scarlet2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/fx/blood_scarlet2.png -------------------------------------------------------------------------------- /graphics/fx/blood_scarlet3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/fx/blood_scarlet3.png -------------------------------------------------------------------------------- /graphics/fx/blood_scarlet4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/fx/blood_scarlet4.png -------------------------------------------------------------------------------- /graphics/fx/bolt_electricity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/fx/bolt_electricity.png -------------------------------------------------------------------------------- /graphics/fx/bolt_fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/fx/bolt_fire.png -------------------------------------------------------------------------------- /graphics/fx/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/fx/cursor.png -------------------------------------------------------------------------------- /graphics/fx/portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/fx/portal.png -------------------------------------------------------------------------------- /graphics/fx/smoke_particle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/fx/smoke_particle.png -------------------------------------------------------------------------------- /graphics/fx/web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/fx/web.png -------------------------------------------------------------------------------- /graphics/gui/AT_teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/gui/AT_teal.png -------------------------------------------------------------------------------- /graphics/gui/ashgard_keep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/gui/ashgard_keep.png -------------------------------------------------------------------------------- /graphics/gui/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/gui/black.png -------------------------------------------------------------------------------- /graphics/gui/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/gui/button.png -------------------------------------------------------------------------------- /graphics/gui/loading0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/gui/loading0.png -------------------------------------------------------------------------------- /graphics/gui/loading1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/gui/loading1.png -------------------------------------------------------------------------------- /graphics/gui/loading2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/gui/loading2.png -------------------------------------------------------------------------------- /graphics/gui/message_shader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/gui/message_shader.png -------------------------------------------------------------------------------- /graphics/gui/ml_torch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/gui/ml_torch.png -------------------------------------------------------------------------------- /graphics/gui/slot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/gui/slot.png -------------------------------------------------------------------------------- /graphics/gui/sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/gui/sword.png -------------------------------------------------------------------------------- /graphics/gui/torch_extinguished.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/gui/torch_extinguished.png -------------------------------------------------------------------------------- /graphics/gui/torch_lit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/gui/torch_lit.png -------------------------------------------------------------------------------- /graphics/lights/spark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/lights/spark.png -------------------------------------------------------------------------------- /graphics/lights/torch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/lights/torch.png -------------------------------------------------------------------------------- /graphics/lights/torch.png.flags: -------------------------------------------------------------------------------- 1 | filter=true 2 | -------------------------------------------------------------------------------- /graphics/monster/AT_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/monster/AT_green.png -------------------------------------------------------------------------------- /graphics/particles/Flames.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/particles/Flames.gd -------------------------------------------------------------------------------- /graphics/particles/Flames.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/particles/Flames.tscn -------------------------------------------------------------------------------- /graphics/particles/blood_drain.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/particles/blood_drain.gd -------------------------------------------------------------------------------- /graphics/particles/blood_drain.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/particles/blood_drain.tscn -------------------------------------------------------------------------------- /graphics/particles/bolt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/particles/bolt.png -------------------------------------------------------------------------------- /graphics/particles/bolt.png.flags: -------------------------------------------------------------------------------- 1 | repeat=true 2 | -------------------------------------------------------------------------------- /graphics/particles/electricity.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/particles/electricity.gd -------------------------------------------------------------------------------- /graphics/particles/electricity.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/particles/electricity.tscn -------------------------------------------------------------------------------- /graphics/particles/fairy_dust.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/particles/fairy_dust.gd -------------------------------------------------------------------------------- /graphics/particles/fairy_dust.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/particles/fairy_dust.tscn -------------------------------------------------------------------------------- /graphics/particles/fire_particle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/particles/fire_particle.png -------------------------------------------------------------------------------- /graphics/particles/green_skull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/particles/green_skull.png -------------------------------------------------------------------------------- /graphics/particles/necro_energy.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/particles/necro_energy.gd -------------------------------------------------------------------------------- /graphics/particles/necro_energy.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/particles/necro_energy.tscn -------------------------------------------------------------------------------- /graphics/particles/necrotic_bolt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/particles/necrotic_bolt.png -------------------------------------------------------------------------------- /graphics/particles/necrotic_spark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/particles/necrotic_spark.png -------------------------------------------------------------------------------- /graphics/particles/pixie_dust.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/particles/pixie_dust.gd -------------------------------------------------------------------------------- /graphics/particles/pixie_dust.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/particles/pixie_dust.tscn -------------------------------------------------------------------------------- /graphics/particles/pixie_warrior_dust.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/particles/pixie_warrior_dust.tscn -------------------------------------------------------------------------------- /graphics/particles/portal_spark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/particles/portal_spark.png -------------------------------------------------------------------------------- /graphics/particles/skull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/particles/skull.png -------------------------------------------------------------------------------- /graphics/particles/spore_cloud.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/particles/spore_cloud.gd -------------------------------------------------------------------------------- /graphics/particles/spore_cloud.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/particles/spore_cloud.tscn -------------------------------------------------------------------------------- /graphics/particles/voodoo_bolt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/particles/voodoo_bolt.png -------------------------------------------------------------------------------- /graphics/particles/voodoo_energy.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/particles/voodoo_energy.tscn -------------------------------------------------------------------------------- /graphics/particles/voodoo_particles.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/particles/voodoo_particles.gd -------------------------------------------------------------------------------- /graphics/particles/voodoo_particles.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/particles/voodoo_particles.tscn -------------------------------------------------------------------------------- /graphics/particles/voodoo_spark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/graphics/particles/voodoo_spark.png -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/icon.png -------------------------------------------------------------------------------- /icon.png.flags: -------------------------------------------------------------------------------- 1 | gen_mipmaps=false -------------------------------------------------------------------------------- /objects/Player/CameraShake.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/Player/CameraShake.gd -------------------------------------------------------------------------------- /objects/Player/Player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/Player/Player.png -------------------------------------------------------------------------------- /objects/Player/Player.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/Player/Player.tscn -------------------------------------------------------------------------------- /objects/Player/Torch.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/Player/Torch.gd -------------------------------------------------------------------------------- /objects/armour/Bone_armour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/armour/Bone_armour.png -------------------------------------------------------------------------------- /objects/armour/Bone_armour.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/armour/Bone_armour.tex -------------------------------------------------------------------------------- /objects/armour/Skin_armour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/armour/Skin_armour.png -------------------------------------------------------------------------------- /objects/armour/Skin_armour.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/armour/Skin_armour.tex -------------------------------------------------------------------------------- /objects/armour/bone_armour.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/armour/bone_armour.tscn -------------------------------------------------------------------------------- /objects/armour/chainmail_armour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/armour/chainmail_armour.png -------------------------------------------------------------------------------- /objects/armour/chainmail_armour.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/armour/chainmail_armour.tscn -------------------------------------------------------------------------------- /objects/armour/crude_leather_armour.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/armour/crude_leather_armour.tscn -------------------------------------------------------------------------------- /objects/armour/fine_leather_armour.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/armour/fine_leather_armour.tscn -------------------------------------------------------------------------------- /objects/armour/heavy_cloth_armour.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/armour/heavy_cloth_armour.tscn -------------------------------------------------------------------------------- /objects/armour/leather_armour1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/armour/leather_armour1.png -------------------------------------------------------------------------------- /objects/armour/leather_armour1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/armour/leather_armour1.tex -------------------------------------------------------------------------------- /objects/armour/leather_armour2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/armour/leather_armour2.png -------------------------------------------------------------------------------- /objects/armour/new_bone_armour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/armour/new_bone_armour.png -------------------------------------------------------------------------------- /objects/armour/new_bone_armour.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/armour/new_bone_armour.tex -------------------------------------------------------------------------------- /objects/armour/skin_armour.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/armour/skin_armour.tscn -------------------------------------------------------------------------------- /objects/components/Armour/Armour.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/components/Armour/Armour.gd -------------------------------------------------------------------------------- /objects/components/Armour/Armour.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/components/Armour/Armour.tscn -------------------------------------------------------------------------------- /objects/components/Controller/Controller.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/components/Controller/Controller.gd -------------------------------------------------------------------------------- /objects/components/Controller/Controller.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/components/Controller/Controller.tscn -------------------------------------------------------------------------------- /objects/components/Fighter/Fighter.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/components/Fighter/Fighter.gd -------------------------------------------------------------------------------- /objects/components/Fighter/Fighter.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/components/Fighter/Fighter.tscn -------------------------------------------------------------------------------- /objects/components/Item/Item.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/components/Item/Item.gd -------------------------------------------------------------------------------- /objects/components/Item/Item.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/components/Item/Item.tscn -------------------------------------------------------------------------------- /objects/components/Object/HPBar.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/components/Object/HPBar.tscn -------------------------------------------------------------------------------- /objects/components/Object/Object.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/components/Object/Object.gd -------------------------------------------------------------------------------- /objects/components/Object/Object.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/components/Object/Object.tscn -------------------------------------------------------------------------------- /objects/components/Weapon/Weapon.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/components/Weapon/Weapon.gd -------------------------------------------------------------------------------- /objects/components/Weapon/Weapon.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/components/Weapon/Weapon.tscn -------------------------------------------------------------------------------- /objects/items/GreaterHealthPotion.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/items/GreaterHealthPotion.tscn -------------------------------------------------------------------------------- /objects/items/HealthPotion.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/items/HealthPotion.tscn -------------------------------------------------------------------------------- /objects/items/Portal.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/items/Portal.tscn -------------------------------------------------------------------------------- /objects/items/Rock.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/items/Rock.tscn -------------------------------------------------------------------------------- /objects/items/Scroll_Confusion.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/items/Scroll_Confusion.tscn -------------------------------------------------------------------------------- /objects/items/Scroll_Fireball.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/items/Scroll_Fireball.tscn -------------------------------------------------------------------------------- /objects/items/Scroll_LightningBolt.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/items/Scroll_LightningBolt.tscn -------------------------------------------------------------------------------- /objects/items/StealthPotion.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/items/StealthPotion.tscn -------------------------------------------------------------------------------- /objects/items/books/Book_necro1.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/items/books/Book_necro1.tscn -------------------------------------------------------------------------------- /objects/items/books/Book_necro2.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/items/books/Book_necro2.tscn -------------------------------------------------------------------------------- /objects/items/books/book_of_the_dead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/items/books/book_of_the_dead.png -------------------------------------------------------------------------------- /objects/items/books/book_of_the_dead.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/items/books/book_of_the_dead.tex -------------------------------------------------------------------------------- /objects/items/books/lore_necro1.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/items/books/lore_necro1.gd -------------------------------------------------------------------------------- /objects/items/books/lore_necro2.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/items/books/lore_necro2.gd -------------------------------------------------------------------------------- /objects/items/misc_stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/items/misc_stone.png -------------------------------------------------------------------------------- /objects/items/portal_script.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/items/portal_script.gd -------------------------------------------------------------------------------- /objects/items/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/items/purple.png -------------------------------------------------------------------------------- /objects/items/red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/items/red.png -------------------------------------------------------------------------------- /objects/items/scroll_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/items/scroll_2.png -------------------------------------------------------------------------------- /objects/items/torch/torch.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/items/torch/torch.tscn -------------------------------------------------------------------------------- /objects/monsters/animals/bat.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/animals/bat.tscn -------------------------------------------------------------------------------- /objects/monsters/animals/bat_AI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/animals/bat_AI.gd -------------------------------------------------------------------------------- /objects/monsters/animals/lvl2/blood_bat.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/animals/lvl2/blood_bat.tscn -------------------------------------------------------------------------------- /objects/monsters/animals/lvl2/blood_bat_AI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/animals/lvl2/blood_bat_AI.gd -------------------------------------------------------------------------------- /objects/monsters/animals/lvl2/ratling.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/animals/lvl2/ratling.tscn -------------------------------------------------------------------------------- /objects/monsters/animals/lvl2/ratling_AI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/animals/lvl2/ratling_AI.gd -------------------------------------------------------------------------------- /objects/monsters/animals/lvl2/ratling_inventory.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/animals/lvl2/ratling_inventory.gd -------------------------------------------------------------------------------- /objects/monsters/animals/lvl2/scorpion.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/animals/lvl2/scorpion.tscn -------------------------------------------------------------------------------- /objects/monsters/animals/lvl2/scorpion_AI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/animals/lvl2/scorpion_AI.gd -------------------------------------------------------------------------------- /objects/monsters/animals/lvl3/rabid_wolf.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/animals/lvl3/rabid_wolf.tscn -------------------------------------------------------------------------------- /objects/monsters/animals/lvl3/rabid_wolf_AI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/animals/lvl3/rabid_wolf_AI.gd -------------------------------------------------------------------------------- /objects/monsters/animals/lvl3/vampire_bat.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/animals/lvl3/vampire_bat.tscn -------------------------------------------------------------------------------- /objects/monsters/animals/rat.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/animals/rat.tscn -------------------------------------------------------------------------------- /objects/monsters/animals/rat_AI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/animals/rat_AI.gd -------------------------------------------------------------------------------- /objects/monsters/fey/fairy_assassin.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/fey/fairy_assassin.tscn -------------------------------------------------------------------------------- /objects/monsters/fey/fairy_assassin_AI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/fey/fairy_assassin_AI.gd -------------------------------------------------------------------------------- /objects/monsters/fey/lvl2/pixie_beserker.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/fey/lvl2/pixie_beserker.tscn -------------------------------------------------------------------------------- /objects/monsters/fey/lvl2/pixie_beserkerl_AI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/fey/lvl2/pixie_beserkerl_AI.gd -------------------------------------------------------------------------------- /objects/monsters/fey/lvl2/pixie_beserkerl_Inventory.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/fey/lvl2/pixie_beserkerl_Inventory.gd -------------------------------------------------------------------------------- /objects/monsters/fey/lvl3/pixie_warrior.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/fey/lvl3/pixie_warrior.tscn -------------------------------------------------------------------------------- /objects/monsters/fungus/blue_fungus.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/fungus/blue_fungus.tscn -------------------------------------------------------------------------------- /objects/monsters/fungus/blue_fungus_AI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/fungus/blue_fungus_AI.gd -------------------------------------------------------------------------------- /objects/monsters/fungus/green_fungus.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/fungus/green_fungus.tscn -------------------------------------------------------------------------------- /objects/monsters/fungus/lvl2/goblin_mushroom.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/fungus/lvl2/goblin_mushroom.tscn -------------------------------------------------------------------------------- /objects/monsters/fungus/lvl2/goblin_mushroom_AI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/fungus/lvl2/goblin_mushroom_AI.gd -------------------------------------------------------------------------------- /objects/monsters/fungus/lvl2/mushroom_person.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/fungus/lvl2/mushroom_person.tscn -------------------------------------------------------------------------------- /objects/monsters/fungus/lvl2/mushroom_person_AI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/fungus/lvl2/mushroom_person_AI.gd -------------------------------------------------------------------------------- /objects/monsters/fungus/lvl3/matango.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/fungus/lvl3/matango.tscn -------------------------------------------------------------------------------- /objects/monsters/fungus/lvl3/matango_AI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/fungus/lvl3/matango_AI.gd -------------------------------------------------------------------------------- /objects/monsters/fungus/lvl3/mushroom_person.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/fungus/lvl3/mushroom_person.tscn -------------------------------------------------------------------------------- /objects/monsters/fungus/lvl3/mushroom_person_AI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/fungus/lvl3/mushroom_person_AI.gd -------------------------------------------------------------------------------- /objects/monsters/fungus/yellow_fungus.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/fungus/yellow_fungus.tscn -------------------------------------------------------------------------------- /objects/monsters/fungus/yellow_fungus_AI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/fungus/yellow_fungus_AI.gd -------------------------------------------------------------------------------- /objects/monsters/greenskins/goblin.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/greenskins/goblin.tscn -------------------------------------------------------------------------------- /objects/monsters/greenskins/goblin_AI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/greenskins/goblin_AI.gd -------------------------------------------------------------------------------- /objects/monsters/greenskins/goblin_inventory.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/greenskins/goblin_inventory.gd -------------------------------------------------------------------------------- /objects/monsters/greenskins/goblin_witch_dr_AI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/greenskins/goblin_witch_dr_AI.gd -------------------------------------------------------------------------------- /objects/monsters/greenskins/lvl2/goblin.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/greenskins/lvl2/goblin.tscn -------------------------------------------------------------------------------- /objects/monsters/greenskins/lvl2/goblin_AI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/greenskins/lvl2/goblin_AI.gd -------------------------------------------------------------------------------- /objects/monsters/greenskins/lvl2/goblin_warrior.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/greenskins/lvl2/goblin_warrior.tscn -------------------------------------------------------------------------------- /objects/monsters/greenskins/lvl2/orc_warrior.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/greenskins/lvl2/orc_warrior.tscn -------------------------------------------------------------------------------- /objects/monsters/greenskins/lvl2/orc_warrior_AI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/greenskins/lvl2/orc_warrior_AI.gd -------------------------------------------------------------------------------- /objects/monsters/greenskins/lvl2/orc_warrior_Inventory.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/greenskins/lvl2/orc_warrior_Inventory.gd -------------------------------------------------------------------------------- /objects/monsters/greenskins/lvl2/orc_warrior_inventory.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/greenskins/lvl2/orc_warrior_inventory.gd -------------------------------------------------------------------------------- /objects/monsters/greenskins/lvl2/shaman.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/greenskins/lvl2/shaman.tscn -------------------------------------------------------------------------------- /objects/monsters/greenskins/lvl2/shaman_AI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/greenskins/lvl2/shaman_AI.gd -------------------------------------------------------------------------------- /objects/monsters/greenskins/lvl2/shaman_Inventory.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/greenskins/lvl2/shaman_Inventory.gd -------------------------------------------------------------------------------- /objects/monsters/greenskins/lvl3/goblin_warrior.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/greenskins/lvl3/goblin_warrior.tscn -------------------------------------------------------------------------------- /objects/monsters/greenskins/lvl3/goblin_warrior_Inventory.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/greenskins/lvl3/goblin_warrior_Inventory.gd -------------------------------------------------------------------------------- /objects/monsters/greenskins/lvl3/orc_warrior.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/greenskins/lvl3/orc_warrior.tscn -------------------------------------------------------------------------------- /objects/monsters/greenskins/lvl3/orc_warrior_Inventory.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/greenskins/lvl3/orc_warrior_Inventory.gd -------------------------------------------------------------------------------- /objects/monsters/greenskins/rock_thrower_goblin.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/greenskins/rock_thrower_goblin.tscn -------------------------------------------------------------------------------- /objects/monsters/greenskins/rock_thrower_goblin_AI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/greenskins/rock_thrower_goblin_AI.gd -------------------------------------------------------------------------------- /objects/monsters/greenskins/rock_thrower_goblin_inventory.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/greenskins/rock_thrower_goblin_inventory.gd -------------------------------------------------------------------------------- /objects/monsters/greenskins/witch_doctor.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/greenskins/witch_doctor.tscn -------------------------------------------------------------------------------- /objects/monsters/greenskins/witch_doctor_AI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/greenskins/witch_doctor_AI.gd -------------------------------------------------------------------------------- /objects/monsters/greenskins/witch_doctor_Inventory.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/greenskins/witch_doctor_Inventory.gd -------------------------------------------------------------------------------- /objects/monsters/shadow.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/shadow.tscn -------------------------------------------------------------------------------- /objects/monsters/shadow_AI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/shadow_AI.gd -------------------------------------------------------------------------------- /objects/monsters/trolls/rock_troll.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/trolls/rock_troll.tscn -------------------------------------------------------------------------------- /objects/monsters/trolls/rock_troll_AI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/trolls/rock_troll_AI.gd -------------------------------------------------------------------------------- /objects/monsters/trolls/rock_troll_Inventory.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/trolls/rock_troll_Inventory.gd -------------------------------------------------------------------------------- /objects/monsters/undead/diseased_zombie.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/undead/diseased_zombie.tscn -------------------------------------------------------------------------------- /objects/monsters/undead/ghoul_rat.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/undead/ghoul_rat.tscn -------------------------------------------------------------------------------- /objects/monsters/undead/ghoul_rat_AI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/undead/ghoul_rat_AI.gd -------------------------------------------------------------------------------- /objects/monsters/undead/lvl2/ghoul.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/undead/lvl2/ghoul.tscn -------------------------------------------------------------------------------- /objects/monsters/undead/lvl2/ghoul_AI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/undead/lvl2/ghoul_AI.gd -------------------------------------------------------------------------------- /objects/monsters/undead/lvl2/ghoul_inventory.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/undead/lvl2/ghoul_inventory.gd -------------------------------------------------------------------------------- /objects/monsters/undead/lvl2/hell_puppy.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/undead/lvl2/hell_puppy.tscn -------------------------------------------------------------------------------- /objects/monsters/undead/lvl2/hell_puppy_AI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/undead/lvl2/hell_puppy_AI.gd -------------------------------------------------------------------------------- /objects/monsters/undead/lvl2/necromancer2.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/undead/lvl2/necromancer2.tscn -------------------------------------------------------------------------------- /objects/monsters/undead/lvl2/necromancer2_inventory.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/undead/lvl2/necromancer2_inventory.gd -------------------------------------------------------------------------------- /objects/monsters/undead/lvl3/demonic_puppy.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/undead/lvl3/demonic_puppy.tscn -------------------------------------------------------------------------------- /objects/monsters/undead/lvl3/demonic_puppy_AI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/undead/lvl3/demonic_puppy_AI.gd -------------------------------------------------------------------------------- /objects/monsters/undead/lvl3/hell_hound.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/undead/lvl3/hell_hound.tscn -------------------------------------------------------------------------------- /objects/monsters/undead/lvl3/hell_hound_AI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/undead/lvl3/hell_hound_AI.gd -------------------------------------------------------------------------------- /objects/monsters/undead/lvl3/patchwork_bride.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/undead/lvl3/patchwork_bride.tscn -------------------------------------------------------------------------------- /objects/monsters/undead/lvl3/patchwork_bride_AI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/undead/lvl3/patchwork_bride_AI.gd -------------------------------------------------------------------------------- /objects/monsters/undead/lvl3/patchwork_golem.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/undead/lvl3/patchwork_golem.tscn -------------------------------------------------------------------------------- /objects/monsters/undead/lvl3/patchwork_golem_AI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/undead/lvl3/patchwork_golem_AI.gd -------------------------------------------------------------------------------- /objects/monsters/undead/lvl3/patchwork_golem_inventory.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/undead/lvl3/patchwork_golem_inventory.gd -------------------------------------------------------------------------------- /objects/monsters/undead/lvl3/vampire.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/undead/lvl3/vampire.tscn -------------------------------------------------------------------------------- /objects/monsters/undead/lvl3/vampire_AI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/undead/lvl3/vampire_AI.gd -------------------------------------------------------------------------------- /objects/monsters/undead/lvl3/vampire_inventory.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/undead/lvl3/vampire_inventory.gd -------------------------------------------------------------------------------- /objects/monsters/undead/lvl3/zombie_warrior.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/undead/lvl3/zombie_warrior.tscn -------------------------------------------------------------------------------- /objects/monsters/undead/lvl3/zombie_warrior_AI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/undead/lvl3/zombie_warrior_AI.gd -------------------------------------------------------------------------------- /objects/monsters/undead/lvl3/zombie_warrior_inventory.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/undead/lvl3/zombie_warrior_inventory.gd -------------------------------------------------------------------------------- /objects/monsters/undead/necromancer.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/undead/necromancer.tscn -------------------------------------------------------------------------------- /objects/monsters/undead/necromancer_AI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/undead/necromancer_AI.gd -------------------------------------------------------------------------------- /objects/monsters/undead/necromancer_inventory.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/undead/necromancer_inventory.gd -------------------------------------------------------------------------------- /objects/monsters/undead/poison_cloud.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/undead/poison_cloud.gd -------------------------------------------------------------------------------- /objects/monsters/undead/poison_cloud.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/undead/poison_cloud.tscn -------------------------------------------------------------------------------- /objects/monsters/undead/zombie.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/undead/zombie.tscn -------------------------------------------------------------------------------- /objects/monsters/undead/zombie_AI.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/monsters/undead/zombie_AI.gd -------------------------------------------------------------------------------- /objects/traps/fungus_trap.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/traps/fungus_trap.tscn -------------------------------------------------------------------------------- /objects/traps/web.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/traps/web.gd -------------------------------------------------------------------------------- /objects/traps/web.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/traps/web.tscn -------------------------------------------------------------------------------- /objects/weapons/blood_drinker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/weapons/blood_drinker.png -------------------------------------------------------------------------------- /objects/weapons/blood_drinker.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/weapons/blood_drinker.tscn -------------------------------------------------------------------------------- /objects/weapons/bone_dagger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/weapons/bone_dagger.png -------------------------------------------------------------------------------- /objects/weapons/bone_dagger.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/weapons/bone_dagger.tscn -------------------------------------------------------------------------------- /objects/weapons/club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/weapons/club.png -------------------------------------------------------------------------------- /objects/weapons/club.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/weapons/club.tscn -------------------------------------------------------------------------------- /objects/weapons/crude_dagger.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/weapons/crude_dagger.tscn -------------------------------------------------------------------------------- /objects/weapons/dagger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/weapons/dagger.png -------------------------------------------------------------------------------- /objects/weapons/dagger2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/weapons/dagger2.png -------------------------------------------------------------------------------- /objects/weapons/goblin_axe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/weapons/goblin_axe.png -------------------------------------------------------------------------------- /objects/weapons/goblin_axe.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/weapons/goblin_axe.tscn -------------------------------------------------------------------------------- /objects/weapons/goblin_dagger.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/weapons/goblin_dagger.tscn -------------------------------------------------------------------------------- /objects/weapons/orc_blade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/weapons/orc_blade.png -------------------------------------------------------------------------------- /objects/weapons/orc_blade.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/weapons/orc_blade.tscn -------------------------------------------------------------------------------- /objects/weapons/orcish_dagger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/weapons/orcish_dagger.png -------------------------------------------------------------------------------- /objects/weapons/rusty_dagger.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/weapons/rusty_dagger.tscn -------------------------------------------------------------------------------- /objects/weapons/shard_sword.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/weapons/shard_sword.tscn -------------------------------------------------------------------------------- /objects/weapons/spiked_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/weapons/spiked_club.png -------------------------------------------------------------------------------- /objects/weapons/spiked_club.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/weapons/spiked_club.tscn -------------------------------------------------------------------------------- /objects/weapons/spiked_mace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/weapons/spiked_mace.png -------------------------------------------------------------------------------- /objects/weapons/spiked_mace.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/weapons/spiked_mace.tscn -------------------------------------------------------------------------------- /objects/weapons/sword1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/weapons/sword1.png -------------------------------------------------------------------------------- /objects/weapons/tsurugi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/objects/weapons/tsurugi.png -------------------------------------------------------------------------------- /resources/Theme.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/resources/Theme.tres -------------------------------------------------------------------------------- /resources/black_panel.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/resources/black_panel.tres -------------------------------------------------------------------------------- /resources/borderframe_aqua.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/resources/borderframe_aqua.tres -------------------------------------------------------------------------------- /resources/borderframe_blank.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/resources/borderframe_blank.tres -------------------------------------------------------------------------------- /resources/borderframe_green.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/resources/borderframe_green.tres -------------------------------------------------------------------------------- /resources/panelframe_stone.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/resources/panelframe_stone.tres -------------------------------------------------------------------------------- /scenes/Game/Game.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/scenes/Game/Game.gd -------------------------------------------------------------------------------- /scenes/Game/Game.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/scenes/Game/Game.tscn -------------------------------------------------------------------------------- /scenes/Game/Inventory.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/scenes/Game/Inventory.gd -------------------------------------------------------------------------------- /scenes/Game/InventoryMenu.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/scenes/Game/InventoryMenu.gd -------------------------------------------------------------------------------- /scenes/Game/InventorySlot.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/scenes/Game/InventorySlot.gd -------------------------------------------------------------------------------- /scenes/Game/InventorySlot.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/scenes/Game/InventorySlot.tscn -------------------------------------------------------------------------------- /scenes/Game/ItemButton.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/scenes/Game/ItemButton.gd -------------------------------------------------------------------------------- /scenes/Game/ItemButton.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/scenes/Game/ItemButton.tscn -------------------------------------------------------------------------------- /scenes/Game/LevelUp.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/scenes/Game/LevelUp.gd -------------------------------------------------------------------------------- /scenes/Game/PlayerInfo.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/scenes/Game/PlayerInfo.gd -------------------------------------------------------------------------------- /scenes/Game/PlayerInfo.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/scenes/Game/PlayerInfo.tscn -------------------------------------------------------------------------------- /scenes/GameOver/RIPScreen.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/scenes/GameOver/RIPScreen.gd -------------------------------------------------------------------------------- /scenes/GameOver/RIPScreen.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/scenes/GameOver/RIPScreen.tscn -------------------------------------------------------------------------------- /scenes/Map/Fogmap.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/scenes/Map/Fogmap.gd -------------------------------------------------------------------------------- /scenes/Map/Map.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/scenes/Map/Map.gd -------------------------------------------------------------------------------- /scenes/Map/Map.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/scenes/Map/Map.tscn -------------------------------------------------------------------------------- /scenes/Start.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/scenes/Start.gd -------------------------------------------------------------------------------- /scenes/Start.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/scenes/Start.tscn -------------------------------------------------------------------------------- /scenes/TitleMenu/LoadingScreen.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/scenes/TitleMenu/LoadingScreen.gd -------------------------------------------------------------------------------- /scenes/TitleMenu/LoadingScreen.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/scenes/TitleMenu/LoadingScreen.tscn -------------------------------------------------------------------------------- /scenes/TitleMenu/TitleMenu.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/scenes/TitleMenu/TitleMenu.gd -------------------------------------------------------------------------------- /scenes/TitleMenu/TitleMenu.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/scenes/TitleMenu/TitleMenu.tscn -------------------------------------------------------------------------------- /tilesets/Dungeon_edit.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/tilesets/Dungeon_edit.tscn -------------------------------------------------------------------------------- /tilesets/FogSet.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/tilesets/FogSet.tres -------------------------------------------------------------------------------- /tilesets/FogSet.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/tilesets/FogSet.tscn -------------------------------------------------------------------------------- /tilesets/dungeon.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberfilth/Ashgard-Keep/HEAD/tilesets/dungeon.tres --------------------------------------------------------------------------------