├── LICENSE └── Survivors Clone ├── Audio ├── GUI │ ├── click.wav │ └── hover.wav ├── Music │ └── battleThemeA.mp3 └── SoundEffect │ ├── Lose.ogg │ ├── Victory.wav │ ├── collectgem.mp3 │ ├── enemy_death.ogg │ ├── enemy_hit.ogg │ ├── ice.wav │ ├── levelup.ogg │ ├── tornado.ogg │ └── woosh.wav ├── Font └── tenderness.otf ├── Textures ├── Enemy │ ├── cyclops.png │ ├── explosion_pixelfied.png │ ├── giant_amoeba_new.png │ ├── juggernaut.png │ ├── kolbold_strong.png │ └── kolbold_weak.png ├── GUI │ ├── EmptyItem.png │ ├── exp_background.png │ ├── exp_progress.png │ ├── health.png │ └── healthbar.png ├── Items │ ├── Gems │ │ ├── Gem_blue.png │ │ ├── Gem_green.png │ │ └── Gem_red.png │ ├── Upgrades │ │ ├── boots_4_green.png │ │ ├── chunk.png │ │ ├── helmet_1.png │ │ ├── low_boots.png │ │ ├── scroll_old.png │ │ ├── thick_new.png │ │ └── urand_mage.png │ └── Weapons │ │ ├── ice_spear.png │ │ ├── javelin_3_new.png │ │ ├── javelin_3_new_attack.png │ │ ├── sword.png │ │ └── tornado.png ├── Player │ └── player_sprite.png └── dirt_full_new.png ├── icon.svg ├── icon.svg.import └── project.godot /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannotaylor/SurvivorsClone_Base/HEAD/LICENSE -------------------------------------------------------------------------------- /Survivors Clone/Audio/GUI/click.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannotaylor/SurvivorsClone_Base/HEAD/Survivors Clone/Audio/GUI/click.wav -------------------------------------------------------------------------------- /Survivors Clone/Audio/GUI/hover.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannotaylor/SurvivorsClone_Base/HEAD/Survivors Clone/Audio/GUI/hover.wav -------------------------------------------------------------------------------- /Survivors Clone/Audio/Music/battleThemeA.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannotaylor/SurvivorsClone_Base/HEAD/Survivors Clone/Audio/Music/battleThemeA.mp3 -------------------------------------------------------------------------------- /Survivors Clone/Audio/SoundEffect/Lose.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannotaylor/SurvivorsClone_Base/HEAD/Survivors Clone/Audio/SoundEffect/Lose.ogg -------------------------------------------------------------------------------- /Survivors Clone/Audio/SoundEffect/Victory.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannotaylor/SurvivorsClone_Base/HEAD/Survivors Clone/Audio/SoundEffect/Victory.wav -------------------------------------------------------------------------------- /Survivors Clone/Audio/SoundEffect/collectgem.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannotaylor/SurvivorsClone_Base/HEAD/Survivors Clone/Audio/SoundEffect/collectgem.mp3 -------------------------------------------------------------------------------- /Survivors Clone/Audio/SoundEffect/enemy_death.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannotaylor/SurvivorsClone_Base/HEAD/Survivors Clone/Audio/SoundEffect/enemy_death.ogg -------------------------------------------------------------------------------- /Survivors Clone/Audio/SoundEffect/enemy_hit.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannotaylor/SurvivorsClone_Base/HEAD/Survivors Clone/Audio/SoundEffect/enemy_hit.ogg -------------------------------------------------------------------------------- /Survivors Clone/Audio/SoundEffect/ice.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannotaylor/SurvivorsClone_Base/HEAD/Survivors Clone/Audio/SoundEffect/ice.wav -------------------------------------------------------------------------------- /Survivors Clone/Audio/SoundEffect/levelup.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannotaylor/SurvivorsClone_Base/HEAD/Survivors Clone/Audio/SoundEffect/levelup.ogg -------------------------------------------------------------------------------- /Survivors Clone/Audio/SoundEffect/tornado.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannotaylor/SurvivorsClone_Base/HEAD/Survivors Clone/Audio/SoundEffect/tornado.ogg -------------------------------------------------------------------------------- /Survivors Clone/Audio/SoundEffect/woosh.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannotaylor/SurvivorsClone_Base/HEAD/Survivors Clone/Audio/SoundEffect/woosh.wav -------------------------------------------------------------------------------- /Survivors Clone/Font/tenderness.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannotaylor/SurvivorsClone_Base/HEAD/Survivors Clone/Font/tenderness.otf -------------------------------------------------------------------------------- /Survivors Clone/Textures/Enemy/cyclops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannotaylor/SurvivorsClone_Base/HEAD/Survivors Clone/Textures/Enemy/cyclops.png -------------------------------------------------------------------------------- /Survivors Clone/Textures/Enemy/explosion_pixelfied.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannotaylor/SurvivorsClone_Base/HEAD/Survivors Clone/Textures/Enemy/explosion_pixelfied.png -------------------------------------------------------------------------------- /Survivors Clone/Textures/Enemy/giant_amoeba_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannotaylor/SurvivorsClone_Base/HEAD/Survivors Clone/Textures/Enemy/giant_amoeba_new.png -------------------------------------------------------------------------------- /Survivors Clone/Textures/Enemy/juggernaut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannotaylor/SurvivorsClone_Base/HEAD/Survivors Clone/Textures/Enemy/juggernaut.png -------------------------------------------------------------------------------- /Survivors Clone/Textures/Enemy/kolbold_strong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannotaylor/SurvivorsClone_Base/HEAD/Survivors Clone/Textures/Enemy/kolbold_strong.png -------------------------------------------------------------------------------- /Survivors Clone/Textures/Enemy/kolbold_weak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannotaylor/SurvivorsClone_Base/HEAD/Survivors Clone/Textures/Enemy/kolbold_weak.png -------------------------------------------------------------------------------- /Survivors Clone/Textures/GUI/EmptyItem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannotaylor/SurvivorsClone_Base/HEAD/Survivors Clone/Textures/GUI/EmptyItem.png -------------------------------------------------------------------------------- /Survivors Clone/Textures/GUI/exp_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannotaylor/SurvivorsClone_Base/HEAD/Survivors Clone/Textures/GUI/exp_background.png -------------------------------------------------------------------------------- /Survivors Clone/Textures/GUI/exp_progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannotaylor/SurvivorsClone_Base/HEAD/Survivors Clone/Textures/GUI/exp_progress.png -------------------------------------------------------------------------------- /Survivors Clone/Textures/GUI/health.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannotaylor/SurvivorsClone_Base/HEAD/Survivors Clone/Textures/GUI/health.png -------------------------------------------------------------------------------- /Survivors Clone/Textures/GUI/healthbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannotaylor/SurvivorsClone_Base/HEAD/Survivors Clone/Textures/GUI/healthbar.png -------------------------------------------------------------------------------- /Survivors Clone/Textures/Items/Gems/Gem_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannotaylor/SurvivorsClone_Base/HEAD/Survivors Clone/Textures/Items/Gems/Gem_blue.png -------------------------------------------------------------------------------- /Survivors Clone/Textures/Items/Gems/Gem_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannotaylor/SurvivorsClone_Base/HEAD/Survivors Clone/Textures/Items/Gems/Gem_green.png -------------------------------------------------------------------------------- /Survivors Clone/Textures/Items/Gems/Gem_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannotaylor/SurvivorsClone_Base/HEAD/Survivors Clone/Textures/Items/Gems/Gem_red.png -------------------------------------------------------------------------------- /Survivors Clone/Textures/Items/Upgrades/boots_4_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannotaylor/SurvivorsClone_Base/HEAD/Survivors Clone/Textures/Items/Upgrades/boots_4_green.png -------------------------------------------------------------------------------- /Survivors Clone/Textures/Items/Upgrades/chunk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannotaylor/SurvivorsClone_Base/HEAD/Survivors Clone/Textures/Items/Upgrades/chunk.png -------------------------------------------------------------------------------- /Survivors Clone/Textures/Items/Upgrades/helmet_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannotaylor/SurvivorsClone_Base/HEAD/Survivors Clone/Textures/Items/Upgrades/helmet_1.png -------------------------------------------------------------------------------- /Survivors Clone/Textures/Items/Upgrades/low_boots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannotaylor/SurvivorsClone_Base/HEAD/Survivors Clone/Textures/Items/Upgrades/low_boots.png -------------------------------------------------------------------------------- /Survivors Clone/Textures/Items/Upgrades/scroll_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannotaylor/SurvivorsClone_Base/HEAD/Survivors Clone/Textures/Items/Upgrades/scroll_old.png -------------------------------------------------------------------------------- /Survivors Clone/Textures/Items/Upgrades/thick_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannotaylor/SurvivorsClone_Base/HEAD/Survivors Clone/Textures/Items/Upgrades/thick_new.png -------------------------------------------------------------------------------- /Survivors Clone/Textures/Items/Upgrades/urand_mage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannotaylor/SurvivorsClone_Base/HEAD/Survivors Clone/Textures/Items/Upgrades/urand_mage.png -------------------------------------------------------------------------------- /Survivors Clone/Textures/Items/Weapons/ice_spear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannotaylor/SurvivorsClone_Base/HEAD/Survivors Clone/Textures/Items/Weapons/ice_spear.png -------------------------------------------------------------------------------- /Survivors Clone/Textures/Items/Weapons/javelin_3_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannotaylor/SurvivorsClone_Base/HEAD/Survivors Clone/Textures/Items/Weapons/javelin_3_new.png -------------------------------------------------------------------------------- /Survivors Clone/Textures/Items/Weapons/javelin_3_new_attack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannotaylor/SurvivorsClone_Base/HEAD/Survivors Clone/Textures/Items/Weapons/javelin_3_new_attack.png -------------------------------------------------------------------------------- /Survivors Clone/Textures/Items/Weapons/sword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannotaylor/SurvivorsClone_Base/HEAD/Survivors Clone/Textures/Items/Weapons/sword.png -------------------------------------------------------------------------------- /Survivors Clone/Textures/Items/Weapons/tornado.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannotaylor/SurvivorsClone_Base/HEAD/Survivors Clone/Textures/Items/Weapons/tornado.png -------------------------------------------------------------------------------- /Survivors Clone/Textures/Player/player_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannotaylor/SurvivorsClone_Base/HEAD/Survivors Clone/Textures/Player/player_sprite.png -------------------------------------------------------------------------------- /Survivors Clone/Textures/dirt_full_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannotaylor/SurvivorsClone_Base/HEAD/Survivors Clone/Textures/dirt_full_new.png -------------------------------------------------------------------------------- /Survivors Clone/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannotaylor/SurvivorsClone_Base/HEAD/Survivors Clone/icon.svg -------------------------------------------------------------------------------- /Survivors Clone/icon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannotaylor/SurvivorsClone_Base/HEAD/Survivors Clone/icon.svg.import -------------------------------------------------------------------------------- /Survivors Clone/project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brannotaylor/SurvivorsClone_Base/HEAD/Survivors Clone/project.godot --------------------------------------------------------------------------------