gitextract_3uz385np/ ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── assets/ │ ├── TinyKnit_normal.png.import │ ├── TinyScalemail_albedo.png.import │ ├── TinyScalemail_normal.png.import │ ├── TinyScalemail_orm.png.import │ ├── characters/ │ │ ├── cloth.tres │ │ ├── eyes.tres │ │ ├── feminine_albedo.png.import │ │ ├── feminine_normals.png.import │ │ ├── hair_material.tres │ │ ├── hair_normals.png.import │ │ ├── haircard_albedo.png.import │ │ ├── lashes.tres │ │ ├── mannyquin.glb │ │ ├── mannyquin.glb.import │ │ ├── masculine_albedo.png.import │ │ ├── masculine_normals.png.import │ │ ├── minnyquinn.glb │ │ ├── minnyquinn.glb.import │ │ ├── skin_f.tres │ │ └── skin_m.tres │ ├── metal_black.tres │ ├── metal_blue.tres │ ├── scalemail.tres │ ├── templateweapons.glb │ └── templateweapons.glb.import ├── audio/ │ ├── SoundFX/ │ │ ├── clack/ │ │ │ ├── clack_1.wav.import │ │ │ ├── clack_2.wav.import │ │ │ ├── clack_3.wav.import │ │ │ ├── clack_4.wav.import │ │ │ └── clack_5.wav.import │ │ ├── clang/ │ │ │ ├── clang_1.wav.import │ │ │ ├── clang_2.wav.import │ │ │ ├── clang_3.wav.import │ │ │ └── clang_4.wav.import │ │ ├── click/ │ │ │ ├── click_1.wav.import │ │ │ ├── click_2.wav.import │ │ │ └── click_3.wav.import │ │ ├── cloth/ │ │ │ ├── cloth_01.wav.import │ │ │ ├── cloth_02.wav.import │ │ │ ├── cloth_03.wav.import │ │ │ ├── cloth_04.wav.import │ │ │ ├── cloth_05.wav.import │ │ │ ├── cloth_06.wav.import │ │ │ ├── cloth_07.wav.import │ │ │ ├── cloth_08.wav.import │ │ │ └── cloth_09.wav.import │ │ ├── cork/ │ │ │ ├── cork_01.wav.import │ │ │ ├── cork_02.wav.import │ │ │ ├── cork_03.wav.import │ │ │ ├── cork_04.wav.import │ │ │ └── cork_05.wav.import │ │ ├── creak/ │ │ │ ├── creak_1.wav.import │ │ │ ├── creak_2.wav.import │ │ │ ├── creak_3.wav.import │ │ │ ├── creak_4.wav.import │ │ │ ├── creak_5.wav.import │ │ │ └── creak_6.wav.import │ │ ├── fire/ │ │ │ ├── fire_01_loop.wav.import │ │ │ └── fire_02_loop.wav.import │ │ ├── hit/ │ │ │ ├── hit_1.wav.import │ │ │ ├── hit_2.wav.import │ │ │ ├── hit_3.wav.import │ │ │ ├── hit_4.wav.import │ │ │ ├── hit_blunt_01.wav.import │ │ │ ├── hit_blunt_02.wav.import │ │ │ ├── hit_blunt_03.wav.import │ │ │ ├── hit_blunt_04.wav.import │ │ │ ├── hit_blunt_05.wav.import │ │ │ ├── hit_blunt_06.wav.import │ │ │ ├── hit_metal_01.wav.import │ │ │ ├── hit_metal_02.wav.import │ │ │ ├── hit_metal_03.wav.import │ │ │ ├── hit_metal_04.wav.import │ │ │ ├── hit_wet_01.wav.import │ │ │ ├── hit_wet_02.wav.import │ │ │ ├── hit_wet_03.wav.import │ │ │ ├── hit_wet_04.wav.import │ │ │ ├── hit_wet_05.wav.import │ │ │ └── hit_wet_06.wav.import │ │ ├── ratchet/ │ │ │ ├── ratchet_1.wav.import │ │ │ ├── ratchet_2.wav.import │ │ │ └── ratchet_3.wav.import │ │ ├── shuffle/ │ │ │ ├── shuffle_1.wav.import │ │ │ ├── shuffle_2.wav.import │ │ │ ├── shuffle_3.wav.import │ │ │ ├── shuffle_4.wav.import │ │ │ └── shuffle_5.wav.import │ │ ├── slosh/ │ │ │ ├── slosh_01.wav.import │ │ │ ├── slosh_2.wav.import │ │ │ ├── slosh_3.wav.import │ │ │ ├── slosh_4.wav.import │ │ │ └── slosh_5.wav.import │ │ ├── special/ │ │ │ └── Spawn01.wav.import │ │ ├── step/ │ │ │ ├── step_1.wav.import │ │ │ ├── step_2.wav.import │ │ │ ├── step_3.wav.import │ │ │ └── step_4.wav.import │ │ ├── swish/ │ │ │ ├── swish_1.wav.import │ │ │ ├── swish_2.wav.import │ │ │ ├── swish_3.wav.import │ │ │ ├── swish_4.wav.import │ │ │ ├── swish_5.wav.import │ │ │ └── swish_6.wav.import │ │ ├── swoosh/ │ │ │ ├── swoosh_1.wav.import │ │ │ ├── swoosh_2.wav.import │ │ │ ├── swoosh_3.wav.import │ │ │ ├── swoosh_4.wav.import │ │ │ └── swoosh_5.wav.import │ │ └── voice/ │ │ ├── voice_hurt_01.wav.import │ │ ├── voice_hurt_02.wav.import │ │ ├── voice_hurt_03.wav.import │ │ ├── voice_hurt_04.wav.import │ │ └── voice_hurt_05.wav.import │ ├── SoundFXSystem.gd │ ├── bone_in_the_walls__level_loop_session.ogg │ ├── bone_in_the_walls__level_loop_session.ogg.import │ └── default_bus_layout.tres ├── cameras/ │ ├── area_cam/ │ │ ├── area_cam.gd │ │ └── area_cam.tscn │ └── follow_cam/ │ ├── follow_cam.tscn │ └── follow_cam_3d.gd ├── demo_level/ │ ├── flame_01.png.import │ ├── flame_02.png.import │ ├── flame_03.png.import │ ├── flame_04.png.import │ ├── gridmap/ │ │ ├── gridmap_basic.tres │ │ ├── gridmap_materials/ │ │ │ ├── TinyBrick01.tres │ │ │ ├── TinyBrick01_albedo.png.import │ │ │ ├── TinyBrick01_normal.png.import │ │ │ ├── TinyBrick02.tres │ │ │ ├── TinyBrick02_albedo.png.import │ │ │ ├── TinyBrick02_normal.png.import │ │ │ ├── TinyBrick03.tres │ │ │ ├── TinyCobble01.tres │ │ │ ├── TinyCobble01_albedo.png.import │ │ │ ├── TinyCobble01_normal.png.import │ │ │ ├── TinyMetal01.tres │ │ │ ├── TinyMetal01_albedo.png.import │ │ │ ├── TinyMetal01_normal.png.import │ │ │ ├── TinyRock01.tres │ │ │ ├── TinyRock01_albedo.png.import │ │ │ ├── TinyRock01_normal.png.import │ │ │ ├── TinyTile01.tres │ │ │ ├── TinyTile01_albedo.png.import │ │ │ ├── TinyTile01_normal.png.import │ │ │ ├── TinyTile02.tres │ │ │ ├── TinyTile02_albedo.png.import │ │ │ ├── TinyTile02_normal.png.import │ │ │ ├── TinyWood01.tres │ │ │ ├── TinyWood03_albedo.png.import │ │ │ └── TinyWood03_normal.png.import │ │ ├── tilemap_basic.glb │ │ └── tilemap_basic.glb.import │ ├── stagingCSG.tscn │ ├── torch.tscn │ ├── wor2213.tmp │ ├── wor3114.tmp │ └── world_castle.tscn ├── enemy/ │ ├── enemy_area_target_sensor.gd │ ├── enemy_area_target_sensor.tscn │ ├── enemy_base_root_motion.gd │ ├── enemy_base_root_motion.tscn │ ├── enemy_root_anim_tree.gd │ ├── health_system.gd │ └── patrol_point.gd ├── icon.png.import ├── interactable objects/ │ ├── chest/ │ │ ├── chest.tscn │ │ └── chest_object.gd │ ├── doors/ │ │ ├── door_object.gd │ │ ├── door_object.tscn │ │ ├── door_object.tscn.depren │ │ ├── gat9159.tmp │ │ ├── gate_object.gd │ │ └── gate_object.tscn │ ├── ladder/ │ │ ├── ladder.gd │ │ └── ladder.tscn │ ├── lever/ │ │ ├── lever_object.gd │ │ └── lever_object.tscn │ └── spawn_site/ │ ├── spawn_site.gd │ └── spawn_site.tscn ├── player/ │ ├── animation_libraries/ │ │ └── MeleeLib.res │ ├── equipment_system/ │ │ ├── equipment/ │ │ │ ├── Ax.tscn │ │ │ ├── TorchFlame.gd │ │ │ ├── equipment_object.gd │ │ │ ├── equipment_resource.gd │ │ │ ├── shield.tscn │ │ │ ├── sword.tscn │ │ │ ├── torch_gadget.tscn │ │ │ └── weapon_streak.gd │ │ ├── equipment_system.gd │ │ └── equipment_system.tscn │ ├── footfall_system/ │ │ ├── foostep_sound_system.gd │ │ ├── footfall_system.gd │ │ ├── footfall_system.tscn │ │ └── footstep_sound_system.tscn │ ├── item_system/ │ │ ├── inventory_system.gd │ │ ├── item_object.gd │ │ ├── item_resource.gd │ │ ├── item_system.gd │ │ └── items/ │ │ ├── fire_bomb.tscn │ │ ├── firebomb.png.import │ │ ├── firebomb.tres │ │ ├── potion.png.import │ │ ├── potion.tres │ │ └── potion.tscn │ ├── player_anim_tree.gd │ ├── player_charbody3D.gd │ ├── player_charbody3d.tscn │ ├── player_interact_sensors/ │ │ ├── sensor_cast.gd │ │ └── sensor_cast.tscn │ └── player_targeting_system/ │ ├── eye_list.gd │ ├── gui_reticle.gd │ ├── player_targeting_system.gd │ └── player_targeting_system.tscn ├── project.godot ├── screenshots/ │ └── .gdignore ├── ui/ │ ├── contol_card.gd │ ├── death_card.gd │ ├── health_bar.gd │ ├── item_slot.gd │ └── panel-border-027.png.import └── utility scripts/ ├── mesh_streak.gd ├── signal_caller.gd ├── signal_switch.gd └── torchlight.gd