├── .gitignore ├── 2D Platformer Game ├── .vsconfig ├── Assets │ ├── 2D Platformer Tileset.meta │ ├── 2D Platformer Tileset │ │ ├── Scenes.meta │ │ ├── Scenes │ │ │ ├── Sample_1.unity │ │ │ ├── Sample_1.unity.meta │ │ │ ├── Sample_2.unity │ │ │ └── Sample_2.unity.meta │ │ ├── Sprites.meta │ │ └── Sprites │ │ │ ├── Animations.meta │ │ │ ├── Animations │ │ │ ├── Barrel.meta │ │ │ ├── Barrel │ │ │ │ ├── break_00.png │ │ │ │ ├── break_00.png.meta │ │ │ │ ├── break_01.png │ │ │ │ ├── break_01.png.meta │ │ │ │ ├── break_02.png │ │ │ │ ├── break_02.png.meta │ │ │ │ ├── break_03.png │ │ │ │ ├── break_03.png.meta │ │ │ │ ├── break_04.png │ │ │ │ ├── break_04.png.meta │ │ │ │ ├── break_05.png │ │ │ │ ├── break_05.png.meta │ │ │ │ ├── break_06.png │ │ │ │ ├── break_06.png.meta │ │ │ │ ├── break_07.png │ │ │ │ ├── break_07.png.meta │ │ │ │ ├── break_08.png │ │ │ │ └── break_08.png.meta │ │ │ ├── Bird.meta │ │ │ ├── Bird │ │ │ │ ├── fly.meta │ │ │ │ ├── fly │ │ │ │ │ ├── fly_0.png │ │ │ │ │ ├── fly_0.png.meta │ │ │ │ │ ├── fly_1.png │ │ │ │ │ ├── fly_1.png.meta │ │ │ │ │ ├── fly_2.png │ │ │ │ │ ├── fly_2.png.meta │ │ │ │ │ ├── fly_3.png │ │ │ │ │ ├── fly_3.png.meta │ │ │ │ │ ├── fly_4.png │ │ │ │ │ ├── fly_4.png.meta │ │ │ │ │ ├── fly_5.png │ │ │ │ │ └── fly_5.png.meta │ │ │ │ ├── idle_1.meta │ │ │ │ ├── idle_1 │ │ │ │ │ ├── idle_1_0.png │ │ │ │ │ ├── idle_1_0.png.meta │ │ │ │ │ ├── idle_1_1.png │ │ │ │ │ ├── idle_1_1.png.meta │ │ │ │ │ ├── idle_1_2.png │ │ │ │ │ ├── idle_1_2.png.meta │ │ │ │ │ ├── idle_1_3.png │ │ │ │ │ ├── idle_1_3.png.meta │ │ │ │ │ ├── idle_1_4.png │ │ │ │ │ ├── idle_1_4.png.meta │ │ │ │ │ ├── idle_1_5.png │ │ │ │ │ ├── idle_1_5.png.meta │ │ │ │ │ ├── idle_1_6.png │ │ │ │ │ ├── idle_1_6.png.meta │ │ │ │ │ ├── idle_1_7.png │ │ │ │ │ └── idle_1_7.png.meta │ │ │ │ ├── idle_2.meta │ │ │ │ ├── idle_2 │ │ │ │ │ ├── idle_2_0.png │ │ │ │ │ ├── idle_2_0.png.meta │ │ │ │ │ ├── idle_2_1.png │ │ │ │ │ ├── idle_2_1.png.meta │ │ │ │ │ ├── idle_2_2.png │ │ │ │ │ ├── idle_2_2.png.meta │ │ │ │ │ ├── idle_2_3.png │ │ │ │ │ ├── idle_2_3.png.meta │ │ │ │ │ ├── idle_2_4.png │ │ │ │ │ ├── idle_2_4.png.meta │ │ │ │ │ ├── idle_2_5.png │ │ │ │ │ ├── idle_2_5.png.meta │ │ │ │ │ ├── idle_2_6.png │ │ │ │ │ └── idle_2_6.png.meta │ │ │ │ ├── walk.meta │ │ │ │ └── walk │ │ │ │ │ ├── walk_0.png │ │ │ │ │ ├── walk_0.png.meta │ │ │ │ │ ├── walk_1.png │ │ │ │ │ ├── walk_1.png.meta │ │ │ │ │ ├── walk_2.png │ │ │ │ │ ├── walk_2.png.meta │ │ │ │ │ ├── walk_3.png │ │ │ │ │ ├── walk_3.png.meta │ │ │ │ │ ├── walk_4.png │ │ │ │ │ ├── walk_4.png.meta │ │ │ │ │ ├── walk_5.png │ │ │ │ │ ├── walk_5.png.meta │ │ │ │ │ ├── walk_6.png │ │ │ │ │ ├── walk_6.png.meta │ │ │ │ │ ├── walk_7.png │ │ │ │ │ └── walk_7.png.meta │ │ │ ├── Campfire.meta │ │ │ ├── Campfire │ │ │ │ ├── campfire_0.png │ │ │ │ ├── campfire_0.png.meta │ │ │ │ ├── campfire_1.png │ │ │ │ ├── campfire_1.png.meta │ │ │ │ ├── campfire_2.png │ │ │ │ ├── campfire_2.png.meta │ │ │ │ ├── campfire_3.png │ │ │ │ ├── campfire_3.png.meta │ │ │ │ ├── campfire_4.png │ │ │ │ ├── campfire_4.png.meta │ │ │ │ ├── campfire_5.png │ │ │ │ ├── campfire_5.png.meta │ │ │ │ ├── campfire_6.png │ │ │ │ ├── campfire_6.png.meta │ │ │ │ ├── campfire_7.png │ │ │ │ └── campfire_7.png.meta │ │ │ ├── Candle.meta │ │ │ ├── Candle │ │ │ │ ├── candle_0.png │ │ │ │ ├── candle_0.png.meta │ │ │ │ ├── candle_1.png │ │ │ │ ├── candle_1.png.meta │ │ │ │ ├── candle_2.png │ │ │ │ ├── candle_2.png.meta │ │ │ │ ├── candle_3.png │ │ │ │ ├── candle_3.png.meta │ │ │ │ ├── candle_4.png │ │ │ │ ├── candle_4.png.meta │ │ │ │ ├── candle_5.png │ │ │ │ ├── candle_5.png.meta │ │ │ │ ├── candle_6.png │ │ │ │ ├── candle_6.png.meta │ │ │ │ ├── candle_7.png │ │ │ │ └── candle_7.png.meta │ │ │ ├── Chest.meta │ │ │ ├── Chest │ │ │ │ ├── chest_0.png │ │ │ │ ├── chest_0.png.meta │ │ │ │ ├── chest_1.png │ │ │ │ ├── chest_1.png.meta │ │ │ │ ├── chest_2.png │ │ │ │ ├── chest_2.png.meta │ │ │ │ ├── chest_3.png │ │ │ │ ├── chest_3.png.meta │ │ │ │ ├── chest_4.png │ │ │ │ └── chest_4.png.meta │ │ │ ├── Coin.meta │ │ │ ├── Coin │ │ │ │ ├── coin_1.png │ │ │ │ ├── coin_1.png.meta │ │ │ │ ├── coin_2.png │ │ │ │ ├── coin_2.png.meta │ │ │ │ ├── coin_3.png │ │ │ │ ├── coin_3.png.meta │ │ │ │ ├── coin_4.png │ │ │ │ ├── coin_4.png.meta │ │ │ │ ├── coin_5.png │ │ │ │ ├── coin_5.png.meta │ │ │ │ ├── coin_6.png │ │ │ │ ├── coin_6.png.meta │ │ │ │ ├── coin_7.png │ │ │ │ ├── coin_7.png.meta │ │ │ │ ├── coin_8.png │ │ │ │ └── coin_8.png.meta │ │ │ ├── Crate.meta │ │ │ ├── Crate │ │ │ │ ├── break_00.png │ │ │ │ ├── break_00.png.meta │ │ │ │ ├── break_01.png │ │ │ │ ├── break_01.png.meta │ │ │ │ ├── break_02.png │ │ │ │ ├── break_02.png.meta │ │ │ │ ├── break_03.png │ │ │ │ ├── break_03.png.meta │ │ │ │ ├── break_04.png │ │ │ │ ├── break_04.png.meta │ │ │ │ ├── break_05.png │ │ │ │ ├── break_05.png.meta │ │ │ │ ├── break_06.png │ │ │ │ ├── break_06.png.meta │ │ │ │ ├── break_07.png │ │ │ │ ├── break_07.png.meta │ │ │ │ ├── break_08.png │ │ │ │ └── break_08.png.meta │ │ │ ├── Crossbow.meta │ │ │ ├── Crossbow │ │ │ │ ├── break.meta │ │ │ │ ├── break │ │ │ │ │ ├── break_00.png │ │ │ │ │ ├── break_00.png.meta │ │ │ │ │ ├── break_01.png │ │ │ │ │ ├── break_01.png.meta │ │ │ │ │ ├── break_02.png │ │ │ │ │ ├── break_02.png.meta │ │ │ │ │ ├── break_03.png │ │ │ │ │ ├── break_03.png.meta │ │ │ │ │ ├── break_04.png │ │ │ │ │ ├── break_04.png.meta │ │ │ │ │ ├── break_05.png │ │ │ │ │ ├── break_05.png.meta │ │ │ │ │ ├── break_06.png │ │ │ │ │ ├── break_06.png.meta │ │ │ │ │ ├── break_07.png │ │ │ │ │ ├── break_07.png.meta │ │ │ │ │ ├── break_08.png │ │ │ │ │ └── break_08.png.meta │ │ │ │ ├── shoot.meta │ │ │ │ └── shoot │ │ │ │ │ ├── shoot_00.png │ │ │ │ │ ├── shoot_00.png.meta │ │ │ │ │ ├── shoot_01.png │ │ │ │ │ ├── shoot_01.png.meta │ │ │ │ │ ├── shoot_02.png │ │ │ │ │ ├── shoot_02.png.meta │ │ │ │ │ ├── shoot_03.png │ │ │ │ │ ├── shoot_03.png.meta │ │ │ │ │ ├── shoot_04.png │ │ │ │ │ ├── shoot_04.png.meta │ │ │ │ │ ├── shoot_05.png │ │ │ │ │ ├── shoot_05.png.meta │ │ │ │ │ ├── shoot_06.png │ │ │ │ │ ├── shoot_06.png.meta │ │ │ │ │ ├── shoot_07.png │ │ │ │ │ ├── shoot_07.png.meta │ │ │ │ │ ├── shoot_08.png │ │ │ │ │ ├── shoot_08.png.meta │ │ │ │ │ ├── shoot_09.png │ │ │ │ │ ├── shoot_09.png.meta │ │ │ │ │ ├── shoot_10.png │ │ │ │ │ ├── shoot_10.png.meta │ │ │ │ │ ├── shoot_11.png │ │ │ │ │ ├── shoot_11.png.meta │ │ │ │ │ ├── shoot_12.png │ │ │ │ │ ├── shoot_12.png.meta │ │ │ │ │ ├── shoot_13.png │ │ │ │ │ └── shoot_13.png.meta │ │ │ ├── Firebowl.meta │ │ │ ├── Firebowl │ │ │ │ ├── firebowl_0.png │ │ │ │ ├── firebowl_0.png.meta │ │ │ │ ├── firebowl_1.png │ │ │ │ ├── firebowl_1.png.meta │ │ │ │ ├── firebowl_2.png │ │ │ │ ├── firebowl_2.png.meta │ │ │ │ ├── firebowl_3.png │ │ │ │ ├── firebowl_3.png.meta │ │ │ │ ├── firebowl_4.png │ │ │ │ ├── firebowl_4.png.meta │ │ │ │ ├── firebowl_5.png │ │ │ │ ├── firebowl_5.png.meta │ │ │ │ ├── firebowl_6.png │ │ │ │ ├── firebowl_6.png.meta │ │ │ │ ├── firebowl_7.png │ │ │ │ └── firebowl_7.png.meta │ │ │ ├── Fireplace.meta │ │ │ ├── Fireplace │ │ │ │ ├── fireplace_0.png │ │ │ │ ├── fireplace_0.png.meta │ │ │ │ ├── fireplace_1.png │ │ │ │ ├── fireplace_1.png.meta │ │ │ │ ├── fireplace_2.png │ │ │ │ ├── fireplace_2.png.meta │ │ │ │ ├── fireplace_3.png │ │ │ │ ├── fireplace_3.png.meta │ │ │ │ ├── fireplace_4.png │ │ │ │ ├── fireplace_4.png.meta │ │ │ │ ├── fireplace_5.png │ │ │ │ ├── fireplace_5.png.meta │ │ │ │ ├── fireplace_6.png │ │ │ │ ├── fireplace_6.png.meta │ │ │ │ ├── fireplace_7.png │ │ │ │ └── fireplace_7.png.meta │ │ │ ├── Furnace.meta │ │ │ ├── Furnace │ │ │ │ ├── furnace_0.png │ │ │ │ ├── furnace_0.png.meta │ │ │ │ ├── furnace_1.png │ │ │ │ ├── furnace_1.png.meta │ │ │ │ ├── furnace_2.png │ │ │ │ ├── furnace_2.png.meta │ │ │ │ ├── furnace_3.png │ │ │ │ ├── furnace_3.png.meta │ │ │ │ ├── furnace_4.png │ │ │ │ ├── furnace_4.png.meta │ │ │ │ ├── furnace_5.png │ │ │ │ ├── furnace_5.png.meta │ │ │ │ ├── furnace_6.png │ │ │ │ ├── furnace_6.png.meta │ │ │ │ ├── furnace_7.png │ │ │ │ └── furnace_7.png.meta │ │ │ ├── Impact.meta │ │ │ ├── Impact │ │ │ │ ├── Impact_1.meta │ │ │ │ ├── Impact_1 │ │ │ │ │ ├── impact1_0.png │ │ │ │ │ ├── impact1_0.png.meta │ │ │ │ │ ├── impact1_1.png │ │ │ │ │ ├── impact1_1.png.meta │ │ │ │ │ ├── impact1_2.png │ │ │ │ │ ├── impact1_2.png.meta │ │ │ │ │ ├── impact1_3.png │ │ │ │ │ ├── impact1_3.png.meta │ │ │ │ │ ├── impact1_4.png │ │ │ │ │ ├── impact1_4.png.meta │ │ │ │ │ ├── impact1_5.png │ │ │ │ │ ├── impact1_5.png.meta │ │ │ │ │ ├── impact1_6.png │ │ │ │ │ └── impact1_6.png.meta │ │ │ │ ├── Impact_2.meta │ │ │ │ └── Impact_2 │ │ │ │ │ ├── impact2_0.png │ │ │ │ │ ├── impact2_0.png.meta │ │ │ │ │ ├── impact2_1.png │ │ │ │ │ ├── impact2_1.png.meta │ │ │ │ │ ├── impact2_2.png │ │ │ │ │ ├── impact2_2.png.meta │ │ │ │ │ ├── impact2_3.png │ │ │ │ │ ├── impact2_3.png.meta │ │ │ │ │ ├── impact2_4.png │ │ │ │ │ ├── impact2_4.png.meta │ │ │ │ │ ├── impact2_5.png │ │ │ │ │ ├── impact2_5.png.meta │ │ │ │ │ ├── impact2_6.png │ │ │ │ │ └── impact2_6.png.meta │ │ │ ├── Key.meta │ │ │ ├── Key │ │ │ │ ├── key_1.png │ │ │ │ ├── key_1.png.meta │ │ │ │ ├── key_10.png │ │ │ │ ├── key_10.png.meta │ │ │ │ ├── key_11.png │ │ │ │ ├── key_11.png.meta │ │ │ │ ├── key_12.png │ │ │ │ ├── key_12.png.meta │ │ │ │ ├── key_13.png │ │ │ │ ├── key_13.png.meta │ │ │ │ ├── key_14.png │ │ │ │ ├── key_14.png.meta │ │ │ │ ├── key_15.png │ │ │ │ ├── key_15.png.meta │ │ │ │ ├── key_2.png │ │ │ │ ├── key_2.png.meta │ │ │ │ ├── key_3.png │ │ │ │ ├── key_3.png.meta │ │ │ │ ├── key_4.png │ │ │ │ ├── key_4.png.meta │ │ │ │ ├── key_5.png │ │ │ │ ├── key_5.png.meta │ │ │ │ ├── key_6.png │ │ │ │ ├── key_6.png.meta │ │ │ │ ├── key_7.png │ │ │ │ ├── key_7.png.meta │ │ │ │ ├── key_8.png │ │ │ │ ├── key_8.png.meta │ │ │ │ ├── key_9.png │ │ │ │ └── key_9.png.meta │ │ │ ├── Lever.meta │ │ │ ├── Lever │ │ │ │ ├── lever_00.png │ │ │ │ ├── lever_00.png.meta │ │ │ │ ├── lever_01.png │ │ │ │ ├── lever_01.png.meta │ │ │ │ ├── lever_02.png │ │ │ │ ├── lever_02.png.meta │ │ │ │ ├── lever_03.png │ │ │ │ ├── lever_03.png.meta │ │ │ │ ├── lever_04.png │ │ │ │ ├── lever_04.png.meta │ │ │ │ ├── lever_05.png │ │ │ │ ├── lever_05.png.meta │ │ │ │ ├── lever_06.png │ │ │ │ ├── lever_06.png.meta │ │ │ │ ├── lever_07.png │ │ │ │ └── lever_07.png.meta │ │ │ ├── Pickup Effect Coin.meta │ │ │ ├── Pickup Effect Coin │ │ │ │ ├── pickup_effect_coin_1.png │ │ │ │ ├── pickup_effect_coin_1.png.meta │ │ │ │ ├── pickup_effect_coin_2.png │ │ │ │ ├── pickup_effect_coin_2.png.meta │ │ │ │ ├── pickup_effect_coin_3.png │ │ │ │ └── pickup_effect_coin_3.png.meta │ │ │ ├── Pickup Effect Key.meta │ │ │ ├── Pickup Effect Key │ │ │ │ ├── pickup_effect_key_1.png │ │ │ │ ├── pickup_effect_key_1.png.meta │ │ │ │ ├── pickup_effect_key_2.png │ │ │ │ ├── pickup_effect_key_2.png.meta │ │ │ │ ├── pickup_effect_key_3.png │ │ │ │ └── pickup_effect_key_3.png.meta │ │ │ ├── Spider Den.meta │ │ │ ├── Spider Den │ │ │ │ ├── break_0.png │ │ │ │ ├── break_0.png.meta │ │ │ │ ├── break_1.png │ │ │ │ ├── break_1.png.meta │ │ │ │ ├── break_2.png │ │ │ │ ├── break_2.png.meta │ │ │ │ ├── break_3.png │ │ │ │ ├── break_3.png.meta │ │ │ │ ├── break_4.png │ │ │ │ ├── break_4.png.meta │ │ │ │ ├── break_5.png │ │ │ │ ├── break_5.png.meta │ │ │ │ ├── break_6.png │ │ │ │ └── break_6.png.meta │ │ │ ├── Torch.meta │ │ │ └── Torch │ │ │ │ ├── torch_0.png │ │ │ │ ├── torch_0.png.meta │ │ │ │ ├── torch_1.png │ │ │ │ ├── torch_1.png.meta │ │ │ │ ├── torch_2.png │ │ │ │ ├── torch_2.png.meta │ │ │ │ ├── torch_3.png │ │ │ │ ├── torch_3.png.meta │ │ │ │ ├── torch_4.png │ │ │ │ ├── torch_4.png.meta │ │ │ │ ├── torch_5.png │ │ │ │ ├── torch_5.png.meta │ │ │ │ ├── torch_6.png │ │ │ │ └── torch_6.png.meta │ │ │ ├── Cave_Background.meta │ │ │ ├── Cave_Background │ │ │ ├── bg_cave_1.png │ │ │ ├── bg_cave_1.png.meta │ │ │ ├── bg_cave_2.png │ │ │ ├── bg_cave_2.png.meta │ │ │ ├── bg_cave_3.png │ │ │ ├── bg_cave_3.png.meta │ │ │ ├── bg_cave_4.png │ │ │ ├── bg_cave_4.png.meta │ │ │ ├── bg_cave_5.png │ │ │ └── bg_cave_5.png.meta │ │ │ ├── Enemy.meta │ │ │ ├── Enemy │ │ │ ├── Bat.meta │ │ │ ├── Bat │ │ │ │ ├── attack.meta │ │ │ │ ├── attack │ │ │ │ │ ├── attack_0.png │ │ │ │ │ ├── attack_0.png.meta │ │ │ │ │ ├── attack_1.png │ │ │ │ │ ├── attack_1.png.meta │ │ │ │ │ ├── attack_2.png │ │ │ │ │ ├── attack_2.png.meta │ │ │ │ │ ├── attack_3.png │ │ │ │ │ ├── attack_3.png.meta │ │ │ │ │ ├── attack_4.png │ │ │ │ │ ├── attack_4.png.meta │ │ │ │ │ ├── attack_5.png │ │ │ │ │ ├── attack_5.png.meta │ │ │ │ │ ├── attack_6.png │ │ │ │ │ ├── attack_6.png.meta │ │ │ │ │ ├── attack_7.png │ │ │ │ │ └── attack_7.png.meta │ │ │ │ ├── die.meta │ │ │ │ ├── die │ │ │ │ │ ├── die_00.png │ │ │ │ │ ├── die_00.png.meta │ │ │ │ │ ├── die_01.png │ │ │ │ │ ├── die_01.png.meta │ │ │ │ │ ├── die_02.png │ │ │ │ │ ├── die_02.png.meta │ │ │ │ │ ├── die_03.png │ │ │ │ │ ├── die_03.png.meta │ │ │ │ │ ├── die_04.png │ │ │ │ │ ├── die_04.png.meta │ │ │ │ │ ├── die_05.png │ │ │ │ │ ├── die_05.png.meta │ │ │ │ │ ├── die_06.png │ │ │ │ │ ├── die_06.png.meta │ │ │ │ │ ├── die_07.png │ │ │ │ │ ├── die_07.png.meta │ │ │ │ │ ├── die_08.png │ │ │ │ │ └── die_08.png.meta │ │ │ │ ├── fly.meta │ │ │ │ ├── fly │ │ │ │ │ ├── fly_0.png │ │ │ │ │ ├── fly_0.png.meta │ │ │ │ │ ├── fly_1.png │ │ │ │ │ ├── fly_1.png.meta │ │ │ │ │ ├── fly_2.png │ │ │ │ │ ├── fly_2.png.meta │ │ │ │ │ ├── fly_3.png │ │ │ │ │ ├── fly_3.png.meta │ │ │ │ │ ├── fly_4.png │ │ │ │ │ ├── fly_4.png.meta │ │ │ │ │ ├── fly_5.png │ │ │ │ │ ├── fly_5.png.meta │ │ │ │ │ ├── fly_6.png │ │ │ │ │ └── fly_6.png.meta │ │ │ │ ├── hang.meta │ │ │ │ └── hang │ │ │ │ │ ├── hang_0.png │ │ │ │ │ ├── hang_0.png.meta │ │ │ │ │ ├── hang_1.png │ │ │ │ │ ├── hang_1.png.meta │ │ │ │ │ ├── hang_2.png │ │ │ │ │ ├── hang_2.png.meta │ │ │ │ │ ├── hang_3.png │ │ │ │ │ ├── hang_3.png.meta │ │ │ │ │ ├── hang_4.png │ │ │ │ │ ├── hang_4.png.meta │ │ │ │ │ ├── hang_5.png │ │ │ │ │ ├── hang_5.png.meta │ │ │ │ │ ├── hang_6.png │ │ │ │ │ ├── hang_6.png.meta │ │ │ │ │ ├── hang_7.png │ │ │ │ │ └── hang_7.png.meta │ │ │ ├── Bee.meta │ │ │ ├── Bee │ │ │ │ ├── attack.meta │ │ │ │ ├── attack │ │ │ │ │ ├── attack_00.png │ │ │ │ │ ├── attack_00.png.meta │ │ │ │ │ ├── attack_01.png │ │ │ │ │ ├── attack_01.png.meta │ │ │ │ │ ├── attack_02.png │ │ │ │ │ ├── attack_02.png.meta │ │ │ │ │ ├── attack_03.png │ │ │ │ │ ├── attack_03.png.meta │ │ │ │ │ ├── attack_04.png │ │ │ │ │ ├── attack_04.png.meta │ │ │ │ │ ├── attack_05.png │ │ │ │ │ ├── attack_05.png.meta │ │ │ │ │ ├── attack_06.png │ │ │ │ │ ├── attack_06.png.meta │ │ │ │ │ ├── attack_07.png │ │ │ │ │ ├── attack_07.png.meta │ │ │ │ │ ├── attack_08.png │ │ │ │ │ ├── attack_08.png.meta │ │ │ │ │ ├── attack_09.png │ │ │ │ │ ├── attack_09.png.meta │ │ │ │ │ ├── attack_10.png │ │ │ │ │ ├── attack_10.png.meta │ │ │ │ │ ├── attack_11.png │ │ │ │ │ ├── attack_11.png.meta │ │ │ │ │ ├── attack_12.png │ │ │ │ │ └── attack_12.png.meta │ │ │ │ ├── die.meta │ │ │ │ ├── die │ │ │ │ │ ├── die_00.png │ │ │ │ │ ├── die_00.png.meta │ │ │ │ │ ├── die_01.png │ │ │ │ │ ├── die_01.png.meta │ │ │ │ │ ├── die_02.png │ │ │ │ │ ├── die_02.png.meta │ │ │ │ │ ├── die_03.png │ │ │ │ │ ├── die_03.png.meta │ │ │ │ │ ├── die_04.png │ │ │ │ │ ├── die_04.png.meta │ │ │ │ │ ├── die_05.png │ │ │ │ │ ├── die_05.png.meta │ │ │ │ │ ├── die_06.png │ │ │ │ │ ├── die_06.png.meta │ │ │ │ │ ├── die_07.png │ │ │ │ │ ├── die_07.png.meta │ │ │ │ │ ├── die_08.png │ │ │ │ │ └── die_08.png.meta │ │ │ │ ├── idle.meta │ │ │ │ ├── idle │ │ │ │ │ ├── idle_00.png │ │ │ │ │ ├── idle_00.png.meta │ │ │ │ │ ├── idle_01.png │ │ │ │ │ ├── idle_01.png.meta │ │ │ │ │ ├── idle_02.png │ │ │ │ │ ├── idle_02.png.meta │ │ │ │ │ ├── idle_03.png │ │ │ │ │ ├── idle_03.png.meta │ │ │ │ │ ├── idle_04.png │ │ │ │ │ ├── idle_04.png.meta │ │ │ │ │ ├── idle_05.png │ │ │ │ │ ├── idle_05.png.meta │ │ │ │ │ ├── idle_06.png │ │ │ │ │ ├── idle_06.png.meta │ │ │ │ │ ├── idle_07.png │ │ │ │ │ └── idle_07.png.meta │ │ │ │ ├── run.meta │ │ │ │ └── run │ │ │ │ │ ├── run_00.png │ │ │ │ │ ├── run_00.png.meta │ │ │ │ │ ├── run_01.png │ │ │ │ │ ├── run_01.png.meta │ │ │ │ │ ├── run_02.png │ │ │ │ │ ├── run_02.png.meta │ │ │ │ │ ├── run_03.png │ │ │ │ │ ├── run_03.png.meta │ │ │ │ │ ├── run_04.png │ │ │ │ │ ├── run_04.png.meta │ │ │ │ │ ├── run_05.png │ │ │ │ │ ├── run_05.png.meta │ │ │ │ │ ├── run_06.png │ │ │ │ │ ├── run_06.png.meta │ │ │ │ │ ├── run_07.png │ │ │ │ │ └── run_07.png.meta │ │ │ ├── Skeleton.meta │ │ │ ├── Skeleton │ │ │ │ ├── attack_1.meta │ │ │ │ ├── attack_1 │ │ │ │ │ ├── attack_1_00.png │ │ │ │ │ ├── attack_1_00.png.meta │ │ │ │ │ ├── attack_1_01.png │ │ │ │ │ ├── attack_1_01.png.meta │ │ │ │ │ ├── attack_1_02.png │ │ │ │ │ ├── attack_1_02.png.meta │ │ │ │ │ ├── attack_1_03.png │ │ │ │ │ ├── attack_1_03.png.meta │ │ │ │ │ ├── attack_1_04.png │ │ │ │ │ ├── attack_1_04.png.meta │ │ │ │ │ ├── attack_1_05.png │ │ │ │ │ ├── attack_1_05.png.meta │ │ │ │ │ ├── attack_1_06.png │ │ │ │ │ ├── attack_1_06.png.meta │ │ │ │ │ ├── attack_1_07.png │ │ │ │ │ ├── attack_1_07.png.meta │ │ │ │ │ ├── attack_1_08.png │ │ │ │ │ ├── attack_1_08.png.meta │ │ │ │ │ ├── attack_1_09.png │ │ │ │ │ ├── attack_1_09.png.meta │ │ │ │ │ ├── attack_1_10.png │ │ │ │ │ ├── attack_1_10.png.meta │ │ │ │ │ ├── attack_1_11.png │ │ │ │ │ ├── attack_1_11.png.meta │ │ │ │ │ ├── attack_1_12.png │ │ │ │ │ └── attack_1_12.png.meta │ │ │ │ ├── attack_2.meta │ │ │ │ ├── attack_2 │ │ │ │ │ ├── attack_2_00.png │ │ │ │ │ ├── attack_2_00.png.meta │ │ │ │ │ ├── attack_2_01.png │ │ │ │ │ ├── attack_2_01.png.meta │ │ │ │ │ ├── attack_2_02.png │ │ │ │ │ ├── attack_2_02.png.meta │ │ │ │ │ ├── attack_2_03.png │ │ │ │ │ ├── attack_2_03.png.meta │ │ │ │ │ ├── attack_2_04.png │ │ │ │ │ ├── attack_2_04.png.meta │ │ │ │ │ ├── attack_2_05.png │ │ │ │ │ ├── attack_2_05.png.meta │ │ │ │ │ ├── attack_2_06.png │ │ │ │ │ ├── attack_2_06.png.meta │ │ │ │ │ ├── attack_2_07.png │ │ │ │ │ ├── attack_2_07.png.meta │ │ │ │ │ ├── attack_2_08.png │ │ │ │ │ ├── attack_2_08.png.meta │ │ │ │ │ ├── attack_2_09.png │ │ │ │ │ └── attack_2_09.png.meta │ │ │ │ ├── die.meta │ │ │ │ ├── die │ │ │ │ │ ├── die_00.png │ │ │ │ │ ├── die_00.png.meta │ │ │ │ │ ├── die_01.png │ │ │ │ │ ├── die_01.png.meta │ │ │ │ │ ├── die_02.png │ │ │ │ │ ├── die_02.png.meta │ │ │ │ │ ├── die_03.png │ │ │ │ │ ├── die_03.png.meta │ │ │ │ │ ├── die_04.png │ │ │ │ │ ├── die_04.png.meta │ │ │ │ │ ├── die_05.png │ │ │ │ │ ├── die_05.png.meta │ │ │ │ │ ├── die_06.png │ │ │ │ │ └── die_06.png.meta │ │ │ │ ├── idle.meta │ │ │ │ ├── idle │ │ │ │ │ ├── idle_0.png │ │ │ │ │ ├── idle_0.png.meta │ │ │ │ │ ├── idle_1.png │ │ │ │ │ ├── idle_1.png.meta │ │ │ │ │ ├── idle_2.png │ │ │ │ │ ├── idle_2.png.meta │ │ │ │ │ ├── idle_3.png │ │ │ │ │ ├── idle_3.png.meta │ │ │ │ │ ├── idle_4.png │ │ │ │ │ ├── idle_4.png.meta │ │ │ │ │ ├── idle_5.png │ │ │ │ │ ├── idle_5.png.meta │ │ │ │ │ ├── idle_6.png │ │ │ │ │ ├── idle_6.png.meta │ │ │ │ │ ├── idle_7.png │ │ │ │ │ └── idle_7.png.meta │ │ │ │ ├── run.meta │ │ │ │ └── run │ │ │ │ │ ├── run_00.png │ │ │ │ │ ├── run_00.png.meta │ │ │ │ │ ├── run_01.png │ │ │ │ │ ├── run_01.png.meta │ │ │ │ │ ├── run_02.png │ │ │ │ │ ├── run_02.png.meta │ │ │ │ │ ├── run_03.png │ │ │ │ │ ├── run_03.png.meta │ │ │ │ │ ├── run_04.png │ │ │ │ │ ├── run_04.png.meta │ │ │ │ │ ├── run_05.png │ │ │ │ │ ├── run_05.png.meta │ │ │ │ │ ├── run_06.png │ │ │ │ │ ├── run_06.png.meta │ │ │ │ │ ├── run_07.png │ │ │ │ │ ├── run_07.png.meta │ │ │ │ │ ├── run_08.png │ │ │ │ │ ├── run_08.png.meta │ │ │ │ │ ├── run_09.png │ │ │ │ │ └── run_09.png.meta │ │ │ ├── Skeleton_Archer.meta │ │ │ ├── Skeleton_Archer │ │ │ │ ├── attack.meta │ │ │ │ ├── attack │ │ │ │ │ ├── attack_00.png │ │ │ │ │ ├── attack_00.png.meta │ │ │ │ │ ├── attack_01.png │ │ │ │ │ ├── attack_01.png.meta │ │ │ │ │ ├── attack_02.png │ │ │ │ │ ├── attack_02.png.meta │ │ │ │ │ ├── attack_03.png │ │ │ │ │ ├── attack_03.png.meta │ │ │ │ │ ├── attack_04.png │ │ │ │ │ ├── attack_04.png.meta │ │ │ │ │ ├── attack_05.png │ │ │ │ │ ├── attack_05.png.meta │ │ │ │ │ ├── attack_06.png │ │ │ │ │ ├── attack_06.png.meta │ │ │ │ │ ├── attack_07.png │ │ │ │ │ ├── attack_07.png.meta │ │ │ │ │ ├── attack_08.png │ │ │ │ │ ├── attack_08.png.meta │ │ │ │ │ ├── attack_09.png │ │ │ │ │ ├── attack_09.png.meta │ │ │ │ │ ├── attack_10.png │ │ │ │ │ ├── attack_10.png.meta │ │ │ │ │ ├── attack_11.png │ │ │ │ │ ├── attack_11.png.meta │ │ │ │ │ ├── attack_12.png │ │ │ │ │ ├── attack_12.png.meta │ │ │ │ │ ├── attack_13.png │ │ │ │ │ ├── attack_13.png.meta │ │ │ │ │ ├── attack_14.png │ │ │ │ │ ├── attack_14.png.meta │ │ │ │ │ ├── attack_15.png │ │ │ │ │ ├── attack_15.png.meta │ │ │ │ │ ├── attack_16.png │ │ │ │ │ └── attack_16.png.meta │ │ │ │ ├── die.meta │ │ │ │ ├── die │ │ │ │ │ ├── die_00.png │ │ │ │ │ ├── die_00.png.meta │ │ │ │ │ ├── die_01.png │ │ │ │ │ ├── die_01.png.meta │ │ │ │ │ ├── die_02.png │ │ │ │ │ ├── die_02.png.meta │ │ │ │ │ ├── die_03.png │ │ │ │ │ ├── die_03.png.meta │ │ │ │ │ ├── die_04.png │ │ │ │ │ ├── die_04.png.meta │ │ │ │ │ ├── die_05.png │ │ │ │ │ ├── die_05.png.meta │ │ │ │ │ ├── die_06.png │ │ │ │ │ └── die_06.png.meta │ │ │ │ ├── idle.meta │ │ │ │ ├── idle │ │ │ │ │ ├── idle_0.png │ │ │ │ │ ├── idle_0.png.meta │ │ │ │ │ ├── idle_1.png │ │ │ │ │ ├── idle_1.png.meta │ │ │ │ │ ├── idle_2.png │ │ │ │ │ ├── idle_2.png.meta │ │ │ │ │ ├── idle_3.png │ │ │ │ │ ├── idle_3.png.meta │ │ │ │ │ ├── idle_4.png │ │ │ │ │ ├── idle_4.png.meta │ │ │ │ │ ├── idle_5.png │ │ │ │ │ ├── idle_5.png.meta │ │ │ │ │ ├── idle_6.png │ │ │ │ │ ├── idle_6.png.meta │ │ │ │ │ ├── idle_7.png │ │ │ │ │ └── idle_7.png.meta │ │ │ │ ├── run.meta │ │ │ │ └── run │ │ │ │ │ ├── run_00.png │ │ │ │ │ ├── run_00.png.meta │ │ │ │ │ ├── run_01.png │ │ │ │ │ ├── run_01.png.meta │ │ │ │ │ ├── run_02.png │ │ │ │ │ ├── run_02.png.meta │ │ │ │ │ ├── run_03.png │ │ │ │ │ ├── run_03.png.meta │ │ │ │ │ ├── run_04.png │ │ │ │ │ ├── run_04.png.meta │ │ │ │ │ ├── run_05.png │ │ │ │ │ ├── run_05.png.meta │ │ │ │ │ ├── run_06.png │ │ │ │ │ ├── run_06.png.meta │ │ │ │ │ ├── run_07.png │ │ │ │ │ ├── run_07.png.meta │ │ │ │ │ ├── run_08.png │ │ │ │ │ ├── run_08.png.meta │ │ │ │ │ ├── run_09.png │ │ │ │ │ └── run_09.png.meta │ │ │ ├── Skeleton_Boss.meta │ │ │ ├── Skeleton_Boss │ │ │ │ ├── attack_1.meta │ │ │ │ ├── attack_1 │ │ │ │ │ ├── attack_1_00.png │ │ │ │ │ ├── attack_1_00.png.meta │ │ │ │ │ ├── attack_1_01.png │ │ │ │ │ ├── attack_1_01.png.meta │ │ │ │ │ ├── attack_1_02.png │ │ │ │ │ ├── attack_1_02.png.meta │ │ │ │ │ ├── attack_1_03.png │ │ │ │ │ ├── attack_1_03.png.meta │ │ │ │ │ ├── attack_1_04.png │ │ │ │ │ ├── attack_1_04.png.meta │ │ │ │ │ ├── attack_1_05.png │ │ │ │ │ ├── attack_1_05.png.meta │ │ │ │ │ ├── attack_1_06.png │ │ │ │ │ ├── attack_1_06.png.meta │ │ │ │ │ ├── attack_1_07.png │ │ │ │ │ ├── attack_1_07.png.meta │ │ │ │ │ ├── attack_1_08.png │ │ │ │ │ ├── attack_1_08.png.meta │ │ │ │ │ ├── attack_1_09.png │ │ │ │ │ ├── attack_1_09.png.meta │ │ │ │ │ ├── attack_1_10.png │ │ │ │ │ ├── attack_1_10.png.meta │ │ │ │ │ ├── attack_1_11.png │ │ │ │ │ ├── attack_1_11.png.meta │ │ │ │ │ ├── attack_1_12.png │ │ │ │ │ ├── attack_1_12.png.meta │ │ │ │ │ ├── attack_1_13.png │ │ │ │ │ ├── attack_1_13.png.meta │ │ │ │ │ ├── attack_1_14.png │ │ │ │ │ ├── attack_1_14.png.meta │ │ │ │ │ ├── attack_1_15.png │ │ │ │ │ ├── attack_1_15.png.meta │ │ │ │ │ ├── attack_1_16.png │ │ │ │ │ ├── attack_1_16.png.meta │ │ │ │ │ ├── attack_1_17.png │ │ │ │ │ ├── attack_1_17.png.meta │ │ │ │ │ ├── attack_1_18.png │ │ │ │ │ └── attack_1_18.png.meta │ │ │ │ ├── attack_2.meta │ │ │ │ ├── attack_2 │ │ │ │ │ ├── attack_2_00.png │ │ │ │ │ ├── attack_2_00.png.meta │ │ │ │ │ ├── attack_2_01.png │ │ │ │ │ ├── attack_2_01.png.meta │ │ │ │ │ ├── attack_2_02.png │ │ │ │ │ ├── attack_2_02.png.meta │ │ │ │ │ ├── attack_2_03.png │ │ │ │ │ ├── attack_2_03.png.meta │ │ │ │ │ ├── attack_2_04.png │ │ │ │ │ ├── attack_2_04.png.meta │ │ │ │ │ ├── attack_2_05.png │ │ │ │ │ ├── attack_2_05.png.meta │ │ │ │ │ ├── attack_2_06.png │ │ │ │ │ ├── attack_2_06.png.meta │ │ │ │ │ ├── attack_2_07.png │ │ │ │ │ ├── attack_2_07.png.meta │ │ │ │ │ ├── attack_2_08.png │ │ │ │ │ ├── attack_2_08.png.meta │ │ │ │ │ ├── attack_2_09.png │ │ │ │ │ ├── attack_2_09.png.meta │ │ │ │ │ ├── attack_2_10.png │ │ │ │ │ ├── attack_2_10.png.meta │ │ │ │ │ ├── attack_2_11.png │ │ │ │ │ ├── attack_2_11.png.meta │ │ │ │ │ ├── attack_2_12.png │ │ │ │ │ ├── attack_2_12.png.meta │ │ │ │ │ ├── attack_2_13.png │ │ │ │ │ ├── attack_2_13.png.meta │ │ │ │ │ ├── attack_2_14.png │ │ │ │ │ ├── attack_2_14.png.meta │ │ │ │ │ ├── attack_2_15.png │ │ │ │ │ ├── attack_2_15.png.meta │ │ │ │ │ ├── attack_2_16.png │ │ │ │ │ └── attack_2_16.png.meta │ │ │ │ ├── dash.meta │ │ │ │ ├── dash │ │ │ │ │ ├── dash_00.png │ │ │ │ │ ├── dash_00.png.meta │ │ │ │ │ ├── dash_01.png │ │ │ │ │ ├── dash_01.png.meta │ │ │ │ │ ├── dash_02.png │ │ │ │ │ ├── dash_02.png.meta │ │ │ │ │ ├── dash_03.png │ │ │ │ │ ├── dash_03.png.meta │ │ │ │ │ ├── dash_04.png │ │ │ │ │ ├── dash_04.png.meta │ │ │ │ │ ├── dash_05.png │ │ │ │ │ ├── dash_05.png.meta │ │ │ │ │ ├── dash_06.png │ │ │ │ │ ├── dash_06.png.meta │ │ │ │ │ ├── dash_07.png │ │ │ │ │ ├── dash_07.png.meta │ │ │ │ │ ├── dash_08.png │ │ │ │ │ ├── dash_08.png.meta │ │ │ │ │ ├── dash_09.png │ │ │ │ │ ├── dash_09.png.meta │ │ │ │ │ ├── dash_10.png │ │ │ │ │ └── dash_10.png.meta │ │ │ │ ├── die.meta │ │ │ │ ├── die │ │ │ │ │ ├── die_00.png │ │ │ │ │ ├── die_00.png.meta │ │ │ │ │ ├── die_01.png │ │ │ │ │ ├── die_01.png.meta │ │ │ │ │ ├── die_02.png │ │ │ │ │ ├── die_02.png.meta │ │ │ │ │ ├── die_03.png │ │ │ │ │ ├── die_03.png.meta │ │ │ │ │ ├── die_04.png │ │ │ │ │ ├── die_04.png.meta │ │ │ │ │ ├── die_05.png │ │ │ │ │ ├── die_05.png.meta │ │ │ │ │ ├── die_06.png │ │ │ │ │ ├── die_06.png.meta │ │ │ │ │ ├── die_07.png │ │ │ │ │ ├── die_07.png.meta │ │ │ │ │ ├── die_08.png │ │ │ │ │ ├── die_08.png.meta │ │ │ │ │ ├── die_09.png │ │ │ │ │ ├── die_09.png.meta │ │ │ │ │ ├── die_10.png │ │ │ │ │ ├── die_10.png.meta │ │ │ │ │ ├── die_11.png │ │ │ │ │ └── die_11.png.meta │ │ │ │ ├── idle.meta │ │ │ │ ├── idle │ │ │ │ │ ├── idle_00.png │ │ │ │ │ ├── idle_00.png.meta │ │ │ │ │ ├── idle_01.png │ │ │ │ │ ├── idle_01.png.meta │ │ │ │ │ ├── idle_02.png │ │ │ │ │ ├── idle_02.png.meta │ │ │ │ │ ├── idle_03.png │ │ │ │ │ ├── idle_03.png.meta │ │ │ │ │ ├── idle_04.png │ │ │ │ │ ├── idle_04.png.meta │ │ │ │ │ ├── idle_05.png │ │ │ │ │ ├── idle_05.png.meta │ │ │ │ │ ├── idle_06.png │ │ │ │ │ ├── idle_06.png.meta │ │ │ │ │ ├── idle_07.png │ │ │ │ │ ├── idle_07.png.meta │ │ │ │ │ ├── idle_08.png │ │ │ │ │ ├── idle_08.png.meta │ │ │ │ │ ├── idle_09.png │ │ │ │ │ └── idle_09.png.meta │ │ │ │ ├── run.meta │ │ │ │ ├── run │ │ │ │ │ ├── run_00.png │ │ │ │ │ ├── run_00.png.meta │ │ │ │ │ ├── run_01.png │ │ │ │ │ ├── run_01.png.meta │ │ │ │ │ ├── run_02.png │ │ │ │ │ ├── run_02.png.meta │ │ │ │ │ ├── run_03.png │ │ │ │ │ ├── run_03.png.meta │ │ │ │ │ ├── run_04.png │ │ │ │ │ ├── run_04.png.meta │ │ │ │ │ ├── run_05.png │ │ │ │ │ ├── run_05.png.meta │ │ │ │ │ ├── run_06.png │ │ │ │ │ ├── run_06.png.meta │ │ │ │ │ ├── run_07.png │ │ │ │ │ ├── run_07.png.meta │ │ │ │ │ ├── run_08.png │ │ │ │ │ ├── run_08.png.meta │ │ │ │ │ ├── run_09.png │ │ │ │ │ ├── run_09.png.meta │ │ │ │ │ ├── run_10.png │ │ │ │ │ ├── run_10.png.meta │ │ │ │ │ ├── run_11.png │ │ │ │ │ └── run_11.png.meta │ │ │ │ ├── stun.meta │ │ │ │ └── stun │ │ │ │ │ ├── stun_00.png │ │ │ │ │ ├── stun_00.png.meta │ │ │ │ │ ├── stun_01.png │ │ │ │ │ ├── stun_01.png.meta │ │ │ │ │ ├── stun_02.png │ │ │ │ │ ├── stun_02.png.meta │ │ │ │ │ ├── stun_03.png │ │ │ │ │ ├── stun_03.png.meta │ │ │ │ │ ├── stun_04.png │ │ │ │ │ ├── stun_04.png.meta │ │ │ │ │ ├── stun_05.png │ │ │ │ │ ├── stun_05.png.meta │ │ │ │ │ ├── stun_06.png │ │ │ │ │ ├── stun_06.png.meta │ │ │ │ │ ├── stun_07.png │ │ │ │ │ ├── stun_07.png.meta │ │ │ │ │ ├── stun_08.png │ │ │ │ │ ├── stun_08.png.meta │ │ │ │ │ ├── stun_09.png │ │ │ │ │ ├── stun_09.png.meta │ │ │ │ │ ├── stun_10.png │ │ │ │ │ ├── stun_10.png.meta │ │ │ │ │ ├── stun_11.png │ │ │ │ │ ├── stun_11.png.meta │ │ │ │ │ ├── stun_12.png │ │ │ │ │ └── stun_12.png.meta │ │ │ ├── Skeleton_Mage.meta │ │ │ ├── Skeleton_Mage │ │ │ │ ├── attack_1.meta │ │ │ │ ├── attack_1 │ │ │ │ │ ├── attack_1_00.png │ │ │ │ │ ├── attack_1_00.png.meta │ │ │ │ │ ├── attack_1_01.png │ │ │ │ │ ├── attack_1_01.png.meta │ │ │ │ │ ├── attack_1_02.png │ │ │ │ │ ├── attack_1_02.png.meta │ │ │ │ │ ├── attack_1_03.png │ │ │ │ │ ├── attack_1_03.png.meta │ │ │ │ │ ├── attack_1_04.png │ │ │ │ │ ├── attack_1_04.png.meta │ │ │ │ │ ├── attack_1_05.png │ │ │ │ │ ├── attack_1_05.png.meta │ │ │ │ │ ├── attack_1_06.png │ │ │ │ │ ├── attack_1_06.png.meta │ │ │ │ │ ├── attack_1_07.png │ │ │ │ │ ├── attack_1_07.png.meta │ │ │ │ │ ├── attack_1_08.png │ │ │ │ │ ├── attack_1_08.png.meta │ │ │ │ │ ├── attack_1_09.png │ │ │ │ │ ├── attack_1_09.png.meta │ │ │ │ │ ├── attack_1_10.png │ │ │ │ │ ├── attack_1_10.png.meta │ │ │ │ │ ├── attack_1_11.png │ │ │ │ │ ├── attack_1_11.png.meta │ │ │ │ │ ├── attack_1_12.png │ │ │ │ │ └── attack_1_12.png.meta │ │ │ │ ├── attack_2.meta │ │ │ │ ├── attack_2 │ │ │ │ │ ├── attack_2_00.png │ │ │ │ │ ├── attack_2_00.png.meta │ │ │ │ │ ├── attack_2_01.png │ │ │ │ │ ├── attack_2_01.png.meta │ │ │ │ │ ├── attack_2_02.png │ │ │ │ │ ├── attack_2_02.png.meta │ │ │ │ │ ├── attack_2_03.png │ │ │ │ │ ├── attack_2_03.png.meta │ │ │ │ │ ├── attack_2_04.png │ │ │ │ │ ├── attack_2_04.png.meta │ │ │ │ │ ├── attack_2_05.png │ │ │ │ │ ├── attack_2_05.png.meta │ │ │ │ │ ├── attack_2_06.png │ │ │ │ │ ├── attack_2_06.png.meta │ │ │ │ │ ├── attack_2_07.png │ │ │ │ │ ├── attack_2_07.png.meta │ │ │ │ │ ├── attack_2_08.png │ │ │ │ │ ├── attack_2_08.png.meta │ │ │ │ │ ├── attack_2_09.png │ │ │ │ │ └── attack_2_09.png.meta │ │ │ │ ├── die.meta │ │ │ │ ├── die │ │ │ │ │ ├── die_00.png │ │ │ │ │ ├── die_00.png.meta │ │ │ │ │ ├── die_01.png │ │ │ │ │ ├── die_01.png.meta │ │ │ │ │ ├── die_02.png │ │ │ │ │ ├── die_02.png.meta │ │ │ │ │ ├── die_03.png │ │ │ │ │ ├── die_03.png.meta │ │ │ │ │ ├── die_04.png │ │ │ │ │ ├── die_04.png.meta │ │ │ │ │ ├── die_05.png │ │ │ │ │ ├── die_05.png.meta │ │ │ │ │ ├── die_06.png │ │ │ │ │ └── die_06.png.meta │ │ │ │ ├── idle.meta │ │ │ │ ├── idle │ │ │ │ │ ├── idle_0.png │ │ │ │ │ ├── idle_0.png.meta │ │ │ │ │ ├── idle_1.png │ │ │ │ │ ├── idle_1.png.meta │ │ │ │ │ ├── idle_2.png │ │ │ │ │ ├── idle_2.png.meta │ │ │ │ │ ├── idle_3.png │ │ │ │ │ ├── idle_3.png.meta │ │ │ │ │ ├── idle_4.png │ │ │ │ │ ├── idle_4.png.meta │ │ │ │ │ ├── idle_5.png │ │ │ │ │ ├── idle_5.png.meta │ │ │ │ │ ├── idle_6.png │ │ │ │ │ ├── idle_6.png.meta │ │ │ │ │ ├── idle_7.png │ │ │ │ │ └── idle_7.png.meta │ │ │ │ ├── run.meta │ │ │ │ ├── run │ │ │ │ │ ├── run_00.png │ │ │ │ │ ├── run_00.png.meta │ │ │ │ │ ├── run_01.png │ │ │ │ │ ├── run_01.png.meta │ │ │ │ │ ├── run_02.png │ │ │ │ │ ├── run_02.png.meta │ │ │ │ │ ├── run_03.png │ │ │ │ │ ├── run_03.png.meta │ │ │ │ │ ├── run_04.png │ │ │ │ │ ├── run_04.png.meta │ │ │ │ │ ├── run_05.png │ │ │ │ │ ├── run_05.png.meta │ │ │ │ │ ├── run_06.png │ │ │ │ │ ├── run_06.png.meta │ │ │ │ │ ├── run_07.png │ │ │ │ │ ├── run_07.png.meta │ │ │ │ │ ├── run_09.png │ │ │ │ │ ├── run_09.png.meta │ │ │ │ │ ├── run_8.png │ │ │ │ │ └── run_8.png.meta │ │ │ │ ├── teleport.meta │ │ │ │ ├── teleport │ │ │ │ │ ├── teleport_00.png │ │ │ │ │ ├── teleport_00.png.meta │ │ │ │ │ ├── teleport_01.png │ │ │ │ │ ├── teleport_01.png.meta │ │ │ │ │ ├── teleport_02.png │ │ │ │ │ ├── teleport_02.png.meta │ │ │ │ │ ├── teleport_03.png │ │ │ │ │ ├── teleport_03.png.meta │ │ │ │ │ ├── teleport_04.png │ │ │ │ │ ├── teleport_04.png.meta │ │ │ │ │ ├── teleport_05.png │ │ │ │ │ ├── teleport_05.png.meta │ │ │ │ │ ├── teleport_06.png │ │ │ │ │ ├── teleport_06.png.meta │ │ │ │ │ ├── teleport_07.png │ │ │ │ │ ├── teleport_07.png.meta │ │ │ │ │ ├── teleport_08.png │ │ │ │ │ ├── teleport_08.png.meta │ │ │ │ │ ├── teleport_09.png │ │ │ │ │ ├── teleport_09.png.meta │ │ │ │ │ ├── teleport_10.png │ │ │ │ │ └── teleport_10.png.meta │ │ │ │ ├── teleport_reverse.meta │ │ │ │ └── teleport_reverse │ │ │ │ │ ├── teleport_reverse_00.png │ │ │ │ │ ├── teleport_reverse_00.png.meta │ │ │ │ │ ├── teleport_reverse_01.png │ │ │ │ │ ├── teleport_reverse_01.png.meta │ │ │ │ │ ├── teleport_reverse_02.png │ │ │ │ │ ├── teleport_reverse_02.png.meta │ │ │ │ │ ├── teleport_reverse_03.png │ │ │ │ │ ├── teleport_reverse_03.png.meta │ │ │ │ │ ├── teleport_reverse_04.png │ │ │ │ │ ├── teleport_reverse_04.png.meta │ │ │ │ │ ├── teleport_reverse_05.png │ │ │ │ │ ├── teleport_reverse_05.png.meta │ │ │ │ │ ├── teleport_reverse_06.png │ │ │ │ │ ├── teleport_reverse_06.png.meta │ │ │ │ │ ├── teleport_reverse_07.png │ │ │ │ │ ├── teleport_reverse_07.png.meta │ │ │ │ │ ├── teleport_reverse_08.png │ │ │ │ │ ├── teleport_reverse_08.png.meta │ │ │ │ │ ├── teleport_reverse_09.png │ │ │ │ │ └── teleport_reverse_09.png.meta │ │ │ ├── Skeleton_Shield.meta │ │ │ ├── Skeleton_Shield │ │ │ │ ├── attack_1.meta │ │ │ │ ├── attack_1 │ │ │ │ │ ├── attack_1_00.png │ │ │ │ │ ├── attack_1_00.png.meta │ │ │ │ │ ├── attack_1_01.png │ │ │ │ │ ├── attack_1_01.png.meta │ │ │ │ │ ├── attack_1_02.png │ │ │ │ │ ├── attack_1_02.png.meta │ │ │ │ │ ├── attack_1_03.png │ │ │ │ │ ├── attack_1_03.png.meta │ │ │ │ │ ├── attack_1_04.png │ │ │ │ │ ├── attack_1_04.png.meta │ │ │ │ │ ├── attack_1_05.png │ │ │ │ │ ├── attack_1_05.png.meta │ │ │ │ │ ├── attack_1_06.png │ │ │ │ │ ├── attack_1_06.png.meta │ │ │ │ │ ├── attack_1_07.png │ │ │ │ │ ├── attack_1_07.png.meta │ │ │ │ │ ├── attack_1_08.png │ │ │ │ │ ├── attack_1_08.png.meta │ │ │ │ │ ├── attack_1_09.png │ │ │ │ │ ├── attack_1_09.png.meta │ │ │ │ │ ├── attack_1_10.png │ │ │ │ │ ├── attack_1_10.png.meta │ │ │ │ │ ├── attack_1_11.png │ │ │ │ │ └── attack_1_11.png.meta │ │ │ │ ├── attack_2.meta │ │ │ │ ├── attack_2 │ │ │ │ │ ├── attack_2_00.png │ │ │ │ │ ├── attack_2_00.png.meta │ │ │ │ │ ├── attack_2_01.png │ │ │ │ │ ├── attack_2_01.png.meta │ │ │ │ │ ├── attack_2_02.png │ │ │ │ │ ├── attack_2_02.png.meta │ │ │ │ │ ├── attack_2_03.png │ │ │ │ │ ├── attack_2_03.png.meta │ │ │ │ │ ├── attack_2_04.png │ │ │ │ │ ├── attack_2_04.png.meta │ │ │ │ │ ├── attack_2_05.png │ │ │ │ │ ├── attack_2_05.png.meta │ │ │ │ │ ├── attack_2_06.png │ │ │ │ │ ├── attack_2_06.png.meta │ │ │ │ │ ├── attack_2_07.png │ │ │ │ │ ├── attack_2_07.png.meta │ │ │ │ │ ├── attack_2_08.png │ │ │ │ │ ├── attack_2_08.png.meta │ │ │ │ │ ├── attack_2_09.png │ │ │ │ │ ├── attack_2_09.png.meta │ │ │ │ │ ├── attack_2_10.png │ │ │ │ │ ├── attack_2_10.png.meta │ │ │ │ │ ├── attack_2_11.png │ │ │ │ │ └── attack_2_11.png.meta │ │ │ │ ├── attack_3.meta │ │ │ │ ├── attack_3 │ │ │ │ │ ├── attack_3_00.png │ │ │ │ │ ├── attack_3_00.png.meta │ │ │ │ │ ├── attack_3_01.png │ │ │ │ │ ├── attack_3_01.png.meta │ │ │ │ │ ├── attack_3_02.png │ │ │ │ │ ├── attack_3_02.png.meta │ │ │ │ │ ├── attack_3_03.png │ │ │ │ │ ├── attack_3_03.png.meta │ │ │ │ │ ├── attack_3_04.png │ │ │ │ │ ├── attack_3_04.png.meta │ │ │ │ │ ├── attack_3_05.png │ │ │ │ │ ├── attack_3_05.png.meta │ │ │ │ │ ├── attack_3_06.png │ │ │ │ │ ├── attack_3_06.png.meta │ │ │ │ │ ├── attack_3_07.png │ │ │ │ │ ├── attack_3_07.png.meta │ │ │ │ │ ├── attack_3_08.png │ │ │ │ │ ├── attack_3_08.png.meta │ │ │ │ │ ├── attack_3_09.png │ │ │ │ │ └── attack_3_09.png.meta │ │ │ │ ├── die.meta │ │ │ │ ├── die │ │ │ │ │ ├── die_00.png │ │ │ │ │ ├── die_00.png.meta │ │ │ │ │ ├── die_01.png │ │ │ │ │ ├── die_01.png.meta │ │ │ │ │ ├── die_02.png │ │ │ │ │ ├── die_02.png.meta │ │ │ │ │ ├── die_03.png │ │ │ │ │ ├── die_03.png.meta │ │ │ │ │ ├── die_04.png │ │ │ │ │ ├── die_04.png.meta │ │ │ │ │ ├── die_05.png │ │ │ │ │ ├── die_05.png.meta │ │ │ │ │ ├── die_06.png │ │ │ │ │ └── die_06.png.meta │ │ │ │ ├── idle.meta │ │ │ │ ├── idle │ │ │ │ │ ├── idle_0.png │ │ │ │ │ ├── idle_0.png.meta │ │ │ │ │ ├── idle_1.png │ │ │ │ │ ├── idle_1.png.meta │ │ │ │ │ ├── idle_2.png │ │ │ │ │ ├── idle_2.png.meta │ │ │ │ │ ├── idle_3.png │ │ │ │ │ ├── idle_3.png.meta │ │ │ │ │ ├── idle_4.png │ │ │ │ │ ├── idle_4.png.meta │ │ │ │ │ ├── idle_5.png │ │ │ │ │ ├── idle_5.png.meta │ │ │ │ │ ├── idle_6.png │ │ │ │ │ ├── idle_6.png.meta │ │ │ │ │ ├── idle_7.png │ │ │ │ │ └── idle_7.png.meta │ │ │ │ ├── run.meta │ │ │ │ └── run │ │ │ │ │ ├── run_00.png │ │ │ │ │ ├── run_00.png.meta │ │ │ │ │ ├── run_01.png │ │ │ │ │ ├── run_01.png.meta │ │ │ │ │ ├── run_02.png │ │ │ │ │ ├── run_02.png.meta │ │ │ │ │ ├── run_03.png │ │ │ │ │ ├── run_03.png.meta │ │ │ │ │ ├── run_04.png │ │ │ │ │ ├── run_04.png.meta │ │ │ │ │ ├── run_05.png │ │ │ │ │ ├── run_05.png.meta │ │ │ │ │ ├── run_06.png │ │ │ │ │ ├── run_06.png.meta │ │ │ │ │ ├── run_07.png │ │ │ │ │ ├── run_07.png.meta │ │ │ │ │ ├── run_08.png │ │ │ │ │ ├── run_08.png.meta │ │ │ │ │ ├── run_09.png │ │ │ │ │ └── run_09.png.meta │ │ │ ├── Skeleton_Spear.meta │ │ │ ├── Skeleton_Spear │ │ │ │ ├── attack.meta │ │ │ │ ├── attack │ │ │ │ │ ├── attack_00.png │ │ │ │ │ ├── attack_00.png.meta │ │ │ │ │ ├── attack_01.png │ │ │ │ │ ├── attack_01.png.meta │ │ │ │ │ ├── attack_02.png │ │ │ │ │ ├── attack_02.png.meta │ │ │ │ │ ├── attack_03.png │ │ │ │ │ ├── attack_03.png.meta │ │ │ │ │ ├── attack_04.png │ │ │ │ │ ├── attack_04.png.meta │ │ │ │ │ ├── attack_05.png │ │ │ │ │ ├── attack_05.png.meta │ │ │ │ │ ├── attack_06.png │ │ │ │ │ ├── attack_06.png.meta │ │ │ │ │ ├── attack_07.png │ │ │ │ │ ├── attack_07.png.meta │ │ │ │ │ ├── attack_08.png │ │ │ │ │ ├── attack_08.png.meta │ │ │ │ │ ├── attack_09.png │ │ │ │ │ ├── attack_09.png.meta │ │ │ │ │ ├── attack_10.png │ │ │ │ │ └── attack_10.png.meta │ │ │ │ ├── die.meta │ │ │ │ ├── die │ │ │ │ │ ├── die_00.png │ │ │ │ │ ├── die_00.png.meta │ │ │ │ │ ├── die_01.png │ │ │ │ │ ├── die_01.png.meta │ │ │ │ │ ├── die_02.png │ │ │ │ │ ├── die_02.png.meta │ │ │ │ │ ├── die_03.png │ │ │ │ │ ├── die_03.png.meta │ │ │ │ │ ├── die_04.png │ │ │ │ │ ├── die_04.png.meta │ │ │ │ │ ├── die_05.png │ │ │ │ │ ├── die_05.png.meta │ │ │ │ │ ├── die_06.png │ │ │ │ │ └── die_06.png.meta │ │ │ │ ├── idle.meta │ │ │ │ ├── idle │ │ │ │ │ ├── idle_0.png │ │ │ │ │ ├── idle_0.png.meta │ │ │ │ │ ├── idle_1.png │ │ │ │ │ ├── idle_1.png.meta │ │ │ │ │ ├── idle_2.png │ │ │ │ │ ├── idle_2.png.meta │ │ │ │ │ ├── idle_3.png │ │ │ │ │ ├── idle_3.png.meta │ │ │ │ │ ├── idle_4.png │ │ │ │ │ ├── idle_4.png.meta │ │ │ │ │ ├── idle_5.png │ │ │ │ │ ├── idle_5.png.meta │ │ │ │ │ ├── idle_6.png │ │ │ │ │ ├── idle_6.png.meta │ │ │ │ │ ├── idle_7.png │ │ │ │ │ └── idle_7.png.meta │ │ │ │ ├── run.meta │ │ │ │ └── run │ │ │ │ │ ├── run_00.png │ │ │ │ │ ├── run_00.png.meta │ │ │ │ │ ├── run_01.png │ │ │ │ │ ├── run_01.png.meta │ │ │ │ │ ├── run_02.png │ │ │ │ │ ├── run_02.png.meta │ │ │ │ │ ├── run_03.png │ │ │ │ │ ├── run_03.png.meta │ │ │ │ │ ├── run_04.png │ │ │ │ │ ├── run_04.png.meta │ │ │ │ │ ├── run_05.png │ │ │ │ │ ├── run_05.png.meta │ │ │ │ │ ├── run_06.png │ │ │ │ │ ├── run_06.png.meta │ │ │ │ │ ├── run_07.png │ │ │ │ │ ├── run_07.png.meta │ │ │ │ │ ├── run_08.png │ │ │ │ │ ├── run_08.png.meta │ │ │ │ │ ├── run_09.png │ │ │ │ │ └── run_09.png.meta │ │ │ ├── Slime.meta │ │ │ ├── Slime │ │ │ │ ├── die.meta │ │ │ │ ├── die │ │ │ │ │ ├── die_00.png │ │ │ │ │ ├── die_00.png.meta │ │ │ │ │ ├── die_01.png │ │ │ │ │ ├── die_01.png.meta │ │ │ │ │ ├── die_02.png │ │ │ │ │ ├── die_02.png.meta │ │ │ │ │ ├── die_03.png │ │ │ │ │ ├── die_03.png.meta │ │ │ │ │ ├── die_04.png │ │ │ │ │ ├── die_04.png.meta │ │ │ │ │ ├── die_05.png │ │ │ │ │ ├── die_05.png.meta │ │ │ │ │ ├── die_06.png │ │ │ │ │ ├── die_06.png.meta │ │ │ │ │ ├── die_07.png │ │ │ │ │ ├── die_07.png.meta │ │ │ │ │ ├── die_08.png │ │ │ │ │ ├── die_08.png.meta │ │ │ │ │ ├── die_09.png │ │ │ │ │ ├── die_09.png.meta │ │ │ │ │ ├── die_10.png │ │ │ │ │ ├── die_10.png.meta │ │ │ │ │ ├── die_11.png │ │ │ │ │ ├── die_11.png.meta │ │ │ │ │ ├── die_12.png │ │ │ │ │ ├── die_12.png.meta │ │ │ │ │ ├── die_13.png │ │ │ │ │ └── die_13.png.meta │ │ │ │ ├── idle.meta │ │ │ │ ├── idle │ │ │ │ │ ├── idle_00.png │ │ │ │ │ ├── idle_00.png.meta │ │ │ │ │ ├── idle_01.png │ │ │ │ │ ├── idle_01.png.meta │ │ │ │ │ ├── idle_02.png │ │ │ │ │ ├── idle_02.png.meta │ │ │ │ │ ├── idle_03.png │ │ │ │ │ ├── idle_03.png.meta │ │ │ │ │ ├── idle_04.png │ │ │ │ │ ├── idle_04.png.meta │ │ │ │ │ ├── idle_05.png │ │ │ │ │ ├── idle_05.png.meta │ │ │ │ │ ├── idle_06.png │ │ │ │ │ ├── idle_06.png.meta │ │ │ │ │ ├── idle_07.png │ │ │ │ │ ├── idle_07.png.meta │ │ │ │ │ ├── idle_08.png │ │ │ │ │ ├── idle_08.png.meta │ │ │ │ │ ├── idle_09.png │ │ │ │ │ ├── idle_09.png.meta │ │ │ │ │ ├── idle_10.png │ │ │ │ │ └── idle_10.png.meta │ │ │ │ ├── run.meta │ │ │ │ └── run │ │ │ │ │ ├── run_00.png │ │ │ │ │ ├── run_00.png.meta │ │ │ │ │ ├── run_01.png │ │ │ │ │ ├── run_01.png.meta │ │ │ │ │ ├── run_02.png │ │ │ │ │ ├── run_02.png.meta │ │ │ │ │ ├── run_03.png │ │ │ │ │ ├── run_03.png.meta │ │ │ │ │ ├── run_04.png │ │ │ │ │ ├── run_04.png.meta │ │ │ │ │ ├── run_05.png │ │ │ │ │ ├── run_05.png.meta │ │ │ │ │ ├── run_06.png │ │ │ │ │ ├── run_06.png.meta │ │ │ │ │ ├── run_07.png │ │ │ │ │ ├── run_07.png.meta │ │ │ │ │ ├── run_08.png │ │ │ │ │ ├── run_08.png.meta │ │ │ │ │ ├── run_09.png │ │ │ │ │ ├── run_09.png.meta │ │ │ │ │ ├── run_10.png │ │ │ │ │ ├── run_10.png.meta │ │ │ │ │ ├── run_11.png │ │ │ │ │ └── run_11.png.meta │ │ │ ├── Spider.meta │ │ │ └── Spider │ │ │ │ ├── attack.meta │ │ │ │ ├── attack │ │ │ │ ├── attack_00.png │ │ │ │ ├── attack_00.png.meta │ │ │ │ ├── attack_01.png │ │ │ │ ├── attack_01.png.meta │ │ │ │ ├── attack_02.png │ │ │ │ ├── attack_02.png.meta │ │ │ │ ├── attack_03.png │ │ │ │ ├── attack_03.png.meta │ │ │ │ ├── attack_04.png │ │ │ │ ├── attack_04.png.meta │ │ │ │ ├── attack_05.png │ │ │ │ ├── attack_05.png.meta │ │ │ │ ├── attack_06.png │ │ │ │ ├── attack_06.png.meta │ │ │ │ ├── attack_07.png │ │ │ │ ├── attack_07.png.meta │ │ │ │ ├── attack_08.png │ │ │ │ ├── attack_08.png.meta │ │ │ │ ├── attack_09.png │ │ │ │ ├── attack_09.png.meta │ │ │ │ ├── attack_10.png │ │ │ │ └── attack_10.png.meta │ │ │ │ ├── die.meta │ │ │ │ ├── die │ │ │ │ ├── die_0.png │ │ │ │ ├── die_0.png.meta │ │ │ │ ├── die_1.png │ │ │ │ ├── die_1.png.meta │ │ │ │ ├── die_2.png │ │ │ │ ├── die_2.png.meta │ │ │ │ ├── die_3.png │ │ │ │ ├── die_3.png.meta │ │ │ │ ├── die_4.png │ │ │ │ ├── die_4.png.meta │ │ │ │ ├── die_5.png │ │ │ │ ├── die_5.png.meta │ │ │ │ ├── die_6.png │ │ │ │ ├── die_6.png.meta │ │ │ │ ├── die_7.png │ │ │ │ ├── die_7.png.meta │ │ │ │ ├── die_8.png │ │ │ │ └── die_8.png.meta │ │ │ │ ├── idle.meta │ │ │ │ ├── idle │ │ │ │ ├── idle_0.png │ │ │ │ ├── idle_0.png.meta │ │ │ │ ├── idle_1.png │ │ │ │ ├── idle_1.png.meta │ │ │ │ ├── idle_2.png │ │ │ │ ├── idle_2.png.meta │ │ │ │ ├── idle_3.png │ │ │ │ ├── idle_3.png.meta │ │ │ │ ├── idle_4.png │ │ │ │ ├── idle_4.png.meta │ │ │ │ ├── idle_5.png │ │ │ │ ├── idle_5.png.meta │ │ │ │ ├── idle_6.png │ │ │ │ ├── idle_6.png.meta │ │ │ │ ├── idle_7.png │ │ │ │ ├── idle_7.png.meta │ │ │ │ ├── idle_8.png │ │ │ │ └── idle_8.png.meta │ │ │ │ ├── run.meta │ │ │ │ └── run │ │ │ │ ├── run_00.png │ │ │ │ ├── run_00.png.meta │ │ │ │ ├── run_01.png │ │ │ │ ├── run_01.png.meta │ │ │ │ ├── run_02.png │ │ │ │ ├── run_02.png.meta │ │ │ │ ├── run_03.png │ │ │ │ ├── run_03.png.meta │ │ │ │ ├── run_04.png │ │ │ │ ├── run_04.png.meta │ │ │ │ ├── run_05.png │ │ │ │ ├── run_05.png.meta │ │ │ │ ├── run_06.png │ │ │ │ ├── run_06.png.meta │ │ │ │ ├── run_07.png │ │ │ │ ├── run_07.png.meta │ │ │ │ ├── run_08.png │ │ │ │ ├── run_08.png.meta │ │ │ │ ├── run_09.png │ │ │ │ ├── run_09.png.meta │ │ │ │ ├── run_10.png │ │ │ │ └── run_10.png.meta │ │ │ ├── Forest_Background.meta │ │ │ ├── Forest_Background │ │ │ ├── bg_forest_1.png │ │ │ ├── bg_forest_1.png.meta │ │ │ ├── bg_forest_2.png │ │ │ ├── bg_forest_2.png.meta │ │ │ ├── bg_forest_3.png │ │ │ ├── bg_forest_3.png.meta │ │ │ ├── bg_forest_4.png │ │ │ ├── bg_forest_4.png.meta │ │ │ ├── bg_forest_5.png │ │ │ └── bg_forest_5.png.meta │ │ │ ├── Main_Character.meta │ │ │ ├── Main_Character │ │ │ ├── Main_Character.meta │ │ │ ├── Main_Character │ │ │ │ ├── die.meta │ │ │ │ ├── die │ │ │ │ │ ├── die_00.png │ │ │ │ │ ├── die_00.png.meta │ │ │ │ │ ├── die_01.png │ │ │ │ │ ├── die_01.png.meta │ │ │ │ │ ├── die_02.png │ │ │ │ │ ├── die_02.png.meta │ │ │ │ │ ├── die_03.png │ │ │ │ │ ├── die_03.png.meta │ │ │ │ │ ├── die_04.png │ │ │ │ │ ├── die_04.png.meta │ │ │ │ │ ├── die_05.png │ │ │ │ │ ├── die_05.png.meta │ │ │ │ │ ├── die_06.png │ │ │ │ │ ├── die_06.png.meta │ │ │ │ │ ├── die_07.png │ │ │ │ │ ├── die_07.png.meta │ │ │ │ │ ├── die_08.png │ │ │ │ │ └── die_08.png.meta │ │ │ │ ├── idle.meta │ │ │ │ ├── idle │ │ │ │ │ ├── idle_0.png │ │ │ │ │ ├── idle_0.png.meta │ │ │ │ │ ├── idle_1.png │ │ │ │ │ ├── idle_1.png.meta │ │ │ │ │ ├── idle_2.png │ │ │ │ │ ├── idle_2.png.meta │ │ │ │ │ ├── idle_3.png │ │ │ │ │ ├── idle_3.png.meta │ │ │ │ │ ├── idle_4.png │ │ │ │ │ ├── idle_4.png.meta │ │ │ │ │ ├── idle_5.png │ │ │ │ │ ├── idle_5.png.meta │ │ │ │ │ ├── idle_6.png │ │ │ │ │ ├── idle_6.png.meta │ │ │ │ │ ├── idle_7.png │ │ │ │ │ └── idle_7.png.meta │ │ │ │ ├── jump.meta │ │ │ │ ├── jump │ │ │ │ │ ├── fall.png │ │ │ │ │ ├── fall.png.meta │ │ │ │ │ ├── rise.png │ │ │ │ │ └── rise.png.meta │ │ │ │ ├── roll.meta │ │ │ │ ├── roll │ │ │ │ │ ├── roll_00.png │ │ │ │ │ ├── roll_00.png.meta │ │ │ │ │ ├── roll_01.png │ │ │ │ │ ├── roll_01.png.meta │ │ │ │ │ ├── roll_02.png │ │ │ │ │ ├── roll_02.png.meta │ │ │ │ │ ├── roll_03.png │ │ │ │ │ ├── roll_03.png.meta │ │ │ │ │ ├── roll_04.png │ │ │ │ │ ├── roll_04.png.meta │ │ │ │ │ ├── roll_05.png │ │ │ │ │ ├── roll_05.png.meta │ │ │ │ │ ├── roll_06.png │ │ │ │ │ ├── roll_06.png.meta │ │ │ │ │ ├── roll_07.png │ │ │ │ │ ├── roll_07.png.meta │ │ │ │ │ ├── roll_08.png │ │ │ │ │ ├── roll_08.png.meta │ │ │ │ │ ├── roll_09.png │ │ │ │ │ ├── roll_09.png.meta │ │ │ │ │ ├── roll_10.png │ │ │ │ │ └── roll_10.png.meta │ │ │ │ ├── run.meta │ │ │ │ └── run │ │ │ │ │ ├── run_00.png │ │ │ │ │ ├── run_00.png.meta │ │ │ │ │ ├── run_01.png │ │ │ │ │ ├── run_01.png.meta │ │ │ │ │ ├── run_02.png │ │ │ │ │ ├── run_02.png.meta │ │ │ │ │ ├── run_03.png │ │ │ │ │ ├── run_03.png.meta │ │ │ │ │ ├── run_04.png │ │ │ │ │ ├── run_04.png.meta │ │ │ │ │ ├── run_05.png │ │ │ │ │ ├── run_05.png.meta │ │ │ │ │ ├── run_06.png │ │ │ │ │ ├── run_06.png.meta │ │ │ │ │ ├── run_07.png │ │ │ │ │ ├── run_07.png.meta │ │ │ │ │ ├── run_08.png │ │ │ │ │ ├── run_08.png.meta │ │ │ │ │ ├── run_09.png │ │ │ │ │ └── run_09.png.meta │ │ │ ├── Main_Character_Bow.meta │ │ │ ├── Main_Character_Bow │ │ │ │ ├── attack.meta │ │ │ │ ├── attack │ │ │ │ │ ├── attack_00.png │ │ │ │ │ ├── attack_00.png.meta │ │ │ │ │ ├── attack_01.png │ │ │ │ │ ├── attack_01.png.meta │ │ │ │ │ ├── attack_02.png │ │ │ │ │ ├── attack_02.png.meta │ │ │ │ │ ├── attack_03.png │ │ │ │ │ ├── attack_03.png.meta │ │ │ │ │ ├── attack_04.png │ │ │ │ │ ├── attack_04.png.meta │ │ │ │ │ ├── attack_05.png │ │ │ │ │ ├── attack_05.png.meta │ │ │ │ │ ├── attack_06.png │ │ │ │ │ ├── attack_06.png.meta │ │ │ │ │ ├── attack_07.png │ │ │ │ │ ├── attack_07.png.meta │ │ │ │ │ ├── attack_08.png │ │ │ │ │ ├── attack_08.png.meta │ │ │ │ │ ├── attack_09.png │ │ │ │ │ ├── attack_09.png.meta │ │ │ │ │ ├── attack_10.png │ │ │ │ │ ├── attack_10.png.meta │ │ │ │ │ ├── attack_11.png │ │ │ │ │ ├── attack_11.png.meta │ │ │ │ │ ├── attack_12.png │ │ │ │ │ ├── attack_12.png.meta │ │ │ │ │ ├── attack_13.png │ │ │ │ │ ├── attack_13.png.meta │ │ │ │ │ ├── attack_14.png │ │ │ │ │ └── attack_14.png.meta │ │ │ │ ├── die.meta │ │ │ │ ├── die │ │ │ │ │ ├── die_00.png │ │ │ │ │ ├── die_00.png.meta │ │ │ │ │ ├── die_01.png │ │ │ │ │ ├── die_01.png.meta │ │ │ │ │ ├── die_02.png │ │ │ │ │ ├── die_02.png.meta │ │ │ │ │ ├── die_03.png │ │ │ │ │ ├── die_03.png.meta │ │ │ │ │ ├── die_04.png │ │ │ │ │ ├── die_04.png.meta │ │ │ │ │ ├── die_05.png │ │ │ │ │ ├── die_05.png.meta │ │ │ │ │ ├── die_06.png │ │ │ │ │ ├── die_06.png.meta │ │ │ │ │ ├── die_07.png │ │ │ │ │ ├── die_07.png.meta │ │ │ │ │ ├── die_08.png │ │ │ │ │ └── die_08.png.meta │ │ │ │ ├── idle.meta │ │ │ │ ├── idle │ │ │ │ │ ├── idle_0.png │ │ │ │ │ ├── idle_0.png.meta │ │ │ │ │ ├── idle_1.png │ │ │ │ │ ├── idle_1.png.meta │ │ │ │ │ ├── idle_2.png │ │ │ │ │ ├── idle_2.png.meta │ │ │ │ │ ├── idle_3.png │ │ │ │ │ ├── idle_3.png.meta │ │ │ │ │ ├── idle_4.png │ │ │ │ │ ├── idle_4.png.meta │ │ │ │ │ ├── idle_5.png │ │ │ │ │ ├── idle_5.png.meta │ │ │ │ │ ├── idle_6.png │ │ │ │ │ ├── idle_6.png.meta │ │ │ │ │ ├── idle_7.png │ │ │ │ │ └── idle_7.png.meta │ │ │ │ ├── jump.meta │ │ │ │ ├── jump │ │ │ │ │ ├── fall.png │ │ │ │ │ ├── fall.png.meta │ │ │ │ │ ├── rise.png │ │ │ │ │ └── rise.png.meta │ │ │ │ ├── roll.meta │ │ │ │ ├── roll │ │ │ │ │ ├── roll_00.png │ │ │ │ │ ├── roll_00.png.meta │ │ │ │ │ ├── roll_01.png │ │ │ │ │ ├── roll_01.png.meta │ │ │ │ │ ├── roll_02.png │ │ │ │ │ ├── roll_02.png.meta │ │ │ │ │ ├── roll_03.png │ │ │ │ │ ├── roll_03.png.meta │ │ │ │ │ ├── roll_04.png │ │ │ │ │ ├── roll_04.png.meta │ │ │ │ │ ├── roll_05.png │ │ │ │ │ ├── roll_05.png.meta │ │ │ │ │ ├── roll_06.png │ │ │ │ │ ├── roll_06.png.meta │ │ │ │ │ ├── roll_07.png │ │ │ │ │ ├── roll_07.png.meta │ │ │ │ │ ├── roll_08.png │ │ │ │ │ ├── roll_08.png.meta │ │ │ │ │ ├── roll_09.png │ │ │ │ │ ├── roll_09.png.meta │ │ │ │ │ ├── roll_10.png │ │ │ │ │ └── roll_10.png.meta │ │ │ │ ├── run.meta │ │ │ │ └── run │ │ │ │ │ ├── run_00.png │ │ │ │ │ ├── run_00.png.meta │ │ │ │ │ ├── run_01.png │ │ │ │ │ ├── run_01.png.meta │ │ │ │ │ ├── run_02.png │ │ │ │ │ ├── run_02.png.meta │ │ │ │ │ ├── run_03.png │ │ │ │ │ ├── run_03.png.meta │ │ │ │ │ ├── run_04.png │ │ │ │ │ ├── run_04.png.meta │ │ │ │ │ ├── run_05.png │ │ │ │ │ ├── run_05.png.meta │ │ │ │ │ ├── run_06.png │ │ │ │ │ ├── run_06.png.meta │ │ │ │ │ ├── run_07.png │ │ │ │ │ ├── run_07.png.meta │ │ │ │ │ ├── run_08.png │ │ │ │ │ ├── run_08.png.meta │ │ │ │ │ ├── run_09.png │ │ │ │ │ └── run_09.png.meta │ │ │ ├── Main_Character_Sword.meta │ │ │ └── Main_Character_Sword │ │ │ │ ├── attack_1.meta │ │ │ │ ├── attack_1 │ │ │ │ ├── attack_1_0.png │ │ │ │ ├── attack_1_0.png.meta │ │ │ │ ├── attack_1_1.png │ │ │ │ ├── attack_1_1.png.meta │ │ │ │ ├── attack_1_2.png │ │ │ │ ├── attack_1_2.png.meta │ │ │ │ ├── attack_1_3.png │ │ │ │ ├── attack_1_3.png.meta │ │ │ │ ├── attack_1_4.png │ │ │ │ ├── attack_1_4.png.meta │ │ │ │ ├── attack_1_5.png │ │ │ │ ├── attack_1_5.png.meta │ │ │ │ ├── attack_1_6.png │ │ │ │ ├── attack_1_6.png.meta │ │ │ │ ├── attack_1_7.png │ │ │ │ └── attack_1_7.png.meta │ │ │ │ ├── attack_2.meta │ │ │ │ ├── attack_2 │ │ │ │ ├── attack_2_0.png │ │ │ │ ├── attack_2_0.png.meta │ │ │ │ ├── attack_2_1.png │ │ │ │ ├── attack_2_1.png.meta │ │ │ │ ├── attack_2_2.png │ │ │ │ ├── attack_2_2.png.meta │ │ │ │ ├── attack_2_3.png │ │ │ │ ├── attack_2_3.png.meta │ │ │ │ ├── attack_2_4.png │ │ │ │ ├── attack_2_4.png.meta │ │ │ │ ├── attack_2_5.png │ │ │ │ ├── attack_2_5.png.meta │ │ │ │ ├── attack_2_6.png │ │ │ │ └── attack_2_6.png.meta │ │ │ │ ├── attack_3.meta │ │ │ │ ├── attack_3 │ │ │ │ ├── attack_3_00.png │ │ │ │ ├── attack_3_00.png.meta │ │ │ │ ├── attack_3_01.png │ │ │ │ ├── attack_3_01.png.meta │ │ │ │ ├── attack_3_02.png │ │ │ │ ├── attack_3_02.png.meta │ │ │ │ ├── attack_3_03.png │ │ │ │ ├── attack_3_03.png.meta │ │ │ │ ├── attack_3_04.png │ │ │ │ ├── attack_3_04.png.meta │ │ │ │ ├── attack_3_05.png │ │ │ │ ├── attack_3_05.png.meta │ │ │ │ ├── attack_3_06.png │ │ │ │ ├── attack_3_06.png.meta │ │ │ │ ├── attack_3_07.png │ │ │ │ ├── attack_3_07.png.meta │ │ │ │ ├── attack_3_08.png │ │ │ │ ├── attack_3_08.png.meta │ │ │ │ ├── attack_3_09.png │ │ │ │ ├── attack_3_09.png.meta │ │ │ │ ├── attack_3_10.png │ │ │ │ ├── attack_3_10.png.meta │ │ │ │ ├── attack_3_11.png │ │ │ │ └── attack_3_11.png.meta │ │ │ │ ├── die.meta │ │ │ │ ├── die │ │ │ │ ├── die_00.png │ │ │ │ ├── die_00.png.meta │ │ │ │ ├── die_01.png │ │ │ │ ├── die_01.png.meta │ │ │ │ ├── die_02.png │ │ │ │ ├── die_02.png.meta │ │ │ │ ├── die_03.png │ │ │ │ ├── die_03.png.meta │ │ │ │ ├── die_04.png │ │ │ │ ├── die_04.png.meta │ │ │ │ ├── die_05.png │ │ │ │ ├── die_05.png.meta │ │ │ │ ├── die_06.png │ │ │ │ ├── die_06.png.meta │ │ │ │ ├── die_07.png │ │ │ │ ├── die_07.png.meta │ │ │ │ ├── die_08.png │ │ │ │ └── die_08.png.meta │ │ │ │ ├── idle.meta │ │ │ │ ├── idle │ │ │ │ ├── idle_0.png │ │ │ │ ├── idle_0.png.meta │ │ │ │ ├── idle_1.png │ │ │ │ ├── idle_1.png.meta │ │ │ │ ├── idle_2.png │ │ │ │ ├── idle_2.png.meta │ │ │ │ ├── idle_3.png │ │ │ │ ├── idle_3.png.meta │ │ │ │ ├── idle_4.png │ │ │ │ ├── idle_4.png.meta │ │ │ │ ├── idle_5.png │ │ │ │ ├── idle_5.png.meta │ │ │ │ ├── idle_6.png │ │ │ │ ├── idle_6.png.meta │ │ │ │ ├── idle_7.png │ │ │ │ └── idle_7.png.meta │ │ │ │ ├── jump.meta │ │ │ │ ├── jump │ │ │ │ ├── fall.png │ │ │ │ ├── fall.png.meta │ │ │ │ ├── rise.png │ │ │ │ └── rise.png.meta │ │ │ │ ├── roll.meta │ │ │ │ ├── roll │ │ │ │ ├── roll_00.png │ │ │ │ ├── roll_00.png.meta │ │ │ │ ├── roll_01.png │ │ │ │ ├── roll_01.png.meta │ │ │ │ ├── roll_02.png │ │ │ │ ├── roll_02.png.meta │ │ │ │ ├── roll_03.png │ │ │ │ ├── roll_03.png.meta │ │ │ │ ├── roll_04.png │ │ │ │ ├── roll_04.png.meta │ │ │ │ ├── roll_05.png │ │ │ │ ├── roll_05.png.meta │ │ │ │ ├── roll_06.png │ │ │ │ ├── roll_06.png.meta │ │ │ │ ├── roll_07.png │ │ │ │ ├── roll_07.png.meta │ │ │ │ ├── roll_08.png │ │ │ │ ├── roll_08.png.meta │ │ │ │ ├── roll_09.png │ │ │ │ ├── roll_09.png.meta │ │ │ │ ├── roll_10.png │ │ │ │ └── roll_10.png.meta │ │ │ │ ├── run.meta │ │ │ │ └── run │ │ │ │ ├── run_00.png │ │ │ │ ├── run_00.png.meta │ │ │ │ ├── run_01.png │ │ │ │ ├── run_01.png.meta │ │ │ │ ├── run_02.png │ │ │ │ ├── run_02.png.meta │ │ │ │ ├── run_03.png │ │ │ │ ├── run_03.png.meta │ │ │ │ ├── run_04.png │ │ │ │ ├── run_04.png.meta │ │ │ │ ├── run_05.png │ │ │ │ ├── run_05.png.meta │ │ │ │ ├── run_06.png │ │ │ │ ├── run_06.png.meta │ │ │ │ ├── run_07.png │ │ │ │ ├── run_07.png.meta │ │ │ │ ├── run_08.png │ │ │ │ ├── run_08.png.meta │ │ │ │ ├── run_09.png │ │ │ │ └── run_09.png.meta │ │ │ ├── NPC.meta │ │ │ ├── NPC │ │ │ ├── NPC_1.meta │ │ │ ├── NPC_1 │ │ │ │ ├── Jump.meta │ │ │ │ ├── Jump │ │ │ │ │ ├── fall.png │ │ │ │ │ ├── fall.png.meta │ │ │ │ │ ├── rise.png │ │ │ │ │ └── rise.png.meta │ │ │ │ ├── idle.meta │ │ │ │ ├── idle │ │ │ │ │ ├── idle_0.png │ │ │ │ │ ├── idle_0.png.meta │ │ │ │ │ ├── idle_1.png │ │ │ │ │ ├── idle_1.png.meta │ │ │ │ │ ├── idle_2.png │ │ │ │ │ ├── idle_2.png.meta │ │ │ │ │ ├── idle_3.png │ │ │ │ │ ├── idle_3.png.meta │ │ │ │ │ ├── idle_4.png │ │ │ │ │ ├── idle_4.png.meta │ │ │ │ │ ├── idle_5.png │ │ │ │ │ ├── idle_5.png.meta │ │ │ │ │ ├── idle_6.png │ │ │ │ │ ├── idle_6.png.meta │ │ │ │ │ ├── idle_7.png │ │ │ │ │ └── idle_7.png.meta │ │ │ │ ├── run.meta │ │ │ │ └── run │ │ │ │ │ ├── run_00.png │ │ │ │ │ ├── run_00.png.meta │ │ │ │ │ ├── run_01.png │ │ │ │ │ ├── run_01.png.meta │ │ │ │ │ ├── run_02.png │ │ │ │ │ ├── run_02.png.meta │ │ │ │ │ ├── run_03.png │ │ │ │ │ ├── run_03.png.meta │ │ │ │ │ ├── run_04.png │ │ │ │ │ ├── run_04.png.meta │ │ │ │ │ ├── run_05.png │ │ │ │ │ ├── run_05.png.meta │ │ │ │ │ ├── run_06.png │ │ │ │ │ ├── run_06.png.meta │ │ │ │ │ ├── run_07.png │ │ │ │ │ ├── run_07.png.meta │ │ │ │ │ ├── run_08.png │ │ │ │ │ ├── run_08.png.meta │ │ │ │ │ ├── run_09.png │ │ │ │ │ └── run_09.png.meta │ │ │ ├── NPC_2.meta │ │ │ ├── NPC_2 │ │ │ │ ├── Jump.meta │ │ │ │ ├── Jump │ │ │ │ │ ├── fall.png │ │ │ │ │ ├── fall.png.meta │ │ │ │ │ ├── rise.png │ │ │ │ │ └── rise.png.meta │ │ │ │ ├── idle.meta │ │ │ │ ├── idle │ │ │ │ │ ├── idle_0.png │ │ │ │ │ ├── idle_0.png.meta │ │ │ │ │ ├── idle_1.png │ │ │ │ │ ├── idle_1.png.meta │ │ │ │ │ ├── idle_2.png │ │ │ │ │ ├── idle_2.png.meta │ │ │ │ │ ├── idle_3.png │ │ │ │ │ ├── idle_3.png.meta │ │ │ │ │ ├── idle_4.png │ │ │ │ │ ├── idle_4.png.meta │ │ │ │ │ ├── idle_5.png │ │ │ │ │ ├── idle_5.png.meta │ │ │ │ │ ├── idle_6.png │ │ │ │ │ ├── idle_6.png.meta │ │ │ │ │ ├── idle_7.png │ │ │ │ │ └── idle_7.png.meta │ │ │ │ ├── run.meta │ │ │ │ └── run │ │ │ │ │ ├── run_00.png │ │ │ │ │ ├── run_00.png.meta │ │ │ │ │ ├── run_01.png │ │ │ │ │ ├── run_01.png.meta │ │ │ │ │ ├── run_02.png │ │ │ │ │ ├── run_02.png.meta │ │ │ │ │ ├── run_03.png │ │ │ │ │ ├── run_03.png.meta │ │ │ │ │ ├── run_04.png │ │ │ │ │ ├── run_04.png.meta │ │ │ │ │ ├── run_05.png │ │ │ │ │ ├── run_05.png.meta │ │ │ │ │ ├── run_06.png │ │ │ │ │ ├── run_06.png.meta │ │ │ │ │ ├── run_07.png │ │ │ │ │ ├── run_07.png.meta │ │ │ │ │ ├── run_08.png │ │ │ │ │ ├── run_08.png.meta │ │ │ │ │ ├── run_09.png │ │ │ │ │ └── run_09.png.meta │ │ │ ├── NPC_3.meta │ │ │ ├── NPC_3 │ │ │ │ ├── Jump.meta │ │ │ │ ├── Jump │ │ │ │ │ ├── fall.png │ │ │ │ │ ├── fall.png.meta │ │ │ │ │ ├── rise.png │ │ │ │ │ └── rise.png.meta │ │ │ │ ├── idle.meta │ │ │ │ ├── idle │ │ │ │ │ ├── idle_0.png │ │ │ │ │ ├── idle_0.png.meta │ │ │ │ │ ├── idle_1.png │ │ │ │ │ ├── idle_1.png.meta │ │ │ │ │ ├── idle_2.png │ │ │ │ │ ├── idle_2.png.meta │ │ │ │ │ ├── idle_3.png │ │ │ │ │ ├── idle_3.png.meta │ │ │ │ │ ├── idle_4.png │ │ │ │ │ ├── idle_4.png.meta │ │ │ │ │ ├── idle_5.png │ │ │ │ │ ├── idle_5.png.meta │ │ │ │ │ ├── idle_6.png │ │ │ │ │ ├── idle_6.png.meta │ │ │ │ │ ├── idle_7.png │ │ │ │ │ └── idle_7.png.meta │ │ │ │ ├── run.meta │ │ │ │ └── run │ │ │ │ │ ├── run_00.png │ │ │ │ │ ├── run_00.png.meta │ │ │ │ │ ├── run_01.png │ │ │ │ │ ├── run_01.png.meta │ │ │ │ │ ├── run_02.png │ │ │ │ │ ├── run_02.png.meta │ │ │ │ │ ├── run_03.png │ │ │ │ │ ├── run_03.png.meta │ │ │ │ │ ├── run_04.png │ │ │ │ │ ├── run_04.png.meta │ │ │ │ │ ├── run_05.png │ │ │ │ │ ├── run_05.png.meta │ │ │ │ │ ├── run_06.png │ │ │ │ │ ├── run_06.png.meta │ │ │ │ │ ├── run_07.png │ │ │ │ │ ├── run_07.png.meta │ │ │ │ │ ├── run_08.png │ │ │ │ │ ├── run_08.png.meta │ │ │ │ │ ├── run_09.png │ │ │ │ │ └── run_09.png.meta │ │ │ ├── NPC_Blacksmith.meta │ │ │ ├── NPC_Blacksmith │ │ │ │ ├── Action_1.meta │ │ │ │ ├── Action_1 │ │ │ │ │ ├── action_00.png │ │ │ │ │ ├── action_00.png.meta │ │ │ │ │ ├── action_01.png │ │ │ │ │ ├── action_01.png.meta │ │ │ │ │ ├── action_02.png │ │ │ │ │ ├── action_02.png.meta │ │ │ │ │ ├── action_03.png │ │ │ │ │ ├── action_03.png.meta │ │ │ │ │ ├── action_04.png │ │ │ │ │ ├── action_04.png.meta │ │ │ │ │ ├── action_05.png │ │ │ │ │ ├── action_05.png.meta │ │ │ │ │ ├── action_06.png │ │ │ │ │ ├── action_06.png.meta │ │ │ │ │ ├── action_07.png │ │ │ │ │ ├── action_07.png.meta │ │ │ │ │ ├── action_08.png │ │ │ │ │ ├── action_08.png.meta │ │ │ │ │ ├── action_09.png │ │ │ │ │ ├── action_09.png.meta │ │ │ │ │ ├── action_10.png │ │ │ │ │ ├── action_10.png.meta │ │ │ │ │ ├── action_11.png │ │ │ │ │ ├── action_11.png.meta │ │ │ │ │ ├── action_12.png │ │ │ │ │ ├── action_12.png.meta │ │ │ │ │ ├── action_13.png │ │ │ │ │ └── action_13.png.meta │ │ │ │ ├── Action_2.meta │ │ │ │ └── Action_2 │ │ │ │ │ ├── idle_00.png │ │ │ │ │ ├── idle_00.png.meta │ │ │ │ │ ├── idle_01.png │ │ │ │ │ ├── idle_01.png.meta │ │ │ │ │ ├── idle_02.png │ │ │ │ │ ├── idle_02.png.meta │ │ │ │ │ ├── idle_03.png │ │ │ │ │ ├── idle_03.png.meta │ │ │ │ │ ├── idle_04.png │ │ │ │ │ ├── idle_04.png.meta │ │ │ │ │ ├── idle_05.png │ │ │ │ │ ├── idle_05.png.meta │ │ │ │ │ ├── idle_06.png │ │ │ │ │ ├── idle_06.png.meta │ │ │ │ │ ├── idle_07.png │ │ │ │ │ ├── idle_07.png.meta │ │ │ │ │ ├── idle_08.png │ │ │ │ │ ├── idle_08.png.meta │ │ │ │ │ ├── idle_09.png │ │ │ │ │ └── idle_09.png.meta │ │ │ ├── NPC_Merchant.meta │ │ │ └── NPC_Merchant │ │ │ │ ├── idle.meta │ │ │ │ ├── idle │ │ │ │ ├── idle_00.png │ │ │ │ ├── idle_00.png.meta │ │ │ │ ├── idle_01.png │ │ │ │ ├── idle_01.png.meta │ │ │ │ ├── idle_02.png │ │ │ │ ├── idle_02.png.meta │ │ │ │ ├── idle_03.png │ │ │ │ ├── idle_03.png.meta │ │ │ │ ├── idle_04.png │ │ │ │ ├── idle_04.png.meta │ │ │ │ ├── idle_05.png │ │ │ │ ├── idle_05.png.meta │ │ │ │ ├── idle_06.png │ │ │ │ ├── idle_06.png.meta │ │ │ │ ├── idle_07.png │ │ │ │ ├── idle_07.png.meta │ │ │ │ ├── idle_08.png │ │ │ │ ├── idle_08.png.meta │ │ │ │ ├── idle_09.png │ │ │ │ ├── idle_09.png.meta │ │ │ │ ├── idle_10.png │ │ │ │ └── idle_10.png.meta │ │ │ │ ├── run.meta │ │ │ │ └── run │ │ │ │ ├── run_00.png │ │ │ │ ├── run_00.png.meta │ │ │ │ ├── run_01.png │ │ │ │ ├── run_01.png.meta │ │ │ │ ├── run_02.png │ │ │ │ ├── run_02.png.meta │ │ │ │ ├── run_03.png │ │ │ │ ├── run_03.png.meta │ │ │ │ ├── run_04.png │ │ │ │ ├── run_04.png.meta │ │ │ │ ├── run_05.png │ │ │ │ ├── run_05.png.meta │ │ │ │ ├── run_06.png │ │ │ │ ├── run_06.png.meta │ │ │ │ ├── run_07.png │ │ │ │ ├── run_07.png.meta │ │ │ │ ├── run_08.png │ │ │ │ ├── run_08.png.meta │ │ │ │ ├── run_09.png │ │ │ │ └── run_09.png.meta │ │ │ ├── Objects.meta │ │ │ ├── Objects │ │ │ ├── Buildings.meta │ │ │ ├── Buildings │ │ │ │ ├── furnace.png │ │ │ │ ├── furnace.png.meta │ │ │ │ ├── house_1.png │ │ │ │ ├── house_1.png.meta │ │ │ │ ├── house_2.png │ │ │ │ ├── house_2.png.meta │ │ │ │ ├── house_3.png │ │ │ │ ├── house_3.png.meta │ │ │ │ ├── house_4.png │ │ │ │ ├── house_4.png.meta │ │ │ │ ├── house_5.png │ │ │ │ ├── house_5.png.meta │ │ │ │ ├── house_5_fence.png │ │ │ │ ├── house_5_fence.png.meta │ │ │ │ ├── house_6.png │ │ │ │ ├── house_6.png.meta │ │ │ │ ├── house_inside_1.png │ │ │ │ ├── house_inside_1.png.meta │ │ │ │ ├── house_inside_2.png │ │ │ │ ├── house_inside_2.png.meta │ │ │ │ ├── house_inside_3.png │ │ │ │ ├── house_inside_3.png.meta │ │ │ │ ├── house_inside_4.png │ │ │ │ ├── house_inside_4.png.meta │ │ │ │ ├── house_inside_5.png │ │ │ │ ├── house_inside_5.png.meta │ │ │ │ ├── shed.png │ │ │ │ ├── shed.png.meta │ │ │ │ ├── shed_inside.png │ │ │ │ ├── shed_inside.png.meta │ │ │ │ ├── tower.png │ │ │ │ ├── tower.png.meta │ │ │ │ ├── tower_fence.png │ │ │ │ ├── tower_fence.png.meta │ │ │ │ ├── tower_inside.png │ │ │ │ ├── tower_inside.png.meta │ │ │ │ ├── well.png │ │ │ │ └── well.png.meta │ │ │ ├── Furniture.meta │ │ │ ├── Furniture │ │ │ │ ├── bank_1.png │ │ │ │ ├── bank_1.png.meta │ │ │ │ ├── bank_2.png │ │ │ │ ├── bank_2.png.meta │ │ │ │ ├── bank_3.png │ │ │ │ ├── bank_3.png.meta │ │ │ │ ├── bank_4.png │ │ │ │ ├── bank_4.png.meta │ │ │ │ ├── bank_5.png │ │ │ │ ├── bank_5.png.meta │ │ │ │ ├── bank_6.png │ │ │ │ ├── bank_6.png.meta │ │ │ │ ├── barrel_2.png │ │ │ │ ├── barrel_2.png.meta │ │ │ │ ├── bed.png │ │ │ │ ├── bed.png.meta │ │ │ │ ├── books_1.png │ │ │ │ ├── books_1.png.meta │ │ │ │ ├── books_2.png │ │ │ │ ├── books_2.png.meta │ │ │ │ ├── bottle_1.png │ │ │ │ ├── bottle_1.png.meta │ │ │ │ ├── bottle_2.png │ │ │ │ ├── bottle_2.png.meta │ │ │ │ ├── chair_1.png │ │ │ │ ├── chair_1.png.meta │ │ │ │ ├── chair_2.png │ │ │ │ ├── chair_2.png.meta │ │ │ │ ├── chair_3.png │ │ │ │ ├── chair_3.png.meta │ │ │ │ ├── cup.png │ │ │ │ ├── cup.png.meta │ │ │ │ ├── cupboard_1.png │ │ │ │ ├── cupboard_1.png.meta │ │ │ │ ├── cupboard_2.png │ │ │ │ ├── cupboard_2.png.meta │ │ │ │ ├── fireplace.png │ │ │ │ ├── fireplace.png.meta │ │ │ │ ├── ham.png │ │ │ │ ├── ham.png.meta │ │ │ │ ├── logs.png │ │ │ │ ├── logs.png.meta │ │ │ │ ├── nightstand.png │ │ │ │ ├── nightstand.png.meta │ │ │ │ ├── plant_1.png │ │ │ │ ├── plant_1.png.meta │ │ │ │ ├── plant_2.png │ │ │ │ ├── plant_2.png.meta │ │ │ │ ├── plant_3.png │ │ │ │ ├── plant_3.png.meta │ │ │ │ ├── plant_4.png │ │ │ │ ├── plant_4.png.meta │ │ │ │ ├── plate.png │ │ │ │ ├── plate.png.meta │ │ │ │ ├── sack_1.png │ │ │ │ ├── sack_1.png.meta │ │ │ │ ├── sack_2.png │ │ │ │ ├── sack_2.png.meta │ │ │ │ ├── shelf_1.png │ │ │ │ ├── shelf_1.png.meta │ │ │ │ ├── shelf_2.png │ │ │ │ ├── shelf_2.png.meta │ │ │ │ ├── stool.png │ │ │ │ ├── stool.png.meta │ │ │ │ ├── table_1.png │ │ │ │ ├── table_1.png.meta │ │ │ │ ├── table_2 1.png │ │ │ │ ├── table_2 1.png.meta │ │ │ │ ├── table_2.png │ │ │ │ ├── table_2.png.meta │ │ │ │ ├── table_3.png │ │ │ │ └── table_3.png.meta │ │ │ ├── Vegetations.meta │ │ │ ├── Vegetations │ │ │ │ ├── bush.png │ │ │ │ ├── bush.png.meta │ │ │ │ ├── bush_2.png │ │ │ │ ├── bush_2.png.meta │ │ │ │ ├── bush_3.png │ │ │ │ ├── bush_3.png.meta │ │ │ │ ├── bush_4.png │ │ │ │ ├── bush_4.png.meta │ │ │ │ ├── flower_1.png │ │ │ │ ├── flower_1.png.meta │ │ │ │ ├── flower_2.png │ │ │ │ ├── flower_2.png.meta │ │ │ │ ├── grass_1.png │ │ │ │ ├── grass_1.png.meta │ │ │ │ ├── grass_10.png │ │ │ │ ├── grass_10.png.meta │ │ │ │ ├── grass_2.png │ │ │ │ ├── grass_2.png.meta │ │ │ │ ├── grass_3.png │ │ │ │ ├── grass_3.png.meta │ │ │ │ ├── grass_4.png │ │ │ │ ├── grass_4.png.meta │ │ │ │ ├── grass_5.png │ │ │ │ ├── grass_5.png.meta │ │ │ │ ├── grass_6.png │ │ │ │ ├── grass_6.png.meta │ │ │ │ ├── grass_7.png │ │ │ │ ├── grass_7.png.meta │ │ │ │ ├── grass_8.png │ │ │ │ ├── grass_8.png.meta │ │ │ │ ├── grass_9.png │ │ │ │ ├── grass_9.png.meta │ │ │ │ ├── mushroom_1.png │ │ │ │ ├── mushroom_1.png.meta │ │ │ │ ├── mushroom_2.png │ │ │ │ ├── mushroom_2.png.meta │ │ │ │ ├── mushroom_3.png │ │ │ │ ├── mushroom_3.png.meta │ │ │ │ ├── stone_1.png │ │ │ │ ├── stone_1.png.meta │ │ │ │ ├── stone_2.png │ │ │ │ ├── stone_2.png.meta │ │ │ │ ├── stone_3.png │ │ │ │ ├── stone_3.png.meta │ │ │ │ ├── stone_4.png │ │ │ │ ├── stone_4.png.meta │ │ │ │ ├── stone_5.png │ │ │ │ ├── stone_5.png.meta │ │ │ │ ├── stone_6.png │ │ │ │ ├── stone_6.png.meta │ │ │ │ ├── stone_7.png │ │ │ │ ├── stone_7.png.meta │ │ │ │ ├── stone_8.png │ │ │ │ ├── stone_8.png.meta │ │ │ │ ├── tree_1.png │ │ │ │ ├── tree_1.png.meta │ │ │ │ ├── tree_2.png │ │ │ │ ├── tree_2.png.meta │ │ │ │ ├── tree_3.png │ │ │ │ └── tree_3.png.meta │ │ │ ├── anvil.png │ │ │ ├── anvil.png.meta │ │ │ ├── arrow.png │ │ │ ├── arrow.png.meta │ │ │ ├── banner_1.png │ │ │ ├── banner_1.png.meta │ │ │ ├── banner_2.png │ │ │ ├── banner_2.png.meta │ │ │ ├── banner_3.png │ │ │ ├── banner_3.png.meta │ │ │ ├── banner_4.png │ │ │ ├── banner_4.png.meta │ │ │ ├── banner_5.png │ │ │ ├── banner_5.png.meta │ │ │ ├── barrel.png │ │ │ ├── barrel.png.meta │ │ │ ├── base_door.png │ │ │ ├── base_door.png.meta │ │ │ ├── base_obstacle_2.png │ │ │ ├── base_obstacle_2.png.meta │ │ │ ├── beam.png │ │ │ ├── beam.png.meta │ │ │ ├── bench.png │ │ │ ├── bench.png.meta │ │ │ ├── bricks_1.png │ │ │ ├── bricks_1.png.meta │ │ │ ├── bricks_2.png │ │ │ ├── bricks_2.png.meta │ │ │ ├── bricks_3.png │ │ │ ├── bricks_3.png.meta │ │ │ ├── bricks_4.png │ │ │ ├── bricks_4.png.meta │ │ │ ├── bucket.png │ │ │ ├── bucket.png.meta │ │ │ ├── bulletin_board.png │ │ │ ├── bulletin_board.png.meta │ │ │ ├── campfire.png │ │ │ ├── campfire.png.meta │ │ │ ├── candle.png │ │ │ ├── candle.png.meta │ │ │ ├── candle_1.png │ │ │ ├── candle_1.png.meta │ │ │ ├── candle_2.png │ │ │ ├── candle_2.png.meta │ │ │ ├── cave_background_1.png │ │ │ ├── cave_background_1.png.meta │ │ │ ├── cave_background_2.png │ │ │ ├── cave_background_2.png.meta │ │ │ ├── cave_background_3.png │ │ │ ├── cave_background_3.png.meta │ │ │ ├── cave_background_4.png │ │ │ ├── cave_background_4.png.meta │ │ │ ├── cave_background_5.png │ │ │ ├── cave_background_5.png.meta │ │ │ ├── chain.png │ │ │ ├── chain.png.meta │ │ │ ├── chandelier_1.png │ │ │ ├── chandelier_1.png.meta │ │ │ ├── chandelier_2.png │ │ │ ├── chandelier_2.png.meta │ │ │ ├── chandelier_3.png │ │ │ ├── chandelier_3.png.meta │ │ │ ├── chimney.png │ │ │ ├── chimney.png.meta │ │ │ ├── crate.png │ │ │ ├── crate.png.meta │ │ │ ├── crystal_1.png │ │ │ ├── crystal_1.png.meta │ │ │ ├── crystal_2.png │ │ │ ├── crystal_2.png.meta │ │ │ ├── crystal_3.png │ │ │ ├── crystal_3.png.meta │ │ │ ├── crystal_4.png │ │ │ ├── crystal_4.png.meta │ │ │ ├── crystal_5.png │ │ │ ├── crystal_5.png.meta │ │ │ ├── dead_skeleton_1.png │ │ │ ├── dead_skeleton_1.png.meta │ │ │ ├── dead_skeleton_2.png │ │ │ ├── dead_skeleton_2.png.meta │ │ │ ├── door.png │ │ │ ├── door.png.meta │ │ │ ├── door_cave.png │ │ │ ├── door_cave.png.meta │ │ │ ├── door_house.png │ │ │ ├── door_house.png.meta │ │ │ ├── dummy.png │ │ │ ├── dummy.png.meta │ │ │ ├── dungeon_door_closed.png │ │ │ ├── dungeon_door_closed.png.meta │ │ │ ├── dungeon_door_opened.png │ │ │ ├── dungeon_door_opened.png.meta │ │ │ ├── dungeon_timber_brace_1.png │ │ │ ├── dungeon_timber_brace_1.png.meta │ │ │ ├── dungeon_timber_brace_2.png │ │ │ ├── dungeon_timber_brace_2.png.meta │ │ │ ├── dungeon_timber_brace_3.png │ │ │ ├── dungeon_timber_brace_3.png.meta │ │ │ ├── fence_1.png │ │ │ ├── fence_1.png.meta │ │ │ ├── fence_2.png │ │ │ ├── fence_2.png.meta │ │ │ ├── fence_3.png │ │ │ ├── fence_3.png.meta │ │ │ ├── fence_4.png │ │ │ ├── fence_4.png.meta │ │ │ ├── firebowl.png │ │ │ ├── firebowl.png.meta │ │ │ ├── gate1.png │ │ │ ├── gate1.png.meta │ │ │ ├── gate2.png │ │ │ ├── gate2.png.meta │ │ │ ├── health_potion.png │ │ │ ├── health_potion.png.meta │ │ │ ├── house_lantern_off.png │ │ │ ├── house_lantern_off.png.meta │ │ │ ├── house_lantern_on.png │ │ │ ├── house_lantern_on.png.meta │ │ │ ├── house_sign_1.png │ │ │ ├── house_sign_1.png.meta │ │ │ ├── house_sign_3.png │ │ │ ├── house_sign_3.png.meta │ │ │ ├── index.png │ │ │ ├── index.png.meta │ │ │ ├── lantern_off.png │ │ │ ├── lantern_off.png.meta │ │ │ ├── lantern_on.png │ │ │ ├── lantern_on.png.meta │ │ │ ├── mine.png │ │ │ ├── mine.png.meta │ │ │ ├── obstacle.png │ │ │ ├── obstacle.png.meta │ │ │ ├── obstacle_2.png │ │ │ ├── obstacle_2.png.meta │ │ │ ├── platform_1.png │ │ │ ├── platform_1.png.meta │ │ │ ├── platform_2.png │ │ │ ├── platform_2.png.meta │ │ │ ├── platform_3.png │ │ │ ├── platform_3.png.meta │ │ │ ├── platform_4.png │ │ │ ├── platform_4.png.meta │ │ │ ├── potion_1.png │ │ │ ├── potion_1.png.meta │ │ │ ├── potion_2.png │ │ │ ├── potion_2.png.meta │ │ │ ├── potion_3.png │ │ │ ├── potion_3.png.meta │ │ │ ├── rails.png │ │ │ ├── rails.png.meta │ │ │ ├── rocks_1.png │ │ │ ├── rocks_1.png.meta │ │ │ ├── rocks_2.png │ │ │ ├── rocks_2.png.meta │ │ │ ├── rocks_3.png │ │ │ ├── rocks_3.png.meta │ │ │ ├── rocks_4.png │ │ │ ├── rocks_4.png.meta │ │ │ ├── sheet_1.png │ │ │ ├── sheet_1.png.meta │ │ │ ├── sheet_2.png │ │ │ ├── sheet_2.png.meta │ │ │ ├── sign.png │ │ │ ├── sign.png.meta │ │ │ ├── skull.png │ │ │ ├── skull.png.meta │ │ │ ├── spider_den.png │ │ │ ├── spider_den.png.meta │ │ │ ├── statue_1.png │ │ │ ├── statue_1.png.meta │ │ │ ├── statue_2.png │ │ │ ├── statue_2.png.meta │ │ │ ├── stump.png │ │ │ ├── stump.png.meta │ │ │ ├── timber_brace_1.png │ │ │ ├── timber_brace_1.png.meta │ │ │ ├── timber_brace_2.png │ │ │ ├── timber_brace_2.png.meta │ │ │ ├── timber_brace_3.png │ │ │ ├── timber_brace_3.png.meta │ │ │ ├── torch.png │ │ │ ├── torch.png.meta │ │ │ ├── trolley.png │ │ │ ├── trolley.png.meta │ │ │ ├── wall_shield.png │ │ │ ├── wall_shield.png.meta │ │ │ ├── weapon_bow.png │ │ │ ├── weapon_bow.png.meta │ │ │ ├── weapon_sword.png │ │ │ ├── weapon_sword.png.meta │ │ │ ├── web_1.png │ │ │ ├── web_1.png.meta │ │ │ ├── web_2.png │ │ │ └── web_2.png.meta │ │ │ ├── Separate graphic parts.meta │ │ │ ├── Separate graphic parts │ │ │ ├── Enemy.meta │ │ │ ├── Enemy │ │ │ │ ├── Bat.meta │ │ │ │ ├── Bat │ │ │ │ │ ├── bat_body.png │ │ │ │ │ ├── bat_body.png.meta │ │ │ │ │ ├── bat_head.png │ │ │ │ │ ├── bat_head.png.meta │ │ │ │ │ ├── bat_head_die.png │ │ │ │ │ ├── bat_head_die.png.meta │ │ │ │ │ ├── bat_leg_l.png │ │ │ │ │ ├── bat_leg_l.png.meta │ │ │ │ │ ├── bat_leg_r.png │ │ │ │ │ ├── bat_leg_r.png.meta │ │ │ │ │ ├── bat_ooh_l.png │ │ │ │ │ ├── bat_ooh_l.png.meta │ │ │ │ │ ├── bat_ooh_r.png │ │ │ │ │ ├── bat_ooh_r.png.meta │ │ │ │ │ ├── bat_wing_l.png │ │ │ │ │ ├── bat_wing_l.png.meta │ │ │ │ │ ├── bat_wing_r.png │ │ │ │ │ └── bat_wing_r.png.meta │ │ │ │ ├── Bee.meta │ │ │ │ ├── Bee │ │ │ │ │ ├── bee_body.png │ │ │ │ │ ├── bee_body.png.meta │ │ │ │ │ ├── bee_head.png │ │ │ │ │ ├── bee_head.png.meta │ │ │ │ │ ├── bee_head_die.png │ │ │ │ │ ├── bee_head_die.png.meta │ │ │ │ │ ├── bee_leg1_l.png │ │ │ │ │ ├── bee_leg1_l.png.meta │ │ │ │ │ ├── bee_leg1_r.png │ │ │ │ │ ├── bee_leg1_r.png.meta │ │ │ │ │ ├── bee_leg2_l.png │ │ │ │ │ ├── bee_leg2_l.png.meta │ │ │ │ │ ├── bee_leg2_r.png │ │ │ │ │ ├── bee_leg2_r.png.meta │ │ │ │ │ ├── bee_sting.png │ │ │ │ │ ├── bee_sting.png.meta │ │ │ │ │ ├── bee_tendril_l.png │ │ │ │ │ ├── bee_tendril_l.png.meta │ │ │ │ │ ├── bee_tendril_r.png │ │ │ │ │ ├── bee_tendril_r.png.meta │ │ │ │ │ ├── bee_wing_l.png │ │ │ │ │ ├── bee_wing_l.png.meta │ │ │ │ │ ├── bee_wing_r.png │ │ │ │ │ └── bee_wing_r.png.meta │ │ │ │ ├── Boss.meta │ │ │ │ ├── Boss │ │ │ │ │ ├── boss_arm_l.png │ │ │ │ │ ├── boss_arm_l.png.meta │ │ │ │ │ ├── boss_arm_r.png │ │ │ │ │ ├── boss_arm_r.png.meta │ │ │ │ │ ├── boss_body.png │ │ │ │ │ ├── boss_body.png.meta │ │ │ │ │ ├── boss_hand_l.png │ │ │ │ │ ├── boss_hand_l.png.meta │ │ │ │ │ ├── boss_hand_r.png │ │ │ │ │ ├── boss_hand_r.png.meta │ │ │ │ │ ├── boss_head.png │ │ │ │ │ ├── boss_head.png.meta │ │ │ │ │ ├── boss_head2.png │ │ │ │ │ ├── boss_head2.png.meta │ │ │ │ │ ├── boss_head_die.png │ │ │ │ │ ├── boss_head_die.png.meta │ │ │ │ │ ├── boss_head_stun.png │ │ │ │ │ ├── boss_head_stun.png.meta │ │ │ │ │ ├── boss_helmet.png │ │ │ │ │ ├── boss_helmet.png.meta │ │ │ │ │ ├── boss_leg_l.png │ │ │ │ │ ├── boss_leg_l.png.meta │ │ │ │ │ ├── boss_leg_r.png │ │ │ │ │ ├── boss_leg_r.png.meta │ │ │ │ │ ├── boss_pelvis.png │ │ │ │ │ ├── boss_pelvis.png.meta │ │ │ │ │ ├── boss_weapon.png │ │ │ │ │ ├── boss_weapon.png.meta │ │ │ │ │ ├── boss_weapon_hand.png │ │ │ │ │ └── boss_weapon_hand.png.meta │ │ │ │ ├── Skeletons.meta │ │ │ │ ├── Skeletons │ │ │ │ │ ├── particle.png │ │ │ │ │ ├── particle.png.meta │ │ │ │ │ ├── particleTriple.png │ │ │ │ │ ├── particleTriple.png.meta │ │ │ │ │ ├── skeleton_archer_arm_l.png │ │ │ │ │ ├── skeleton_archer_arm_l.png.meta │ │ │ │ │ ├── skeleton_archer_head.png │ │ │ │ │ ├── skeleton_archer_head.png.meta │ │ │ │ │ ├── skeleton_archer_head_die.png │ │ │ │ │ ├── skeleton_archer_head_die.png.meta │ │ │ │ │ ├── skeleton_archer_quiver.png │ │ │ │ │ ├── skeleton_archer_quiver.png.meta │ │ │ │ │ ├── skeleton_arm_l.png │ │ │ │ │ ├── skeleton_arm_l.png.meta │ │ │ │ │ ├── skeleton_arm_r.png │ │ │ │ │ ├── skeleton_arm_r.png.meta │ │ │ │ │ ├── skeleton_chest.png │ │ │ │ │ ├── skeleton_chest.png.meta │ │ │ │ │ ├── skeleton_head.png │ │ │ │ │ ├── skeleton_head.png.meta │ │ │ │ │ ├── skeleton_head_die.png │ │ │ │ │ ├── skeleton_head_die.png.meta │ │ │ │ │ ├── skeleton_leg_l.png │ │ │ │ │ ├── skeleton_leg_l.png.meta │ │ │ │ │ ├── skeleton_leg_r.png │ │ │ │ │ ├── skeleton_leg_r.png.meta │ │ │ │ │ ├── skeleton_mage_arm_l.png │ │ │ │ │ ├── skeleton_mage_arm_l.png.meta │ │ │ │ │ ├── skeleton_mage_head.png │ │ │ │ │ ├── skeleton_mage_head.png.meta │ │ │ │ │ ├── skeleton_mage_head_die.png │ │ │ │ │ ├── skeleton_mage_head_die.png.meta │ │ │ │ │ ├── skeleton_pelvis.png │ │ │ │ │ ├── skeleton_pelvis.png.meta │ │ │ │ │ ├── skeleton_shield_shield.png │ │ │ │ │ ├── skeleton_shield_shield.png.meta │ │ │ │ │ ├── skeleton_spear_arm_l.png │ │ │ │ │ ├── skeleton_spear_arm_l.png.meta │ │ │ │ │ ├── skeleton_sword_arm_l.png │ │ │ │ │ └── skeleton_sword_arm_l.png.meta │ │ │ │ ├── Slime.meta │ │ │ │ ├── Slime │ │ │ │ │ ├── slime1.png │ │ │ │ │ ├── slime1.png.meta │ │ │ │ │ ├── slime2.png │ │ │ │ │ ├── slime2.png.meta │ │ │ │ │ ├── slime3.png │ │ │ │ │ ├── slime3.png.meta │ │ │ │ │ ├── slime4.png │ │ │ │ │ ├── slime4.png.meta │ │ │ │ │ ├── slime5.png │ │ │ │ │ ├── slime5.png.meta │ │ │ │ │ ├── slime6.png │ │ │ │ │ ├── slime6.png.meta │ │ │ │ │ ├── slime7.png │ │ │ │ │ ├── slime7.png.meta │ │ │ │ │ ├── slime8.png │ │ │ │ │ └── slime8.png.meta │ │ │ │ ├── Spider.meta │ │ │ │ └── Spider │ │ │ │ │ ├── spider_body.png │ │ │ │ │ ├── spider_body.png.meta │ │ │ │ │ ├── spider_head.png │ │ │ │ │ ├── spider_head.png.meta │ │ │ │ │ ├── spider_head_die.png │ │ │ │ │ ├── spider_head_die.png.meta │ │ │ │ │ ├── spider_leg1_l.png │ │ │ │ │ ├── spider_leg1_l.png.meta │ │ │ │ │ ├── spider_leg1_r.png │ │ │ │ │ ├── spider_leg1_r.png.meta │ │ │ │ │ ├── spider_leg2_l.png │ │ │ │ │ ├── spider_leg2_l.png.meta │ │ │ │ │ ├── spider_leg2_r.png │ │ │ │ │ ├── spider_leg2_r.png.meta │ │ │ │ │ ├── spider_leg3_l.png │ │ │ │ │ ├── spider_leg3_l.png.meta │ │ │ │ │ ├── spider_leg_3_r.png │ │ │ │ │ ├── spider_leg_3_r.png.meta │ │ │ │ │ ├── spider_sting_l.png │ │ │ │ │ ├── spider_sting_l.png.meta │ │ │ │ │ ├── spider_sting_r.png │ │ │ │ │ └── spider_sting_r.png.meta │ │ │ ├── NPC.meta │ │ │ ├── NPC │ │ │ │ ├── Bird.meta │ │ │ │ ├── Bird │ │ │ │ │ ├── bird_body.png │ │ │ │ │ ├── bird_body.png.meta │ │ │ │ │ ├── bird_head.png │ │ │ │ │ ├── bird_head.png.meta │ │ │ │ │ ├── bird_leg_l.png │ │ │ │ │ ├── bird_leg_l.png.meta │ │ │ │ │ ├── bird_leg_r.png │ │ │ │ │ ├── bird_leg_r.png.meta │ │ │ │ │ ├── bird_wing.png │ │ │ │ │ ├── bird_wing.png.meta │ │ │ │ │ ├── bird_wing1_l.png │ │ │ │ │ ├── bird_wing1_l.png.meta │ │ │ │ │ ├── bird_wing1_r.png │ │ │ │ │ ├── bird_wing1_r.png.meta │ │ │ │ │ ├── bird_wing2_l.png │ │ │ │ │ ├── bird_wing2_l.png.meta │ │ │ │ │ ├── bird_wing2_r.png │ │ │ │ │ └── bird_wing2_r.png.meta │ │ │ │ ├── bag_object_2.png │ │ │ │ ├── bag_object_2.png.meta │ │ │ │ ├── bag_object_3.png │ │ │ │ ├── bag_object_3.png.meta │ │ │ │ ├── npc_bag_1.png │ │ │ │ ├── npc_bag_1.png.meta │ │ │ │ ├── npc_bag_2.png │ │ │ │ ├── npc_bag_2.png.meta │ │ │ │ ├── npc_bag_object_1.png │ │ │ │ ├── npc_bag_object_1.png.meta │ │ │ │ ├── npc_blacksmith_arm_l.png │ │ │ │ ├── npc_blacksmith_arm_l.png.meta │ │ │ │ ├── npc_blacksmith_arm_r.png │ │ │ │ ├── npc_blacksmith_arm_r.png.meta │ │ │ │ ├── npc_blacksmith_body.png │ │ │ │ ├── npc_blacksmith_body.png.meta │ │ │ │ ├── npc_blacksmith_head.png │ │ │ │ ├── npc_blacksmith_head.png.meta │ │ │ │ ├── npc_body_1.png │ │ │ │ ├── npc_body_1.png.meta │ │ │ │ ├── npc_body_2.png │ │ │ │ ├── npc_body_2.png.meta │ │ │ │ ├── npc_body_3.png │ │ │ │ ├── npc_body_3.png.meta │ │ │ │ ├── npc_head_1.png │ │ │ │ ├── npc_head_1.png.meta │ │ │ │ ├── npc_head_2.png │ │ │ │ ├── npc_head_2.png.meta │ │ │ │ ├── npc_head_3.png │ │ │ │ ├── npc_head_3.png.meta │ │ │ │ ├── npc_leg_l.png │ │ │ │ ├── npc_leg_l.png.meta │ │ │ │ ├── npc_leg_r.png │ │ │ │ ├── npc_leg_r.png.meta │ │ │ │ ├── npc_merchant_arm_l.png │ │ │ │ ├── npc_merchant_arm_l.png.meta │ │ │ │ ├── npc_merchant_body.png │ │ │ │ ├── npc_merchant_body.png.meta │ │ │ │ ├── npc_merchant_head.png │ │ │ │ ├── npc_merchant_head.png.meta │ │ │ │ ├── spark.png │ │ │ │ └── spark.png.meta │ │ │ ├── Player.meta │ │ │ └── Player │ │ │ │ ├── player_arm_l.png │ │ │ │ ├── player_arm_l.png.meta │ │ │ │ ├── player_arm_r.png │ │ │ │ ├── player_arm_r.png.meta │ │ │ │ ├── player_body.png │ │ │ │ ├── player_body.png.meta │ │ │ │ ├── player_bow_arm_l.png │ │ │ │ ├── player_bow_arm_l.png.meta │ │ │ │ ├── player_head.png │ │ │ │ ├── player_head.png.meta │ │ │ │ ├── player_head_die.png │ │ │ │ ├── player_head_die.png.meta │ │ │ │ ├── player_leg_l.png │ │ │ │ ├── player_leg_l.png.meta │ │ │ │ ├── player_leg_r.png │ │ │ │ ├── player_leg_r.png.meta │ │ │ │ ├── player_quiver.png │ │ │ │ ├── player_quiver.png.meta │ │ │ │ ├── player_sword_arm_l.png │ │ │ │ └── player_sword_arm_l.png.meta │ │ │ ├── Tileset.meta │ │ │ ├── Tileset │ │ │ ├── tileset _1.png │ │ │ ├── tileset _1.png.meta │ │ │ ├── tileset _2.png │ │ │ └── tileset _2.png.meta │ │ │ ├── Tileset_1.meta │ │ │ ├── Tileset_1 │ │ │ ├── New Palette.prefab │ │ │ ├── New Palette.prefab.meta │ │ │ ├── tileset _1_1.asset │ │ │ ├── tileset _1_1.asset.meta │ │ │ ├── tileset _1_10.asset │ │ │ ├── tileset _1_10.asset.meta │ │ │ ├── tileset _1_100.asset │ │ │ ├── tileset _1_100.asset.meta │ │ │ ├── tileset _1_101.asset │ │ │ ├── tileset _1_101.asset.meta │ │ │ ├── tileset _1_102.asset │ │ │ ├── tileset _1_102.asset.meta │ │ │ ├── tileset _1_103.asset │ │ │ ├── tileset _1_103.asset.meta │ │ │ ├── tileset _1_104.asset │ │ │ ├── tileset _1_104.asset.meta │ │ │ ├── tileset _1_105.asset │ │ │ ├── tileset _1_105.asset.meta │ │ │ ├── tileset _1_106.asset │ │ │ ├── tileset _1_106.asset.meta │ │ │ ├── tileset _1_107.asset │ │ │ ├── tileset _1_107.asset.meta │ │ │ ├── tileset _1_108.asset │ │ │ ├── tileset _1_108.asset.meta │ │ │ ├── tileset _1_109.asset │ │ │ ├── tileset _1_109.asset.meta │ │ │ ├── tileset _1_11.asset │ │ │ ├── tileset _1_11.asset.meta │ │ │ ├── tileset _1_110.asset │ │ │ ├── tileset _1_110.asset.meta │ │ │ ├── tileset _1_111.asset │ │ │ ├── tileset _1_111.asset.meta │ │ │ ├── tileset _1_112.asset │ │ │ ├── tileset _1_112.asset.meta │ │ │ ├── tileset _1_113.asset │ │ │ ├── tileset _1_113.asset.meta │ │ │ ├── tileset _1_114.asset │ │ │ ├── tileset _1_114.asset.meta │ │ │ ├── tileset _1_115.asset │ │ │ ├── tileset _1_115.asset.meta │ │ │ ├── tileset _1_116.asset │ │ │ ├── tileset _1_116.asset.meta │ │ │ ├── tileset _1_117.asset │ │ │ ├── tileset _1_117.asset.meta │ │ │ ├── tileset _1_12.asset │ │ │ ├── tileset _1_12.asset.meta │ │ │ ├── tileset _1_120.asset │ │ │ ├── tileset _1_120.asset.meta │ │ │ ├── tileset _1_121.asset │ │ │ ├── tileset _1_121.asset.meta │ │ │ ├── tileset _1_122.asset │ │ │ ├── tileset _1_122.asset.meta │ │ │ ├── tileset _1_123.asset │ │ │ ├── tileset _1_123.asset.meta │ │ │ ├── tileset _1_124.asset │ │ │ ├── tileset _1_124.asset.meta │ │ │ ├── tileset _1_125.asset │ │ │ ├── tileset _1_125.asset.meta │ │ │ ├── tileset _1_127.asset │ │ │ ├── tileset _1_127.asset.meta │ │ │ ├── tileset _1_13.asset │ │ │ ├── tileset _1_13.asset.meta │ │ │ ├── tileset _1_14.asset │ │ │ ├── tileset _1_14.asset.meta │ │ │ ├── tileset _1_15.asset │ │ │ ├── tileset _1_15.asset.meta │ │ │ ├── tileset _1_16.asset │ │ │ ├── tileset _1_16.asset.meta │ │ │ ├── tileset _1_17.asset │ │ │ ├── tileset _1_17.asset.meta │ │ │ ├── tileset _1_18.asset │ │ │ ├── tileset _1_18.asset.meta │ │ │ ├── tileset _1_2.asset │ │ │ ├── tileset _1_2.asset.meta │ │ │ ├── tileset _1_20.asset │ │ │ ├── tileset _1_20.asset.meta │ │ │ ├── tileset _1_21.asset │ │ │ ├── tileset _1_21.asset.meta │ │ │ ├── tileset _1_22.asset │ │ │ ├── tileset _1_22.asset.meta │ │ │ ├── tileset _1_23.asset │ │ │ ├── tileset _1_23.asset.meta │ │ │ ├── tileset _1_24.asset │ │ │ ├── tileset _1_24.asset.meta │ │ │ ├── tileset _1_25.asset │ │ │ ├── tileset _1_25.asset.meta │ │ │ ├── tileset _1_26.asset │ │ │ ├── tileset _1_26.asset.meta │ │ │ ├── tileset _1_28.asset │ │ │ ├── tileset _1_28.asset.meta │ │ │ ├── tileset _1_29.asset │ │ │ ├── tileset _1_29.asset.meta │ │ │ ├── tileset _1_3.asset │ │ │ ├── tileset _1_3.asset.meta │ │ │ ├── tileset _1_30.asset │ │ │ ├── tileset _1_30.asset.meta │ │ │ ├── tileset _1_31.asset │ │ │ ├── tileset _1_31.asset.meta │ │ │ ├── tileset _1_32.asset │ │ │ ├── tileset _1_32.asset.meta │ │ │ ├── tileset _1_33.asset │ │ │ ├── tileset _1_33.asset.meta │ │ │ ├── tileset _1_34.asset │ │ │ ├── tileset _1_34.asset.meta │ │ │ ├── tileset _1_35.asset │ │ │ ├── tileset _1_35.asset.meta │ │ │ ├── tileset _1_36.asset │ │ │ ├── tileset _1_36.asset.meta │ │ │ ├── tileset _1_37.asset │ │ │ ├── tileset _1_37.asset.meta │ │ │ ├── tileset _1_38.asset │ │ │ ├── tileset _1_38.asset.meta │ │ │ ├── tileset _1_39.asset │ │ │ ├── tileset _1_39.asset.meta │ │ │ ├── tileset _1_4.asset │ │ │ ├── tileset _1_4.asset.meta │ │ │ ├── tileset _1_40.asset │ │ │ ├── tileset _1_40.asset.meta │ │ │ ├── tileset _1_41.asset │ │ │ ├── tileset _1_41.asset.meta │ │ │ ├── tileset _1_42.asset │ │ │ ├── tileset _1_42.asset.meta │ │ │ ├── tileset _1_43.asset │ │ │ ├── tileset _1_43.asset.meta │ │ │ ├── tileset _1_44.asset │ │ │ ├── tileset _1_44.asset.meta │ │ │ ├── tileset _1_45.asset │ │ │ ├── tileset _1_45.asset.meta │ │ │ ├── tileset _1_46.asset │ │ │ ├── tileset _1_46.asset.meta │ │ │ ├── tileset _1_47.asset │ │ │ ├── tileset _1_47.asset.meta │ │ │ ├── tileset _1_48.asset │ │ │ ├── tileset _1_48.asset.meta │ │ │ ├── tileset _1_49.asset │ │ │ ├── tileset _1_49.asset.meta │ │ │ ├── tileset _1_5.asset │ │ │ ├── tileset _1_5.asset.meta │ │ │ ├── tileset _1_50.asset │ │ │ ├── tileset _1_50.asset.meta │ │ │ ├── tileset _1_51.asset │ │ │ ├── tileset _1_51.asset.meta │ │ │ ├── tileset _1_52.asset │ │ │ ├── tileset _1_52.asset.meta │ │ │ ├── tileset _1_53.asset │ │ │ ├── tileset _1_53.asset.meta │ │ │ ├── tileset _1_54.asset │ │ │ ├── tileset _1_54.asset.meta │ │ │ ├── tileset _1_55.asset │ │ │ ├── tileset _1_55.asset.meta │ │ │ ├── tileset _1_56.asset │ │ │ ├── tileset _1_56.asset.meta │ │ │ ├── tileset _1_57.asset │ │ │ ├── tileset _1_57.asset.meta │ │ │ ├── tileset _1_58.asset │ │ │ ├── tileset _1_58.asset.meta │ │ │ ├── tileset _1_59.asset │ │ │ ├── tileset _1_59.asset.meta │ │ │ ├── tileset _1_6.asset │ │ │ ├── tileset _1_6.asset.meta │ │ │ ├── tileset _1_60.asset │ │ │ ├── tileset _1_60.asset.meta │ │ │ ├── tileset _1_61.asset │ │ │ ├── tileset _1_61.asset.meta │ │ │ ├── tileset _1_63.asset │ │ │ ├── tileset _1_63.asset.meta │ │ │ ├── tileset _1_64.asset │ │ │ ├── tileset _1_64.asset.meta │ │ │ ├── tileset _1_65.asset │ │ │ ├── tileset _1_65.asset.meta │ │ │ ├── tileset _1_66.asset │ │ │ ├── tileset _1_66.asset.meta │ │ │ ├── tileset _1_67.asset │ │ │ ├── tileset _1_67.asset.meta │ │ │ ├── tileset _1_68.asset │ │ │ ├── tileset _1_68.asset.meta │ │ │ ├── tileset _1_69.asset │ │ │ ├── tileset _1_69.asset.meta │ │ │ ├── tileset _1_7.asset │ │ │ ├── tileset _1_7.asset.meta │ │ │ ├── tileset _1_70.asset │ │ │ ├── tileset _1_70.asset.meta │ │ │ ├── tileset _1_71.asset │ │ │ ├── tileset _1_71.asset.meta │ │ │ ├── tileset _1_72.asset │ │ │ ├── tileset _1_72.asset.meta │ │ │ ├── tileset _1_73.asset │ │ │ ├── tileset _1_73.asset.meta │ │ │ ├── tileset _1_74.asset │ │ │ ├── tileset _1_74.asset.meta │ │ │ ├── tileset _1_75.asset │ │ │ ├── tileset _1_75.asset.meta │ │ │ ├── tileset _1_76.asset │ │ │ ├── tileset _1_76.asset.meta │ │ │ ├── tileset _1_77.asset │ │ │ ├── tileset _1_77.asset.meta │ │ │ ├── tileset _1_78.asset │ │ │ ├── tileset _1_78.asset.meta │ │ │ ├── tileset _1_79.asset │ │ │ ├── tileset _1_79.asset.meta │ │ │ ├── tileset _1_8.asset │ │ │ ├── tileset _1_8.asset.meta │ │ │ ├── tileset _1_82.asset │ │ │ ├── tileset _1_82.asset.meta │ │ │ ├── tileset _1_83.asset │ │ │ ├── tileset _1_83.asset.meta │ │ │ ├── tileset _1_85.asset │ │ │ ├── tileset _1_85.asset.meta │ │ │ ├── tileset _1_86.asset │ │ │ ├── tileset _1_86.asset.meta │ │ │ ├── tileset _1_88.asset │ │ │ ├── tileset _1_88.asset.meta │ │ │ ├── tileset _1_89.asset │ │ │ ├── tileset _1_89.asset.meta │ │ │ ├── tileset _1_9.asset │ │ │ ├── tileset _1_9.asset.meta │ │ │ ├── tileset _1_90.asset │ │ │ ├── tileset _1_90.asset.meta │ │ │ ├── tileset _1_92.asset │ │ │ ├── tileset _1_92.asset.meta │ │ │ ├── tileset _1_93.asset │ │ │ ├── tileset _1_93.asset.meta │ │ │ ├── tileset _1_94.asset │ │ │ ├── tileset _1_94.asset.meta │ │ │ ├── tileset _1_95.asset │ │ │ ├── tileset _1_95.asset.meta │ │ │ ├── tileset _1_96.asset │ │ │ ├── tileset _1_96.asset.meta │ │ │ ├── tileset _1_97.asset │ │ │ ├── tileset _1_97.asset.meta │ │ │ ├── tileset _1_98.asset │ │ │ ├── tileset _1_98.asset.meta │ │ │ ├── tileset _1_99.asset │ │ │ └── tileset _1_99.asset.meta │ │ │ ├── Tileset_2.meta │ │ │ └── Tileset_2 │ │ │ ├── New Palette.prefab │ │ │ ├── New Palette.prefab.meta │ │ │ ├── tileset _2_0.asset │ │ │ ├── tileset _2_0.asset.meta │ │ │ ├── tileset _2_1.asset │ │ │ ├── tileset _2_1.asset.meta │ │ │ ├── tileset _2_10.asset │ │ │ ├── tileset _2_10.asset.meta │ │ │ ├── tileset _2_101.asset │ │ │ ├── tileset _2_101.asset.meta │ │ │ ├── tileset _2_102.asset │ │ │ ├── tileset _2_102.asset.meta │ │ │ ├── tileset _2_103.asset │ │ │ ├── tileset _2_103.asset.meta │ │ │ ├── tileset _2_104.asset │ │ │ ├── tileset _2_104.asset.meta │ │ │ ├── tileset _2_105.asset │ │ │ ├── tileset _2_105.asset.meta │ │ │ ├── tileset _2_106.asset │ │ │ ├── tileset _2_106.asset.meta │ │ │ ├── tileset _2_107.asset │ │ │ ├── tileset _2_107.asset.meta │ │ │ ├── tileset _2_108.asset │ │ │ ├── tileset _2_108.asset.meta │ │ │ ├── tileset _2_109.asset │ │ │ ├── tileset _2_109.asset.meta │ │ │ ├── tileset _2_11.asset │ │ │ ├── tileset _2_11.asset.meta │ │ │ ├── tileset _2_110.asset │ │ │ ├── tileset _2_110.asset.meta │ │ │ ├── tileset _2_111.asset │ │ │ ├── tileset _2_111.asset.meta │ │ │ ├── tileset _2_112.asset │ │ │ ├── tileset _2_112.asset.meta │ │ │ ├── tileset _2_113.asset │ │ │ ├── tileset _2_113.asset.meta │ │ │ ├── tileset _2_114.asset │ │ │ ├── tileset _2_114.asset.meta │ │ │ ├── tileset _2_115.asset │ │ │ ├── tileset _2_115.asset.meta │ │ │ ├── tileset _2_116.asset │ │ │ ├── tileset _2_116.asset.meta │ │ │ ├── tileset _2_117.asset │ │ │ ├── tileset _2_117.asset.meta │ │ │ ├── tileset _2_118.asset │ │ │ ├── tileset _2_118.asset.meta │ │ │ ├── tileset _2_119.asset │ │ │ ├── tileset _2_119.asset.meta │ │ │ ├── tileset _2_12.asset │ │ │ ├── tileset _2_12.asset.meta │ │ │ ├── tileset _2_121.asset │ │ │ ├── tileset _2_121.asset.meta │ │ │ ├── tileset _2_122.asset │ │ │ ├── tileset _2_122.asset.meta │ │ │ ├── tileset _2_123.asset │ │ │ ├── tileset _2_123.asset.meta │ │ │ ├── tileset _2_124.asset │ │ │ ├── tileset _2_124.asset.meta │ │ │ ├── tileset _2_125.asset │ │ │ ├── tileset _2_125.asset.meta │ │ │ ├── tileset _2_126.asset │ │ │ ├── tileset _2_126.asset.meta │ │ │ ├── tileset _2_13.asset │ │ │ ├── tileset _2_13.asset.meta │ │ │ ├── tileset _2_14.asset │ │ │ ├── tileset _2_14.asset.meta │ │ │ ├── tileset _2_15.asset │ │ │ ├── tileset _2_15.asset.meta │ │ │ ├── tileset _2_16.asset │ │ │ ├── tileset _2_16.asset.meta │ │ │ ├── tileset _2_17.asset │ │ │ ├── tileset _2_17.asset.meta │ │ │ ├── tileset _2_18.asset │ │ │ ├── tileset _2_18.asset.meta │ │ │ ├── tileset _2_19.asset │ │ │ ├── tileset _2_19.asset.meta │ │ │ ├── tileset _2_2.asset │ │ │ ├── tileset _2_2.asset.meta │ │ │ ├── tileset _2_20.asset │ │ │ ├── tileset _2_20.asset.meta │ │ │ ├── tileset _2_21.asset │ │ │ ├── tileset _2_21.asset.meta │ │ │ ├── tileset _2_22.asset │ │ │ ├── tileset _2_22.asset.meta │ │ │ ├── tileset _2_23.asset │ │ │ ├── tileset _2_23.asset.meta │ │ │ ├── tileset _2_24.asset │ │ │ ├── tileset _2_24.asset.meta │ │ │ ├── tileset _2_25.asset │ │ │ ├── tileset _2_25.asset.meta │ │ │ ├── tileset _2_26.asset │ │ │ ├── tileset _2_26.asset.meta │ │ │ ├── tileset _2_27.asset │ │ │ ├── tileset _2_27.asset.meta │ │ │ ├── tileset _2_28.asset │ │ │ ├── tileset _2_28.asset.meta │ │ │ ├── tileset _2_29.asset │ │ │ ├── tileset _2_29.asset.meta │ │ │ ├── tileset _2_3.asset │ │ │ ├── tileset _2_3.asset.meta │ │ │ ├── tileset _2_30.asset │ │ │ ├── tileset _2_30.asset.meta │ │ │ ├── tileset _2_31.asset │ │ │ ├── tileset _2_31.asset.meta │ │ │ ├── tileset _2_32.asset │ │ │ ├── tileset _2_32.asset.meta │ │ │ ├── tileset _2_33.asset │ │ │ ├── tileset _2_33.asset.meta │ │ │ ├── tileset _2_34.asset │ │ │ ├── tileset _2_34.asset.meta │ │ │ ├── tileset _2_35.asset │ │ │ ├── tileset _2_35.asset.meta │ │ │ ├── tileset _2_37.asset │ │ │ ├── tileset _2_37.asset.meta │ │ │ ├── tileset _2_38.asset │ │ │ ├── tileset _2_38.asset.meta │ │ │ ├── tileset _2_39.asset │ │ │ ├── tileset _2_39.asset.meta │ │ │ ├── tileset _2_4.asset │ │ │ ├── tileset _2_4.asset.meta │ │ │ ├── tileset _2_40.asset │ │ │ ├── tileset _2_40.asset.meta │ │ │ ├── tileset _2_41.asset │ │ │ ├── tileset _2_41.asset.meta │ │ │ ├── tileset _2_42.asset │ │ │ ├── tileset _2_42.asset.meta │ │ │ ├── tileset _2_44.asset │ │ │ ├── tileset _2_44.asset.meta │ │ │ ├── tileset _2_45.asset │ │ │ ├── tileset _2_45.asset.meta │ │ │ ├── tileset _2_46.asset │ │ │ ├── tileset _2_46.asset.meta │ │ │ ├── tileset _2_47.asset │ │ │ ├── tileset _2_47.asset.meta │ │ │ ├── tileset _2_49.asset │ │ │ ├── tileset _2_49.asset.meta │ │ │ ├── tileset _2_5.asset │ │ │ ├── tileset _2_5.asset.meta │ │ │ ├── tileset _2_50.asset │ │ │ ├── tileset _2_50.asset.meta │ │ │ ├── tileset _2_51.asset │ │ │ ├── tileset _2_51.asset.meta │ │ │ ├── tileset _2_55.asset │ │ │ ├── tileset _2_55.asset.meta │ │ │ ├── tileset _2_56.asset │ │ │ ├── tileset _2_56.asset.meta │ │ │ ├── tileset _2_57.asset │ │ │ ├── tileset _2_57.asset.meta │ │ │ ├── tileset _2_58.asset │ │ │ ├── tileset _2_58.asset.meta │ │ │ ├── tileset _2_59.asset │ │ │ ├── tileset _2_59.asset.meta │ │ │ ├── tileset _2_6.asset │ │ │ ├── tileset _2_6.asset.meta │ │ │ ├── tileset _2_60.asset │ │ │ ├── tileset _2_60.asset.meta │ │ │ ├── tileset _2_61.asset │ │ │ ├── tileset _2_61.asset.meta │ │ │ ├── tileset _2_62.asset │ │ │ ├── tileset _2_62.asset.meta │ │ │ ├── tileset _2_63.asset │ │ │ ├── tileset _2_63.asset.meta │ │ │ ├── tileset _2_64.asset │ │ │ ├── tileset _2_64.asset.meta │ │ │ ├── tileset _2_65.asset │ │ │ ├── tileset _2_65.asset.meta │ │ │ ├── tileset _2_66.asset │ │ │ ├── tileset _2_66.asset.meta │ │ │ ├── tileset _2_67.asset │ │ │ ├── tileset _2_67.asset.meta │ │ │ ├── tileset _2_68.asset │ │ │ ├── tileset _2_68.asset.meta │ │ │ ├── tileset _2_69.asset │ │ │ ├── tileset _2_69.asset.meta │ │ │ ├── tileset _2_7.asset │ │ │ ├── tileset _2_7.asset.meta │ │ │ ├── tileset _2_70.asset │ │ │ ├── tileset _2_70.asset.meta │ │ │ ├── tileset _2_71.asset │ │ │ ├── tileset _2_71.asset.meta │ │ │ ├── tileset _2_72.asset │ │ │ ├── tileset _2_72.asset.meta │ │ │ ├── tileset _2_73.asset │ │ │ ├── tileset _2_73.asset.meta │ │ │ ├── tileset _2_74.asset │ │ │ ├── tileset _2_74.asset.meta │ │ │ ├── tileset _2_75.asset │ │ │ ├── tileset _2_75.asset.meta │ │ │ ├── tileset _2_76.asset │ │ │ ├── tileset _2_76.asset.meta │ │ │ ├── tileset _2_77.asset │ │ │ ├── tileset _2_77.asset.meta │ │ │ ├── tileset _2_78.asset │ │ │ ├── tileset _2_78.asset.meta │ │ │ ├── tileset _2_79.asset │ │ │ ├── tileset _2_79.asset.meta │ │ │ ├── tileset _2_8.asset │ │ │ ├── tileset _2_8.asset.meta │ │ │ ├── tileset _2_80.asset │ │ │ ├── tileset _2_80.asset.meta │ │ │ ├── tileset _2_81.asset │ │ │ ├── tileset _2_81.asset.meta │ │ │ ├── tileset _2_82.asset │ │ │ ├── tileset _2_82.asset.meta │ │ │ ├── tileset _2_83.asset │ │ │ ├── tileset _2_83.asset.meta │ │ │ ├── tileset _2_84.asset │ │ │ ├── tileset _2_84.asset.meta │ │ │ ├── tileset _2_85.asset │ │ │ ├── tileset _2_85.asset.meta │ │ │ ├── tileset _2_87.asset │ │ │ ├── tileset _2_87.asset.meta │ │ │ ├── tileset _2_88.asset │ │ │ ├── tileset _2_88.asset.meta │ │ │ ├── tileset _2_89.asset │ │ │ ├── tileset _2_89.asset.meta │ │ │ ├── tileset _2_9.asset │ │ │ ├── tileset _2_9.asset.meta │ │ │ ├── tileset _2_90.asset │ │ │ ├── tileset _2_90.asset.meta │ │ │ ├── tileset _2_91.asset │ │ │ ├── tileset _2_91.asset.meta │ │ │ ├── tileset _2_92.asset │ │ │ ├── tileset _2_92.asset.meta │ │ │ ├── tileset _2_93.asset │ │ │ ├── tileset _2_93.asset.meta │ │ │ ├── tileset _2_94.asset │ │ │ ├── tileset _2_94.asset.meta │ │ │ ├── tileset _2_95.asset │ │ │ ├── tileset _2_95.asset.meta │ │ │ ├── tileset _2_96.asset │ │ │ ├── tileset _2_96.asset.meta │ │ │ ├── tileset _2_97.asset │ │ │ ├── tileset _2_97.asset.meta │ │ │ ├── tileset _2_98.asset │ │ │ ├── tileset _2_98.asset.meta │ │ │ ├── tileset _2_99.asset │ │ │ └── tileset _2_99.asset.meta │ ├── AllIn1SpriteShader.meta │ ├── AllIn1SpriteShader │ │ ├── Demo.meta │ │ ├── Demo │ │ │ ├── Animation.meta │ │ │ ├── Animation │ │ │ │ ├── Alpha Cutoff.controller │ │ │ │ ├── Alpha Cutoff.controller.meta │ │ │ │ ├── AlphaCutoff.anim │ │ │ │ ├── AlphaCutoff.anim.meta │ │ │ │ ├── AtlasSpriteBoy.controller │ │ │ │ ├── AtlasSpriteBoy.controller.meta │ │ │ │ ├── Blur.anim │ │ │ │ ├── Blur.anim.meta │ │ │ │ ├── Blur.controller │ │ │ │ ├── Blur.controller.meta │ │ │ │ ├── Burn.anim │ │ │ │ ├── Burn.anim.meta │ │ │ │ ├── Burn.controller │ │ │ │ ├── Burn.controller.meta │ │ │ │ ├── BurningSoldier.anim │ │ │ │ ├── BurningSoldier.anim.meta │ │ │ │ ├── BurningSoldier.controller │ │ │ │ ├── BurningSoldier.controller.meta │ │ │ │ ├── CrazyPattern.anim │ │ │ │ ├── CrazyPattern.anim.meta │ │ │ │ ├── CrazyPattern.controller │ │ │ │ ├── CrazyPattern.controller.meta │ │ │ │ ├── CustomGradient.anim │ │ │ │ ├── CustomGradient.anim.meta │ │ │ │ ├── CustomGradient.controller │ │ │ │ ├── CustomGradient.controller.meta │ │ │ │ ├── Fade.anim │ │ │ │ ├── Fade.anim.meta │ │ │ │ ├── Fade.controller │ │ │ │ ├── Fade.controller.meta │ │ │ │ ├── Fill Amount 1.controller │ │ │ │ ├── Fill Amount 1.controller.meta │ │ │ │ ├── Fill Amount.controller │ │ │ │ ├── Fill Amount.controller.meta │ │ │ │ ├── FillAmount.anim │ │ │ │ ├── FillAmount.anim.meta │ │ │ │ ├── Fish Eye.controller │ │ │ │ ├── Fish Eye.controller.meta │ │ │ │ ├── Frame.controller │ │ │ │ ├── Frame.controller.meta │ │ │ │ ├── Hallucination.anim │ │ │ │ ├── Hallucination.anim.meta │ │ │ │ ├── Hit Effect 1.controller │ │ │ │ ├── Hit Effect 1.controller.meta │ │ │ │ ├── Hit Effect.controller │ │ │ │ ├── Hit Effect.controller.meta │ │ │ │ ├── HitEffect.anim │ │ │ │ ├── HitEffect.anim.meta │ │ │ │ ├── Hologram.anim │ │ │ │ ├── Hologram.anim.meta │ │ │ │ ├── IceSoldier.anim │ │ │ │ ├── IceSoldier.anim.meta │ │ │ │ ├── IceSoldier.controller │ │ │ │ ├── IceSoldier.controller.meta │ │ │ │ ├── Impact.controller │ │ │ │ ├── Impact.controller.meta │ │ │ │ ├── Impact1.anim │ │ │ │ ├── Impact1.anim.meta │ │ │ │ ├── MotionBlur.anim │ │ │ │ ├── MotionBlur.anim.meta │ │ │ │ ├── Offset.anim │ │ │ │ ├── Offset.anim.meta │ │ │ │ ├── Offset.controller │ │ │ │ ├── Offset.controller.meta │ │ │ │ ├── Original.controller │ │ │ │ ├── Original.controller.meta │ │ │ │ ├── Posterize.anim │ │ │ │ ├── Posterize.anim.meta │ │ │ │ ├── Posterize.controller │ │ │ │ ├── Posterize.controller.meta │ │ │ │ ├── Rotate.anim │ │ │ │ ├── Rotate.anim.meta │ │ │ │ ├── Rotate.controller │ │ │ │ ├── Rotate.controller.meta │ │ │ │ ├── ScreenHit.anim │ │ │ │ ├── ScreenHit.anim.meta │ │ │ │ ├── ScreenHit.controller │ │ │ │ ├── ScreenHit.controller.meta │ │ │ │ ├── Shield Soldier.controller │ │ │ │ ├── Shield Soldier.controller.meta │ │ │ │ ├── ShieldSparksPS.anim │ │ │ │ ├── ShieldSparksPS.anim.meta │ │ │ │ ├── Shine.anim │ │ │ │ ├── Shine.anim.meta │ │ │ │ ├── Shine.controller │ │ │ │ ├── Shine.controller.meta │ │ │ │ ├── ShinyBoy.anim │ │ │ │ ├── ShinyBoy.anim.meta │ │ │ │ ├── Soldier.controller │ │ │ │ ├── Soldier.controller.meta │ │ │ │ ├── SoldierRun.anim │ │ │ │ ├── SoldierRun.anim.meta │ │ │ │ ├── Sprite.controller │ │ │ │ ├── Sprite.controller.meta │ │ │ │ ├── Teleport.anim │ │ │ │ ├── Teleport.anim.meta │ │ │ │ ├── Twist 1.controller │ │ │ │ ├── Twist 1.controller.meta │ │ │ │ ├── Twist.anim │ │ │ │ ├── Twist.anim.meta │ │ │ │ ├── Twist.controller │ │ │ │ ├── Twist.controller.meta │ │ │ │ ├── TwistDisappear.anim │ │ │ │ ├── TwistDisappear.anim.meta │ │ │ │ ├── Zoom.anim │ │ │ │ ├── Zoom.anim.meta │ │ │ │ ├── Zoom.controller │ │ │ │ ├── Zoom.controller.meta │ │ │ │ ├── hpBar.anim │ │ │ │ └── hpBar.anim.meta │ │ │ ├── Demo.unity │ │ │ ├── Demo.unity.meta │ │ │ ├── Demo2.unity │ │ │ ├── Demo2.unity.meta │ │ │ ├── Fonts.meta │ │ │ ├── Fonts │ │ │ │ ├── CaviarDreams.ttf │ │ │ │ ├── CaviarDreams.ttf.meta │ │ │ │ ├── CaviarDreams_Bold.ttf │ │ │ │ ├── CaviarDreams_Bold.ttf.meta │ │ │ │ ├── PoetsenOne-Regular.ttf │ │ │ │ └── PoetsenOne-Regular.ttf.meta │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ │ ├── Color Ramp Gradient.mat │ │ │ │ ├── Color Ramp Gradient.mat.meta │ │ │ │ ├── DemoGradient.mat │ │ │ │ ├── DemoGradient.mat.meta │ │ │ │ ├── Fire.mat │ │ │ │ ├── Fire.mat.meta │ │ │ │ ├── FireSoldier.mat │ │ │ │ ├── FireSoldier.mat.meta │ │ │ │ ├── Ice.mat │ │ │ │ ├── Ice.mat.meta │ │ │ │ ├── IceSoldier.mat │ │ │ │ ├── IceSoldier.mat.meta │ │ │ │ ├── MagicRing.mat │ │ │ │ ├── MagicRing.mat.meta │ │ │ │ ├── Outline1.mat │ │ │ │ ├── Outline1.mat.meta │ │ │ │ ├── Shield.mat │ │ │ │ ├── Shield.mat.meta │ │ │ │ ├── ShieldSoldier.mat │ │ │ │ ├── ShieldSoldier.mat.meta │ │ │ │ ├── SnowFlake.mat │ │ │ │ ├── SnowFlake.mat.meta │ │ │ │ ├── Sparks.mat │ │ │ │ └── Sparks.mat.meta │ │ │ ├── PostProcessProfiles.meta │ │ │ ├── PostProcessProfiles │ │ │ │ ├── AllIn1PostProcessing.asset │ │ │ │ └── AllIn1PostProcessing.asset.meta │ │ │ ├── Scripts.meta │ │ │ ├── Scripts │ │ │ │ ├── All1ShaderDemoController.cs │ │ │ │ ├── All1ShaderDemoController.cs.meta │ │ │ │ ├── All1TextureOffsetOverTime.cs │ │ │ │ ├── All1TextureOffsetOverTime.cs.meta │ │ │ │ ├── AllIn1ScrollProperty.cs │ │ │ │ ├── AllIn1ScrollProperty.cs.meta │ │ │ │ ├── Demo2AutoScroll.cs │ │ │ │ ├── Demo2AutoScroll.cs.meta │ │ │ │ ├── DemoCamera.cs │ │ │ │ ├── DemoCamera.cs.meta │ │ │ │ ├── DemoCircleExpositor.cs │ │ │ │ ├── DemoCircleExpositor.cs.meta │ │ │ │ ├── DemoItem.cs │ │ │ │ ├── DemoItem.cs.meta │ │ │ │ ├── DemoRandomColorSwap.cs │ │ │ │ ├── DemoRandomColorSwap.cs.meta │ │ │ │ ├── DemoRepositionExpositor.cs │ │ │ │ └── DemoRepositionExpositor.cs.meta │ │ │ ├── Textures.meta │ │ │ └── Textures │ │ │ │ ├── BoyGirl.png │ │ │ │ ├── BoyGirl.png.meta │ │ │ │ ├── Circle.png │ │ │ │ ├── Circle.png.meta │ │ │ │ ├── IceTexture.png │ │ │ │ ├── IceTexture.png.meta │ │ │ │ ├── Square.png │ │ │ │ ├── Square.png.meta │ │ │ │ ├── backMountain.png │ │ │ │ ├── backMountain.png.meta │ │ │ │ ├── coals.png │ │ │ │ ├── coals.png.meta │ │ │ │ ├── coalsEmissive.png │ │ │ │ ├── coalsEmissive.png.meta │ │ │ │ ├── flag.png │ │ │ │ ├── flag.png.meta │ │ │ │ ├── flameShape.png │ │ │ │ ├── flameShape.png.meta │ │ │ │ ├── grass.png │ │ │ │ ├── grass.png.meta │ │ │ │ ├── magicAura.png │ │ │ │ ├── magicAura.png.meta │ │ │ │ ├── magic_particle.png │ │ │ │ ├── magic_particle.png.meta │ │ │ │ ├── shield.png │ │ │ │ ├── shield.png.meta │ │ │ │ ├── shieldGlow.png │ │ │ │ ├── shieldGlow.png.meta │ │ │ │ ├── snowFlake.png │ │ │ │ ├── snowFlake.png.meta │ │ │ │ ├── spaceSoldier.png │ │ │ │ ├── spaceSoldier.png.meta │ │ │ │ ├── spaceSoldierColorSwap.png │ │ │ │ ├── spaceSoldierColorSwap.png.meta │ │ │ │ ├── spaceSoldierGlow.png │ │ │ │ ├── spaceSoldierGlow.png.meta │ │ │ │ ├── spaceSoldierHelmetTopMask.png │ │ │ │ ├── spaceSoldierHelmetTopMask.png.meta │ │ │ │ ├── spaceSoldierNormal.png │ │ │ │ ├── spaceSoldierNormal.png.meta │ │ │ │ ├── spark.png │ │ │ │ ├── spark.png.meta │ │ │ │ ├── splotch.png │ │ │ │ ├── splotch.png.meta │ │ │ │ ├── sunDoodle.png │ │ │ │ ├── sunDoodle.png.meta │ │ │ │ ├── water.png │ │ │ │ └── water.png.meta │ │ ├── Documentation.pdf │ │ ├── Documentation.pdf.meta │ │ ├── Editor.meta │ │ ├── Editor │ │ │ ├── AllIn1ShaderGradientDrawer.cs │ │ │ ├── AllIn1ShaderGradientDrawer.cs.meta │ │ │ ├── AllIn1ShaderScriptEditor.cs │ │ │ ├── AllIn1ShaderScriptEditor.cs.meta │ │ │ ├── AllIn1SpriteShader.cs │ │ │ ├── AllIn1SpriteShader.cs.meta │ │ │ ├── AllIn1SpriteShaderStencil.cs │ │ │ ├── AllIn1SpriteShaderStencil.cs.meta │ │ │ ├── AllIn1UrpShader.cs │ │ │ └── AllIn1UrpShader.cs.meta │ │ ├── Materials.meta │ │ ├── Materials │ │ │ ├── EmptyMaterial.mat │ │ │ ├── EmptyMaterial.mat.meta │ │ │ ├── Orb.mat │ │ │ ├── Orb.mat.meta │ │ │ ├── PlayerPart.mat │ │ │ ├── PlayerPart.mat.meta │ │ │ ├── PlayerSword.mat │ │ │ ├── PlayerSword.mat.meta │ │ │ ├── Powerup.mat │ │ │ ├── Powerup.mat.meta │ │ │ ├── ScaledTIme.mat │ │ │ ├── ScaledTIme.mat.meta │ │ │ ├── ScoreOrb.mat │ │ │ ├── ScoreOrb.mat.meta │ │ │ ├── UIStencil.mat │ │ │ └── UIStencil.mat.meta │ │ ├── Resources.meta │ │ ├── Resources │ │ │ ├── AllIn1OneShaderFunctions.cginc │ │ │ ├── AllIn1OneShaderFunctions.cginc.meta │ │ │ ├── AllIn1SpriteShader.shader │ │ │ ├── AllIn1SpriteShader.shader.meta │ │ │ ├── AllIn1SpriteShaderScaledTime.shader │ │ │ ├── AllIn1SpriteShaderScaledTime.shader.meta │ │ │ ├── AllIn1SpriteShaderUiMask.shader │ │ │ └── AllIn1SpriteShaderUiMask.shader.meta │ │ ├── Scripts.meta │ │ ├── Scripts │ │ │ ├── All1CreateUnifiedOutline.cs │ │ │ ├── All1CreateUnifiedOutline.cs.meta │ │ │ ├── AllIn1Shader.cs │ │ │ ├── AllIn1Shader.cs.meta │ │ │ ├── AllIn1ShaderWindow.cs │ │ │ ├── AllIn1ShaderWindow.cs.meta │ │ │ ├── RandomSeed.cs │ │ │ ├── RandomSeed.cs.meta │ │ │ ├── SetAtlasUvs.cs │ │ │ ├── SetAtlasUvs.cs.meta │ │ │ ├── SetGlobalTime.cs │ │ │ └── SetGlobalTime.cs.meta │ │ ├── Textures.meta │ │ ├── Textures │ │ │ ├── CustomEditorImage.png │ │ │ ├── CustomEditorImage.png.meta │ │ │ ├── CustomEditorImage2.png │ │ │ ├── CustomEditorImage2.png.meta │ │ │ ├── GradientTextures.meta │ │ │ ├── GradientTextures │ │ │ │ ├── gradientTexture_1.png │ │ │ │ ├── gradientTexture_1.png.meta │ │ │ │ ├── gradientTexture_2.png │ │ │ │ ├── gradientTexture_2.png.meta │ │ │ │ ├── palette-bumbleberry.psd │ │ │ │ ├── palette-bumbleberry.psd.meta │ │ │ │ ├── palette-cool.psd │ │ │ │ ├── palette-cool.psd.meta │ │ │ │ ├── palette-downwell.png │ │ │ │ ├── palette-downwell.png.meta │ │ │ │ ├── palette-earthy.psd │ │ │ │ ├── palette-earthy.psd.meta │ │ │ │ ├── palette-gameboy-pop-1x.png │ │ │ │ ├── palette-gameboy-pop-1x.png.meta │ │ │ │ ├── palette-gameboy.psd │ │ │ │ ├── palette-gameboy.psd.meta │ │ │ │ ├── palette-metroid-ii-sgb-1x.png │ │ │ │ ├── palette-metroid-ii-sgb-1x.png.meta │ │ │ │ ├── palette-mist-gb-1x.png │ │ │ │ ├── palette-mist-gb-1x.png.meta │ │ │ │ ├── palette-neapolitan.psd │ │ │ │ ├── palette-neapolitan.psd.meta │ │ │ │ ├── palette-nintendo-gameboy-bgb-1x.png │ │ │ │ ├── palette-nintendo-gameboy-bgb-1x.png.meta │ │ │ │ ├── palette-nintendo-gameboy-black-zero-1x.png │ │ │ │ ├── palette-nintendo-gameboy-black-zero-1x.png.meta │ │ │ │ ├── palette-platinum-1x.png │ │ │ │ ├── palette-platinum-1x.png.meta │ │ │ │ ├── shadeRamp.png │ │ │ │ ├── shadeRamp.png.meta │ │ │ │ ├── toonShadeRamp.png │ │ │ │ └── toonShadeRamp.png.meta │ │ │ ├── NormalMaps.meta │ │ │ ├── NormalMaps │ │ │ │ ├── spaceSoldierNormalMap.png │ │ │ │ └── spaceSoldierNormalMap.png.meta │ │ │ ├── UVChecker.png │ │ │ ├── UVChecker.png.meta │ │ │ ├── black.png │ │ │ ├── black.png.meta │ │ │ ├── fire.png │ │ │ ├── fire.png.meta │ │ │ ├── fire2.png │ │ │ ├── fire2.png.meta │ │ │ ├── flameNoise.png │ │ │ ├── flameNoise.png.meta │ │ │ ├── flameNoise2.png │ │ │ ├── flameNoise2.png.meta │ │ │ ├── gradient.png │ │ │ ├── gradient.png.meta │ │ │ ├── gradient2.png │ │ │ ├── gradient2.png.meta │ │ │ ├── rainbow.png │ │ │ ├── rainbow.png.meta │ │ │ ├── seamlessNoise.png │ │ │ ├── seamlessNoise.png.meta │ │ │ ├── toonSeamlessNoise.png │ │ │ ├── toonSeamlessNoise.png.meta │ │ │ ├── white.png │ │ │ └── white.png.meta │ │ └── URP_Import_All1Sh.unitypackage.meta │ ├── Animation.meta │ ├── Animation │ │ ├── AnimationControllers.meta │ │ ├── AnimationControllers │ │ │ ├── Combat.meta │ │ │ ├── Combat │ │ │ │ ├── Base.meta │ │ │ │ ├── Base │ │ │ │ │ ├── Base_Sword_AC.controller │ │ │ │ │ └── Base_Sword_AC.controller.meta │ │ │ │ ├── Weapon.meta │ │ │ │ └── Weapon │ │ │ │ │ ├── Weapon_Sword_AC.controller │ │ │ │ │ └── Weapon_Sword_AC.controller.meta │ │ │ ├── Decorations.meta │ │ │ ├── Decorations │ │ │ │ ├── EasterEgg.controller │ │ │ │ ├── EasterEgg.controller.meta │ │ │ │ ├── Grass AC.controller │ │ │ │ └── Grass AC.controller.meta │ │ │ ├── DropLoot.controller │ │ │ ├── DropLoot.controller.meta │ │ │ ├── Enemies.meta │ │ │ ├── Enemies │ │ │ │ ├── Dummy AC.controller │ │ │ │ ├── Dummy AC.controller.meta │ │ │ │ ├── Enemy1 AC.controller │ │ │ │ ├── Enemy1 AC.controller.meta │ │ │ │ ├── Enemy2 AC.controller │ │ │ │ ├── Enemy2 AC.controller.meta │ │ │ │ ├── Enemy3 AC.controller │ │ │ │ ├── Enemy3 AC.controller.meta │ │ │ │ ├── Enemy4 AC.controller │ │ │ │ ├── Enemy4 AC.controller.meta │ │ │ │ ├── Enemy5 AC.controller │ │ │ │ ├── Enemy5 AC.controller.meta │ │ │ │ ├── Enemy6 AC.controller │ │ │ │ ├── Enemy6 AC.controller.meta │ │ │ │ ├── Enemy7 AC.controller │ │ │ │ └── Enemy7 AC.controller.meta │ │ │ ├── Gems.controller │ │ │ ├── Gems.controller.meta │ │ │ ├── Npc.meta │ │ │ ├── Npc │ │ │ │ ├── BirdFly AC.controller │ │ │ │ ├── BirdFly AC.controller.meta │ │ │ │ ├── BirdIdle AC.controller │ │ │ │ ├── BirdIdle AC.controller.meta │ │ │ │ ├── Blacksmith AC.controller │ │ │ │ ├── Blacksmith AC.controller.meta │ │ │ │ ├── Merchant AC.controller │ │ │ │ ├── Merchant AC.controller.meta │ │ │ │ ├── Npc AC.controller │ │ │ │ └── Npc AC.controller.meta │ │ │ ├── Particles.meta │ │ │ ├── Particles │ │ │ │ ├── Particle AC.controller │ │ │ │ ├── Particle AC.controller.meta │ │ │ │ ├── Particle Skill AC.controller │ │ │ │ └── Particle Skill AC.controller.meta │ │ │ ├── Player.meta │ │ │ ├── Player │ │ │ │ ├── Old Player AC.controller │ │ │ │ ├── Old Player AC.controller.meta │ │ │ │ ├── Oldest Player AC.controller │ │ │ │ ├── Oldest Player AC.controller.meta │ │ │ │ ├── Player AC.controller │ │ │ │ ├── Player AC.controller.meta │ │ │ │ ├── Player Color AC.controller │ │ │ │ └── Player Color AC.controller.meta │ │ │ ├── Powerup.controller │ │ │ └── Powerup.controller.meta │ │ ├── Animations.meta │ │ └── Animations │ │ │ ├── Combat Dummy.meta │ │ │ ├── Combat Dummy │ │ │ ├── CombatDummy_Damage_Left.anim │ │ │ ├── CombatDummy_Damage_Left.anim.meta │ │ │ ├── CombatDummy_Damage_Right.anim │ │ │ ├── CombatDummy_Damage_Right.anim.meta │ │ │ ├── CombatDummy_Idle.anim │ │ │ └── CombatDummy_Idle.anim.meta │ │ │ ├── Combat.meta │ │ │ ├── Combat │ │ │ ├── Weapon.meta │ │ │ └── Weapon │ │ │ │ ├── Sword.meta │ │ │ │ └── Sword │ │ │ │ ├── Weapon_Sword1_1.anim │ │ │ │ ├── Weapon_Sword1_1.anim.meta │ │ │ │ ├── Weapon_Sword1_2.anim │ │ │ │ └── Weapon_Sword1_2.anim.meta │ │ │ ├── Decorations.meta │ │ │ ├── Decorations │ │ │ ├── EasterEgg.anim │ │ │ ├── EasterEgg.anim.meta │ │ │ ├── FireBowl.anim │ │ │ ├── FireBowl.anim.meta │ │ │ ├── GrassIdle.anim │ │ │ ├── GrassIdle.anim.meta │ │ │ ├── GrassMove.anim │ │ │ ├── GrassMove.anim.meta │ │ │ ├── firebowl_0.controller │ │ │ └── firebowl_0.controller.meta │ │ │ ├── DropLoot.anim │ │ │ ├── DropLoot.anim.meta │ │ │ ├── Empty.anim │ │ │ ├── Empty.anim.meta │ │ │ ├── Enemies.meta │ │ │ ├── Enemies │ │ │ ├── Enemy1.meta │ │ │ ├── Enemy1 │ │ │ │ ├── Enemy1_Charge.anim │ │ │ │ ├── Enemy1_Charge.anim.meta │ │ │ │ ├── Enemy1_Hurt.anim │ │ │ │ ├── Enemy1_Hurt.anim.meta │ │ │ │ ├── Enemy1_Idle.anim │ │ │ │ ├── Enemy1_Idle.anim.meta │ │ │ │ ├── Enemy1_MeleeAttack.anim │ │ │ │ ├── Enemy1_MeleeAttack.anim.meta │ │ │ │ ├── Enemy1_PlayerDetected.anim │ │ │ │ ├── Enemy1_PlayerDetected.anim.meta │ │ │ │ ├── Enemy1_Stun.anim │ │ │ │ ├── Enemy1_Stun.anim.meta │ │ │ │ ├── Enemy1_Walk.anim │ │ │ │ └── Enemy1_Walk.anim.meta │ │ │ ├── Enemy2.meta │ │ │ ├── Enemy2 │ │ │ │ ├── Enemy2_DodgeDown.anim │ │ │ │ ├── Enemy2_DodgeDown.anim.meta │ │ │ │ ├── Enemy2_DodgeStart.anim │ │ │ │ ├── Enemy2_DodgeStart.anim.meta │ │ │ │ ├── Enemy2_DodgeUp.anim │ │ │ │ ├── Enemy2_DodgeUp.anim.meta │ │ │ │ ├── Enemy2_MeleeAttack.anim │ │ │ │ ├── Enemy2_MeleeAttack.anim.meta │ │ │ │ ├── Enemy2_PlayerDetected.anim │ │ │ │ ├── Enemy2_PlayerDetected.anim.meta │ │ │ │ ├── Enemy2_RangeAttack.anim │ │ │ │ ├── Enemy2_RangeAttack.anim.meta │ │ │ │ ├── Enemy2_Stun.anim │ │ │ │ ├── Enemy2_Stun.anim.meta │ │ │ │ ├── Enemy2_idle.anim │ │ │ │ ├── Enemy2_idle.anim.meta │ │ │ │ ├── Enemy2_move.anim │ │ │ │ └── Enemy2_move.anim.meta │ │ │ ├── Enemy3.meta │ │ │ ├── Enemy3 │ │ │ │ ├── Enemy3_Charge.anim │ │ │ │ ├── Enemy3_Charge.anim.meta │ │ │ │ ├── Enemy3_Dead.anim │ │ │ │ ├── Enemy3_Dead.anim.meta │ │ │ │ ├── Enemy3_Idle.anim │ │ │ │ ├── Enemy3_Idle.anim.meta │ │ │ │ ├── Enemy3_MeleeAttack1.anim │ │ │ │ ├── Enemy3_MeleeAttack1.anim.meta │ │ │ │ ├── Enemy3_MeleeAttack2.anim │ │ │ │ ├── Enemy3_MeleeAttack2.anim.meta │ │ │ │ ├── Enemy3_Move.anim │ │ │ │ ├── Enemy3_Move.anim.meta │ │ │ │ ├── Enemy3_Respawn.anim │ │ │ │ ├── Enemy3_Respawn.anim.meta │ │ │ │ ├── Enemy3_Stun.anim │ │ │ │ └── Enemy3_Stun.anim.meta │ │ │ ├── Enemy4.meta │ │ │ ├── Enemy4 │ │ │ │ ├── Enemy4_Dead.anim │ │ │ │ ├── Enemy4_Dead.anim.meta │ │ │ │ ├── Enemy4_Idle.anim │ │ │ │ ├── Enemy4_Idle.anim.meta │ │ │ │ ├── Enemy4_JumpDown.anim │ │ │ │ ├── Enemy4_JumpDown.anim.meta │ │ │ │ ├── Enemy4_JumpTakeOf.anim │ │ │ │ ├── Enemy4_JumpTakeOf.anim.meta │ │ │ │ ├── Enemy4_JumpUp.anim │ │ │ │ ├── Enemy4_JumpUp.anim.meta │ │ │ │ ├── Enemy4_Land.anim │ │ │ │ ├── Enemy4_Land.anim.meta │ │ │ │ ├── Enemy4_MeleeAttack.anim │ │ │ │ ├── Enemy4_MeleeAttack.anim.meta │ │ │ │ ├── Enemy4_Move.anim │ │ │ │ ├── Enemy4_Move.anim.meta │ │ │ │ ├── Enemy4_RangeAttack.anim │ │ │ │ ├── Enemy4_RangeAttack.anim.meta │ │ │ │ ├── Enemy4_Respawn.anim │ │ │ │ ├── Enemy4_Respawn.anim.meta │ │ │ │ ├── Enemy4_Stun.anim │ │ │ │ └── Enemy4_Stun.anim.meta │ │ │ ├── Enemy5.meta │ │ │ ├── Enemy5 │ │ │ │ ├── Enemy5_Charge.anim │ │ │ │ ├── Enemy5_Charge.anim.meta │ │ │ │ ├── Enemy5_Dead.anim │ │ │ │ ├── Enemy5_Dead.anim.meta │ │ │ │ ├── Enemy5_Idle.anim │ │ │ │ ├── Enemy5_Idle.anim.meta │ │ │ │ ├── Enemy5_MeleeAttack1.anim │ │ │ │ ├── Enemy5_MeleeAttack1.anim.meta │ │ │ │ ├── Enemy5_Move.anim │ │ │ │ ├── Enemy5_Move.anim.meta │ │ │ │ ├── Enemy5_Respawn.anim │ │ │ │ ├── Enemy5_Respawn.anim.meta │ │ │ │ ├── Enemy5_Stun.anim │ │ │ │ └── Enemy5_Stun.anim.meta │ │ │ ├── Enemy6.meta │ │ │ ├── Enemy6 │ │ │ │ ├── Enemy6_Dead.anim │ │ │ │ ├── Enemy6_Dead.anim.meta │ │ │ │ ├── Enemy6_Idle.anim │ │ │ │ ├── Enemy6_Idle.anim.meta │ │ │ │ ├── Enemy6_MeleeAttack.anim │ │ │ │ ├── Enemy6_MeleeAttack.anim.meta │ │ │ │ ├── Enemy6_Move.anim │ │ │ │ ├── Enemy6_Move.anim.meta │ │ │ │ ├── Enemy6_RangeAttack.anim │ │ │ │ ├── Enemy6_RangeAttack.anim.meta │ │ │ │ ├── Enemy6_Respawn.anim │ │ │ │ ├── Enemy6_Respawn.anim.meta │ │ │ │ ├── Enemy6_Stun.anim │ │ │ │ ├── Enemy6_Stun.anim.meta │ │ │ │ ├── Enemy6_TpAway.anim │ │ │ │ ├── Enemy6_TpAway.anim.meta │ │ │ │ ├── Enemy6_TpBack.anim │ │ │ │ └── Enemy6_TpBack.anim.meta │ │ │ ├── Enemy7.meta │ │ │ └── Enemy7 │ │ │ │ ├── Enemy7_Dead.anim │ │ │ │ ├── Enemy7_Dead.anim.meta │ │ │ │ ├── Enemy7_Idle.anim │ │ │ │ ├── Enemy7_Idle.anim.meta │ │ │ │ ├── Enemy7_MeleeAttack1.anim │ │ │ │ ├── Enemy7_MeleeAttack1.anim.meta │ │ │ │ ├── Enemy7_MeleeAttack2.anim │ │ │ │ ├── Enemy7_MeleeAttack2.anim.meta │ │ │ │ ├── Enemy7_MeleeAttack3.anim │ │ │ │ ├── Enemy7_MeleeAttack3.anim.meta │ │ │ │ ├── Enemy7_Move.anim │ │ │ │ ├── Enemy7_Move.anim.meta │ │ │ │ ├── Enemy7_Repsawn.anim │ │ │ │ ├── Enemy7_Repsawn.anim.meta │ │ │ │ ├── Enemy7_Stun.anim │ │ │ │ └── Enemy7_Stun.anim.meta │ │ │ ├── Gems.anim │ │ │ ├── Gems.anim.meta │ │ │ ├── Npc.meta │ │ │ ├── Npc │ │ │ ├── Bee.anim │ │ │ ├── Bee.anim.meta │ │ │ ├── BirdFly.anim │ │ │ ├── BirdFly.anim.meta │ │ │ ├── BirdIdle.anim │ │ │ ├── BirdIdle.anim.meta │ │ │ ├── Blacksmith.anim │ │ │ ├── Blacksmith.anim.meta │ │ │ ├── Merchant.anim │ │ │ ├── Merchant.anim.meta │ │ │ ├── run_00.controller │ │ │ └── run_00.controller.meta │ │ │ ├── Particles.meta │ │ │ ├── Particles │ │ │ ├── HitParticles.anim │ │ │ ├── HitParticles.anim.meta │ │ │ ├── ProjectileSkill.anim │ │ │ └── ProjectileSkill.anim.meta │ │ │ ├── Player.meta │ │ │ ├── Player │ │ │ ├── CrouchIdle.anim │ │ │ ├── CrouchIdle.anim.meta │ │ │ ├── CrouchMove.anim │ │ │ ├── CrouchMove.anim.meta │ │ │ ├── Dash.anim │ │ │ ├── Dash.anim.meta │ │ │ ├── DashStart.anim │ │ │ ├── DashStart.anim.meta │ │ │ ├── FallDown.anim │ │ │ ├── FallDown.anim.meta │ │ │ ├── FallUp.anim │ │ │ ├── FallUp.anim.meta │ │ │ ├── Hurt.anim │ │ │ ├── Hurt.anim.meta │ │ │ ├── Idle.anim │ │ │ ├── Idle.anim.meta │ │ │ ├── JumpDown.anim │ │ │ ├── JumpDown.anim.meta │ │ │ ├── JumpUp.anim │ │ │ ├── JumpUp.anim.meta │ │ │ ├── Land.anim │ │ │ ├── Land.anim.meta │ │ │ ├── LedgeClimb.anim │ │ │ ├── LedgeClimb.anim.meta │ │ │ ├── LedgeGrab.anim │ │ │ ├── LedgeGrab.anim.meta │ │ │ ├── LedgeHold.anim │ │ │ ├── LedgeHold.anim.meta │ │ │ ├── MeleeAttack1.anim │ │ │ ├── MeleeAttack1.anim.meta │ │ │ ├── MeleeAttack2.anim │ │ │ ├── MeleeAttack2.anim.meta │ │ │ ├── MeleeAttack3.anim │ │ │ ├── MeleeAttack3.anim.meta │ │ │ ├── MeleeAttack4.anim │ │ │ ├── MeleeAttack4.anim.meta │ │ │ ├── MeleeAttack5.anim │ │ │ ├── MeleeAttack5.anim.meta │ │ │ ├── Move.anim │ │ │ ├── Move.anim.meta │ │ │ ├── Old.meta │ │ │ ├── Old │ │ │ │ ├── LedgeClimbCrouch.anim │ │ │ │ ├── LedgeClimbCrouch.anim.meta │ │ │ │ ├── MeleeAttack6.anim │ │ │ │ ├── MeleeAttack6.anim.meta │ │ │ │ ├── WallClimb.anim │ │ │ │ ├── WallClimb.anim.meta │ │ │ │ ├── WallGrab.anim │ │ │ │ └── WallGrab.anim.meta │ │ │ ├── ParryEnd.anim │ │ │ ├── ParryEnd.anim.meta │ │ │ ├── ParryIdle.anim │ │ │ ├── ParryIdle.anim.meta │ │ │ ├── ParryMove.anim │ │ │ ├── ParryMove.anim.meta │ │ │ ├── ParryStart.anim │ │ │ ├── ParryStart.anim.meta │ │ │ ├── PowerupGlow.anim │ │ │ ├── PowerupGlow.anim.meta │ │ │ ├── TakeOf.anim │ │ │ ├── TakeOf.anim.meta │ │ │ ├── WallSlide.anim │ │ │ └── WallSlide.anim.meta │ │ │ ├── Powerup.anim │ │ │ └── Powerup.anim.meta │ ├── Animations UI.meta │ ├── Animations UI │ │ ├── ConfirmationPopup.anim │ │ ├── ConfirmationPopup.anim.meta │ │ ├── ConfirmationPopup.controller │ │ ├── ConfirmationPopup.controller.meta │ │ ├── EdgeAnimation.anim │ │ ├── EdgeAnimation.anim.meta │ │ ├── GameoverPanelScene1.controller │ │ ├── GameoverPanelScene1.controller.meta │ │ ├── GameoverPanelScene2.controller │ │ ├── GameoverPanelScene2.controller.meta │ │ ├── GameoverScene1.anim │ │ ├── GameoverScene1.anim.meta │ │ ├── GameoverScene2.anim │ │ ├── GameoverScene2.anim.meta │ │ ├── GameoverScene2Part2.anim │ │ ├── GameoverScene2Part2.anim.meta │ │ ├── MenuAnims.controller │ │ ├── MenuAnims.controller.meta │ │ ├── SettingsPanels.anim │ │ ├── SettingsPanels.anim.meta │ │ ├── Sound Dialog Menu.controller │ │ ├── Sound Dialog Menu.controller.meta │ │ ├── WaitingForInput.anim │ │ ├── WaitingForInput.anim.meta │ │ ├── WaitingForInput.controller │ │ └── WaitingForInput.controller.meta │ ├── Art.meta │ ├── Art │ │ ├── Blood.psd │ │ ├── Blood.psd.meta │ │ ├── ButtonImage 1.png │ │ ├── ButtonImage 1.png.meta │ │ ├── ButtonImage copy.png │ │ ├── ButtonImage copy.png.meta │ │ ├── ButtonImage.png │ │ ├── ButtonImage.png.meta │ │ ├── ButtonImage2.png │ │ ├── ButtonImage2.png.meta │ │ ├── Dash Indicator.meta │ │ ├── Dash Indicator │ │ │ ├── dash.png │ │ │ └── dash.png.meta │ │ ├── DustSprite.png │ │ ├── DustSprite.png.meta │ │ ├── FixTiles.spriteatlas │ │ ├── FixTiles.spriteatlas.meta │ │ ├── GigaChad.jpg │ │ ├── GigaChad.jpg.meta │ │ ├── MainCharacterParts.meta │ │ ├── MainCharacterParts │ │ │ ├── BlueSword.png │ │ │ ├── BlueSword.png.meta │ │ │ ├── CyanSword.png │ │ │ ├── CyanSword.png.meta │ │ │ ├── DefaultSword.png │ │ │ ├── DefaultSword.png.meta │ │ │ ├── GreenSword.png │ │ │ ├── GreenSword.png.meta │ │ │ ├── PurpleSword.png │ │ │ ├── PurpleSword.png.meta │ │ │ ├── RedSword.png │ │ │ └── RedSword.png.meta │ │ ├── MainScreenBG-FullHD.png │ │ ├── MainScreenBG-FullHD.png.meta │ │ ├── ManaBar.meta │ │ ├── ManaBar │ │ │ ├── ManaBarBorder 1.png │ │ │ ├── ManaBarBorder 1.png.meta │ │ │ ├── ManaBarBorder.png │ │ │ ├── ManaBarBorder.png.meta │ │ │ ├── ManaBarEdge_0.png │ │ │ ├── ManaBarEdge_0.png.meta │ │ │ ├── ManaBarEdge_1.png │ │ │ ├── ManaBarEdge_1.png.meta │ │ │ ├── ManaBarEdge_2.png │ │ │ ├── ManaBarEdge_2.png.meta │ │ │ ├── Manabar2.png │ │ │ ├── Manabar2.png.meta │ │ │ ├── White_1x1.png │ │ │ └── White_1x1.png.meta │ │ ├── ObjectSprites.spriteatlas │ │ ├── ObjectSprites.spriteatlas.meta │ │ ├── Orbs.meta │ │ ├── Orbs │ │ │ ├── OrbGem.png │ │ │ ├── OrbGem.png.meta │ │ │ ├── Orb_01.png │ │ │ ├── Orb_01.png.meta │ │ │ ├── Orb_02.png │ │ │ ├── Orb_02.png.meta │ │ │ ├── Orb_03.png │ │ │ ├── Orb_03.png.meta │ │ │ ├── Orb_04.png │ │ │ ├── Orb_04.png.meta │ │ │ ├── Orb_05.png │ │ │ ├── Orb_05.png.meta │ │ │ ├── Orb_06.png │ │ │ ├── Orb_06.png.meta │ │ │ ├── orbScore1.png │ │ │ ├── orbScore1.png.meta │ │ │ ├── orbScore2.png │ │ │ ├── orbScore2.png.meta │ │ │ ├── orbScore3.png │ │ │ └── orbScore3.png.meta │ │ ├── Powerups.meta │ │ ├── Powerups │ │ │ ├── Powerup1-Shiny-Mid.png │ │ │ ├── Powerup1-Shiny-Mid.png.meta │ │ │ ├── Powerup1-Shiny-ParticleEffect.png │ │ │ ├── Powerup1-Shiny-ParticleEffect.png.meta │ │ │ ├── Powerup1-Shiny.png │ │ │ ├── Powerup1-Shiny.png.meta │ │ │ ├── Powerup2-Shiny-Mid.png │ │ │ ├── Powerup2-Shiny-Mid.png.meta │ │ │ ├── Powerup2-Shiny.png │ │ │ ├── Powerup2-Shiny.png.meta │ │ │ ├── Powerup3-Shiny-Mid.png │ │ │ ├── Powerup3-Shiny-Mid.png.meta │ │ │ ├── Powerup3-Shiny.png │ │ │ ├── Powerup3-Shiny.png.meta │ │ │ ├── Powerup4-Shiny-Mid.png │ │ │ ├── Powerup4-Shiny-Mid.png.meta │ │ │ ├── Powerup4-Shiny.png │ │ │ └── Powerup4-Shiny.png.meta │ │ ├── Rick-Rolled.jpg │ │ └── Rick-Rolled.jpg.meta │ ├── Audios.meta │ ├── Audios │ │ ├── Ambience-Caketown.ogg │ │ ├── Ambience-Caketown.ogg.meta │ │ ├── Ambience-Snowland_Loop.ogg │ │ ├── Ambience-Snowland_Loop.ogg.meta │ │ ├── Ambience-Woodland_Fantasy.ogg │ │ ├── Ambience-Woodland_Fantasy.ogg.meta │ │ ├── ArcherMelee.flac │ │ ├── ArcherMelee.flac.meta │ │ ├── BossHit.flac │ │ ├── BossHit.flac.meta │ │ ├── DropLoot1.flac │ │ ├── DropLoot1.flac.meta │ │ ├── DropLoot2.wav │ │ ├── DropLoot2.wav.meta │ │ ├── DropLoot3.flac │ │ ├── DropLoot3.flac.meta │ │ ├── GameoverAudio.mp3 │ │ ├── GameoverAudio.mp3.meta │ │ ├── GrassMove1.flac │ │ ├── GrassMove1.flac.meta │ │ ├── GrassMove2.flac │ │ ├── GrassMove2.flac.meta │ │ ├── GrassMove3.flac │ │ ├── GrassMove3.flac.meta │ │ ├── NpcDialogs.meta │ │ ├── NpcDialogs │ │ │ ├── DarknessTalk1.mp3 │ │ │ ├── DarknessTalk1.mp3.meta │ │ │ ├── DarknessTalk2.mp3 │ │ │ ├── DarknessTalk2.mp3.meta │ │ │ ├── DarknessTalk3.mp3 │ │ │ ├── DarknessTalk3.mp3.meta │ │ │ ├── DarknessTalk4.mp3 │ │ │ ├── DarknessTalk4.mp3.meta │ │ │ ├── NpcTalk1-1.mp3 │ │ │ ├── NpcTalk1-1.mp3.meta │ │ │ ├── NpcTalk1-2.mp3 │ │ │ ├── NpcTalk1-2.mp3.meta │ │ │ ├── NpcTalk1-3.mp3 │ │ │ ├── NpcTalk1-3.mp3.meta │ │ │ ├── NpcTalk1-4.mp3 │ │ │ ├── NpcTalk1-4.mp3.meta │ │ │ ├── NpcTalk2-1.mp3 │ │ │ ├── NpcTalk2-1.mp3.meta │ │ │ ├── NpcTalk3-1.mp3 │ │ │ ├── NpcTalk3-1.mp3.meta │ │ │ ├── NpcTalk3-2.mp3 │ │ │ ├── NpcTalk3-2.mp3.meta │ │ │ ├── NpcTalk4-1.mp3 │ │ │ ├── NpcTalk4-1.mp3.meta │ │ │ ├── NpcTalk5-1.mp3 │ │ │ ├── NpcTalk5-1.mp3.meta │ │ │ ├── NpcTalk5-2.mp3 │ │ │ ├── NpcTalk5-2.mp3.meta │ │ │ ├── NpcTalk5-3.mp3 │ │ │ ├── NpcTalk5-3.mp3.meta │ │ │ ├── NpcTalk6-1.mp3 │ │ │ ├── NpcTalk6-1.mp3.meta │ │ │ ├── NpcTalk6-2.mp3 │ │ │ ├── NpcTalk6-2.mp3.meta │ │ │ ├── NpcTalk6-3.mp3 │ │ │ ├── NpcTalk6-3.mp3.meta │ │ │ ├── NpcTalk6-4.mp3 │ │ │ ├── NpcTalk6-4.mp3.meta │ │ │ ├── NpcTalk7-1.mp3 │ │ │ ├── NpcTalk7-1.mp3.meta │ │ │ ├── NpcTalk7-2.mp3 │ │ │ └── NpcTalk7-2.mp3.meta │ │ ├── PlayerDash1.flac │ │ ├── PlayerDash1.flac.meta │ │ ├── PlayerDash2.flac │ │ ├── PlayerDash2.flac.meta │ │ ├── PlayerDashPre.flac │ │ ├── PlayerDashPre.flac.meta │ │ ├── PlayerHurt1.flac │ │ ├── PlayerHurt1.flac.meta │ │ ├── PlayerHurt2.flac │ │ ├── PlayerHurt2.flac.meta │ │ ├── PlayerJump1.flac │ │ ├── PlayerJump1.flac.meta │ │ ├── PlayerJump2.flac │ │ ├── PlayerJump2.flac.meta │ │ ├── PlayerLand.flac │ │ ├── PlayerLand.flac.meta │ │ ├── PlayerLedgeClimb.flac │ │ ├── PlayerLedgeClimb.flac.meta │ │ ├── PlayerMelee1-Alternative.flac │ │ ├── PlayerMelee1-Alternative.flac.meta │ │ ├── PlayerMelee1.flac │ │ ├── PlayerMelee1.flac.meta │ │ ├── PlayerMelee2-Alternative.flac │ │ ├── PlayerMelee2-Alternative.flac.meta │ │ ├── PlayerMelee2.flac │ │ ├── PlayerMelee2.flac.meta │ │ ├── PlayerMelee3-Alternative.flac │ │ ├── PlayerMelee3-Alternative.flac.meta │ │ ├── PlayerMelee3.flac │ │ ├── PlayerMelee3.flac.meta │ │ ├── PlayerParry.flac │ │ ├── PlayerParry.flac.meta │ │ ├── PlayerRun.flac │ │ ├── PlayerRun.flac.meta │ │ ├── PlayerRun1.flac │ │ ├── PlayerRun1.flac.meta │ │ ├── PlayerRun2.flac │ │ ├── PlayerRun2.flac.meta │ │ ├── PlayerRun3.flac │ │ ├── PlayerRun3.flac.meta │ │ ├── PlayerRun4.flac │ │ ├── PlayerRun4.flac.meta │ │ ├── PlayerRunGrass.flac │ │ ├── PlayerRunGrass.flac.meta │ │ ├── PlayerWallSlide.flac │ │ ├── PlayerWallSlide.flac.meta │ │ ├── Powerup.flac │ │ ├── Powerup.flac.meta │ │ ├── ScoreCalculationAudio.mp3 │ │ ├── ScoreCalculationAudio.mp3.meta │ │ ├── Shield.flac │ │ ├── Shield.flac.meta │ │ ├── ShopBoosts.flac │ │ ├── ShopBoosts.flac.meta │ │ ├── ShopOutfit.flac │ │ ├── ShopOutfit.flac.meta │ │ ├── ShopSwords.flac │ │ ├── ShopSwords.flac.meta │ │ ├── SkeletonAttack1.flac │ │ ├── SkeletonAttack1.flac.meta │ │ ├── SkeletonAttack2.flac │ │ ├── SkeletonAttack2.flac.meta │ │ ├── SkeletonAttack3.flac │ │ ├── SkeletonAttack3.flac.meta │ │ ├── SkeletonBow.ogg │ │ ├── SkeletonBow.ogg.meta │ │ ├── SkeletonDetection1.flac │ │ ├── SkeletonDetection1.flac.meta │ │ ├── SkeletonDetection2.flac │ │ ├── SkeletonDetection2.flac.meta │ │ ├── SkeletonDie2.flac │ │ ├── SkeletonDie2.flac.meta │ │ ├── SkeletonDodge1.flac │ │ ├── SkeletonDodge1.flac.meta │ │ ├── SkeletonDodge2.flac │ │ ├── SkeletonDodge2.flac.meta │ │ ├── SkeletonFall.flac │ │ ├── SkeletonFall.flac.meta │ │ ├── SkeletonHurt.flac │ │ ├── SkeletonHurt.flac.meta │ │ ├── SkeletonHurt1.flac │ │ ├── SkeletonHurt1.flac.meta │ │ ├── SkeletonHurt2.flac │ │ ├── SkeletonHurt2.flac.meta │ │ ├── SkeletonPierce.flac │ │ ├── SkeletonPierce.flac.meta │ │ ├── SkeletonRespawn.flac │ │ ├── SkeletonRespawn.flac.meta │ │ ├── SkeletonRespawn2.flac │ │ ├── SkeletonRespawn2.flac.meta │ │ ├── SkeletonShieldSlam.flac │ │ ├── SkeletonShieldSlam.flac.meta │ │ ├── SkeletonSpear.flac │ │ ├── SkeletonSpear.flac.meta │ │ ├── SkeletonSpell.flac │ │ ├── SkeletonSpell.flac.meta │ │ ├── SkeletonTeleport.flac │ │ ├── SkeletonTeleport.flac.meta │ │ ├── clickButton.wav │ │ └── clickButton.wav.meta │ ├── Editor.meta │ ├── Editor │ │ ├── EditorHelper.cs │ │ └── EditorHelper.cs.meta │ ├── Materials.meta │ ├── Materials │ │ ├── DustCloudMaterial.mat │ │ ├── DustCloudMaterial.mat.meta │ │ ├── FixGaps.mat │ │ ├── FixGaps.mat.meta │ │ ├── PlayerMat.physicsMaterial2D │ │ └── PlayerMat.physicsMaterial2D.meta │ ├── Prefabs.meta │ ├── Prefabs │ │ ├── AfterImage.prefab │ │ ├── AfterImage.prefab.meta │ │ ├── Arrow.prefab │ │ ├── Arrow.prefab.meta │ │ ├── BeeFly.prefab │ │ ├── BeeFly.prefab.meta │ │ ├── Combat Dummy.prefab │ │ ├── Combat Dummy.prefab.meta │ │ ├── DamagePopup.prefab │ │ ├── DamagePopup.prefab.meta │ │ ├── DamagePowerup.prefab │ │ ├── DamagePowerup.prefab.meta │ │ ├── DamagePowerupCountdownBar.prefab │ │ ├── DamagePowerupCountdownBar.prefab.meta │ │ ├── DamagePowerupTrainScene.prefab │ │ ├── DamagePowerupTrainScene.prefab.meta │ │ ├── DeathBloodParticle.prefab │ │ ├── DeathBloodParticle.prefab.meta │ │ ├── DeathChunkParticle.prefab │ │ ├── DeathChunkParticle.prefab.meta │ │ ├── DropLootBlue.prefab │ │ ├── DropLootBlue.prefab.meta │ │ ├── DropLootCyan.prefab │ │ ├── DropLootCyan.prefab.meta │ │ ├── DropLootGreen.prefab │ │ ├── DropLootGreen.prefab.meta │ │ ├── DropLootPurple.prefab │ │ ├── DropLootPurple.prefab.meta │ │ ├── DropLootRed.prefab │ │ ├── DropLootRed.prefab.meta │ │ ├── DropLootYellow.prefab │ │ ├── DropLootYellow.prefab.meta │ │ ├── DustParticle.prefab │ │ ├── DustParticle.prefab.meta │ │ ├── Enemy3.prefab │ │ ├── Enemy3.prefab.meta │ │ ├── Enemy4.prefab │ │ ├── Enemy4.prefab.meta │ │ ├── Enemy5.prefab │ │ ├── Enemy5.prefab.meta │ │ ├── Enemy6.prefab │ │ ├── Enemy6.prefab.meta │ │ ├── Enemy7.prefab │ │ ├── Enemy7.prefab.meta │ │ ├── HealthPowerup.prefab │ │ ├── HealthPowerup.prefab.meta │ │ ├── HealthPowerupCountdownBar.prefab │ │ ├── HealthPowerupCountdownBar.prefab.meta │ │ ├── HealthPowerupParticle.prefab │ │ ├── HealthPowerupParticle.prefab.meta │ │ ├── HealthPowerupTrainScene.prefab │ │ ├── HealthPowerupTrainScene.prefab.meta │ │ ├── Main Menu Container.prefab │ │ ├── Main Menu Container.prefab.meta │ │ ├── ProjectileSkill.prefab │ │ ├── ProjectileSkill.prefab.meta │ │ ├── RebindAttackKey.prefab │ │ ├── RebindAttackKey.prefab.meta │ │ ├── RebindCrouchKey.prefab │ │ ├── RebindCrouchKey.prefab.meta │ │ ├── RebindDashKey.prefab │ │ ├── RebindDashKey.prefab.meta │ │ ├── RebindInteractKey.prefab │ │ ├── RebindInteractKey.prefab.meta │ │ ├── RebindJumpKey.prefab │ │ ├── RebindJumpKey.prefab.meta │ │ ├── RebindMoveLeftKey.prefab │ │ ├── RebindMoveLeftKey.prefab.meta │ │ ├── RebindMoveRightKey.prefab │ │ ├── RebindMoveRightKey.prefab.meta │ │ ├── RebindParryKey.prefab │ │ ├── RebindParryKey.prefab.meta │ │ ├── ShieldPowerup.prefab │ │ ├── ShieldPowerup.prefab.meta │ │ ├── ShieldPowerupCountdownBar.prefab │ │ ├── ShieldPowerupCountdownBar.prefab.meta │ │ ├── ShieldPowerupTrainScene.prefab │ │ ├── ShieldPowerupTrainScene.prefab.meta │ │ ├── VaporizeEffect1.prefab │ │ ├── VaporizeEffect1.prefab.meta │ │ ├── VaporizePowerup.prefab │ │ ├── VaporizePowerup.prefab.meta │ │ ├── VaporizePowerupCountdownBar.prefab │ │ ├── VaporizePowerupCountdownBar.prefab.meta │ │ ├── VaporizePowerupTrainScene.prefab │ │ └── VaporizePowerupTrainScene.prefab.meta │ ├── Scenes.meta │ ├── Scenes │ │ ├── Loading.unity │ │ ├── Loading.unity.meta │ │ ├── MainMenu.unity │ │ ├── MainMenu.unity.meta │ │ ├── Scene1.unity │ │ ├── Scene1.unity.meta │ │ ├── Scene2.unity │ │ └── Scene2.unity.meta │ ├── Scripts.meta │ ├── Scripts │ │ ├── ApplicationModel.cs │ │ ├── ApplicationModel.cs.meta │ │ ├── Enemies.meta │ │ ├── Enemies │ │ │ ├── EnemySpecific.meta │ │ │ ├── EnemySpecific │ │ │ │ ├── Enemy3.meta │ │ │ │ ├── Enemy3 │ │ │ │ │ ├── Data.meta │ │ │ │ │ ├── Data │ │ │ │ │ │ ├── E3_BaseData.asset │ │ │ │ │ │ ├── E3_BaseData.asset.meta │ │ │ │ │ │ ├── E3_ChargeStateData.asset │ │ │ │ │ │ ├── E3_ChargeStateData.asset.meta │ │ │ │ │ │ ├── E3_DeadStateData.asset │ │ │ │ │ │ ├── E3_DeadStateData.asset.meta │ │ │ │ │ │ ├── E3_IdleStateData.asset │ │ │ │ │ │ ├── E3_IdleStateData.asset.meta │ │ │ │ │ │ ├── E3_MeleeAttackStateData.asset │ │ │ │ │ │ ├── E3_MeleeAttackStateData.asset.meta │ │ │ │ │ │ ├── E3_MoveStateData.asset │ │ │ │ │ │ ├── E3_MoveStateData.asset.meta │ │ │ │ │ │ ├── E3_PlayerDetectedStateData.asset │ │ │ │ │ │ ├── E3_PlayerDetectedStateData.asset.meta │ │ │ │ │ │ ├── E3_RespawnStateData.asset │ │ │ │ │ │ ├── E3_RespawnStateData.asset.meta │ │ │ │ │ │ ├── E3_StunStateData.asset │ │ │ │ │ │ └── E3_StunStateData.asset.meta │ │ │ │ │ ├── E3_ChargeState.cs │ │ │ │ │ ├── E3_ChargeState.cs.meta │ │ │ │ │ ├── E3_DeadState.cs │ │ │ │ │ ├── E3_DeadState.cs.meta │ │ │ │ │ ├── E3_IdleState.cs │ │ │ │ │ ├── E3_IdleState.cs.meta │ │ │ │ │ ├── E3_MeleeAttackState.cs │ │ │ │ │ ├── E3_MeleeAttackState.cs.meta │ │ │ │ │ ├── E3_MoveState.cs │ │ │ │ │ ├── E3_MoveState.cs.meta │ │ │ │ │ ├── E3_PlayerDetectedState.cs │ │ │ │ │ ├── E3_PlayerDetectedState.cs.meta │ │ │ │ │ ├── E3_RespawnState.cs │ │ │ │ │ ├── E3_RespawnState.cs.meta │ │ │ │ │ ├── E3_StunState.cs │ │ │ │ │ ├── E3_StunState.cs.meta │ │ │ │ │ ├── Enemy3.cs │ │ │ │ │ └── Enemy3.cs.meta │ │ │ │ ├── Enemy4.meta │ │ │ │ ├── Enemy4 │ │ │ │ │ ├── Data.meta │ │ │ │ │ ├── Data │ │ │ │ │ │ ├── E4_BaseData.asset │ │ │ │ │ │ ├── E4_BaseData.asset.meta │ │ │ │ │ │ ├── E4_DeadStateData.asset │ │ │ │ │ │ ├── E4_DeadStateData.asset.meta │ │ │ │ │ │ ├── E4_DodgeStateData.asset │ │ │ │ │ │ ├── E4_DodgeStateData.asset.meta │ │ │ │ │ │ ├── E4_IdleStateData.asset │ │ │ │ │ │ ├── E4_IdleStateData.asset.meta │ │ │ │ │ │ ├── E4_MeleeAttackStateData.asset │ │ │ │ │ │ ├── E4_MeleeAttackStateData.asset.meta │ │ │ │ │ │ ├── E4_MoveStateData.asset │ │ │ │ │ │ ├── E4_MoveStateData.asset.meta │ │ │ │ │ │ ├── E4_PlayerDetectedStateData.asset │ │ │ │ │ │ ├── E4_PlayerDetectedStateData.asset.meta │ │ │ │ │ │ ├── E4_RangeAttackStateData.asset │ │ │ │ │ │ ├── E4_RangeAttackStateData.asset.meta │ │ │ │ │ │ ├── E4_RespawnStateData.asset │ │ │ │ │ │ ├── E4_RespawnStateData.asset.meta │ │ │ │ │ │ ├── E4_StunStateData.asset │ │ │ │ │ │ └── E4_StunStateData.asset.meta │ │ │ │ │ ├── E4_DeadState.cs │ │ │ │ │ ├── E4_DeadState.cs.meta │ │ │ │ │ ├── E4_DodgeState.cs │ │ │ │ │ ├── E4_DodgeState.cs.meta │ │ │ │ │ ├── E4_IdleState.cs │ │ │ │ │ ├── E4_IdleState.cs.meta │ │ │ │ │ ├── E4_MeleeAttackState.cs │ │ │ │ │ ├── E4_MeleeAttackState.cs.meta │ │ │ │ │ ├── E4_MoveState.cs │ │ │ │ │ ├── E4_MoveState.cs.meta │ │ │ │ │ ├── E4_PlayerDetectedState.cs │ │ │ │ │ ├── E4_PlayerDetectedState.cs.meta │ │ │ │ │ ├── E4_RangeAttackState.cs │ │ │ │ │ ├── E4_RangeAttackState.cs.meta │ │ │ │ │ ├── E4_RespawnState.cs │ │ │ │ │ ├── E4_RespawnState.cs.meta │ │ │ │ │ ├── E4_StunState.cs │ │ │ │ │ ├── E4_StunState.cs.meta │ │ │ │ │ ├── Enemy4.cs │ │ │ │ │ └── Enemy4.cs.meta │ │ │ │ ├── Enemy5.meta │ │ │ │ ├── Enemy5 │ │ │ │ │ ├── Data.meta │ │ │ │ │ ├── Data │ │ │ │ │ │ ├── E5_BaseData.asset │ │ │ │ │ │ ├── E5_BaseData.asset.meta │ │ │ │ │ │ ├── E5_ChargeStateData.asset │ │ │ │ │ │ ├── E5_ChargeStateData.asset.meta │ │ │ │ │ │ ├── E5_DeadStateData.asset │ │ │ │ │ │ ├── E5_DeadStateData.asset.meta │ │ │ │ │ │ ├── E5_IdleStateData.asset │ │ │ │ │ │ ├── E5_IdleStateData.asset.meta │ │ │ │ │ │ ├── E5_MeleeAttackStateData.asset │ │ │ │ │ │ ├── E5_MeleeAttackStateData.asset.meta │ │ │ │ │ │ ├── E5_MoveStateData.asset │ │ │ │ │ │ ├── E5_MoveStateData.asset.meta │ │ │ │ │ │ ├── E5_PlayerDetectedStateData.asset │ │ │ │ │ │ ├── E5_PlayerDetectedStateData.asset.meta │ │ │ │ │ │ ├── E5_RespawnStateData.asset │ │ │ │ │ │ ├── E5_RespawnStateData.asset.meta │ │ │ │ │ │ ├── E5_StunStateData.asset │ │ │ │ │ │ └── E5_StunStateData.asset.meta │ │ │ │ │ ├── E5_ChargeState.cs │ │ │ │ │ ├── E5_ChargeState.cs.meta │ │ │ │ │ ├── E5_DeadState.cs │ │ │ │ │ ├── E5_DeadState.cs.meta │ │ │ │ │ ├── E5_IdleState.cs │ │ │ │ │ ├── E5_IdleState.cs.meta │ │ │ │ │ ├── E5_MeleeAttackState.cs │ │ │ │ │ ├── E5_MeleeAttackState.cs.meta │ │ │ │ │ ├── E5_MoveState.cs │ │ │ │ │ ├── E5_MoveState.cs.meta │ │ │ │ │ ├── E5_PlayerDetectedState.cs │ │ │ │ │ ├── E5_PlayerDetectedState.cs.meta │ │ │ │ │ ├── E5_RespawnState.cs │ │ │ │ │ ├── E5_RespawnState.cs.meta │ │ │ │ │ ├── E5_StunState.cs │ │ │ │ │ ├── E5_StunState.cs.meta │ │ │ │ │ ├── Enemy5.cs │ │ │ │ │ └── Enemy5.cs.meta │ │ │ │ ├── Enemy6.meta │ │ │ │ ├── Enemy6 │ │ │ │ │ ├── Data.meta │ │ │ │ │ ├── Data │ │ │ │ │ │ ├── E6_BaseData.asset │ │ │ │ │ │ ├── E6_BaseData.asset.meta │ │ │ │ │ │ ├── E6_DeadStateData.asset │ │ │ │ │ │ ├── E6_DeadStateData.asset.meta │ │ │ │ │ │ ├── E6_IdleStateData.asset │ │ │ │ │ │ ├── E6_IdleStateData.asset.meta │ │ │ │ │ │ ├── E6_MeleeAttackStateData.asset │ │ │ │ │ │ ├── E6_MeleeAttackStateData.asset.meta │ │ │ │ │ │ ├── E6_MoveStateData.asset │ │ │ │ │ │ ├── E6_MoveStateData.asset.meta │ │ │ │ │ │ ├── E6_PlayerDetectedStateData.asset │ │ │ │ │ │ ├── E6_PlayerDetectedStateData.asset.meta │ │ │ │ │ │ ├── E6_RangeAttackStateData.asset │ │ │ │ │ │ ├── E6_RangeAttackStateData.asset.meta │ │ │ │ │ │ ├── E6_RespawnStateData.asset │ │ │ │ │ │ ├── E6_RespawnStateData.asset.meta │ │ │ │ │ │ ├── E6_StunStateData.asset │ │ │ │ │ │ ├── E6_StunStateData.asset.meta │ │ │ │ │ │ ├── E6_TeleportStateData.asset │ │ │ │ │ │ └── E6_TeleportStateData.asset.meta │ │ │ │ │ ├── E6_DeadState.cs │ │ │ │ │ ├── E6_DeadState.cs.meta │ │ │ │ │ ├── E6_IdleState.cs │ │ │ │ │ ├── E6_IdleState.cs.meta │ │ │ │ │ ├── E6_MeleeAttackState.cs │ │ │ │ │ ├── E6_MeleeAttackState.cs.meta │ │ │ │ │ ├── E6_MoveState.cs │ │ │ │ │ ├── E6_MoveState.cs.meta │ │ │ │ │ ├── E6_PlayerDetectedState.cs │ │ │ │ │ ├── E6_PlayerDetectedState.cs.meta │ │ │ │ │ ├── E6_RangeAttackState.cs │ │ │ │ │ ├── E6_RangeAttackState.cs.meta │ │ │ │ │ ├── E6_RespawnState.cs │ │ │ │ │ ├── E6_RespawnState.cs.meta │ │ │ │ │ ├── E6_StunState.cs │ │ │ │ │ ├── E6_StunState.cs.meta │ │ │ │ │ ├── E6_TeleportState.cs │ │ │ │ │ ├── E6_TeleportState.cs.meta │ │ │ │ │ ├── Enemy6.cs │ │ │ │ │ └── Enemy6.cs.meta │ │ │ │ ├── Enemy7.meta │ │ │ │ └── Enemy7 │ │ │ │ │ ├── Data.meta │ │ │ │ │ ├── Data │ │ │ │ │ ├── E7_BaseData.asset │ │ │ │ │ ├── E7_BaseData.asset.meta │ │ │ │ │ ├── E7_ChargeStateData.asset │ │ │ │ │ ├── E7_ChargeStateData.asset.meta │ │ │ │ │ ├── E7_DeadStateData.asset │ │ │ │ │ ├── E7_DeadStateData.asset.meta │ │ │ │ │ ├── E7_IdleStateData.asset │ │ │ │ │ ├── E7_IdleStateData.asset.meta │ │ │ │ │ ├── E7_MeleeAttackStateData.asset │ │ │ │ │ ├── E7_MeleeAttackStateData.asset.meta │ │ │ │ │ ├── E7_MoveStateData.asset │ │ │ │ │ ├── E7_MoveStateData.asset.meta │ │ │ │ │ ├── E7_PlayerDetectedStateData.asset │ │ │ │ │ ├── E7_PlayerDetectedStateData.asset.meta │ │ │ │ │ ├── E7_RespawnStateData.asset │ │ │ │ │ ├── E7_RespawnStateData.asset.meta │ │ │ │ │ ├── E7_StunStateData.asset │ │ │ │ │ └── E7_StunStateData.asset.meta │ │ │ │ │ ├── E7_ChargeState.cs │ │ │ │ │ ├── E7_ChargeState.cs.meta │ │ │ │ │ ├── E7_DeadState.cs │ │ │ │ │ ├── E7_DeadState.cs.meta │ │ │ │ │ ├── E7_IdleState.cs │ │ │ │ │ ├── E7_IdleState.cs.meta │ │ │ │ │ ├── E7_MeleeAttackState.cs │ │ │ │ │ ├── E7_MeleeAttackState.cs.meta │ │ │ │ │ ├── E7_MoveState.cs │ │ │ │ │ ├── E7_MoveState.cs.meta │ │ │ │ │ ├── E7_PlayerDetectedState.cs │ │ │ │ │ ├── E7_PlayerDetectedState.cs.meta │ │ │ │ │ ├── E7_RespawnState.cs │ │ │ │ │ ├── E7_RespawnState.cs.meta │ │ │ │ │ ├── E7_StunState.cs │ │ │ │ │ ├── E7_StunState.cs.meta │ │ │ │ │ ├── Enemy7.cs │ │ │ │ │ └── Enemy7.cs.meta │ │ │ ├── MainMenu.meta │ │ │ ├── MainMenu │ │ │ │ ├── PlayIdleAnim.cs │ │ │ │ └── PlayIdleAnim.cs.meta │ │ │ ├── State Machine.meta │ │ │ ├── State Machine │ │ │ │ ├── Entity.cs │ │ │ │ ├── Entity.cs.meta │ │ │ │ ├── FiniteStateMachine.cs │ │ │ │ ├── FiniteStateMachine.cs.meta │ │ │ │ ├── State.cs │ │ │ │ └── State.cs.meta │ │ │ ├── States.meta │ │ │ └── States │ │ │ │ ├── AttackState.cs │ │ │ │ ├── AttackState.cs.meta │ │ │ │ ├── ChargeState.cs │ │ │ │ ├── ChargeState.cs.meta │ │ │ │ ├── Data.meta │ │ │ │ ├── Data │ │ │ │ ├── D_ChargeState.cs │ │ │ │ ├── D_ChargeState.cs.meta │ │ │ │ ├── D_DeadState.cs │ │ │ │ ├── D_DeadState.cs.meta │ │ │ │ ├── D_DodgeState.cs │ │ │ │ ├── D_DodgeState.cs.meta │ │ │ │ ├── D_Entity.cs │ │ │ │ ├── D_Entity.cs.meta │ │ │ │ ├── D_IdleState.cs │ │ │ │ ├── D_IdleState.cs.meta │ │ │ │ ├── D_LookForPlayerState.cs │ │ │ │ ├── D_LookForPlayerState.cs.meta │ │ │ │ ├── D_MeleeAttackState.cs │ │ │ │ ├── D_MeleeAttackState.cs.meta │ │ │ │ ├── D_MoveState.cs │ │ │ │ ├── D_MoveState.cs.meta │ │ │ │ ├── D_PlayerDetectedState.cs │ │ │ │ ├── D_PlayerDetectedState.cs.meta │ │ │ │ ├── D_RangeAttackState.cs │ │ │ │ ├── D_RangeAttackState.cs.meta │ │ │ │ ├── D_RespawnState.cs │ │ │ │ ├── D_RespawnState.cs.meta │ │ │ │ ├── D_StunState.cs │ │ │ │ ├── D_StunState.cs.meta │ │ │ │ ├── D_TeleportState.cs │ │ │ │ └── D_TeleportState.cs.meta │ │ │ │ ├── DeadState.cs │ │ │ │ ├── DeadState.cs.meta │ │ │ │ ├── DodgeState.cs │ │ │ │ ├── DodgeState.cs.meta │ │ │ │ ├── IdleState.cs │ │ │ │ ├── IdleState.cs.meta │ │ │ │ ├── LookForPlayerState.cs │ │ │ │ ├── LookForPlayerState.cs.meta │ │ │ │ ├── MeleeAttackState.cs │ │ │ │ ├── MeleeAttackState.cs.meta │ │ │ │ ├── MoveState.cs │ │ │ │ ├── MoveState.cs.meta │ │ │ │ ├── PlayerDetectedState.cs │ │ │ │ ├── PlayerDetectedState.cs.meta │ │ │ │ ├── RangeAttackState.cs │ │ │ │ ├── RangeAttackState.cs.meta │ │ │ │ ├── RespawnState.cs │ │ │ │ ├── RespawnState.cs.meta │ │ │ │ ├── StunState.cs │ │ │ │ ├── StunState.cs.meta │ │ │ │ ├── TeleportState.cs │ │ │ │ └── TeleportState.cs.meta │ │ ├── GenericObjectPool.cs │ │ ├── GenericObjectPool.cs.meta │ │ ├── Interfaces.meta │ │ ├── Interfaces │ │ │ ├── IDamageable.cs │ │ │ ├── IDamageable.cs.meta │ │ │ ├── IShopCustomer.cs │ │ │ └── IShopCustomer.cs.meta │ │ ├── Intermediaries.meta │ │ ├── Intermediaries │ │ │ ├── AnimationToStateMachine.cs │ │ │ └── AnimationToStateMachine.cs.meta │ │ ├── Items.cs │ │ ├── Items.cs.meta │ │ ├── Loader.cs │ │ ├── Loader.cs.meta │ │ ├── Manager.meta │ │ ├── Manager │ │ │ ├── CinemachineShake.cs │ │ │ ├── CinemachineShake.cs.meta │ │ │ ├── GameAssets.cs │ │ │ ├── GameAssets.cs.meta │ │ │ ├── GameManager.cs │ │ │ ├── GameManager.cs.meta │ │ │ ├── GameSceneManager.cs │ │ │ ├── GameSceneManager.cs.meta │ │ │ ├── InputManager.cs │ │ │ ├── InputManager.cs.meta │ │ │ ├── MainMenuSceneManager.cs │ │ │ ├── MainMenuSceneManager.cs.meta │ │ │ ├── PowerupManager.cs │ │ │ ├── PowerupManager.cs.meta │ │ │ ├── ScoreManager.cs │ │ │ ├── ScoreManager.cs.meta │ │ │ ├── Sound.cs │ │ │ ├── Sound.cs.meta │ │ │ ├── SoundManager.cs │ │ │ └── SoundManager.cs.meta │ │ ├── ObjectPoolingScripts.meta │ │ ├── ObjectPoolingScripts │ │ │ ├── DamagePopupPool.cs │ │ │ ├── DamagePopupPool.cs.meta │ │ │ ├── DamagePowerupPool.cs │ │ │ ├── DamagePowerupPool.cs.meta │ │ │ ├── DamagePowerupTrainScenePool.cs │ │ │ ├── DamagePowerupTrainScenePool.cs.meta │ │ │ ├── DeathBloodParticlePool.cs │ │ │ ├── DeathBloodParticlePool.cs.meta │ │ │ ├── DeathChunkParticlePool.cs │ │ │ ├── DeathChunkParticlePool.cs.meta │ │ │ ├── DropLootBluePool.cs │ │ │ ├── DropLootBluePool.cs.meta │ │ │ ├── DropLootCyanPool.cs │ │ │ ├── DropLootCyanPool.cs.meta │ │ │ ├── DropLootGreenPool.cs │ │ │ ├── DropLootGreenPool.cs.meta │ │ │ ├── DropLootPurplePool.cs │ │ │ ├── DropLootPurplePool.cs.meta │ │ │ ├── DropLootRedPool.cs │ │ │ ├── DropLootRedPool.cs.meta │ │ │ ├── DropLootYellowPool.cs │ │ │ ├── DropLootYellowPool.cs.meta │ │ │ ├── DustJumpParticlePool.cs │ │ │ ├── DustJumpParticlePool.cs.meta │ │ │ ├── Enemy3Pool.cs │ │ │ ├── Enemy3Pool.cs.meta │ │ │ ├── Enemy4Pool.cs │ │ │ ├── Enemy4Pool.cs.meta │ │ │ ├── Enemy5Pool.cs │ │ │ ├── Enemy5Pool.cs.meta │ │ │ ├── Enemy6Pool.cs │ │ │ ├── Enemy6Pool.cs.meta │ │ │ ├── Enemy7Pool.cs │ │ │ ├── Enemy7Pool.cs.meta │ │ │ ├── EnemyArrowPool.cs │ │ │ ├── EnemyArrowPool.cs.meta │ │ │ ├── EnemySkillPool.cs │ │ │ ├── EnemySkillPool.cs.meta │ │ │ ├── HealthPowerupParticlePool.cs │ │ │ ├── HealthPowerupParticlePool.cs.meta │ │ │ ├── HealthPowerupPool.cs │ │ │ ├── HealthPowerupPool.cs.meta │ │ │ ├── HealthPowerupTrainScenePool.cs │ │ │ ├── HealthPowerupTrainScenePool.cs.meta │ │ │ ├── PlayerAfterImagePool.cs │ │ │ ├── PlayerAfterImagePool.cs.meta │ │ │ ├── ShieldPowerupPool.cs │ │ │ ├── ShieldPowerupPool.cs.meta │ │ │ ├── ShieldPowerupTrainScenePool.cs │ │ │ ├── ShieldPowerupTrainScenePool.cs.meta │ │ │ ├── VaporizeParticle1Pool.cs │ │ │ ├── VaporizeParticle1Pool.cs.meta │ │ │ ├── VaporizePowerupPool.cs │ │ │ ├── VaporizePowerupPool.cs.meta │ │ │ ├── VaporizePowerupTrainScenePool.cs │ │ │ └── VaporizePowerupTrainScenePool.cs.meta │ │ ├── Particles.meta │ │ ├── Particles │ │ │ ├── DeathBloodParticle.cs │ │ │ ├── DeathBloodParticle.cs.meta │ │ │ ├── DeathChunkParticle.cs │ │ │ ├── DeathChunkParticle.cs.meta │ │ │ ├── DropLoot.cs │ │ │ ├── DropLoot.cs.meta │ │ │ ├── DropLootBlue.cs │ │ │ ├── DropLootBlue.cs.meta │ │ │ ├── DropLootCyan.cs │ │ │ ├── DropLootCyan.cs.meta │ │ │ ├── DropLootGreen.cs │ │ │ ├── DropLootGreen.cs.meta │ │ │ ├── DropLootPurple.cs │ │ │ ├── DropLootPurple.cs.meta │ │ │ ├── DropLootRed.cs │ │ │ ├── DropLootRed.cs.meta │ │ │ ├── DropLootYellow.cs │ │ │ ├── DropLootYellow.cs.meta │ │ │ ├── DustJumpParticle.cs │ │ │ ├── DustJumpParticle.cs.meta │ │ │ ├── HealthPowerupParticle.cs │ │ │ ├── HealthPowerupParticle.cs.meta │ │ │ ├── VaporizeParticle1.cs │ │ │ └── VaporizeParticle1.cs.meta │ │ ├── Player.meta │ │ ├── Player │ │ │ ├── Data.meta │ │ │ ├── Data │ │ │ │ ├── PlayerData.asset │ │ │ │ ├── PlayerData.asset.meta │ │ │ │ ├── PlayerData.cs │ │ │ │ ├── PlayerData.cs.meta │ │ │ │ ├── WeaponData.asset │ │ │ │ ├── WeaponData.asset.meta │ │ │ │ ├── WeaponData.cs │ │ │ │ └── WeaponData.cs.meta │ │ │ ├── Input.meta │ │ │ ├── Input │ │ │ │ ├── Player.inputactions │ │ │ │ ├── Player.inputactions.meta │ │ │ │ ├── PlayerInputHandler.cs │ │ │ │ └── PlayerInputHandler.cs.meta │ │ │ ├── PlayerAfterImage.cs │ │ │ ├── PlayerAfterImage.cs.meta │ │ │ ├── PlayerFiniteStateMachine.meta │ │ │ ├── PlayerFiniteStateMachine │ │ │ │ ├── Player.cs │ │ │ │ ├── Player.cs.meta │ │ │ │ ├── PlayerState.cs │ │ │ │ ├── PlayerState.cs.meta │ │ │ │ ├── PlayerStateMachine.cs │ │ │ │ └── PlayerStateMachine.cs.meta │ │ │ ├── PlayerInventory.cs │ │ │ ├── PlayerInventory.cs.meta │ │ │ ├── PlayerStates.meta │ │ │ └── PlayerStates │ │ │ │ ├── SubStates.meta │ │ │ │ ├── SubStates │ │ │ │ ├── PlayerAttackState.cs │ │ │ │ ├── PlayerAttackState.cs.meta │ │ │ │ ├── PlayerCrouchIdleState.cs │ │ │ │ ├── PlayerCrouchIdleState.cs.meta │ │ │ │ ├── PlayerCrouchMoveState.cs │ │ │ │ ├── PlayerCrouchMoveState.cs.meta │ │ │ │ ├── PlayerDashState.cs │ │ │ │ ├── PlayerDashState.cs.meta │ │ │ │ ├── PlayerDefenseMoveState.cs │ │ │ │ ├── PlayerDefenseMoveState.cs.meta │ │ │ │ ├── PlayerDefenseState.cs │ │ │ │ ├── PlayerDefenseState.cs.meta │ │ │ │ ├── PlayerIdleState.cs │ │ │ │ ├── PlayerIdleState.cs.meta │ │ │ │ ├── PlayerInAirState.cs │ │ │ │ ├── PlayerInAirState.cs.meta │ │ │ │ ├── PlayerJumpState.cs │ │ │ │ ├── PlayerJumpState.cs.meta │ │ │ │ ├── PlayerKnockbackState.cs │ │ │ │ ├── PlayerKnockbackState.cs.meta │ │ │ │ ├── PlayerLandState.cs │ │ │ │ ├── PlayerLandState.cs.meta │ │ │ │ ├── PlayerLedgeClimbState.cs │ │ │ │ ├── PlayerLedgeClimbState.cs.meta │ │ │ │ ├── PlayerMoveState.cs │ │ │ │ ├── PlayerMoveState.cs.meta │ │ │ │ ├── PlayerWallClimbState.cs │ │ │ │ ├── PlayerWallClimbState.cs.meta │ │ │ │ ├── PlayerWallGrabState.cs │ │ │ │ ├── PlayerWallGrabState.cs.meta │ │ │ │ ├── PlayerWallJumpState.cs │ │ │ │ ├── PlayerWallJumpState.cs.meta │ │ │ │ ├── PlayerWallSlideState.cs │ │ │ │ └── PlayerWallSlideState.cs.meta │ │ │ │ ├── SuperStates.meta │ │ │ │ └── SuperStates │ │ │ │ ├── PlayerAbilityState.cs │ │ │ │ ├── PlayerAbilityState.cs.meta │ │ │ │ ├── PlayerGroundedState.cs │ │ │ │ ├── PlayerGroundedState.cs.meta │ │ │ │ ├── PlayerTouchingWallState.cs │ │ │ │ └── PlayerTouchingWallState.cs.meta │ │ ├── Projectiles.meta │ │ ├── Projectiles │ │ │ ├── Projectile.cs │ │ │ ├── Projectile.cs.meta │ │ │ ├── ProjectileArrow.cs │ │ │ ├── ProjectileArrow.cs.meta │ │ │ ├── ProjectileSkill.cs │ │ │ └── ProjectileSkill.cs.meta │ │ ├── SceneObjects.meta │ │ ├── SceneObjects │ │ │ ├── BackgroundParallax.cs │ │ │ ├── BackgroundParallax.cs.meta │ │ │ ├── BeeFly.cs │ │ │ ├── BeeFly.cs.meta │ │ │ ├── BirdFly.cs │ │ │ ├── BirdFly.cs.meta │ │ │ ├── BirdIdle.cs │ │ │ ├── BirdIdle.cs.meta │ │ │ ├── Grass.cs │ │ │ ├── Grass.cs.meta │ │ │ ├── SurfaceHit.cs │ │ │ └── SurfaceHit.cs.meta │ │ ├── Spawners.meta │ │ ├── Spawners │ │ │ ├── SpawnEnemy.cs │ │ │ ├── SpawnEnemy.cs.meta │ │ │ ├── SpawnEnemyInMines.cs │ │ │ ├── SpawnEnemyInMines.cs.meta │ │ │ ├── SpawnPowerupInMines.cs │ │ │ ├── SpawnPowerupInMines.cs.meta │ │ │ ├── SpawnPowerupTrainScene.cs │ │ │ ├── SpawnPowerupTrainScene.cs.meta │ │ │ ├── StartSpawns.cs │ │ │ └── StartSpawns.cs.meta │ │ ├── Structs.meta │ │ ├── Structs │ │ │ ├── AttackDetails.cs │ │ │ └── AttackDetails.cs.meta │ │ ├── UI.meta │ │ └── UI │ │ │ ├── DamagePopup.cs │ │ │ ├── DamagePopup.cs.meta │ │ │ ├── EasterEgg.cs │ │ │ ├── EasterEgg.cs.meta │ │ │ ├── EnemyHealthBar.cs │ │ │ ├── EnemyHealthBar.cs.meta │ │ │ ├── Menu.meta │ │ │ ├── Menu │ │ │ ├── ControlsDialogMenu.cs │ │ │ ├── ControlsDialogMenu.cs.meta │ │ │ ├── EscToGoBackInMenu.cs │ │ │ ├── EscToGoBackInMenu.cs.meta │ │ │ ├── GraphicsDialogMenu.cs │ │ │ ├── GraphicsDialogMenu.cs.meta │ │ │ ├── HowToPlayPanelControlsDisplay.cs │ │ │ ├── HowToPlayPanelControlsDisplay.cs.meta │ │ │ ├── LoadPrefs.cs │ │ │ ├── LoadPrefs.cs.meta │ │ │ ├── PlayAudioOnButtonClick.cs │ │ │ ├── PlayAudioOnButtonClick.cs.meta │ │ │ ├── SoundDialogMenu.cs │ │ │ ├── SoundDialogMenu.cs.meta │ │ │ ├── SoundOptionsPreApply.cs │ │ │ ├── SoundOptionsPreApply.cs.meta │ │ │ ├── VolumeSlidersOnChangeAudio.cs │ │ │ └── VolumeSlidersOnChangeAudio.cs.meta │ │ │ ├── NpcDialogs.meta │ │ │ ├── NpcDialogs │ │ │ ├── DarknessTalk.cs │ │ │ ├── DarknessTalk.cs.meta │ │ │ ├── DarknessTalk1.cs │ │ │ ├── DarknessTalk1.cs.meta │ │ │ ├── DarknessTalk2.cs │ │ │ ├── DarknessTalk2.cs.meta │ │ │ ├── DarknessTalk3.cs │ │ │ ├── DarknessTalk3.cs.meta │ │ │ ├── DarknessTalk4.cs │ │ │ ├── DarknessTalk4.cs.meta │ │ │ ├── DarknessTalkOnDeath.cs │ │ │ ├── DarknessTalkOnDeath.cs.meta │ │ │ ├── MerchantTalk1.cs │ │ │ ├── MerchantTalk1.cs.meta │ │ │ ├── MerchantTalk2.cs │ │ │ ├── MerchantTalk2.cs.meta │ │ │ ├── NpcTalk1.cs │ │ │ ├── NpcTalk1.cs.meta │ │ │ ├── NpcTalk2.cs │ │ │ ├── NpcTalk2.cs.meta │ │ │ ├── NpcTalk3.cs │ │ │ ├── NpcTalk3.cs.meta │ │ │ ├── NpcTalk4.cs │ │ │ ├── NpcTalk4.cs.meta │ │ │ ├── NpcTalk5.cs │ │ │ ├── NpcTalk5.cs.meta │ │ │ ├── NpcTalk6.cs │ │ │ ├── NpcTalk6.cs.meta │ │ │ ├── NpcTalk7.cs │ │ │ └── NpcTalk7.cs.meta │ │ │ ├── PathwayToScene1.cs │ │ │ ├── PathwayToScene1.cs.meta │ │ │ ├── PathwayToScene2.cs │ │ │ ├── PathwayToScene2.cs.meta │ │ │ ├── PlayerHealth.cs │ │ │ ├── PlayerHealth.cs.meta │ │ │ ├── PowerupCountdownBar.cs │ │ │ ├── PowerupCountdownBar.cs.meta │ │ │ ├── Powerups.meta │ │ │ ├── Powerups │ │ │ ├── DamagePowerup.cs │ │ │ ├── DamagePowerup.cs.meta │ │ │ ├── DamagePowerupTrainScene.cs │ │ │ ├── DamagePowerupTrainScene.cs.meta │ │ │ ├── EasterEggPowerups.cs │ │ │ ├── EasterEggPowerups.cs.meta │ │ │ ├── HealthPowerup.cs │ │ │ ├── HealthPowerup.cs.meta │ │ │ ├── HealthPowerupTrainScene.cs │ │ │ ├── HealthPowerupTrainScene.cs.meta │ │ │ ├── ShieldPowerup.cs │ │ │ ├── ShieldPowerup.cs.meta │ │ │ ├── ShieldPowerupTrainScene.cs │ │ │ ├── ShieldPowerupTrainScene.cs.meta │ │ │ ├── VaporizePowerup.cs │ │ │ ├── VaporizePowerup.cs.meta │ │ │ ├── VaporizePowerupTrainScene.cs │ │ │ └── VaporizePowerupTrainScene.cs.meta │ │ │ ├── ResetScene2.cs │ │ │ ├── ResetScene2.cs.meta │ │ │ ├── Scene1Gems.cs │ │ │ ├── Scene1Gems.cs.meta │ │ │ ├── ScoreCalculationOnGameOver.cs │ │ │ ├── ScoreCalculationOnGameOver.cs.meta │ │ │ ├── TextWriter.cs │ │ │ ├── TextWriter.cs.meta │ │ │ ├── UI_Assistant.cs │ │ │ ├── UI_Assistant.cs.meta │ │ │ ├── UI_Shop.cs │ │ │ └── UI_Shop.cs.meta │ ├── Standard Assets.meta │ ├── Standard Assets │ │ ├── ParticleSystems.meta │ │ └── ParticleSystems │ │ │ ├── Textures.meta │ │ │ └── Textures │ │ │ ├── ParticleCloudBlack.png │ │ │ ├── ParticleCloudBlack.png.meta │ │ │ ├── ParticleCloudWhite.png │ │ │ ├── ParticleCloudWhite.png.meta │ │ │ ├── Vaporizing.mat │ │ │ ├── Vaporizing.mat.meta │ │ │ ├── VaporizingBlack.mat │ │ │ └── VaporizingBlack.mat.meta │ ├── TextMesh Pro.meta │ ├── TextMesh Pro │ │ ├── Documentation.meta │ │ ├── Documentation │ │ │ ├── TextMesh Pro User Guide 2016.pdf │ │ │ └── TextMesh Pro User Guide 2016.pdf.meta │ │ ├── Examples & Extras.meta │ │ ├── Examples & Extras │ │ │ ├── Fonts.meta │ │ │ ├── Fonts │ │ │ │ ├── Anton OFL.txt │ │ │ │ ├── Anton OFL.txt.meta │ │ │ │ ├── Anton.ttf │ │ │ │ ├── Anton.ttf.meta │ │ │ │ ├── Bangers - OFL.txt │ │ │ │ ├── Bangers - OFL.txt.meta │ │ │ │ ├── Bangers.ttf │ │ │ │ ├── Bangers.ttf.meta │ │ │ │ ├── Electronic Highway Sign.TTF │ │ │ │ ├── Electronic Highway Sign.TTF.meta │ │ │ │ ├── Oswald-Bold - OFL.txt │ │ │ │ ├── Oswald-Bold - OFL.txt.meta │ │ │ │ ├── Oswald-Bold.ttf │ │ │ │ ├── Oswald-Bold.ttf.meta │ │ │ │ ├── Roboto-Bold.ttf │ │ │ │ └── Roboto-Bold.ttf.meta │ │ │ ├── Materials.meta │ │ │ ├── Materials │ │ │ │ ├── Crate - Surface Shader Scene.mat │ │ │ │ ├── Crate - Surface Shader Scene.mat.meta │ │ │ │ ├── Ground - Logo Scene.mat │ │ │ │ ├── Ground - Logo Scene.mat.meta │ │ │ │ ├── Ground - Surface Shader Scene.mat │ │ │ │ ├── Ground - Surface Shader Scene.mat.meta │ │ │ │ ├── Small Crate_diffuse.mat │ │ │ │ └── Small Crate_diffuse.mat.meta │ │ │ ├── Prefabs.meta │ │ │ ├── Prefabs │ │ │ │ ├── Text Popup.prefab │ │ │ │ ├── Text Popup.prefab.meta │ │ │ │ ├── TextMeshPro - Prefab 1.prefab │ │ │ │ ├── TextMeshPro - Prefab 1.prefab.meta │ │ │ │ ├── TextMeshPro - Prefab 2.prefab │ │ │ │ └── TextMeshPro - Prefab 2.prefab.meta │ │ │ ├── Resources.meta │ │ │ ├── Resources │ │ │ │ ├── Color Gradient Presets.meta │ │ │ │ ├── Color Gradient Presets │ │ │ │ │ ├── Blue to Purple - Vertical.asset │ │ │ │ │ ├── Blue to Purple - Vertical.asset.meta │ │ │ │ │ ├── Dark to Light Green - Vertical.asset │ │ │ │ │ ├── Dark to Light Green - Vertical.asset.meta │ │ │ │ │ ├── Light to Dark Green - Vertical.asset │ │ │ │ │ ├── Light to Dark Green - Vertical.asset.meta │ │ │ │ │ ├── Yellow to Orange - Vertical.asset │ │ │ │ │ └── Yellow to Orange - Vertical.asset.meta │ │ │ │ ├── Fonts & Materials.meta │ │ │ │ ├── Fonts & Materials │ │ │ │ │ ├── Anton SDF - Drop Shadow.mat │ │ │ │ │ ├── Anton SDF - Drop Shadow.mat.meta │ │ │ │ │ ├── Anton SDF - Outline.mat │ │ │ │ │ ├── Anton SDF - Outline.mat.meta │ │ │ │ │ ├── Anton SDF - Sunny Days.mat │ │ │ │ │ ├── Anton SDF - Sunny Days.mat.meta │ │ │ │ │ ├── Anton SDF.asset │ │ │ │ │ ├── Anton SDF.asset.meta │ │ │ │ │ ├── Bangers SDF - Drop Shadow.mat │ │ │ │ │ ├── Bangers SDF - Drop Shadow.mat.meta │ │ │ │ │ ├── Bangers SDF - Outline.mat │ │ │ │ │ ├── Bangers SDF - Outline.mat.meta │ │ │ │ │ ├── Bangers SDF Glow.mat │ │ │ │ │ ├── Bangers SDF Glow.mat.meta │ │ │ │ │ ├── Bangers SDF Logo.mat │ │ │ │ │ ├── Bangers SDF Logo.mat.meta │ │ │ │ │ ├── Bangers SDF.asset │ │ │ │ │ ├── Bangers SDF.asset.meta │ │ │ │ │ ├── Electronic Highway Sign SDF.asset │ │ │ │ │ ├── Electronic Highway Sign SDF.asset.meta │ │ │ │ │ ├── LiberationSans SDF - Metalic Green.mat │ │ │ │ │ ├── LiberationSans SDF - Metalic Green.mat.meta │ │ │ │ │ ├── LiberationSans SDF - Overlay.mat │ │ │ │ │ ├── LiberationSans SDF - Overlay.mat.meta │ │ │ │ │ ├── LiberationSans SDF - Soft Mask.mat │ │ │ │ │ ├── LiberationSans SDF - Soft Mask.mat.meta │ │ │ │ │ ├── Oswald Bold SDF.asset │ │ │ │ │ ├── Oswald Bold SDF.asset.meta │ │ │ │ │ ├── Roboto-Bold SDF - Drop Shadow.mat │ │ │ │ │ ├── Roboto-Bold SDF - Drop Shadow.mat.meta │ │ │ │ │ ├── Roboto-Bold SDF - Surface.mat │ │ │ │ │ ├── Roboto-Bold SDF - Surface.mat.meta │ │ │ │ │ ├── Roboto-Bold SDF.asset │ │ │ │ │ └── Roboto-Bold SDF.asset.meta │ │ │ │ ├── Sprite Assets.meta │ │ │ │ └── Sprite Assets │ │ │ │ │ ├── Default Sprite Asset.asset │ │ │ │ │ ├── Default Sprite Asset.asset.meta │ │ │ │ │ ├── DropCap Numbers.asset │ │ │ │ │ └── DropCap Numbers.asset.meta │ │ │ ├── Scenes.meta │ │ │ ├── Scenes │ │ │ │ ├── 01- Single Line TextMesh Pro.unity │ │ │ │ ├── 01- Single Line TextMesh Pro.unity.meta │ │ │ │ ├── 02 - Multi-line TextMesh Pro.unity │ │ │ │ ├── 02 - Multi-line TextMesh Pro.unity.meta │ │ │ │ ├── 03 - Line Justification.unity │ │ │ │ ├── 03 - Line Justification.unity.meta │ │ │ │ ├── 04 - Word Wrapping.unity │ │ │ │ ├── 04 - Word Wrapping.unity.meta │ │ │ │ ├── 05 - Style Tags.unity │ │ │ │ ├── 05 - Style Tags.unity.meta │ │ │ │ ├── 06 - Extra Rich Text Examples.unity │ │ │ │ ├── 06 - Extra Rich Text Examples.unity.meta │ │ │ │ ├── 07 - Superscript & Subscript Example.unity │ │ │ │ ├── 07 - Superscript & Subscript Example.unity.meta │ │ │ │ ├── 08 - Improved Text Alignment.unity │ │ │ │ ├── 08 - Improved Text Alignment.unity.meta │ │ │ │ ├── 09 - Margin Tag Example.unity │ │ │ │ ├── 09 - Margin Tag Example.unity.meta │ │ │ │ ├── 10 - Bullets & Numbered List Example.unity │ │ │ │ ├── 10 - Bullets & Numbered List Example.unity.meta │ │ │ │ ├── 11 - The Style Tag.unity │ │ │ │ ├── 11 - The Style Tag.unity.meta │ │ │ │ ├── 12 - Link Example.unity │ │ │ │ ├── 12 - Link Example.unity.meta │ │ │ │ ├── 12a - Text Interactions.unity │ │ │ │ ├── 12a - Text Interactions.unity.meta │ │ │ │ ├── 13 - Soft Hyphenation.unity │ │ │ │ ├── 13 - Soft Hyphenation.unity.meta │ │ │ │ ├── 14 - Multi Font & Sprites.unity │ │ │ │ ├── 14 - Multi Font & Sprites.unity.meta │ │ │ │ ├── 15 - Inline Graphics & Sprites.unity │ │ │ │ ├── 15 - Inline Graphics & Sprites.unity.meta │ │ │ │ ├── 16 - Linked text overflow mode example.unity │ │ │ │ ├── 16 - Linked text overflow mode example.unity.meta │ │ │ │ ├── 17 - Old Computer Terminal.unity │ │ │ │ ├── 17 - Old Computer Terminal.unity.meta │ │ │ │ ├── 18 - ScrollRect & Masking & Layout.unity │ │ │ │ ├── 18 - ScrollRect & Masking & Layout.unity.meta │ │ │ │ ├── 19 - Masking Texture & Soft Mask.unity │ │ │ │ ├── 19 - Masking Texture & Soft Mask.unity.meta │ │ │ │ ├── 20 - Input Field with Scrollbar.unity │ │ │ │ ├── 20 - Input Field with Scrollbar.unity.meta │ │ │ │ ├── 21 - Script Example.unity │ │ │ │ ├── 21 - Script Example.unity.meta │ │ │ │ ├── 22 - Basic Scripting Example.unity │ │ │ │ ├── 22 - Basic Scripting Example.unity.meta │ │ │ │ ├── 23 - Animating Vertex Attributes.unity │ │ │ │ ├── 23 - Animating Vertex Attributes.unity.meta │ │ │ │ ├── 24 - Surface Shader Example.unity │ │ │ │ ├── 24 - Surface Shader Example.unity.meta │ │ │ │ ├── 25 - Sunny Days Example.unity │ │ │ │ ├── 25 - Sunny Days Example.unity.meta │ │ │ │ ├── 26 - Dropdown Placeholder Example.unity │ │ │ │ ├── 26 - Dropdown Placeholder Example.unity.meta │ │ │ │ ├── Benchmark (Floating Text).unity │ │ │ │ └── Benchmark (Floating Text).unity.meta │ │ │ ├── Scripts.meta │ │ │ ├── Scripts │ │ │ │ ├── Benchmark01.cs │ │ │ │ ├── Benchmark01.cs.meta │ │ │ │ ├── Benchmark01_UGUI.cs │ │ │ │ ├── Benchmark01_UGUI.cs.meta │ │ │ │ ├── Benchmark02.cs │ │ │ │ ├── Benchmark02.cs.meta │ │ │ │ ├── Benchmark03.cs │ │ │ │ ├── Benchmark03.cs.meta │ │ │ │ ├── Benchmark04.cs │ │ │ │ ├── Benchmark04.cs.meta │ │ │ │ ├── CameraController.cs │ │ │ │ ├── CameraController.cs.meta │ │ │ │ ├── ChatController.cs │ │ │ │ ├── ChatController.cs.meta │ │ │ │ ├── DropdownSample.cs │ │ │ │ ├── DropdownSample.cs.meta │ │ │ │ ├── EnvMapAnimator.cs │ │ │ │ ├── EnvMapAnimator.cs.meta │ │ │ │ ├── ObjectSpin.cs │ │ │ │ ├── ObjectSpin.cs.meta │ │ │ │ ├── ShaderPropAnimator.cs │ │ │ │ ├── ShaderPropAnimator.cs.meta │ │ │ │ ├── SimpleScript.cs │ │ │ │ ├── SimpleScript.cs.meta │ │ │ │ ├── SkewTextExample.cs │ │ │ │ ├── SkewTextExample.cs.meta │ │ │ │ ├── TMP_DigitValidator.cs │ │ │ │ ├── TMP_DigitValidator.cs.meta │ │ │ │ ├── TMP_ExampleScript_01.cs │ │ │ │ ├── TMP_ExampleScript_01.cs.meta │ │ │ │ ├── TMP_FrameRateCounter.cs │ │ │ │ ├── TMP_FrameRateCounter.cs.meta │ │ │ │ ├── TMP_PhoneNumberValidator.cs │ │ │ │ ├── TMP_PhoneNumberValidator.cs.meta │ │ │ │ ├── TMP_TextEventCheck.cs │ │ │ │ ├── TMP_TextEventCheck.cs.meta │ │ │ │ ├── TMP_TextEventHandler.cs │ │ │ │ ├── TMP_TextEventHandler.cs.meta │ │ │ │ ├── TMP_TextInfoDebugTool.cs │ │ │ │ ├── TMP_TextInfoDebugTool.cs.meta │ │ │ │ ├── TMP_TextSelector_A.cs │ │ │ │ ├── TMP_TextSelector_A.cs.meta │ │ │ │ ├── TMP_TextSelector_B.cs │ │ │ │ ├── TMP_TextSelector_B.cs.meta │ │ │ │ ├── TMP_UiFrameRateCounter.cs │ │ │ │ ├── TMP_UiFrameRateCounter.cs.meta │ │ │ │ ├── TMPro_InstructionOverlay.cs │ │ │ │ ├── TMPro_InstructionOverlay.cs.meta │ │ │ │ ├── TeleType.cs │ │ │ │ ├── TeleType.cs.meta │ │ │ │ ├── TextConsoleSimulator.cs │ │ │ │ ├── TextConsoleSimulator.cs.meta │ │ │ │ ├── TextMeshProFloatingText.cs │ │ │ │ ├── TextMeshProFloatingText.cs.meta │ │ │ │ ├── TextMeshSpawner.cs │ │ │ │ ├── TextMeshSpawner.cs.meta │ │ │ │ ├── VertexColorCycler.cs │ │ │ │ ├── VertexColorCycler.cs.meta │ │ │ │ ├── VertexJitter.cs │ │ │ │ ├── VertexJitter.cs.meta │ │ │ │ ├── VertexShakeA.cs │ │ │ │ ├── VertexShakeA.cs.meta │ │ │ │ ├── VertexShakeB.cs │ │ │ │ ├── VertexShakeB.cs.meta │ │ │ │ ├── VertexZoom.cs │ │ │ │ ├── VertexZoom.cs.meta │ │ │ │ ├── WarpTextExample.cs │ │ │ │ └── WarpTextExample.cs.meta │ │ │ ├── Sprites.meta │ │ │ ├── Sprites │ │ │ │ ├── Default Sprites.png │ │ │ │ ├── Default Sprites.png.meta │ │ │ │ ├── DropCap Numbers.psd │ │ │ │ └── DropCap Numbers.psd.meta │ │ │ ├── Textures.meta │ │ │ └── Textures │ │ │ │ ├── Brushed Metal 3.jpg │ │ │ │ ├── Brushed Metal 3.jpg.meta │ │ │ │ ├── Floor Cement.jpg │ │ │ │ ├── Floor Cement.jpg.meta │ │ │ │ ├── Floor Tiles 1 - diffuse.jpg │ │ │ │ ├── Floor Tiles 1 - diffuse.jpg.meta │ │ │ │ ├── Fruit Jelly (B&W).jpg │ │ │ │ ├── Fruit Jelly (B&W).jpg.meta │ │ │ │ ├── Gradient Diagonal (Color).jpg │ │ │ │ ├── Gradient Diagonal (Color).jpg.meta │ │ │ │ ├── Gradient Horizontal (Color).jpg │ │ │ │ ├── Gradient Horizontal (Color).jpg.meta │ │ │ │ ├── Gradient Vertical (Color).jpg │ │ │ │ ├── Gradient Vertical (Color).jpg.meta │ │ │ │ ├── Mask Zig-n-Zag.psd │ │ │ │ ├── Mask Zig-n-Zag.psd.meta │ │ │ │ ├── Small Crate_diffuse.jpg │ │ │ │ ├── Small Crate_diffuse.jpg.meta │ │ │ │ ├── Small Crate_normal.jpg │ │ │ │ ├── Small Crate_normal.jpg.meta │ │ │ │ ├── Sunny Days - Seamless.jpg │ │ │ │ ├── Sunny Days - Seamless.jpg.meta │ │ │ │ ├── Text Overflow - Linked Text Image 1.png │ │ │ │ ├── Text Overflow - Linked Text Image 1.png.meta │ │ │ │ ├── Text Overflow - Linked Text UI Screenshot.png │ │ │ │ ├── Text Overflow - Linked Text UI Screenshot.png.meta │ │ │ │ ├── Wipe Pattern - Circle.psd │ │ │ │ ├── Wipe Pattern - Circle.psd.meta │ │ │ │ ├── Wipe Pattern - Diagonal.psd │ │ │ │ ├── Wipe Pattern - Diagonal.psd.meta │ │ │ │ ├── Wipe Pattern - Radial Double.psd │ │ │ │ ├── Wipe Pattern - Radial Double.psd.meta │ │ │ │ ├── Wipe Pattern - Radial Quad.psd │ │ │ │ └── Wipe Pattern - Radial Quad.psd.meta │ │ ├── Fonts.meta │ │ ├── Fonts │ │ │ ├── LiberationSans - OFL.txt │ │ │ ├── LiberationSans - OFL.txt.meta │ │ │ ├── LiberationSans.ttf │ │ │ └── LiberationSans.ttf.meta │ │ ├── Resources.meta │ │ ├── Resources │ │ │ ├── Fonts & Materials.meta │ │ │ ├── Fonts & Materials │ │ │ │ ├── LiberationSans SDF - Drop Shadow.mat │ │ │ │ ├── LiberationSans SDF - Drop Shadow.mat.meta │ │ │ │ ├── LiberationSans SDF - Fallback.asset │ │ │ │ ├── LiberationSans SDF - Fallback.asset.meta │ │ │ │ ├── LiberationSans SDF - Outline.mat │ │ │ │ ├── LiberationSans SDF - Outline.mat.meta │ │ │ │ ├── LiberationSans SDF.asset │ │ │ │ └── LiberationSans SDF.asset.meta │ │ │ ├── LineBreaking Following Characters.txt │ │ │ ├── LineBreaking Following Characters.txt.meta │ │ │ ├── LineBreaking Leading Characters.txt │ │ │ ├── LineBreaking Leading Characters.txt.meta │ │ │ ├── Sprite Assets.meta │ │ │ ├── Sprite Assets │ │ │ │ ├── EmojiOne.asset │ │ │ │ └── EmojiOne.asset.meta │ │ │ ├── Style Sheets.meta │ │ │ ├── Style Sheets │ │ │ │ ├── Default Style Sheet.asset │ │ │ │ └── Default Style Sheet.asset.meta │ │ │ ├── TMP Settings.asset │ │ │ └── TMP Settings.asset.meta │ │ ├── Shaders.meta │ │ ├── Shaders │ │ │ ├── TMP_Bitmap-Custom-Atlas.shader │ │ │ ├── TMP_Bitmap-Custom-Atlas.shader.meta │ │ │ ├── TMP_Bitmap-Mobile.shader │ │ │ ├── TMP_Bitmap-Mobile.shader.meta │ │ │ ├── TMP_Bitmap.shader │ │ │ ├── TMP_Bitmap.shader.meta │ │ │ ├── TMP_SDF Overlay.shader │ │ │ ├── TMP_SDF Overlay.shader.meta │ │ │ ├── TMP_SDF SSD.shader │ │ │ ├── TMP_SDF SSD.shader.meta │ │ │ ├── TMP_SDF-Mobile Masking.shader │ │ │ ├── TMP_SDF-Mobile Masking.shader.meta │ │ │ ├── TMP_SDF-Mobile Overlay.shader │ │ │ ├── TMP_SDF-Mobile Overlay.shader.meta │ │ │ ├── TMP_SDF-Mobile SSD.shader │ │ │ ├── TMP_SDF-Mobile SSD.shader.meta │ │ │ ├── TMP_SDF-Mobile.shader │ │ │ ├── TMP_SDF-Mobile.shader.meta │ │ │ ├── TMP_SDF-Surface-Mobile.shader │ │ │ ├── TMP_SDF-Surface-Mobile.shader.meta │ │ │ ├── TMP_SDF-Surface.shader │ │ │ ├── TMP_SDF-Surface.shader.meta │ │ │ ├── TMP_SDF.shader │ │ │ ├── TMP_SDF.shader.meta │ │ │ ├── TMP_Sprite.shader │ │ │ ├── TMP_Sprite.shader.meta │ │ │ ├── TMPro.cginc │ │ │ ├── TMPro.cginc.meta │ │ │ ├── TMPro_Mobile.cginc │ │ │ ├── TMPro_Mobile.cginc.meta │ │ │ ├── TMPro_Properties.cginc │ │ │ ├── TMPro_Properties.cginc.meta │ │ │ ├── TMPro_Surface.cginc │ │ │ └── TMPro_Surface.cginc.meta │ │ ├── Sprites.meta │ │ └── Sprites │ │ │ ├── EmojiOne Attribution.txt │ │ │ ├── EmojiOne Attribution.txt.meta │ │ │ ├── EmojiOne.json │ │ │ ├── EmojiOne.json.meta │ │ │ ├── EmojiOne.png │ │ │ └── EmojiOne.png.meta │ ├── TextWriter.meta │ └── TextWriter │ │ ├── MessageUpDownAnimation.anim │ │ ├── MessageUpDownAnimation.anim.meta │ │ ├── Sounds.meta │ │ ├── Sounds │ │ ├── Talking.wav │ │ └── Talking.wav.meta │ │ ├── Textures.meta │ │ └── Textures │ │ ├── Assistant_BRT.psd │ │ ├── Assistant_BRT.psd.meta │ │ ├── Circle.psd │ │ ├── Circle.psd.meta │ │ ├── MessageArrow.psd │ │ ├── MessageArrow.psd.meta │ │ ├── White_1x1.mat │ │ ├── White_1x1.mat.meta │ │ ├── White_1x1.psd │ │ └── White_1x1.psd.meta ├── Packages │ ├── manifest.json │ └── packages-lock.json ├── ProjectSettings │ ├── AudioManager.asset │ ├── ClusterInputManager.asset │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── GraphicsSettings.asset │ ├── InputManager.asset │ ├── NavMeshAreas.asset │ ├── NetworkManager.asset │ ├── PackageManagerSettings.asset │ ├── Physics2DSettings.asset │ ├── PresetManager.asset │ ├── ProjectSettings.asset │ ├── ProjectVersion.txt │ ├── QualitySettings.asset │ ├── TagManager.asset │ ├── TimeManager.asset │ ├── TimelineSettings.asset │ ├── UnityConnectSettings.asset │ ├── VFXManager.asset │ ├── VersionControlSettings.asset │ └── XRSettings.asset └── UserSettings │ └── EditorUserSettings.asset └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/.gitignore -------------------------------------------------------------------------------- /2D Platformer Game/.vsconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/.vsconfig -------------------------------------------------------------------------------- /2D Platformer Game/Assets/2D Platformer Tileset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/2D Platformer Tileset.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/2D Platformer Tileset/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/2D Platformer Tileset/Scenes.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/2D Platformer Tileset/Sprites.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/2D Platformer Tileset/Sprites.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/2D Platformer Tileset/Sprites/Enemy.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/2D Platformer Tileset/Sprites/Enemy.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/2D Platformer Tileset/Sprites/NPC.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/2D Platformer Tileset/Sprites/NPC.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/2D Platformer Tileset/Sprites/Objects.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/2D Platformer Tileset/Sprites/Objects.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/2D Platformer Tileset/Sprites/Tileset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/2D Platformer Tileset/Sprites/Tileset.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/AllIn1SpriteShader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/AllIn1SpriteShader.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/AllIn1SpriteShader/Demo.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/AllIn1SpriteShader/Demo.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/AllIn1SpriteShader/Demo/Animation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/AllIn1SpriteShader/Demo/Animation.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/AllIn1SpriteShader/Demo/Demo.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/AllIn1SpriteShader/Demo/Demo.unity -------------------------------------------------------------------------------- /2D Platformer Game/Assets/AllIn1SpriteShader/Demo/Demo.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/AllIn1SpriteShader/Demo/Demo.unity.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/AllIn1SpriteShader/Demo/Demo2.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/AllIn1SpriteShader/Demo/Demo2.unity -------------------------------------------------------------------------------- /2D Platformer Game/Assets/AllIn1SpriteShader/Demo/Demo2.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/AllIn1SpriteShader/Demo/Demo2.unity.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/AllIn1SpriteShader/Demo/Fonts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/AllIn1SpriteShader/Demo/Fonts.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/AllIn1SpriteShader/Demo/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/AllIn1SpriteShader/Demo/Materials.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/AllIn1SpriteShader/Demo/Materials/Fire.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/AllIn1SpriteShader/Demo/Materials/Fire.mat -------------------------------------------------------------------------------- /2D Platformer Game/Assets/AllIn1SpriteShader/Demo/Materials/Ice.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/AllIn1SpriteShader/Demo/Materials/Ice.mat -------------------------------------------------------------------------------- /2D Platformer Game/Assets/AllIn1SpriteShader/Demo/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/AllIn1SpriteShader/Demo/Scripts.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/AllIn1SpriteShader/Demo/Textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/AllIn1SpriteShader/Demo/Textures.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/AllIn1SpriteShader/Demo/Textures/coals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/AllIn1SpriteShader/Demo/Textures/coals.png -------------------------------------------------------------------------------- /2D Platformer Game/Assets/AllIn1SpriteShader/Demo/Textures/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/AllIn1SpriteShader/Demo/Textures/flag.png -------------------------------------------------------------------------------- /2D Platformer Game/Assets/AllIn1SpriteShader/Demo/Textures/grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/AllIn1SpriteShader/Demo/Textures/grass.png -------------------------------------------------------------------------------- /2D Platformer Game/Assets/AllIn1SpriteShader/Demo/Textures/spark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/AllIn1SpriteShader/Demo/Textures/spark.png -------------------------------------------------------------------------------- /2D Platformer Game/Assets/AllIn1SpriteShader/Demo/Textures/water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/AllIn1SpriteShader/Demo/Textures/water.png -------------------------------------------------------------------------------- /2D Platformer Game/Assets/AllIn1SpriteShader/Documentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/AllIn1SpriteShader/Documentation.pdf -------------------------------------------------------------------------------- /2D Platformer Game/Assets/AllIn1SpriteShader/Documentation.pdf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/AllIn1SpriteShader/Documentation.pdf.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/AllIn1SpriteShader/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/AllIn1SpriteShader/Editor.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/AllIn1SpriteShader/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/AllIn1SpriteShader/Materials.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/AllIn1SpriteShader/Materials/Orb.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/AllIn1SpriteShader/Materials/Orb.mat -------------------------------------------------------------------------------- /2D Platformer Game/Assets/AllIn1SpriteShader/Materials/Orb.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/AllIn1SpriteShader/Materials/Orb.mat.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/AllIn1SpriteShader/Materials/Powerup.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/AllIn1SpriteShader/Materials/Powerup.mat -------------------------------------------------------------------------------- /2D Platformer Game/Assets/AllIn1SpriteShader/Materials/ScoreOrb.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/AllIn1SpriteShader/Materials/ScoreOrb.mat -------------------------------------------------------------------------------- /2D Platformer Game/Assets/AllIn1SpriteShader/Materials/UIStencil.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/AllIn1SpriteShader/Materials/UIStencil.mat -------------------------------------------------------------------------------- /2D Platformer Game/Assets/AllIn1SpriteShader/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/AllIn1SpriteShader/Resources.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/AllIn1SpriteShader/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/AllIn1SpriteShader/Scripts.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/AllIn1SpriteShader/Scripts/RandomSeed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/AllIn1SpriteShader/Scripts/RandomSeed.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/AllIn1SpriteShader/Textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/AllIn1SpriteShader/Textures.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/AllIn1SpriteShader/Textures/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/AllIn1SpriteShader/Textures/black.png -------------------------------------------------------------------------------- /2D Platformer Game/Assets/AllIn1SpriteShader/Textures/fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/AllIn1SpriteShader/Textures/fire.png -------------------------------------------------------------------------------- /2D Platformer Game/Assets/AllIn1SpriteShader/Textures/fire2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/AllIn1SpriteShader/Textures/fire2.png -------------------------------------------------------------------------------- /2D Platformer Game/Assets/AllIn1SpriteShader/Textures/gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/AllIn1SpriteShader/Textures/gradient.png -------------------------------------------------------------------------------- /2D Platformer Game/Assets/AllIn1SpriteShader/Textures/rainbow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/AllIn1SpriteShader/Textures/rainbow.png -------------------------------------------------------------------------------- /2D Platformer Game/Assets/AllIn1SpriteShader/Textures/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/AllIn1SpriteShader/Textures/white.png -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Animation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Animation.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Animation/AnimationControllers.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Animation/AnimationControllers.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Animation/AnimationControllers/Npc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Animation/AnimationControllers/Npc.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Animation/Animations.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Animation/Animations.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Animation/Animations/Combat Dummy.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Animation/Animations/Combat Dummy.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Animation/Animations/Combat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Animation/Animations/Combat.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Animation/Animations/Combat/Weapon.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Animation/Animations/Combat/Weapon.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Animation/Animations/Decorations.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Animation/Animations/Decorations.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Animation/Animations/DropLoot.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Animation/Animations/DropLoot.anim -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Animation/Animations/DropLoot.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Animation/Animations/DropLoot.anim.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Animation/Animations/Empty.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Animation/Animations/Empty.anim -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Animation/Animations/Empty.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Animation/Animations/Empty.anim.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Animation/Animations/Enemies.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Animation/Animations/Enemies.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Animation/Animations/Enemies/Enemy1.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Animation/Animations/Enemies/Enemy1.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Animation/Animations/Enemies/Enemy2.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Animation/Animations/Enemies/Enemy2.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Animation/Animations/Enemies/Enemy3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Animation/Animations/Enemies/Enemy3.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Animation/Animations/Enemies/Enemy4.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Animation/Animations/Enemies/Enemy4.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Animation/Animations/Enemies/Enemy5.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Animation/Animations/Enemies/Enemy5.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Animation/Animations/Enemies/Enemy6.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Animation/Animations/Enemies/Enemy6.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Animation/Animations/Enemies/Enemy7.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Animation/Animations/Enemies/Enemy7.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Animation/Animations/Gems.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Animation/Animations/Gems.anim -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Animation/Animations/Gems.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Animation/Animations/Gems.anim.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Animation/Animations/Npc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Animation/Animations/Npc.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Animation/Animations/Npc/Bee.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Animation/Animations/Npc/Bee.anim -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Animation/Animations/Npc/Bee.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Animation/Animations/Npc/Bee.anim.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Animation/Animations/Npc/BirdFly.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Animation/Animations/Npc/BirdFly.anim -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Animation/Animations/Npc/BirdIdle.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Animation/Animations/Npc/BirdIdle.anim -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Animation/Animations/Npc/Blacksmith.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Animation/Animations/Npc/Blacksmith.anim -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Animation/Animations/Npc/Merchant.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Animation/Animations/Npc/Merchant.anim -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Animation/Animations/Particles.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Animation/Animations/Particles.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Animation/Animations/Player.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Animation/Animations/Player.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Animation/Animations/Player/Dash.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Animation/Animations/Player/Dash.anim -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Animation/Animations/Player/FallUp.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Animation/Animations/Player/FallUp.anim -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Animation/Animations/Player/Hurt.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Animation/Animations/Player/Hurt.anim -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Animation/Animations/Player/Idle.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Animation/Animations/Player/Idle.anim -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Animation/Animations/Player/JumpUp.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Animation/Animations/Player/JumpUp.anim -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Animation/Animations/Player/Land.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Animation/Animations/Player/Land.anim -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Animation/Animations/Player/Move.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Animation/Animations/Player/Move.anim -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Animation/Animations/Player/Old.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Animation/Animations/Player/Old.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Animation/Animations/Player/TakeOf.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Animation/Animations/Player/TakeOf.anim -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Animation/Animations/Powerup.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Animation/Animations/Powerup.anim -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Animation/Animations/Powerup.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Animation/Animations/Powerup.anim.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Animations UI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Animations UI.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Animations UI/ConfirmationPopup.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Animations UI/ConfirmationPopup.anim -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Animations UI/EdgeAnimation.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Animations UI/EdgeAnimation.anim -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Animations UI/EdgeAnimation.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Animations UI/EdgeAnimation.anim.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Animations UI/GameoverScene1.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Animations UI/GameoverScene1.anim -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Animations UI/GameoverScene1.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Animations UI/GameoverScene1.anim.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Animations UI/GameoverScene2.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Animations UI/GameoverScene2.anim -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Animations UI/GameoverScene2.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Animations UI/GameoverScene2.anim.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Animations UI/GameoverScene2Part2.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Animations UI/GameoverScene2Part2.anim -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Animations UI/MenuAnims.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Animations UI/MenuAnims.controller -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Animations UI/MenuAnims.controller.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Animations UI/MenuAnims.controller.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Animations UI/SettingsPanels.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Animations UI/SettingsPanels.anim -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Animations UI/SettingsPanels.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Animations UI/SettingsPanels.anim.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Animations UI/WaitingForInput.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Animations UI/WaitingForInput.anim -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Animations UI/WaitingForInput.anim.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Animations UI/WaitingForInput.anim.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Animations UI/WaitingForInput.controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Animations UI/WaitingForInput.controller -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/Blood.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/Blood.psd -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/Blood.psd.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/Blood.psd.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/ButtonImage 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/ButtonImage 1.png -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/ButtonImage 1.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/ButtonImage 1.png.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/ButtonImage copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/ButtonImage copy.png -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/ButtonImage copy.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/ButtonImage copy.png.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/ButtonImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/ButtonImage.png -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/ButtonImage.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/ButtonImage.png.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/ButtonImage2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/ButtonImage2.png -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/ButtonImage2.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/ButtonImage2.png.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/Dash Indicator.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/Dash Indicator.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/Dash Indicator/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/Dash Indicator/dash.png -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/Dash Indicator/dash.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/Dash Indicator/dash.png.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/DustSprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/DustSprite.png -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/DustSprite.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/DustSprite.png.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/FixTiles.spriteatlas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/FixTiles.spriteatlas -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/FixTiles.spriteatlas.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/FixTiles.spriteatlas.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/GigaChad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/GigaChad.jpg -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/GigaChad.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/GigaChad.jpg.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/MainCharacterParts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/MainCharacterParts.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/MainCharacterParts/BlueSword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/MainCharacterParts/BlueSword.png -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/MainCharacterParts/CyanSword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/MainCharacterParts/CyanSword.png -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/MainCharacterParts/DefaultSword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/MainCharacterParts/DefaultSword.png -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/MainCharacterParts/GreenSword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/MainCharacterParts/GreenSword.png -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/MainCharacterParts/PurpleSword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/MainCharacterParts/PurpleSword.png -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/MainCharacterParts/RedSword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/MainCharacterParts/RedSword.png -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/MainCharacterParts/RedSword.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/MainCharacterParts/RedSword.png.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/MainScreenBG-FullHD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/MainScreenBG-FullHD.png -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/MainScreenBG-FullHD.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/MainScreenBG-FullHD.png.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/ManaBar.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/ManaBar.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/ManaBar/ManaBarBorder 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/ManaBar/ManaBarBorder 1.png -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/ManaBar/ManaBarBorder 1.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/ManaBar/ManaBarBorder 1.png.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/ManaBar/ManaBarBorder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/ManaBar/ManaBarBorder.png -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/ManaBar/ManaBarBorder.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/ManaBar/ManaBarBorder.png.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/ManaBar/ManaBarEdge_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/ManaBar/ManaBarEdge_0.png -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/ManaBar/ManaBarEdge_0.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/ManaBar/ManaBarEdge_0.png.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/ManaBar/ManaBarEdge_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/ManaBar/ManaBarEdge_1.png -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/ManaBar/ManaBarEdge_1.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/ManaBar/ManaBarEdge_1.png.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/ManaBar/ManaBarEdge_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/ManaBar/ManaBarEdge_2.png -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/ManaBar/ManaBarEdge_2.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/ManaBar/ManaBarEdge_2.png.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/ManaBar/Manabar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/ManaBar/Manabar2.png -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/ManaBar/Manabar2.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/ManaBar/Manabar2.png.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/ManaBar/White_1x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/ManaBar/White_1x1.png -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/ManaBar/White_1x1.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/ManaBar/White_1x1.png.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/ObjectSprites.spriteatlas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/ObjectSprites.spriteatlas -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/ObjectSprites.spriteatlas.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/ObjectSprites.spriteatlas.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/Orbs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/Orbs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/Orbs/OrbGem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/Orbs/OrbGem.png -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/Orbs/OrbGem.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/Orbs/OrbGem.png.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/Orbs/Orb_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/Orbs/Orb_01.png -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/Orbs/Orb_01.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/Orbs/Orb_01.png.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/Orbs/Orb_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/Orbs/Orb_02.png -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/Orbs/Orb_02.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/Orbs/Orb_02.png.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/Orbs/Orb_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/Orbs/Orb_03.png -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/Orbs/Orb_03.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/Orbs/Orb_03.png.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/Orbs/Orb_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/Orbs/Orb_04.png -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/Orbs/Orb_04.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/Orbs/Orb_04.png.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/Orbs/Orb_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/Orbs/Orb_05.png -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/Orbs/Orb_05.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/Orbs/Orb_05.png.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/Orbs/Orb_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/Orbs/Orb_06.png -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/Orbs/Orb_06.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/Orbs/Orb_06.png.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/Orbs/orbScore1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/Orbs/orbScore1.png -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/Orbs/orbScore1.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/Orbs/orbScore1.png.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/Orbs/orbScore2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/Orbs/orbScore2.png -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/Orbs/orbScore2.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/Orbs/orbScore2.png.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/Orbs/orbScore3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/Orbs/orbScore3.png -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/Orbs/orbScore3.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/Orbs/orbScore3.png.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/Powerups.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/Powerups.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/Powerups/Powerup1-Shiny-Mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/Powerups/Powerup1-Shiny-Mid.png -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/Powerups/Powerup1-Shiny-Mid.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/Powerups/Powerup1-Shiny-Mid.png.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/Powerups/Powerup1-Shiny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/Powerups/Powerup1-Shiny.png -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/Powerups/Powerup1-Shiny.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/Powerups/Powerup1-Shiny.png.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/Powerups/Powerup2-Shiny-Mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/Powerups/Powerup2-Shiny-Mid.png -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/Powerups/Powerup2-Shiny-Mid.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/Powerups/Powerup2-Shiny-Mid.png.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/Powerups/Powerup2-Shiny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/Powerups/Powerup2-Shiny.png -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/Powerups/Powerup2-Shiny.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/Powerups/Powerup2-Shiny.png.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/Powerups/Powerup3-Shiny-Mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/Powerups/Powerup3-Shiny-Mid.png -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/Powerups/Powerup3-Shiny-Mid.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/Powerups/Powerup3-Shiny-Mid.png.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/Powerups/Powerup3-Shiny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/Powerups/Powerup3-Shiny.png -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/Powerups/Powerup3-Shiny.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/Powerups/Powerup3-Shiny.png.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/Powerups/Powerup4-Shiny-Mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/Powerups/Powerup4-Shiny-Mid.png -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/Powerups/Powerup4-Shiny-Mid.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/Powerups/Powerup4-Shiny-Mid.png.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/Powerups/Powerup4-Shiny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/Powerups/Powerup4-Shiny.png -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/Powerups/Powerup4-Shiny.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/Powerups/Powerup4-Shiny.png.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/Rick-Rolled.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/Rick-Rolled.jpg -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Art/Rick-Rolled.jpg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Art/Rick-Rolled.jpg.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/Ambience-Caketown.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/Ambience-Caketown.ogg -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/Ambience-Caketown.ogg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/Ambience-Caketown.ogg.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/Ambience-Snowland_Loop.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/Ambience-Snowland_Loop.ogg -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/Ambience-Snowland_Loop.ogg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/Ambience-Snowland_Loop.ogg.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/Ambience-Woodland_Fantasy.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/Ambience-Woodland_Fantasy.ogg -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/ArcherMelee.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/ArcherMelee.flac -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/ArcherMelee.flac.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/ArcherMelee.flac.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/BossHit.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/BossHit.flac -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/BossHit.flac.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/BossHit.flac.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/DropLoot1.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/DropLoot1.flac -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/DropLoot1.flac.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/DropLoot1.flac.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/DropLoot2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/DropLoot2.wav -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/DropLoot2.wav.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/DropLoot2.wav.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/DropLoot3.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/DropLoot3.flac -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/DropLoot3.flac.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/DropLoot3.flac.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/GameoverAudio.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/GameoverAudio.mp3 -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/GameoverAudio.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/GameoverAudio.mp3.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/GrassMove1.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/GrassMove1.flac -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/GrassMove1.flac.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/GrassMove1.flac.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/GrassMove2.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/GrassMove2.flac -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/GrassMove2.flac.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/GrassMove2.flac.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/GrassMove3.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/GrassMove3.flac -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/GrassMove3.flac.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/GrassMove3.flac.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/NpcDialogs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/NpcDialogs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/NpcDialogs/DarknessTalk1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/NpcDialogs/DarknessTalk1.mp3 -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/NpcDialogs/DarknessTalk1.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/NpcDialogs/DarknessTalk1.mp3.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/NpcDialogs/DarknessTalk2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/NpcDialogs/DarknessTalk2.mp3 -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/NpcDialogs/DarknessTalk2.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/NpcDialogs/DarknessTalk2.mp3.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/NpcDialogs/DarknessTalk3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/NpcDialogs/DarknessTalk3.mp3 -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/NpcDialogs/DarknessTalk3.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/NpcDialogs/DarknessTalk3.mp3.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/NpcDialogs/DarknessTalk4.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/NpcDialogs/DarknessTalk4.mp3 -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/NpcDialogs/DarknessTalk4.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/NpcDialogs/DarknessTalk4.mp3.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk1-1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk1-1.mp3 -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk1-1.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk1-1.mp3.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk1-2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk1-2.mp3 -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk1-2.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk1-2.mp3.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk1-3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk1-3.mp3 -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk1-3.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk1-3.mp3.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk1-4.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk1-4.mp3 -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk1-4.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk1-4.mp3.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk2-1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk2-1.mp3 -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk2-1.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk2-1.mp3.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk3-1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk3-1.mp3 -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk3-1.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk3-1.mp3.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk3-2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk3-2.mp3 -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk3-2.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk3-2.mp3.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk4-1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk4-1.mp3 -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk4-1.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk4-1.mp3.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk5-1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk5-1.mp3 -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk5-1.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk5-1.mp3.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk5-2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk5-2.mp3 -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk5-2.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk5-2.mp3.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk5-3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk5-3.mp3 -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk5-3.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk5-3.mp3.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk6-1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk6-1.mp3 -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk6-1.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk6-1.mp3.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk6-2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk6-2.mp3 -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk6-2.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk6-2.mp3.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk6-3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk6-3.mp3 -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk6-3.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk6-3.mp3.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk6-4.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk6-4.mp3 -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk6-4.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk6-4.mp3.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk7-1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk7-1.mp3 -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk7-1.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk7-1.mp3.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk7-2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk7-2.mp3 -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk7-2.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/NpcDialogs/NpcTalk7-2.mp3.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/PlayerDash1.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/PlayerDash1.flac -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/PlayerDash1.flac.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/PlayerDash1.flac.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/PlayerDash2.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/PlayerDash2.flac -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/PlayerDash2.flac.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/PlayerDash2.flac.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/PlayerDashPre.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/PlayerDashPre.flac -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/PlayerDashPre.flac.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/PlayerDashPre.flac.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/PlayerHurt1.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/PlayerHurt1.flac -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/PlayerHurt1.flac.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/PlayerHurt1.flac.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/PlayerHurt2.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/PlayerHurt2.flac -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/PlayerHurt2.flac.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/PlayerHurt2.flac.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/PlayerJump1.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/PlayerJump1.flac -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/PlayerJump1.flac.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/PlayerJump1.flac.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/PlayerJump2.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/PlayerJump2.flac -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/PlayerJump2.flac.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/PlayerJump2.flac.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/PlayerLand.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/PlayerLand.flac -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/PlayerLand.flac.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/PlayerLand.flac.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/PlayerLedgeClimb.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/PlayerLedgeClimb.flac -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/PlayerLedgeClimb.flac.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/PlayerLedgeClimb.flac.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/PlayerMelee1-Alternative.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/PlayerMelee1-Alternative.flac -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/PlayerMelee1.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/PlayerMelee1.flac -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/PlayerMelee1.flac.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/PlayerMelee1.flac.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/PlayerMelee2-Alternative.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/PlayerMelee2-Alternative.flac -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/PlayerMelee2.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/PlayerMelee2.flac -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/PlayerMelee2.flac.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/PlayerMelee2.flac.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/PlayerMelee3-Alternative.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/PlayerMelee3-Alternative.flac -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/PlayerMelee3.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/PlayerMelee3.flac -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/PlayerMelee3.flac.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/PlayerMelee3.flac.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/PlayerParry.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/PlayerParry.flac -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/PlayerParry.flac.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/PlayerParry.flac.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/PlayerRun.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/PlayerRun.flac -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/PlayerRun.flac.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/PlayerRun.flac.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/PlayerRun1.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/PlayerRun1.flac -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/PlayerRun1.flac.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/PlayerRun1.flac.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/PlayerRun2.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/PlayerRun2.flac -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/PlayerRun2.flac.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/PlayerRun2.flac.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/PlayerRun3.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/PlayerRun3.flac -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/PlayerRun3.flac.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/PlayerRun3.flac.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/PlayerRun4.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/PlayerRun4.flac -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/PlayerRun4.flac.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/PlayerRun4.flac.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/PlayerRunGrass.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/PlayerRunGrass.flac -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/PlayerRunGrass.flac.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/PlayerRunGrass.flac.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/PlayerWallSlide.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/PlayerWallSlide.flac -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/PlayerWallSlide.flac.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/PlayerWallSlide.flac.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/Powerup.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/Powerup.flac -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/Powerup.flac.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/Powerup.flac.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/ScoreCalculationAudio.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/ScoreCalculationAudio.mp3 -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/ScoreCalculationAudio.mp3.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/ScoreCalculationAudio.mp3.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/Shield.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/Shield.flac -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/Shield.flac.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/Shield.flac.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/ShopBoosts.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/ShopBoosts.flac -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/ShopBoosts.flac.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/ShopBoosts.flac.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/ShopOutfit.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/ShopOutfit.flac -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/ShopOutfit.flac.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/ShopOutfit.flac.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/ShopSwords.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/ShopSwords.flac -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/ShopSwords.flac.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/ShopSwords.flac.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/SkeletonAttack1.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/SkeletonAttack1.flac -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/SkeletonAttack1.flac.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/SkeletonAttack1.flac.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/SkeletonAttack2.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/SkeletonAttack2.flac -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/SkeletonAttack2.flac.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/SkeletonAttack2.flac.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/SkeletonAttack3.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/SkeletonAttack3.flac -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/SkeletonAttack3.flac.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/SkeletonAttack3.flac.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/SkeletonBow.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/SkeletonBow.ogg -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/SkeletonBow.ogg.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/SkeletonBow.ogg.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/SkeletonDetection1.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/SkeletonDetection1.flac -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/SkeletonDetection1.flac.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/SkeletonDetection1.flac.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/SkeletonDetection2.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/SkeletonDetection2.flac -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/SkeletonDetection2.flac.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/SkeletonDetection2.flac.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/SkeletonDie2.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/SkeletonDie2.flac -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/SkeletonDie2.flac.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/SkeletonDie2.flac.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/SkeletonDodge1.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/SkeletonDodge1.flac -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/SkeletonDodge1.flac.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/SkeletonDodge1.flac.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/SkeletonDodge2.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/SkeletonDodge2.flac -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/SkeletonDodge2.flac.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/SkeletonDodge2.flac.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/SkeletonFall.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/SkeletonFall.flac -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/SkeletonFall.flac.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/SkeletonFall.flac.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/SkeletonHurt.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/SkeletonHurt.flac -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/SkeletonHurt.flac.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/SkeletonHurt.flac.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/SkeletonHurt1.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/SkeletonHurt1.flac -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/SkeletonHurt1.flac.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/SkeletonHurt1.flac.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/SkeletonHurt2.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/SkeletonHurt2.flac -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/SkeletonHurt2.flac.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/SkeletonHurt2.flac.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/SkeletonPierce.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/SkeletonPierce.flac -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/SkeletonPierce.flac.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/SkeletonPierce.flac.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/SkeletonRespawn.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/SkeletonRespawn.flac -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/SkeletonRespawn.flac.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/SkeletonRespawn.flac.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/SkeletonRespawn2.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/SkeletonRespawn2.flac -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/SkeletonRespawn2.flac.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/SkeletonRespawn2.flac.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/SkeletonShieldSlam.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/SkeletonShieldSlam.flac -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/SkeletonShieldSlam.flac.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/SkeletonShieldSlam.flac.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/SkeletonSpear.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/SkeletonSpear.flac -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/SkeletonSpear.flac.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/SkeletonSpear.flac.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/SkeletonSpell.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/SkeletonSpell.flac -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/SkeletonSpell.flac.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/SkeletonSpell.flac.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/SkeletonTeleport.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/SkeletonTeleport.flac -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/SkeletonTeleport.flac.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/SkeletonTeleport.flac.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/clickButton.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/clickButton.wav -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Audios/clickButton.wav.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Audios/clickButton.wav.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Editor.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Editor/EditorHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Editor/EditorHelper.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Editor/EditorHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Editor/EditorHelper.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Materials.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Materials/DustCloudMaterial.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Materials/DustCloudMaterial.mat -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Materials/DustCloudMaterial.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Materials/DustCloudMaterial.mat.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Materials/FixGaps.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Materials/FixGaps.mat -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Materials/FixGaps.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Materials/FixGaps.mat.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Materials/PlayerMat.physicsMaterial2D: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Materials/PlayerMat.physicsMaterial2D -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/AfterImage.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/AfterImage.prefab -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/AfterImage.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/AfterImage.prefab.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/Arrow.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/Arrow.prefab -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/Arrow.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/Arrow.prefab.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/BeeFly.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/BeeFly.prefab -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/BeeFly.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/BeeFly.prefab.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/Combat Dummy.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/Combat Dummy.prefab -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/Combat Dummy.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/Combat Dummy.prefab.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/DamagePopup.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/DamagePopup.prefab -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/DamagePopup.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/DamagePopup.prefab.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/DamagePowerup.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/DamagePowerup.prefab -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/DamagePowerup.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/DamagePowerup.prefab.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/DamagePowerupCountdownBar.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/DamagePowerupCountdownBar.prefab -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/DamagePowerupTrainScene.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/DamagePowerupTrainScene.prefab -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/DeathBloodParticle.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/DeathBloodParticle.prefab -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/DeathBloodParticle.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/DeathBloodParticle.prefab.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/DeathChunkParticle.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/DeathChunkParticle.prefab -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/DeathChunkParticle.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/DeathChunkParticle.prefab.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/DropLootBlue.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/DropLootBlue.prefab -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/DropLootBlue.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/DropLootBlue.prefab.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/DropLootCyan.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/DropLootCyan.prefab -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/DropLootCyan.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/DropLootCyan.prefab.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/DropLootGreen.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/DropLootGreen.prefab -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/DropLootGreen.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/DropLootGreen.prefab.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/DropLootPurple.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/DropLootPurple.prefab -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/DropLootPurple.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/DropLootPurple.prefab.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/DropLootRed.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/DropLootRed.prefab -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/DropLootRed.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/DropLootRed.prefab.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/DropLootYellow.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/DropLootYellow.prefab -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/DropLootYellow.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/DropLootYellow.prefab.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/DustParticle.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/DustParticle.prefab -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/DustParticle.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/DustParticle.prefab.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/Enemy3.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/Enemy3.prefab -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/Enemy3.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/Enemy3.prefab.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/Enemy4.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/Enemy4.prefab -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/Enemy4.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/Enemy4.prefab.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/Enemy5.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/Enemy5.prefab -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/Enemy5.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/Enemy5.prefab.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/Enemy6.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/Enemy6.prefab -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/Enemy6.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/Enemy6.prefab.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/Enemy7.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/Enemy7.prefab -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/Enemy7.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/Enemy7.prefab.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/HealthPowerup.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/HealthPowerup.prefab -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/HealthPowerup.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/HealthPowerup.prefab.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/HealthPowerupCountdownBar.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/HealthPowerupCountdownBar.prefab -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/HealthPowerupParticle.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/HealthPowerupParticle.prefab -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/HealthPowerupTrainScene.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/HealthPowerupTrainScene.prefab -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/Main Menu Container.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/Main Menu Container.prefab -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/Main Menu Container.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/Main Menu Container.prefab.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/ProjectileSkill.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/ProjectileSkill.prefab -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/ProjectileSkill.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/ProjectileSkill.prefab.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/RebindAttackKey.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/RebindAttackKey.prefab -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/RebindAttackKey.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/RebindAttackKey.prefab.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/RebindCrouchKey.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/RebindCrouchKey.prefab -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/RebindCrouchKey.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/RebindCrouchKey.prefab.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/RebindDashKey.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/RebindDashKey.prefab -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/RebindDashKey.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/RebindDashKey.prefab.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/RebindInteractKey.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/RebindInteractKey.prefab -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/RebindInteractKey.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/RebindInteractKey.prefab.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/RebindJumpKey.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/RebindJumpKey.prefab -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/RebindJumpKey.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/RebindJumpKey.prefab.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/RebindMoveLeftKey.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/RebindMoveLeftKey.prefab -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/RebindMoveLeftKey.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/RebindMoveLeftKey.prefab.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/RebindMoveRightKey.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/RebindMoveRightKey.prefab -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/RebindMoveRightKey.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/RebindMoveRightKey.prefab.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/RebindParryKey.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/RebindParryKey.prefab -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/RebindParryKey.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/RebindParryKey.prefab.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/ShieldPowerup.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/ShieldPowerup.prefab -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/ShieldPowerup.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/ShieldPowerup.prefab.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/ShieldPowerupCountdownBar.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/ShieldPowerupCountdownBar.prefab -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/ShieldPowerupTrainScene.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/ShieldPowerupTrainScene.prefab -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/VaporizeEffect1.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/VaporizeEffect1.prefab -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/VaporizeEffect1.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/VaporizeEffect1.prefab.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/VaporizePowerup.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/VaporizePowerup.prefab -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/VaporizePowerup.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/VaporizePowerup.prefab.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Prefabs/VaporizePowerupTrainScene.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Prefabs/VaporizePowerupTrainScene.prefab -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scenes.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scenes/Loading.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scenes/Loading.unity -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scenes/Loading.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scenes/Loading.unity.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scenes/MainMenu.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scenes/MainMenu.unity -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scenes/MainMenu.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scenes/MainMenu.unity.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scenes/Scene1.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scenes/Scene1.unity -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scenes/Scene1.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scenes/Scene1.unity.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scenes/Scene2.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scenes/Scene2.unity -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scenes/Scene2.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scenes/Scene2.unity.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/ApplicationModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/ApplicationModel.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/ApplicationModel.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/ApplicationModel.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Enemies.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Enemies.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Enemies/EnemySpecific.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Enemies/EnemySpecific.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Enemies/MainMenu.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Enemies/MainMenu.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Enemies/MainMenu/PlayIdleAnim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Enemies/MainMenu/PlayIdleAnim.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Enemies/State Machine.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Enemies/State Machine.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Enemies/State Machine/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Enemies/State Machine/Entity.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Enemies/State Machine/State.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Enemies/State Machine/State.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Enemies/States.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Enemies/States.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Enemies/States/AttackState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Enemies/States/AttackState.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Enemies/States/ChargeState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Enemies/States/ChargeState.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Enemies/States/Data.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Enemies/States/Data.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Enemies/States/Data/D_Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Enemies/States/Data/D_Entity.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Enemies/States/DeadState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Enemies/States/DeadState.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Enemies/States/DeadState.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Enemies/States/DeadState.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Enemies/States/DodgeState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Enemies/States/DodgeState.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Enemies/States/IdleState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Enemies/States/IdleState.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Enemies/States/IdleState.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Enemies/States/IdleState.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Enemies/States/MoveState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Enemies/States/MoveState.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Enemies/States/MoveState.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Enemies/States/MoveState.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Enemies/States/RespawnState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Enemies/States/RespawnState.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Enemies/States/StunState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Enemies/States/StunState.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Enemies/States/StunState.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Enemies/States/StunState.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Enemies/States/TeleportState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Enemies/States/TeleportState.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/GenericObjectPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/GenericObjectPool.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/GenericObjectPool.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/GenericObjectPool.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Interfaces.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Interfaces.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Interfaces/IDamageable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Interfaces/IDamageable.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Interfaces/IDamageable.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Interfaces/IDamageable.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Interfaces/IShopCustomer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Interfaces/IShopCustomer.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Interfaces/IShopCustomer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Interfaces/IShopCustomer.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Intermediaries.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Intermediaries.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Items.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Items.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Items.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Items.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Loader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Loader.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Loader.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Loader.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Manager.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Manager.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Manager/CinemachineShake.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Manager/CinemachineShake.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Manager/CinemachineShake.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Manager/CinemachineShake.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Manager/GameAssets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Manager/GameAssets.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Manager/GameAssets.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Manager/GameAssets.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Manager/GameManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Manager/GameManager.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Manager/GameManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Manager/GameManager.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Manager/GameSceneManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Manager/GameSceneManager.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Manager/GameSceneManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Manager/GameSceneManager.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Manager/InputManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Manager/InputManager.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Manager/InputManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Manager/InputManager.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Manager/MainMenuSceneManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Manager/MainMenuSceneManager.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Manager/PowerupManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Manager/PowerupManager.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Manager/PowerupManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Manager/PowerupManager.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Manager/ScoreManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Manager/ScoreManager.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Manager/ScoreManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Manager/ScoreManager.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Manager/Sound.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Manager/Sound.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Manager/Sound.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Manager/Sound.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Manager/SoundManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Manager/SoundManager.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Manager/SoundManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Manager/SoundManager.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/ObjectPoolingScripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/ObjectPoolingScripts.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Particles.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Particles.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Particles/DeathBloodParticle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Particles/DeathBloodParticle.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Particles/DeathChunkParticle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Particles/DeathChunkParticle.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Particles/DropLoot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Particles/DropLoot.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Particles/DropLoot.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Particles/DropLoot.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Particles/DropLootBlue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Particles/DropLootBlue.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Particles/DropLootBlue.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Particles/DropLootBlue.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Particles/DropLootCyan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Particles/DropLootCyan.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Particles/DropLootCyan.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Particles/DropLootCyan.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Particles/DropLootGreen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Particles/DropLootGreen.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Particles/DropLootGreen.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Particles/DropLootGreen.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Particles/DropLootPurple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Particles/DropLootPurple.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Particles/DropLootPurple.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Particles/DropLootPurple.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Particles/DropLootRed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Particles/DropLootRed.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Particles/DropLootRed.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Particles/DropLootRed.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Particles/DropLootYellow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Particles/DropLootYellow.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Particles/DropLootYellow.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Particles/DropLootYellow.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Particles/DustJumpParticle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Particles/DustJumpParticle.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Particles/VaporizeParticle1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Particles/VaporizeParticle1.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Player.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Player.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Player/Data.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Player/Data.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Player/Data/PlayerData.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Player/Data/PlayerData.asset -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Player/Data/PlayerData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Player/Data/PlayerData.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Player/Data/PlayerData.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Player/Data/PlayerData.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Player/Data/WeaponData.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Player/Data/WeaponData.asset -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Player/Data/WeaponData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Player/Data/WeaponData.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Player/Data/WeaponData.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Player/Data/WeaponData.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Player/Input.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Player/Input.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Player/Input/Player.inputactions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Player/Input/Player.inputactions -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Player/PlayerAfterImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Player/PlayerAfterImage.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Player/PlayerAfterImage.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Player/PlayerAfterImage.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Player/PlayerInventory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Player/PlayerInventory.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Player/PlayerInventory.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Player/PlayerInventory.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Player/PlayerStates.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Player/PlayerStates.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Projectiles.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Projectiles.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Projectiles/Projectile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Projectiles/Projectile.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Projectiles/Projectile.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Projectiles/Projectile.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Projectiles/ProjectileArrow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Projectiles/ProjectileArrow.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Projectiles/ProjectileSkill.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Projectiles/ProjectileSkill.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/SceneObjects.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/SceneObjects.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/SceneObjects/BeeFly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/SceneObjects/BeeFly.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/SceneObjects/BeeFly.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/SceneObjects/BeeFly.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/SceneObjects/BirdFly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/SceneObjects/BirdFly.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/SceneObjects/BirdFly.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/SceneObjects/BirdFly.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/SceneObjects/BirdIdle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/SceneObjects/BirdIdle.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/SceneObjects/BirdIdle.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/SceneObjects/BirdIdle.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/SceneObjects/Grass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/SceneObjects/Grass.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/SceneObjects/Grass.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/SceneObjects/Grass.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/SceneObjects/SurfaceHit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/SceneObjects/SurfaceHit.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/SceneObjects/SurfaceHit.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/SceneObjects/SurfaceHit.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Spawners.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Spawners.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Spawners/SpawnEnemy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Spawners/SpawnEnemy.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Spawners/SpawnEnemy.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Spawners/SpawnEnemy.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Spawners/SpawnEnemyInMines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Spawners/SpawnEnemyInMines.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Spawners/SpawnPowerupInMines.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Spawners/SpawnPowerupInMines.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Spawners/StartSpawns.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Spawners/StartSpawns.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Spawners/StartSpawns.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Spawners/StartSpawns.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Structs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Structs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Structs/AttackDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Structs/AttackDetails.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/Structs/AttackDetails.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/Structs/AttackDetails.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/DamagePopup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/DamagePopup.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/DamagePopup.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/DamagePopup.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/EasterEgg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/EasterEgg.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/EasterEgg.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/EasterEgg.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/EnemyHealthBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/EnemyHealthBar.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/EnemyHealthBar.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/EnemyHealthBar.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/Menu.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/Menu.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/Menu/ControlsDialogMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/Menu/ControlsDialogMenu.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/Menu/EscToGoBackInMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/Menu/EscToGoBackInMenu.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/Menu/GraphicsDialogMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/Menu/GraphicsDialogMenu.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/Menu/LoadPrefs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/Menu/LoadPrefs.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/Menu/LoadPrefs.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/Menu/LoadPrefs.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/Menu/SoundDialogMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/Menu/SoundDialogMenu.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/Menu/SoundDialogMenu.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/Menu/SoundDialogMenu.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/Menu/SoundOptionsPreApply.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/Menu/SoundOptionsPreApply.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/NpcDialogs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/NpcDialogs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/NpcDialogs/DarknessTalk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/NpcDialogs/DarknessTalk.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/NpcDialogs/DarknessTalk1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/NpcDialogs/DarknessTalk1.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/NpcDialogs/DarknessTalk2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/NpcDialogs/DarknessTalk2.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/NpcDialogs/DarknessTalk3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/NpcDialogs/DarknessTalk3.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/NpcDialogs/DarknessTalk4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/NpcDialogs/DarknessTalk4.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/NpcDialogs/MerchantTalk1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/NpcDialogs/MerchantTalk1.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/NpcDialogs/MerchantTalk2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/NpcDialogs/MerchantTalk2.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/NpcDialogs/NpcTalk1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/NpcDialogs/NpcTalk1.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/NpcDialogs/NpcTalk1.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/NpcDialogs/NpcTalk1.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/NpcDialogs/NpcTalk2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/NpcDialogs/NpcTalk2.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/NpcDialogs/NpcTalk2.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/NpcDialogs/NpcTalk2.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/NpcDialogs/NpcTalk3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/NpcDialogs/NpcTalk3.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/NpcDialogs/NpcTalk3.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/NpcDialogs/NpcTalk3.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/NpcDialogs/NpcTalk4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/NpcDialogs/NpcTalk4.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/NpcDialogs/NpcTalk4.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/NpcDialogs/NpcTalk4.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/NpcDialogs/NpcTalk5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/NpcDialogs/NpcTalk5.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/NpcDialogs/NpcTalk5.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/NpcDialogs/NpcTalk5.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/NpcDialogs/NpcTalk6.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/NpcDialogs/NpcTalk6.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/NpcDialogs/NpcTalk6.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/NpcDialogs/NpcTalk6.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/NpcDialogs/NpcTalk7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/NpcDialogs/NpcTalk7.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/NpcDialogs/NpcTalk7.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/NpcDialogs/NpcTalk7.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/PathwayToScene1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/PathwayToScene1.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/PathwayToScene1.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/PathwayToScene1.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/PathwayToScene2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/PathwayToScene2.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/PathwayToScene2.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/PathwayToScene2.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/PlayerHealth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/PlayerHealth.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/PlayerHealth.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/PlayerHealth.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/PowerupCountdownBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/PowerupCountdownBar.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/PowerupCountdownBar.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/PowerupCountdownBar.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/Powerups.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/Powerups.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/Powerups/DamagePowerup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/Powerups/DamagePowerup.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/Powerups/EasterEggPowerups.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/Powerups/EasterEggPowerups.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/Powerups/HealthPowerup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/Powerups/HealthPowerup.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/Powerups/ShieldPowerup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/Powerups/ShieldPowerup.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/Powerups/VaporizePowerup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/Powerups/VaporizePowerup.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/ResetScene2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/ResetScene2.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/ResetScene2.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/ResetScene2.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/Scene1Gems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/Scene1Gems.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/Scene1Gems.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/Scene1Gems.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/ScoreCalculationOnGameOver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/ScoreCalculationOnGameOver.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/TextWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/TextWriter.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/TextWriter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/TextWriter.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/UI_Assistant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/UI_Assistant.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/UI_Assistant.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/UI_Assistant.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/UI_Shop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/UI_Shop.cs -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Scripts/UI/UI_Shop.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Scripts/UI/UI_Shop.cs.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Standard Assets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Standard Assets.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/Standard Assets/ParticleSystems.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/Standard Assets/ParticleSystems.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/TextMesh Pro.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/TextMesh Pro.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/TextMesh Pro/Documentation.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/TextMesh Pro/Documentation.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/TextMesh Pro/Examples & Extras.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/TextMesh Pro/Examples & Extras.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/TextMesh Pro/Fonts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/TextMesh Pro/Fonts.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/TextMesh Pro/Fonts/LiberationSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/TextMesh Pro/Fonts/LiberationSans.ttf -------------------------------------------------------------------------------- /2D Platformer Game/Assets/TextMesh Pro/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/TextMesh Pro/Resources.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt: -------------------------------------------------------------------------------- 1 | ([{〔〈《「『【〘〖〝‘“⦅«$—…‥〳〴〵\[({£¥"々〇$¥₩ # -------------------------------------------------------------------------------- /2D Platformer Game/Assets/TextMesh Pro/Resources/Style Sheets.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/TextMesh Pro/Resources/Style Sheets.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/TextMesh Pro/Shaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/TextMesh Pro/Shaders.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader -------------------------------------------------------------------------------- /2D Platformer Game/Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader -------------------------------------------------------------------------------- /2D Platformer Game/Assets/TextMesh Pro/Shaders/TMP_SDF.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/TextMesh Pro/Shaders/TMP_SDF.shader -------------------------------------------------------------------------------- /2D Platformer Game/Assets/TextMesh Pro/Shaders/TMP_SDF.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/TextMesh Pro/Shaders/TMP_SDF.shader.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/TextMesh Pro/Shaders/TMP_Sprite.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/TextMesh Pro/Shaders/TMP_Sprite.shader -------------------------------------------------------------------------------- /2D Platformer Game/Assets/TextMesh Pro/Shaders/TMPro.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/TextMesh Pro/Shaders/TMPro.cginc -------------------------------------------------------------------------------- /2D Platformer Game/Assets/TextMesh Pro/Shaders/TMPro.cginc.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/TextMesh Pro/Shaders/TMPro.cginc.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc -------------------------------------------------------------------------------- /2D Platformer Game/Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc -------------------------------------------------------------------------------- /2D Platformer Game/Assets/TextMesh Pro/Sprites.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/TextMesh Pro/Sprites.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/TextMesh Pro/Sprites/EmojiOne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/TextMesh Pro/Sprites/EmojiOne.json -------------------------------------------------------------------------------- /2D Platformer Game/Assets/TextMesh Pro/Sprites/EmojiOne.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/TextMesh Pro/Sprites/EmojiOne.json.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/TextMesh Pro/Sprites/EmojiOne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/TextMesh Pro/Sprites/EmojiOne.png -------------------------------------------------------------------------------- /2D Platformer Game/Assets/TextMesh Pro/Sprites/EmojiOne.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/TextMesh Pro/Sprites/EmojiOne.png.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/TextWriter.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/TextWriter.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/TextWriter/MessageUpDownAnimation.anim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/TextWriter/MessageUpDownAnimation.anim -------------------------------------------------------------------------------- /2D Platformer Game/Assets/TextWriter/Sounds.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/TextWriter/Sounds.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/TextWriter/Sounds/Talking.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/TextWriter/Sounds/Talking.wav -------------------------------------------------------------------------------- /2D Platformer Game/Assets/TextWriter/Sounds/Talking.wav.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/TextWriter/Sounds/Talking.wav.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/TextWriter/Textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/TextWriter/Textures.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/TextWriter/Textures/Assistant_BRT.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/TextWriter/Textures/Assistant_BRT.psd -------------------------------------------------------------------------------- /2D Platformer Game/Assets/TextWriter/Textures/Circle.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/TextWriter/Textures/Circle.psd -------------------------------------------------------------------------------- /2D Platformer Game/Assets/TextWriter/Textures/Circle.psd.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/TextWriter/Textures/Circle.psd.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/TextWriter/Textures/MessageArrow.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/TextWriter/Textures/MessageArrow.psd -------------------------------------------------------------------------------- /2D Platformer Game/Assets/TextWriter/Textures/White_1x1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/TextWriter/Textures/White_1x1.mat -------------------------------------------------------------------------------- /2D Platformer Game/Assets/TextWriter/Textures/White_1x1.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/TextWriter/Textures/White_1x1.mat.meta -------------------------------------------------------------------------------- /2D Platformer Game/Assets/TextWriter/Textures/White_1x1.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/TextWriter/Textures/White_1x1.psd -------------------------------------------------------------------------------- /2D Platformer Game/Assets/TextWriter/Textures/White_1x1.psd.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Assets/TextWriter/Textures/White_1x1.psd.meta -------------------------------------------------------------------------------- /2D Platformer Game/Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Packages/manifest.json -------------------------------------------------------------------------------- /2D Platformer Game/Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/Packages/packages-lock.json -------------------------------------------------------------------------------- /2D Platformer Game/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /2D Platformer Game/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /2D Platformer Game/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /2D Platformer Game/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /2D Platformer Game/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /2D Platformer Game/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /2D Platformer Game/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /2D Platformer Game/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /2D Platformer Game/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /2D Platformer Game/ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /2D Platformer Game/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /2D Platformer Game/ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /2D Platformer Game/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /2D Platformer Game/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /2D Platformer Game/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /2D Platformer Game/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /2D Platformer Game/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /2D Platformer Game/ProjectSettings/TimelineSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/ProjectSettings/TimelineSettings.asset -------------------------------------------------------------------------------- /2D Platformer Game/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /2D Platformer Game/ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /2D Platformer Game/ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/ProjectSettings/VersionControlSettings.asset -------------------------------------------------------------------------------- /2D Platformer Game/ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /2D Platformer Game/UserSettings/EditorUserSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/2D Platformer Game/UserSettings/EditorUserSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Krykutay/Skeleton-Farming-Simulator/HEAD/README.md --------------------------------------------------------------------------------