├── .gitignore ├── DLL Solution ├── Bot │ ├── Bot.sln │ └── SpelunkBot │ │ ├── BasicBotExampleOne.cpp │ │ ├── BasicBotExampleOne.h │ │ ├── Bot.cpp │ │ ├── Bot.h │ │ ├── DiscoveryDan.cpp │ │ ├── DiscoveryDan.h │ │ ├── FishBot.cpp │ │ ├── FishBot.h │ │ ├── GoldDigger.cpp │ │ ├── GoldDigger.h │ │ ├── IBot.cpp │ │ ├── IBot.h │ │ ├── Indie.cpp │ │ ├── Indie.h │ │ ├── JordanBot.cpp │ │ ├── JordanBot.h │ │ ├── NotSoSolidSnake.cpp │ │ ├── NotSoSolidSnake.h │ │ ├── ReadMe.txt │ │ ├── SeanBean.cpp │ │ ├── SeanBean.h │ │ ├── SpelunkBot.vcxproj │ │ ├── SpelunkBot.vcxproj.filters │ │ ├── SpelunkBot.vcxproj.user │ │ ├── dllmain.cpp │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h └── Spelunkbots │ ├── Spelunkbots.sln │ └── Spelunkbots │ ├── PerformanceStats.cpp │ ├── PerformanceStats.h │ ├── ReadMe.txt │ ├── Spelunkbots.cpp │ ├── Spelunkbots.vcxproj │ ├── Spelunkbots.vcxproj.filters │ ├── SpelunkbotsConsoleOutput.cpp │ ├── SpelunkbotsConsoleOutput.h │ ├── dllmain.cpp │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── Game_Maker8 ├── Backgrounds │ ├── Tilesets │ │ ├── pipes.png │ │ ├── platform.png │ │ ├── railway_strip16.png │ │ ├── wall.png │ │ ├── wood_large.png │ │ └── wood_small.png │ ├── Tutorial1 │ │ └── wood.gif │ ├── bars.png │ ├── clouds.png │ ├── earth.png │ ├── lines.png │ ├── metal_blue.png │ ├── metal_dark.png │ ├── mist.png │ ├── mountains.png │ ├── plants.png │ ├── sand.png │ ├── stone.png │ └── wood.png ├── Examples │ ├── street racing.gmk │ ├── treasure.gmk │ └── tutorial1.gmk ├── Game_Maker.chm ├── Game_Maker.exe ├── Game_Maker.sw2 ├── Softwrap.dll ├── Sounds │ ├── Tutorial1 │ │ ├── click.wav │ │ ├── explosion.wav │ │ └── music.mid │ ├── alarm.wav │ ├── applause.wav │ ├── baby1.wav │ ├── baby2.wav │ ├── beep1.wav │ ├── beep2.wav │ ├── beep3.wav │ ├── beep4.wav │ ├── beep_high.wav │ ├── boomshot.wav │ ├── breaking.wav │ ├── cancel.wav │ ├── cannon.wav │ ├── cash_register.wav │ ├── click1.wav │ ├── click2.wav │ ├── click_multiple.wav │ ├── click_tiny.wav │ ├── close1.wav │ ├── close2.wav │ ├── computer1.wav │ ├── computer2.wav │ ├── cough.wav │ ├── crunchy.wav │ ├── curious_down.wav │ ├── curious_up.wav │ ├── door_rough.wav │ ├── doorcreak1.wav │ ├── doorcreak2.wav │ ├── doorcreak3.wav │ ├── electric.wav │ ├── eliminateline.wav │ ├── fanfare1.wav │ ├── fanfare2.wav │ ├── found_item.wav │ ├── gun1.wav │ ├── gun2.wav │ ├── gun3.wav │ ├── gun4.wav │ ├── gun5.wav │ ├── gun6.wav │ ├── gun7.wav │ ├── happy_chord.wav │ ├── lasergun1.wav │ ├── lasergun2.wav │ ├── lasergun3.wav │ ├── lever.wav │ ├── lose1.wav │ ├── lose2.wav │ ├── miss.wav │ ├── move_block.wav │ ├── oooh_laugh.wav │ ├── open.wav │ ├── phone_ring.wav │ ├── spear_trap.wav │ ├── squeak1.wav │ ├── squeak2.wav │ ├── step.wav │ ├── switch1.wav │ ├── switch2.wav │ ├── win1.wav │ ├── win2.wav │ ├── win3.wav │ ├── wood1.wav │ └── wood2.wav ├── Sprites │ ├── Boardgame │ │ ├── bishop_black.png │ │ ├── bishop_white.png │ │ ├── king_black.png │ │ ├── king_white.png │ │ ├── knight_black.png │ │ ├── knight_white.png │ │ ├── pawn_black.png │ │ ├── pawn_white.png │ │ ├── queen_black.png │ │ ├── queen_white.png │ │ ├── rook_black.png │ │ ├── rook_white.png │ │ ├── token_black.png │ │ ├── token_blue.png │ │ ├── token_green.png │ │ ├── token_red.png │ │ ├── token_white.png │ │ └── token_yellow.png │ ├── Bouncing Balls │ │ ├── Stones │ │ │ ├── stone_breaking_blue_strip5.png │ │ │ ├── stone_breaking_green_strip5.png │ │ │ ├── stone_breaking_orange_strip5.png │ │ │ ├── stone_breaking_pink_strip5.png │ │ │ ├── stone_breaking_purple_strip5.png │ │ │ ├── stone_breaking_red_strip5.png │ │ │ ├── stone_breaking_yellow_strip5.png │ │ │ ├── stone_cross_blue.png │ │ │ ├── stone_cross_green.png │ │ │ ├── stone_cross_orange.png │ │ │ ├── stone_cross_pink.png │ │ │ ├── stone_cross_purple.png │ │ │ ├── stone_cross_red.png │ │ │ ├── stone_cross_yellow.png │ │ │ ├── stone_damaged1_blue.png │ │ │ ├── stone_damaged1_green.png │ │ │ ├── stone_damaged1_orange.png │ │ │ ├── stone_damaged1_pink.png │ │ │ ├── stone_damaged1_purple.png │ │ │ ├── stone_damaged1_red.png │ │ │ ├── stone_damaged1_yellow.png │ │ │ ├── stone_damaged2_blue.png │ │ │ ├── stone_damaged2_green.png │ │ │ ├── stone_damaged2_orange.png │ │ │ ├── stone_damaged2_pink.png │ │ │ ├── stone_damaged2_purple.png │ │ │ ├── stone_damaged2_red.png │ │ │ ├── stone_damaged2_yellow.png │ │ │ ├── stone_damaged3_blue.png │ │ │ ├── stone_damaged3_green.png │ │ │ ├── stone_damaged3_orange.png │ │ │ ├── stone_damaged3_pink.png │ │ │ ├── stone_damaged3_purple.png │ │ │ ├── stone_damaged3_red.png │ │ │ ├── stone_damaged3_yellow.png │ │ │ ├── stone_energy_blue.png │ │ │ ├── stone_energy_green.png │ │ │ ├── stone_energy_orange.png │ │ │ ├── stone_energy_pink.png │ │ │ ├── stone_energy_purple.png │ │ │ ├── stone_energy_red.png │ │ │ ├── stone_energy_yellow.png │ │ │ ├── stone_glow_blue.png │ │ │ ├── stone_glow_green.png │ │ │ ├── stone_glow_orange.png │ │ │ ├── stone_glow_pink.png │ │ │ ├── stone_glow_purple.png │ │ │ ├── stone_glow_red.png │ │ │ ├── stone_glow_yellow.png │ │ │ ├── stone_life_blue.png │ │ │ ├── stone_life_green.png │ │ │ ├── stone_life_orange.png │ │ │ ├── stone_life_pink.png │ │ │ ├── stone_life_purple.png │ │ │ ├── stone_life_red.png │ │ │ ├── stone_life_yellow.png │ │ │ ├── stone_normal_blue.png │ │ │ ├── stone_normal_green.png │ │ │ ├── stone_normal_orange.png │ │ │ ├── stone_normal_pink.png │ │ │ ├── stone_normal_purple.png │ │ │ ├── stone_normal_red.png │ │ │ ├── stone_normal_yellow.png │ │ │ ├── stone_nuclear_blue.png │ │ │ ├── stone_nuclear_green.png │ │ │ ├── stone_nuclear_orange.png │ │ │ ├── stone_nuclear_pink.png │ │ │ ├── stone_nuclear_purple.png │ │ │ ├── stone_nuclear_red.png │ │ │ ├── stone_nuclear_yellow.png │ │ │ ├── stone_plastic_blue.png │ │ │ ├── stone_plastic_green.png │ │ │ ├── stone_plastic_orange.png │ │ │ ├── stone_plastic_pink.png │ │ │ ├── stone_plastic_purple.png │ │ │ ├── stone_plastic_red.png │ │ │ ├── stone_plastic_yellow.png │ │ │ ├── stone_skull_blue.png │ │ │ ├── stone_skull_green.png │ │ │ ├── stone_skull_orange.png │ │ │ ├── stone_skull_pink.png │ │ │ ├── stone_skull_purple.png │ │ │ ├── stone_skull_red.png │ │ │ ├── stone_skull_yellow.png │ │ │ ├── stone_smile_blue.png │ │ │ ├── stone_smile_green.png │ │ │ ├── stone_smile_orange.png │ │ │ ├── stone_smile_pink.png │ │ │ ├── stone_smile_purple.png │ │ │ ├── stone_smile_red.png │ │ │ ├── stone_smile_yellow.png │ │ │ ├── stone_spots_blue.png │ │ │ ├── stone_spots_green.png │ │ │ ├── stone_spots_orange.png │ │ │ ├── stone_spots_pink.png │ │ │ ├── stone_spots_purple.png │ │ │ ├── stone_spots_red.png │ │ │ ├── stone_spots_yellow.png │ │ │ ├── stone_transparent_blue.png │ │ │ ├── stone_transparent_green.png │ │ │ ├── stone_transparent_orange.png │ │ │ ├── stone_transparent_pink.png │ │ │ ├── stone_transparent_purple.png │ │ │ ├── stone_transparent_red.png │ │ │ ├── stone_transparent_yellow.png │ │ │ ├── stone_void_blue.png │ │ │ ├── stone_void_green.png │ │ │ ├── stone_void_orange.png │ │ │ ├── stone_void_pink.png │ │ │ ├── stone_void_purple.png │ │ │ ├── stone_void_red.png │ │ │ └── stone_void_yellow.png │ │ ├── ball_basketball.png │ │ ├── ball_blue.png │ │ ├── ball_pinball.png │ │ ├── ball_purple.png │ │ ├── ball_red.png │ │ ├── ball_soccer.png │ │ ├── bat2_huge.png │ │ ├── bat2_large.png │ │ ├── bat2_small.png │ │ ├── bat2_special_strip10.png │ │ ├── bat2_tiny.png │ │ ├── bat_huge.png │ │ ├── bat_large.png │ │ ├── bat_small.png │ │ ├── bat_special_strip10.png │ │ ├── bat_tiny.png │ │ ├── bumper_strip2.png │ │ ├── deflector_fire_left.png │ │ ├── deflector_fire_right.png │ │ ├── deflector_goo_left.png │ │ ├── deflector_goo_right.png │ │ ├── deflector_spark_left.png │ │ ├── deflector_spark_right.png │ │ ├── flipper_fire_left_strip2.png │ │ ├── flipper_fire_right_strip2.png │ │ ├── flipper_goo_left_strip2.png │ │ ├── flipper_goo_right_strip2.png │ │ ├── flipper_left_strip2.png │ │ ├── flipper_old_left_strip2.png │ │ ├── flipper_old_right_strip2.png │ │ ├── flipper_right_strip2.png │ │ ├── flipper_spark_left_strip2.png │ │ ├── flipper_spark_right_strip2.png │ │ ├── flipper_white_left_strip2.png │ │ └── flipper_white_right_strip2.png │ ├── Buttons │ │ ├── button_back.png │ │ ├── button_empty.png │ │ ├── button_help.png │ │ ├── button_info.png │ │ ├── button_load.png │ │ ├── button_play.png │ │ ├── button_quit.png │ │ ├── button_save.png │ │ ├── buttonsmall_empty.png │ │ └── loading.png │ ├── Cards │ │ ├── backs_strip10.png │ │ ├── empty.png │ │ ├── playingcards_strip54.png │ │ └── symbols_strip7.png │ ├── Icons │ │ ├── cross.ico │ │ ├── energy.ico │ │ ├── life.ico │ │ ├── nuclear.ico │ │ ├── skull.ico │ │ └── smile.ico │ ├── Maze - Platform │ │ ├── apple.png │ │ ├── arrow_down.png │ │ ├── arrow_left.png │ │ ├── arrow_right.png │ │ ├── arrow_up.png │ │ ├── banana.png │ │ ├── bomb.png │ │ ├── book_blue.png │ │ ├── book_gold.png │ │ ├── book_green.png │ │ ├── book_red.png │ │ ├── book_white.png │ │ ├── boulder.png │ │ ├── bow.png │ │ ├── bullet_down.png │ │ ├── bullet_left.png │ │ ├── bullet_right.png │ │ ├── bullet_up.png │ │ ├── burger.png │ │ ├── button.png │ │ ├── button_pressed.png │ │ ├── cherry.png │ │ ├── chest_closed.png │ │ ├── chest_lock_closed.png │ │ ├── chest_lock_open.png │ │ ├── chest_open.png │ │ ├── chest_reinforced_closed.png │ │ ├── chest_reinforced_open.png │ │ ├── chocolatebar.png │ │ ├── coin1.png │ │ ├── coin1_sparkle_strip32.png │ │ ├── coin2.png │ │ ├── coin2_sparkle_strip32.png │ │ ├── detonator_off.png │ │ ├── detonator_on.png │ │ ├── diamond.png │ │ ├── diamond_sparkle_strip32.png │ │ ├── doors.png │ │ ├── dynamite.png │ │ ├── dynamite_pack.png │ │ ├── exitsign.png │ │ ├── explorer_climb_strip8.png │ │ ├── explorer_down_strip8.png │ │ ├── explorer_jumpleft.png │ │ ├── explorer_jumpright.png │ │ ├── explorer_left_strip8.png │ │ ├── explorer_right_strip8.png │ │ ├── explorer_up_strip8.png │ │ ├── explosion_strip7.png │ │ ├── fire_glow_strip5.png │ │ ├── fire_strip5.png │ │ ├── fireball_down_strip8.png │ │ ├── fireball_left_strip8.png │ │ ├── fireball_right_strip8.png │ │ ├── fireball_up_strip8.png │ │ ├── flask_blue.png │ │ ├── flask_empty.png │ │ ├── flask_green.png │ │ ├── flask_purple.png │ │ ├── flask_red.png │ │ ├── flask_yellow.png │ │ ├── gem_blue.png │ │ ├── gem_blue_sparkle_strip32.png │ │ ├── gem_dark.png │ │ ├── gem_dark_sparkle_strip32.png │ │ ├── gem_green.png │ │ ├── gem_green_sparkle_strip32.png │ │ ├── gem_light.png │ │ ├── gem_light_sparkle_strip32.png │ │ ├── gem_purple.png │ │ ├── gem_purple_sparkle_strip32.png │ │ ├── gem_red.png │ │ ├── gem_red_sparkle_strip32.png │ │ ├── gem_yellow.png │ │ ├── gem_yellow_sparkle_strip32.png │ │ ├── ghost.png │ │ ├── ghost_floating_strip8.png │ │ ├── gold_bar.png │ │ ├── gold_bar_sparkle_strip32.png │ │ ├── gold_nuggets.png │ │ ├── gold_nuggets_sparkle_strip32.png │ │ ├── gun.png │ │ ├── impact_flesh_strip6.png │ │ ├── impact_stone_strip4.png │ │ ├── item_cross.png │ │ ├── item_energy.png │ │ ├── item_life.png │ │ ├── item_nuclear.png │ │ ├── item_skull.png │ │ ├── item_smile.png │ │ ├── item_void.png │ │ ├── key_black.png │ │ ├── key_copper.png │ │ ├── key_gold.png │ │ ├── key_gold_sparkle_strip32.png │ │ ├── key_magic.png │ │ ├── key_silver.png │ │ ├── key_silver_sparkle_strip32.png │ │ ├── lava_strip12.png │ │ ├── lock_black.png │ │ ├── lock_copper.png │ │ ├── lock_gold.png │ │ ├── lock_gold_sparkle_strip32.png │ │ ├── lock_magic.png │ │ ├── lock_silver.png │ │ ├── lock_silver_sparkle_strip32.png │ │ ├── npc_boy.png │ │ ├── npc_darkguy.png │ │ ├── npc_doctor.png │ │ ├── npc_explorergirl.png │ │ ├── npc_girl.png │ │ ├── npc_guy.png │ │ ├── npc_oldman.png │ │ ├── padlock_black.png │ │ ├── padlock_copper.png │ │ ├── padlock_gold.png │ │ ├── padlock_gold_sparkle_strip32.png │ │ ├── padlock_magic.png │ │ ├── padlock_silver.png │ │ ├── padlock_silver_sparkle_strip32.png │ │ ├── pear.png │ │ ├── pineapple.png │ │ ├── platform.png │ │ ├── pointer_down.png │ │ ├── pointer_left.png │ │ ├── pointer_right.png │ │ ├── pointer_up.png │ │ ├── potion_blue.png │ │ ├── potion_dark.png │ │ ├── potion_green.png │ │ ├── potion_light.png │ │ ├── potion_purple.png │ │ ├── potion_red.png │ │ ├── potion_yellow.png │ │ ├── rifle.png │ │ ├── rock.png │ │ ├── scroll_closed_black.png │ │ ├── scroll_closed_blue.png │ │ ├── scroll_closed_green.png │ │ ├── scroll_closed_purple.png │ │ ├── scroll_closed_red.png │ │ ├── scroll_closed_yellow.png │ │ ├── scroll_opened_black.png │ │ ├── scroll_opened_blue.png │ │ ├── scroll_opened_green.png │ │ ├── scroll_opened_purple.png │ │ ├── scroll_opened_red.png │ │ ├── scroll_opened_yellow.png │ │ ├── skeleton.png │ │ ├── skeleton_walking_strip10.png │ │ ├── sparkle_strip32.png │ │ ├── spider_down_strip8.png │ │ ├── spider_left_strip8.png │ │ ├── spider_right_strip8.png │ │ ├── spider_up_strip8.png │ │ ├── spikes_strip52.png │ │ ├── spring.png │ │ ├── spring_strip7.png │ │ ├── statue1.png │ │ ├── statue1_angry.png │ │ ├── statue2.png │ │ ├── strawberry.png │ │ ├── switch_off.png │ │ ├── switch_on.png │ │ ├── sword_advanced.png │ │ ├── sword_simple.png │ │ ├── sword_wooden.png │ │ ├── text_empty.png │ │ ├── text_help.png │ │ ├── wall_block.png │ │ ├── wall_block_cracked1.png │ │ ├── wall_block_cracked2.png │ │ ├── wall_block_cracked3.png │ │ ├── wall_block_cracked4.png │ │ ├── wall_block_small.png │ │ ├── wall_wood_damaged_horizontal.png │ │ ├── wall_wood_damaged_vertical.png │ │ ├── wall_wood_destroyed_horizontal.png │ │ ├── wall_wood_destroyed_vertical.png │ │ ├── wand.png │ │ ├── water_flow_strip24.png │ │ ├── water_strip12.png │ │ ├── waterfall_disappear_strip6.png │ │ ├── waterfall_strip6.png │ │ ├── watersource_rock_strip6.png │ │ └── woodblock.png │ ├── Space │ │ ├── alien_green_strip8.png │ │ ├── alien_purple_strip8.png │ │ ├── lazer_blue.png │ │ ├── lazer_green.png │ │ ├── lazer_red.png │ │ ├── lazer_yellow.png │ │ ├── meteorite_large1.png │ │ ├── meteorite_large2.png │ │ ├── meteorite_medium1.png │ │ ├── meteorite_medium2.png │ │ ├── meteorite_small1.png │ │ ├── meteorite_small2.png │ │ ├── planet1.png │ │ ├── planet2.png │ │ ├── planet3.png │ │ ├── planet3_cloudy.png │ │ ├── planet4_cloudy.png │ │ ├── rocket.png │ │ ├── saturn.png │ │ ├── triangle.png │ │ └── ufo_simple.png │ └── Tutorial1 │ │ ├── apple.png │ │ ├── banana.png │ │ ├── bomb.png │ │ ├── cherry.png │ │ ├── strawberry.png │ │ └── wall.png ├── Tutorials │ ├── 1 - Your First Game │ │ ├── 01_actionapple.png │ │ ├── 01_actionbomb.png │ │ ├── 01_actionbounce.png │ │ ├── 01_actioncreate.png │ │ ├── 01_actionhigh.png │ │ ├── 01_actionjump.png │ │ ├── 01_actionloop.png │ │ ├── 01_actionlose.png │ │ ├── 01_actionmove.png │ │ ├── 01_actionscore.png │ │ ├── 01_actionsound.png │ │ ├── 01_advanced.png │ │ ├── 01_backgroundadd.png │ │ ├── 01_backgroundload.png │ │ ├── 01_duplicate.png │ │ ├── 01_eventcollision.png │ │ ├── 01_eventcreate.png │ │ ├── 01_game1.png │ │ ├── 01_gamefinal.png │ │ ├── 01_information.png │ │ ├── 01_objectadd.png │ │ ├── 01_objectapple.png │ │ ├── 01_objectapple2.png │ │ ├── 01_objectopen.png │ │ ├── 01_objectsprite.png │ │ ├── 01_roomadd.png │ │ ├── 01_roomback1.png │ │ ├── 01_roomback2.png │ │ ├── 01_roomclose.png │ │ ├── 01_roommusic.png │ │ ├── 01_roomobject.png │ │ ├── 01_roomopen.png │ │ ├── 01_run.png │ │ ├── 01_soundadd.png │ │ ├── 01_soundload.png │ │ ├── 01_spriteadd.png │ │ ├── 01_spritelist.png │ │ ├── 01_spriteload.png │ │ ├── 01_spritename.png │ │ ├── arrow.png │ │ ├── bar.png │ │ ├── page01.html │ │ ├── page02.html │ │ ├── page03.html │ │ ├── page04.html │ │ ├── page05.html │ │ ├── page06.html │ │ ├── page07.html │ │ ├── page08.html │ │ ├── page09.html │ │ ├── page10.html │ │ ├── page11.html │ │ ├── page12.html │ │ ├── page13.html │ │ ├── page14.html │ │ ├── page15.html │ │ └── style.css │ └── readme.txt ├── Uninstal.exe ├── dxdata ├── extensions │ ├── GM Printing.chm │ ├── GM Printing.dat │ ├── GM Printing.ged │ ├── GM Room Transitions.chm │ ├── GM Room Transitions.dat │ ├── GM Room Transitions.ged │ ├── GM Windows Dialogs.chm │ ├── GM Windows Dialogs.dat │ └── GM Windows Dialogs.ged ├── fnames ├── gm_changes.html ├── gm_license.html ├── gm_readme.html ├── html │ ├── FirstTime.htm │ ├── Loader.htm │ ├── Loader2.htm │ ├── images │ │ ├── bg.png │ │ ├── button.png │ │ └── larrow_small.png │ └── style.css ├── lib │ ├── 01_move.lib │ ├── 02_main1.lib │ ├── 03_main2.lib │ ├── 04_control.lib │ ├── 05_score.lib │ ├── 06_extra.lib │ └── 07_draw.lib ├── rundata └── snippets.txt ├── README.md └── Source └── spelunky_1_1 ├── Adjascent_NODES.txt ├── Bot.dll ├── Bot.exp ├── Bot.lib ├── Bot.pdb ├── COPYING.txt ├── Level_Path ├── Spelunkbots.dll ├── Spelunkbots.exp ├── Spelunkbots.lib ├── Spelunky.exe ├── Spelunky.gb1 ├── Spelunky.gm81 ├── Spelunky.gmk ├── config.exe ├── distance.txt ├── gamepad.cfg ├── keys.cfg ├── level_bats.txt ├── level_blocks.txt ├── level_collectables.txt ├── level_enemies.txt ├── level_layout.txt ├── level_layoutsssss.txt ├── level_liquids.txt ├── level_path.txt ├── level_paths.txt ├── level_webs.txt ├── levels ├── Sorted │ ├── DiscoveryDanBot.lvl │ ├── FishBot.lvl │ ├── GoldDiggerBot.lvl │ ├── IndieBot.lvl │ ├── NotSoSolidSnakeBot.lvl │ └── SeanBeanBot.lvl ├── arandomisedlevel01.lvl ├── arandomisedlevel02.lvl ├── arandomisedlevel03.lvl ├── arandomisedlevel04.lvl ├── arandomisedlevel05.lvl ├── bat.lvl ├── bats.lvl ├── cake.lvl ├── cape.lvl ├── climbing gloves.lvl ├── enemy spikes.lvl ├── fall damage.lvl ├── fishtest.lvl ├── fog.lvl ├── gold.lvl ├── idol.lvl ├── jamestestbed.lvl ├── jar.lvl ├── jetpack.lvl ├── jetpackc.lvl ├── knife.lvl ├── mattock.lvl ├── maze.lvl ├── publictest0.lvl ├── publictest1.lvl ├── publictest2.lvl ├── publictest3.lvl ├── publictest4.lvl ├── publictest5.lvl ├── publictest6.lvl ├── publictest7.lvl ├── publictest8.lvl ├── publictest9.lvl ├── rocks.lvl ├── shotgold.lvl ├── shotgun.lvl ├── snakes.lvl ├── spike.lvl ├── teleport.lvl ├── testbed1.lvl ├── testing level.lvl ├── traps.lvl └── web gun.lvl ├── pathfindingTemp.txt ├── pathfindingtemp2.txt ├── readme.txt ├── settings.cfg ├── sound ├── alert.wav ├── alien.wav ├── arrowtrap.wav ├── bat.wav ├── bigjump.wav ├── blink1.wav ├── blink2.wav ├── boing.wav ├── bombready.wav ├── boss.ogg ├── bowpull.wav ├── break.wav ├── cave.ogg ├── cavemandie.wav ├── chestopen.wav ├── click.wav ├── climb1.wav ├── climb2.wav ├── coin.wav ├── credits.ogg ├── crunch.wav ├── damsel.wav ├── die.wav ├── explosion.wav ├── flame.wav ├── frog.wav ├── gem.wav ├── ghost.wav ├── giantspider.wav ├── gspiderjump.wav ├── hit.wav ├── hurt.wav ├── ice.ogg ├── ignite.wav ├── jetpack.wav ├── jump.wav ├── kiss.wav ├── land.wav ├── laser.wav ├── lasercharge.wav ├── letsexplore.wav ├── lush.ogg ├── mattockbreak.wav ├── monkey.wav ├── pause.wav ├── pfall.wav ├── pickup.wav ├── psychic.wav ├── push.wav ├── shotgun.wav ├── slam.wav ├── smallexplode.wav ├── spiderjump.wav ├── splash.wav ├── steps.wav ├── teleport.wav ├── temple.ogg ├── tfall.wav ├── throw.wav ├── thud.wav ├── thump.wav ├── title.ogg ├── trap.wav ├── victory.ogg ├── whip.wav ├── yetiyell.wav └── zombie.wav ├── spelunkbots.gb1 ├── spelunkbots.gmk ├── stats.txt ├── supersound.dll └── tempPathFinding.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/.gitignore -------------------------------------------------------------------------------- /DLL Solution/Bot/Bot.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/DLL Solution/Bot/Bot.sln -------------------------------------------------------------------------------- /DLL Solution/Bot/SpelunkBot/BasicBotExampleOne.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/DLL Solution/Bot/SpelunkBot/BasicBotExampleOne.cpp -------------------------------------------------------------------------------- /DLL Solution/Bot/SpelunkBot/BasicBotExampleOne.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/DLL Solution/Bot/SpelunkBot/BasicBotExampleOne.h -------------------------------------------------------------------------------- /DLL Solution/Bot/SpelunkBot/Bot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/DLL Solution/Bot/SpelunkBot/Bot.cpp -------------------------------------------------------------------------------- /DLL Solution/Bot/SpelunkBot/Bot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/DLL Solution/Bot/SpelunkBot/Bot.h -------------------------------------------------------------------------------- /DLL Solution/Bot/SpelunkBot/DiscoveryDan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/DLL Solution/Bot/SpelunkBot/DiscoveryDan.cpp -------------------------------------------------------------------------------- /DLL Solution/Bot/SpelunkBot/DiscoveryDan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/DLL Solution/Bot/SpelunkBot/DiscoveryDan.h -------------------------------------------------------------------------------- /DLL Solution/Bot/SpelunkBot/FishBot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/DLL Solution/Bot/SpelunkBot/FishBot.cpp -------------------------------------------------------------------------------- /DLL Solution/Bot/SpelunkBot/FishBot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/DLL Solution/Bot/SpelunkBot/FishBot.h -------------------------------------------------------------------------------- /DLL Solution/Bot/SpelunkBot/GoldDigger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/DLL Solution/Bot/SpelunkBot/GoldDigger.cpp -------------------------------------------------------------------------------- /DLL Solution/Bot/SpelunkBot/GoldDigger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/DLL Solution/Bot/SpelunkBot/GoldDigger.h -------------------------------------------------------------------------------- /DLL Solution/Bot/SpelunkBot/IBot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/DLL Solution/Bot/SpelunkBot/IBot.cpp -------------------------------------------------------------------------------- /DLL Solution/Bot/SpelunkBot/IBot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/DLL Solution/Bot/SpelunkBot/IBot.h -------------------------------------------------------------------------------- /DLL Solution/Bot/SpelunkBot/Indie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/DLL Solution/Bot/SpelunkBot/Indie.cpp -------------------------------------------------------------------------------- /DLL Solution/Bot/SpelunkBot/Indie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/DLL Solution/Bot/SpelunkBot/Indie.h -------------------------------------------------------------------------------- /DLL Solution/Bot/SpelunkBot/JordanBot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/DLL Solution/Bot/SpelunkBot/JordanBot.cpp -------------------------------------------------------------------------------- /DLL Solution/Bot/SpelunkBot/JordanBot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/DLL Solution/Bot/SpelunkBot/JordanBot.h -------------------------------------------------------------------------------- /DLL Solution/Bot/SpelunkBot/NotSoSolidSnake.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/DLL Solution/Bot/SpelunkBot/NotSoSolidSnake.cpp -------------------------------------------------------------------------------- /DLL Solution/Bot/SpelunkBot/NotSoSolidSnake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/DLL Solution/Bot/SpelunkBot/NotSoSolidSnake.h -------------------------------------------------------------------------------- /DLL Solution/Bot/SpelunkBot/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/DLL Solution/Bot/SpelunkBot/ReadMe.txt -------------------------------------------------------------------------------- /DLL Solution/Bot/SpelunkBot/SeanBean.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/DLL Solution/Bot/SpelunkBot/SeanBean.cpp -------------------------------------------------------------------------------- /DLL Solution/Bot/SpelunkBot/SeanBean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/DLL Solution/Bot/SpelunkBot/SeanBean.h -------------------------------------------------------------------------------- /DLL Solution/Bot/SpelunkBot/SpelunkBot.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/DLL Solution/Bot/SpelunkBot/SpelunkBot.vcxproj -------------------------------------------------------------------------------- /DLL Solution/Bot/SpelunkBot/SpelunkBot.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/DLL Solution/Bot/SpelunkBot/SpelunkBot.vcxproj.filters -------------------------------------------------------------------------------- /DLL Solution/Bot/SpelunkBot/SpelunkBot.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/DLL Solution/Bot/SpelunkBot/SpelunkBot.vcxproj.user -------------------------------------------------------------------------------- /DLL Solution/Bot/SpelunkBot/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/DLL Solution/Bot/SpelunkBot/dllmain.cpp -------------------------------------------------------------------------------- /DLL Solution/Bot/SpelunkBot/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/DLL Solution/Bot/SpelunkBot/stdafx.cpp -------------------------------------------------------------------------------- /DLL Solution/Bot/SpelunkBot/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/DLL Solution/Bot/SpelunkBot/stdafx.h -------------------------------------------------------------------------------- /DLL Solution/Bot/SpelunkBot/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/DLL Solution/Bot/SpelunkBot/targetver.h -------------------------------------------------------------------------------- /DLL Solution/Spelunkbots/Spelunkbots.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/DLL Solution/Spelunkbots/Spelunkbots.sln -------------------------------------------------------------------------------- /DLL Solution/Spelunkbots/Spelunkbots/PerformanceStats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/DLL Solution/Spelunkbots/Spelunkbots/PerformanceStats.cpp -------------------------------------------------------------------------------- /DLL Solution/Spelunkbots/Spelunkbots/PerformanceStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/DLL Solution/Spelunkbots/Spelunkbots/PerformanceStats.h -------------------------------------------------------------------------------- /DLL Solution/Spelunkbots/Spelunkbots/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/DLL Solution/Spelunkbots/Spelunkbots/ReadMe.txt -------------------------------------------------------------------------------- /DLL Solution/Spelunkbots/Spelunkbots/Spelunkbots.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/DLL Solution/Spelunkbots/Spelunkbots/Spelunkbots.cpp -------------------------------------------------------------------------------- /DLL Solution/Spelunkbots/Spelunkbots/Spelunkbots.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/DLL Solution/Spelunkbots/Spelunkbots/Spelunkbots.vcxproj -------------------------------------------------------------------------------- /DLL Solution/Spelunkbots/Spelunkbots/Spelunkbots.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/DLL Solution/Spelunkbots/Spelunkbots/Spelunkbots.vcxproj.filters -------------------------------------------------------------------------------- /DLL Solution/Spelunkbots/Spelunkbots/SpelunkbotsConsoleOutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/DLL Solution/Spelunkbots/Spelunkbots/SpelunkbotsConsoleOutput.cpp -------------------------------------------------------------------------------- /DLL Solution/Spelunkbots/Spelunkbots/SpelunkbotsConsoleOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/DLL Solution/Spelunkbots/Spelunkbots/SpelunkbotsConsoleOutput.h -------------------------------------------------------------------------------- /DLL Solution/Spelunkbots/Spelunkbots/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/DLL Solution/Spelunkbots/Spelunkbots/dllmain.cpp -------------------------------------------------------------------------------- /DLL Solution/Spelunkbots/Spelunkbots/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/DLL Solution/Spelunkbots/Spelunkbots/stdafx.cpp -------------------------------------------------------------------------------- /DLL Solution/Spelunkbots/Spelunkbots/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/DLL Solution/Spelunkbots/Spelunkbots/stdafx.h -------------------------------------------------------------------------------- /DLL Solution/Spelunkbots/Spelunkbots/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/DLL Solution/Spelunkbots/Spelunkbots/targetver.h -------------------------------------------------------------------------------- /Game_Maker8/Backgrounds/Tilesets/pipes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Backgrounds/Tilesets/pipes.png -------------------------------------------------------------------------------- /Game_Maker8/Backgrounds/Tilesets/platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Backgrounds/Tilesets/platform.png -------------------------------------------------------------------------------- /Game_Maker8/Backgrounds/Tilesets/railway_strip16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Backgrounds/Tilesets/railway_strip16.png -------------------------------------------------------------------------------- /Game_Maker8/Backgrounds/Tilesets/wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Backgrounds/Tilesets/wall.png -------------------------------------------------------------------------------- /Game_Maker8/Backgrounds/Tilesets/wood_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Backgrounds/Tilesets/wood_large.png -------------------------------------------------------------------------------- /Game_Maker8/Backgrounds/Tilesets/wood_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Backgrounds/Tilesets/wood_small.png -------------------------------------------------------------------------------- /Game_Maker8/Backgrounds/Tutorial1/wood.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Backgrounds/Tutorial1/wood.gif -------------------------------------------------------------------------------- /Game_Maker8/Backgrounds/bars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Backgrounds/bars.png -------------------------------------------------------------------------------- /Game_Maker8/Backgrounds/clouds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Backgrounds/clouds.png -------------------------------------------------------------------------------- /Game_Maker8/Backgrounds/earth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Backgrounds/earth.png -------------------------------------------------------------------------------- /Game_Maker8/Backgrounds/lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Backgrounds/lines.png -------------------------------------------------------------------------------- /Game_Maker8/Backgrounds/metal_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Backgrounds/metal_blue.png -------------------------------------------------------------------------------- /Game_Maker8/Backgrounds/metal_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Backgrounds/metal_dark.png -------------------------------------------------------------------------------- /Game_Maker8/Backgrounds/mist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Backgrounds/mist.png -------------------------------------------------------------------------------- /Game_Maker8/Backgrounds/mountains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Backgrounds/mountains.png -------------------------------------------------------------------------------- /Game_Maker8/Backgrounds/plants.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Backgrounds/plants.png -------------------------------------------------------------------------------- /Game_Maker8/Backgrounds/sand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Backgrounds/sand.png -------------------------------------------------------------------------------- /Game_Maker8/Backgrounds/stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Backgrounds/stone.png -------------------------------------------------------------------------------- /Game_Maker8/Backgrounds/wood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Backgrounds/wood.png -------------------------------------------------------------------------------- /Game_Maker8/Examples/street racing.gmk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Examples/street racing.gmk -------------------------------------------------------------------------------- /Game_Maker8/Examples/treasure.gmk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Examples/treasure.gmk -------------------------------------------------------------------------------- /Game_Maker8/Examples/tutorial1.gmk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Examples/tutorial1.gmk -------------------------------------------------------------------------------- /Game_Maker8/Game_Maker.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Game_Maker.chm -------------------------------------------------------------------------------- /Game_Maker8/Game_Maker.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Game_Maker.exe -------------------------------------------------------------------------------- /Game_Maker8/Game_Maker.sw2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Game_Maker.sw2 -------------------------------------------------------------------------------- /Game_Maker8/Softwrap.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Softwrap.dll -------------------------------------------------------------------------------- /Game_Maker8/Sounds/Tutorial1/click.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/Tutorial1/click.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/Tutorial1/explosion.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/Tutorial1/explosion.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/Tutorial1/music.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/Tutorial1/music.mid -------------------------------------------------------------------------------- /Game_Maker8/Sounds/alarm.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/alarm.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/applause.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/applause.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/baby1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/baby1.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/baby2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/baby2.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/beep1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/beep1.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/beep2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/beep2.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/beep3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/beep3.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/beep4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/beep4.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/beep_high.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/beep_high.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/boomshot.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/boomshot.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/breaking.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/breaking.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/cancel.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/cancel.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/cannon.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/cannon.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/cash_register.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/cash_register.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/click1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/click1.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/click2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/click2.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/click_multiple.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/click_multiple.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/click_tiny.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/click_tiny.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/close1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/close1.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/close2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/close2.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/computer1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/computer1.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/computer2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/computer2.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/cough.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/cough.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/crunchy.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/crunchy.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/curious_down.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/curious_down.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/curious_up.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/curious_up.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/door_rough.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/door_rough.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/doorcreak1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/doorcreak1.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/doorcreak2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/doorcreak2.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/doorcreak3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/doorcreak3.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/electric.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/electric.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/eliminateline.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/eliminateline.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/fanfare1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/fanfare1.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/fanfare2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/fanfare2.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/found_item.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/found_item.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/gun1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/gun1.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/gun2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/gun2.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/gun3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/gun3.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/gun4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/gun4.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/gun5.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/gun5.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/gun6.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/gun6.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/gun7.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/gun7.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/happy_chord.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/happy_chord.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/lasergun1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/lasergun1.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/lasergun2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/lasergun2.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/lasergun3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/lasergun3.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/lever.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/lever.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/lose1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/lose1.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/lose2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/lose2.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/miss.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/miss.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/move_block.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/move_block.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/oooh_laugh.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/oooh_laugh.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/open.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/open.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/phone_ring.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/phone_ring.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/spear_trap.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/spear_trap.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/squeak1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/squeak1.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/squeak2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/squeak2.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/step.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/step.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/switch1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/switch1.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/switch2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/switch2.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/win1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/win1.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/win2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/win2.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/win3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/win3.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/wood1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/wood1.wav -------------------------------------------------------------------------------- /Game_Maker8/Sounds/wood2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sounds/wood2.wav -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Boardgame/bishop_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Boardgame/bishop_black.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Boardgame/bishop_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Boardgame/bishop_white.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Boardgame/king_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Boardgame/king_black.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Boardgame/king_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Boardgame/king_white.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Boardgame/knight_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Boardgame/knight_black.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Boardgame/knight_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Boardgame/knight_white.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Boardgame/pawn_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Boardgame/pawn_black.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Boardgame/pawn_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Boardgame/pawn_white.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Boardgame/queen_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Boardgame/queen_black.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Boardgame/queen_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Boardgame/queen_white.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Boardgame/rook_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Boardgame/rook_black.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Boardgame/rook_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Boardgame/rook_white.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Boardgame/token_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Boardgame/token_black.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Boardgame/token_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Boardgame/token_blue.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Boardgame/token_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Boardgame/token_green.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Boardgame/token_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Boardgame/token_red.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Boardgame/token_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Boardgame/token_white.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Boardgame/token_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Boardgame/token_yellow.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_cross_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_cross_blue.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_cross_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_cross_green.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_cross_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_cross_orange.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_cross_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_cross_pink.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_cross_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_cross_purple.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_cross_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_cross_red.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_cross_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_cross_yellow.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_damaged1_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_damaged1_blue.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_damaged1_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_damaged1_green.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_damaged1_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_damaged1_orange.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_damaged1_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_damaged1_pink.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_damaged1_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_damaged1_purple.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_damaged1_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_damaged1_red.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_damaged1_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_damaged1_yellow.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_damaged2_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_damaged2_blue.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_damaged2_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_damaged2_green.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_damaged2_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_damaged2_orange.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_damaged2_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_damaged2_pink.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_damaged2_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_damaged2_purple.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_damaged2_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_damaged2_red.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_damaged2_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_damaged2_yellow.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_damaged3_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_damaged3_blue.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_damaged3_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_damaged3_green.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_damaged3_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_damaged3_orange.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_damaged3_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_damaged3_pink.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_damaged3_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_damaged3_purple.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_damaged3_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_damaged3_red.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_damaged3_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_damaged3_yellow.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_energy_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_energy_blue.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_energy_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_energy_green.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_energy_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_energy_orange.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_energy_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_energy_pink.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_energy_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_energy_purple.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_energy_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_energy_red.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_energy_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_energy_yellow.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_glow_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_glow_blue.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_glow_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_glow_green.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_glow_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_glow_orange.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_glow_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_glow_pink.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_glow_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_glow_purple.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_glow_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_glow_red.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_glow_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_glow_yellow.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_life_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_life_blue.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_life_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_life_green.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_life_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_life_orange.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_life_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_life_pink.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_life_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_life_purple.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_life_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_life_red.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_life_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_life_yellow.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_normal_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_normal_blue.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_normal_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_normal_green.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_normal_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_normal_orange.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_normal_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_normal_pink.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_normal_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_normal_purple.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_normal_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_normal_red.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_normal_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_normal_yellow.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_nuclear_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_nuclear_blue.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_nuclear_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_nuclear_green.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_nuclear_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_nuclear_orange.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_nuclear_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_nuclear_pink.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_nuclear_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_nuclear_purple.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_nuclear_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_nuclear_red.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_nuclear_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_nuclear_yellow.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_plastic_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_plastic_blue.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_plastic_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_plastic_green.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_plastic_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_plastic_orange.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_plastic_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_plastic_pink.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_plastic_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_plastic_purple.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_plastic_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_plastic_red.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_plastic_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_plastic_yellow.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_skull_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_skull_blue.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_skull_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_skull_green.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_skull_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_skull_orange.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_skull_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_skull_pink.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_skull_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_skull_purple.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_skull_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_skull_red.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_skull_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_skull_yellow.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_smile_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_smile_blue.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_smile_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_smile_green.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_smile_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_smile_orange.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_smile_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_smile_pink.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_smile_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_smile_purple.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_smile_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_smile_red.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_smile_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_smile_yellow.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_spots_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_spots_blue.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_spots_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_spots_green.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_spots_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_spots_orange.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_spots_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_spots_pink.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_spots_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_spots_purple.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_spots_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_spots_red.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_spots_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_spots_yellow.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_transparent_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_transparent_red.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_void_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_void_blue.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_void_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_void_green.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_void_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_void_orange.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_void_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_void_pink.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_void_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_void_purple.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_void_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_void_red.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/Stones/stone_void_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/Stones/stone_void_yellow.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/ball_basketball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/ball_basketball.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/ball_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/ball_blue.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/ball_pinball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/ball_pinball.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/ball_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/ball_purple.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/ball_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/ball_red.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/ball_soccer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/ball_soccer.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/bat2_huge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/bat2_huge.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/bat2_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/bat2_large.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/bat2_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/bat2_small.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/bat2_special_strip10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/bat2_special_strip10.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/bat2_tiny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/bat2_tiny.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/bat_huge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/bat_huge.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/bat_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/bat_large.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/bat_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/bat_small.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/bat_special_strip10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/bat_special_strip10.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/bat_tiny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/bat_tiny.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/bumper_strip2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/bumper_strip2.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/deflector_fire_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/deflector_fire_left.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/deflector_fire_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/deflector_fire_right.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/deflector_goo_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/deflector_goo_left.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/deflector_goo_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/deflector_goo_right.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/deflector_spark_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/deflector_spark_left.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/deflector_spark_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/deflector_spark_right.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/flipper_fire_left_strip2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/flipper_fire_left_strip2.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/flipper_fire_right_strip2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/flipper_fire_right_strip2.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/flipper_goo_left_strip2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/flipper_goo_left_strip2.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/flipper_goo_right_strip2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/flipper_goo_right_strip2.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/flipper_left_strip2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/flipper_left_strip2.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/flipper_old_left_strip2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/flipper_old_left_strip2.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/flipper_old_right_strip2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/flipper_old_right_strip2.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/flipper_right_strip2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/flipper_right_strip2.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/flipper_spark_left_strip2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/flipper_spark_left_strip2.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/flipper_spark_right_strip2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/flipper_spark_right_strip2.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/flipper_white_left_strip2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/flipper_white_left_strip2.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Bouncing Balls/flipper_white_right_strip2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Bouncing Balls/flipper_white_right_strip2.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Buttons/button_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Buttons/button_back.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Buttons/button_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Buttons/button_empty.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Buttons/button_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Buttons/button_help.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Buttons/button_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Buttons/button_info.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Buttons/button_load.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Buttons/button_load.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Buttons/button_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Buttons/button_play.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Buttons/button_quit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Buttons/button_quit.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Buttons/button_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Buttons/button_save.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Buttons/buttonsmall_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Buttons/buttonsmall_empty.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Buttons/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Buttons/loading.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Cards/backs_strip10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Cards/backs_strip10.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Cards/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Cards/empty.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Cards/playingcards_strip54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Cards/playingcards_strip54.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Cards/symbols_strip7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Cards/symbols_strip7.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Icons/cross.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Icons/cross.ico -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Icons/energy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Icons/energy.ico -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Icons/life.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Icons/life.ico -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Icons/nuclear.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Icons/nuclear.ico -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Icons/skull.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Icons/skull.ico -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Icons/smile.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Icons/smile.ico -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/apple.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/arrow_down.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/arrow_left.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/arrow_right.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/arrow_up.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/banana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/banana.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/bomb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/bomb.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/book_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/book_blue.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/book_gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/book_gold.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/book_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/book_green.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/book_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/book_red.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/book_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/book_white.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/boulder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/boulder.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/bow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/bow.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/bullet_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/bullet_down.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/bullet_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/bullet_left.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/bullet_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/bullet_right.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/bullet_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/bullet_up.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/burger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/burger.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/button.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/button_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/button_pressed.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/cherry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/cherry.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/chest_closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/chest_closed.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/chest_lock_closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/chest_lock_closed.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/chest_lock_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/chest_lock_open.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/chest_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/chest_open.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/chest_reinforced_closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/chest_reinforced_closed.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/chest_reinforced_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/chest_reinforced_open.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/chocolatebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/chocolatebar.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/coin1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/coin1.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/coin1_sparkle_strip32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/coin1_sparkle_strip32.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/coin2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/coin2.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/coin2_sparkle_strip32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/coin2_sparkle_strip32.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/detonator_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/detonator_off.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/detonator_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/detonator_on.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/diamond.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/diamond_sparkle_strip32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/diamond_sparkle_strip32.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/doors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/doors.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/dynamite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/dynamite.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/dynamite_pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/dynamite_pack.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/exitsign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/exitsign.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/explorer_climb_strip8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/explorer_climb_strip8.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/explorer_down_strip8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/explorer_down_strip8.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/explorer_jumpleft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/explorer_jumpleft.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/explorer_jumpright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/explorer_jumpright.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/explorer_left_strip8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/explorer_left_strip8.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/explorer_right_strip8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/explorer_right_strip8.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/explorer_up_strip8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/explorer_up_strip8.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/explosion_strip7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/explosion_strip7.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/fire_glow_strip5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/fire_glow_strip5.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/fire_strip5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/fire_strip5.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/fireball_down_strip8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/fireball_down_strip8.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/fireball_left_strip8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/fireball_left_strip8.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/fireball_right_strip8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/fireball_right_strip8.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/fireball_up_strip8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/fireball_up_strip8.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/flask_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/flask_blue.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/flask_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/flask_empty.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/flask_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/flask_green.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/flask_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/flask_purple.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/flask_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/flask_red.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/flask_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/flask_yellow.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/gem_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/gem_blue.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/gem_blue_sparkle_strip32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/gem_blue_sparkle_strip32.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/gem_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/gem_dark.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/gem_dark_sparkle_strip32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/gem_dark_sparkle_strip32.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/gem_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/gem_green.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/gem_green_sparkle_strip32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/gem_green_sparkle_strip32.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/gem_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/gem_light.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/gem_light_sparkle_strip32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/gem_light_sparkle_strip32.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/gem_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/gem_purple.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/gem_purple_sparkle_strip32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/gem_purple_sparkle_strip32.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/gem_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/gem_red.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/gem_red_sparkle_strip32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/gem_red_sparkle_strip32.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/gem_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/gem_yellow.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/gem_yellow_sparkle_strip32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/gem_yellow_sparkle_strip32.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/ghost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/ghost.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/ghost_floating_strip8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/ghost_floating_strip8.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/gold_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/gold_bar.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/gold_bar_sparkle_strip32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/gold_bar_sparkle_strip32.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/gold_nuggets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/gold_nuggets.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/gun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/gun.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/impact_flesh_strip6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/impact_flesh_strip6.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/impact_stone_strip4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/impact_stone_strip4.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/item_cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/item_cross.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/item_energy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/item_energy.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/item_life.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/item_life.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/item_nuclear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/item_nuclear.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/item_skull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/item_skull.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/item_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/item_smile.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/item_void.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/item_void.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/key_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/key_black.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/key_copper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/key_copper.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/key_gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/key_gold.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/key_gold_sparkle_strip32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/key_gold_sparkle_strip32.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/key_magic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/key_magic.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/key_silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/key_silver.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/key_silver_sparkle_strip32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/key_silver_sparkle_strip32.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/lava_strip12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/lava_strip12.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/lock_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/lock_black.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/lock_copper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/lock_copper.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/lock_gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/lock_gold.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/lock_gold_sparkle_strip32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/lock_gold_sparkle_strip32.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/lock_magic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/lock_magic.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/lock_silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/lock_silver.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/lock_silver_sparkle_strip32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/lock_silver_sparkle_strip32.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/npc_boy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/npc_boy.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/npc_darkguy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/npc_darkguy.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/npc_doctor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/npc_doctor.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/npc_explorergirl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/npc_explorergirl.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/npc_girl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/npc_girl.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/npc_guy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/npc_guy.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/npc_oldman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/npc_oldman.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/padlock_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/padlock_black.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/padlock_copper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/padlock_copper.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/padlock_gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/padlock_gold.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/padlock_magic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/padlock_magic.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/padlock_silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/padlock_silver.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/pear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/pear.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/pineapple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/pineapple.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/platform.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/pointer_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/pointer_down.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/pointer_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/pointer_left.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/pointer_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/pointer_right.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/pointer_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/pointer_up.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/potion_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/potion_blue.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/potion_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/potion_dark.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/potion_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/potion_green.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/potion_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/potion_light.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/potion_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/potion_purple.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/potion_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/potion_red.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/potion_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/potion_yellow.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/rifle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/rifle.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/rock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/rock.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/scroll_closed_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/scroll_closed_black.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/scroll_closed_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/scroll_closed_blue.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/scroll_closed_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/scroll_closed_green.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/scroll_closed_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/scroll_closed_purple.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/scroll_closed_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/scroll_closed_red.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/scroll_closed_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/scroll_closed_yellow.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/scroll_opened_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/scroll_opened_black.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/scroll_opened_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/scroll_opened_blue.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/scroll_opened_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/scroll_opened_green.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/scroll_opened_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/scroll_opened_purple.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/scroll_opened_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/scroll_opened_red.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/scroll_opened_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/scroll_opened_yellow.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/skeleton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/skeleton.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/skeleton_walking_strip10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/skeleton_walking_strip10.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/sparkle_strip32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/sparkle_strip32.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/spider_down_strip8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/spider_down_strip8.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/spider_left_strip8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/spider_left_strip8.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/spider_right_strip8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/spider_right_strip8.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/spider_up_strip8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/spider_up_strip8.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/spikes_strip52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/spikes_strip52.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/spring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/spring.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/spring_strip7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/spring_strip7.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/statue1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/statue1.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/statue1_angry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/statue1_angry.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/statue2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/statue2.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/strawberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/strawberry.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/switch_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/switch_off.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/switch_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/switch_on.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/sword_advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/sword_advanced.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/sword_simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/sword_simple.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/sword_wooden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/sword_wooden.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/text_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/text_empty.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/text_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/text_help.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/wall_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/wall_block.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/wall_block_cracked1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/wall_block_cracked1.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/wall_block_cracked2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/wall_block_cracked2.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/wall_block_cracked3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/wall_block_cracked3.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/wall_block_cracked4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/wall_block_cracked4.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/wall_block_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/wall_block_small.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/wand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/wand.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/water_flow_strip24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/water_flow_strip24.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/water_strip12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/water_strip12.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/waterfall_strip6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/waterfall_strip6.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/watersource_rock_strip6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/watersource_rock_strip6.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Maze - Platform/woodblock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Maze - Platform/woodblock.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Space/alien_green_strip8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Space/alien_green_strip8.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Space/alien_purple_strip8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Space/alien_purple_strip8.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Space/lazer_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Space/lazer_blue.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Space/lazer_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Space/lazer_green.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Space/lazer_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Space/lazer_red.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Space/lazer_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Space/lazer_yellow.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Space/meteorite_large1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Space/meteorite_large1.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Space/meteorite_large2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Space/meteorite_large2.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Space/meteorite_medium1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Space/meteorite_medium1.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Space/meteorite_medium2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Space/meteorite_medium2.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Space/meteorite_small1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Space/meteorite_small1.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Space/meteorite_small2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Space/meteorite_small2.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Space/planet1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Space/planet1.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Space/planet2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Space/planet2.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Space/planet3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Space/planet3.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Space/planet3_cloudy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Space/planet3_cloudy.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Space/planet4_cloudy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Space/planet4_cloudy.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Space/rocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Space/rocket.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Space/saturn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Space/saturn.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Space/triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Space/triangle.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Space/ufo_simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Space/ufo_simple.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Tutorial1/apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Tutorial1/apple.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Tutorial1/banana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Tutorial1/banana.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Tutorial1/bomb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Tutorial1/bomb.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Tutorial1/cherry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Tutorial1/cherry.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Tutorial1/strawberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Tutorial1/strawberry.png -------------------------------------------------------------------------------- /Game_Maker8/Sprites/Tutorial1/wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Sprites/Tutorial1/wall.png -------------------------------------------------------------------------------- /Game_Maker8/Tutorials/1 - Your First Game/01_actionapple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Tutorials/1 - Your First Game/01_actionapple.png -------------------------------------------------------------------------------- /Game_Maker8/Tutorials/1 - Your First Game/01_actionbomb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Tutorials/1 - Your First Game/01_actionbomb.png -------------------------------------------------------------------------------- /Game_Maker8/Tutorials/1 - Your First Game/01_actionbounce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Tutorials/1 - Your First Game/01_actionbounce.png -------------------------------------------------------------------------------- /Game_Maker8/Tutorials/1 - Your First Game/01_actioncreate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Tutorials/1 - Your First Game/01_actioncreate.png -------------------------------------------------------------------------------- /Game_Maker8/Tutorials/1 - Your First Game/01_actionhigh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Tutorials/1 - Your First Game/01_actionhigh.png -------------------------------------------------------------------------------- /Game_Maker8/Tutorials/1 - Your First Game/01_actionjump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Tutorials/1 - Your First Game/01_actionjump.png -------------------------------------------------------------------------------- /Game_Maker8/Tutorials/1 - Your First Game/01_actionloop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Tutorials/1 - Your First Game/01_actionloop.png -------------------------------------------------------------------------------- /Game_Maker8/Tutorials/1 - Your First Game/01_actionlose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Tutorials/1 - Your First Game/01_actionlose.png -------------------------------------------------------------------------------- /Game_Maker8/Tutorials/1 - Your First Game/01_actionmove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Tutorials/1 - Your First Game/01_actionmove.png -------------------------------------------------------------------------------- /Game_Maker8/Tutorials/1 - Your First Game/01_actionscore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Tutorials/1 - Your First Game/01_actionscore.png -------------------------------------------------------------------------------- /Game_Maker8/Tutorials/1 - Your First Game/01_actionsound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Tutorials/1 - Your First Game/01_actionsound.png -------------------------------------------------------------------------------- /Game_Maker8/Tutorials/1 - Your First Game/01_advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Tutorials/1 - Your First Game/01_advanced.png -------------------------------------------------------------------------------- /Game_Maker8/Tutorials/1 - Your First Game/01_backgroundadd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Tutorials/1 - Your First Game/01_backgroundadd.png -------------------------------------------------------------------------------- /Game_Maker8/Tutorials/1 - Your First Game/01_backgroundload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Tutorials/1 - Your First Game/01_backgroundload.png -------------------------------------------------------------------------------- /Game_Maker8/Tutorials/1 - Your First Game/01_duplicate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Tutorials/1 - Your First Game/01_duplicate.png -------------------------------------------------------------------------------- /Game_Maker8/Tutorials/1 - Your First Game/01_eventcollision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Tutorials/1 - Your First Game/01_eventcollision.png -------------------------------------------------------------------------------- /Game_Maker8/Tutorials/1 - Your First Game/01_eventcreate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Tutorials/1 - Your First Game/01_eventcreate.png -------------------------------------------------------------------------------- /Game_Maker8/Tutorials/1 - Your First Game/01_game1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Tutorials/1 - Your First Game/01_game1.png -------------------------------------------------------------------------------- /Game_Maker8/Tutorials/1 - Your First Game/01_gamefinal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Tutorials/1 - Your First Game/01_gamefinal.png -------------------------------------------------------------------------------- /Game_Maker8/Tutorials/1 - Your First Game/01_information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Tutorials/1 - Your First Game/01_information.png -------------------------------------------------------------------------------- /Game_Maker8/Tutorials/1 - Your First Game/01_objectadd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Tutorials/1 - Your First Game/01_objectadd.png -------------------------------------------------------------------------------- /Game_Maker8/Tutorials/1 - Your First Game/01_objectapple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Tutorials/1 - Your First Game/01_objectapple.png -------------------------------------------------------------------------------- /Game_Maker8/Tutorials/1 - Your First Game/01_objectapple2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Tutorials/1 - Your First Game/01_objectapple2.png -------------------------------------------------------------------------------- /Game_Maker8/Tutorials/1 - Your First Game/01_objectopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Tutorials/1 - Your First Game/01_objectopen.png -------------------------------------------------------------------------------- /Game_Maker8/Tutorials/1 - Your First Game/01_objectsprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Tutorials/1 - Your First Game/01_objectsprite.png -------------------------------------------------------------------------------- /Game_Maker8/Tutorials/1 - Your First Game/01_roomadd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Tutorials/1 - Your First Game/01_roomadd.png -------------------------------------------------------------------------------- /Game_Maker8/Tutorials/1 - Your First Game/01_roomback1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Tutorials/1 - Your First Game/01_roomback1.png -------------------------------------------------------------------------------- /Game_Maker8/Tutorials/1 - Your First Game/01_roomback2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Tutorials/1 - Your First Game/01_roomback2.png -------------------------------------------------------------------------------- /Game_Maker8/Tutorials/1 - Your First Game/01_roomclose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Tutorials/1 - Your First Game/01_roomclose.png -------------------------------------------------------------------------------- /Game_Maker8/Tutorials/1 - Your First Game/01_roommusic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Tutorials/1 - Your First Game/01_roommusic.png -------------------------------------------------------------------------------- /Game_Maker8/Tutorials/1 - Your First Game/01_roomobject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Tutorials/1 - Your First Game/01_roomobject.png -------------------------------------------------------------------------------- /Game_Maker8/Tutorials/1 - Your First Game/01_roomopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Tutorials/1 - Your First Game/01_roomopen.png -------------------------------------------------------------------------------- /Game_Maker8/Tutorials/1 - Your First Game/01_run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Tutorials/1 - Your First Game/01_run.png -------------------------------------------------------------------------------- /Game_Maker8/Tutorials/1 - Your First Game/01_soundadd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Tutorials/1 - Your First Game/01_soundadd.png -------------------------------------------------------------------------------- /Game_Maker8/Tutorials/1 - Your First Game/01_soundload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Tutorials/1 - Your First Game/01_soundload.png -------------------------------------------------------------------------------- /Game_Maker8/Tutorials/1 - Your First Game/01_spriteadd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Tutorials/1 - Your First Game/01_spriteadd.png -------------------------------------------------------------------------------- /Game_Maker8/Tutorials/1 - Your First Game/01_spritelist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Tutorials/1 - Your First Game/01_spritelist.png -------------------------------------------------------------------------------- /Game_Maker8/Tutorials/1 - Your First Game/01_spriteload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Tutorials/1 - Your First Game/01_spriteload.png -------------------------------------------------------------------------------- /Game_Maker8/Tutorials/1 - Your First Game/01_spritename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Tutorials/1 - Your First Game/01_spritename.png -------------------------------------------------------------------------------- /Game_Maker8/Tutorials/1 - Your First Game/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Tutorials/1 - Your First Game/arrow.png -------------------------------------------------------------------------------- /Game_Maker8/Tutorials/1 - Your First Game/bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Tutorials/1 - Your First Game/bar.png -------------------------------------------------------------------------------- /Game_Maker8/Tutorials/1 - Your First Game/page01.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Tutorials/1 - Your First Game/page01.html -------------------------------------------------------------------------------- /Game_Maker8/Tutorials/1 - Your First Game/page02.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Tutorials/1 - Your First Game/page02.html -------------------------------------------------------------------------------- /Game_Maker8/Tutorials/1 - Your First Game/page03.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Tutorials/1 - Your First Game/page03.html -------------------------------------------------------------------------------- /Game_Maker8/Tutorials/1 - Your First Game/page04.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Tutorials/1 - Your First Game/page04.html -------------------------------------------------------------------------------- /Game_Maker8/Tutorials/1 - Your First Game/page05.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Tutorials/1 - Your First Game/page05.html -------------------------------------------------------------------------------- /Game_Maker8/Tutorials/1 - Your First Game/page06.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Tutorials/1 - Your First Game/page06.html -------------------------------------------------------------------------------- /Game_Maker8/Tutorials/1 - Your First Game/page07.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Tutorials/1 - Your First Game/page07.html -------------------------------------------------------------------------------- /Game_Maker8/Tutorials/1 - Your First Game/page08.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Tutorials/1 - Your First Game/page08.html -------------------------------------------------------------------------------- /Game_Maker8/Tutorials/1 - Your First Game/page09.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Tutorials/1 - Your First Game/page09.html -------------------------------------------------------------------------------- /Game_Maker8/Tutorials/1 - Your First Game/page10.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Tutorials/1 - Your First Game/page10.html -------------------------------------------------------------------------------- /Game_Maker8/Tutorials/1 - Your First Game/page11.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Tutorials/1 - Your First Game/page11.html -------------------------------------------------------------------------------- /Game_Maker8/Tutorials/1 - Your First Game/page12.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Tutorials/1 - Your First Game/page12.html -------------------------------------------------------------------------------- /Game_Maker8/Tutorials/1 - Your First Game/page13.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Tutorials/1 - Your First Game/page13.html -------------------------------------------------------------------------------- /Game_Maker8/Tutorials/1 - Your First Game/page14.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Tutorials/1 - Your First Game/page14.html -------------------------------------------------------------------------------- /Game_Maker8/Tutorials/1 - Your First Game/page15.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Tutorials/1 - Your First Game/page15.html -------------------------------------------------------------------------------- /Game_Maker8/Tutorials/1 - Your First Game/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Tutorials/1 - Your First Game/style.css -------------------------------------------------------------------------------- /Game_Maker8/Tutorials/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Tutorials/readme.txt -------------------------------------------------------------------------------- /Game_Maker8/Uninstal.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/Uninstal.exe -------------------------------------------------------------------------------- /Game_Maker8/dxdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/dxdata -------------------------------------------------------------------------------- /Game_Maker8/extensions/GM Printing.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/extensions/GM Printing.chm -------------------------------------------------------------------------------- /Game_Maker8/extensions/GM Printing.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/extensions/GM Printing.dat -------------------------------------------------------------------------------- /Game_Maker8/extensions/GM Printing.ged: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/extensions/GM Printing.ged -------------------------------------------------------------------------------- /Game_Maker8/extensions/GM Room Transitions.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/extensions/GM Room Transitions.chm -------------------------------------------------------------------------------- /Game_Maker8/extensions/GM Room Transitions.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/extensions/GM Room Transitions.dat -------------------------------------------------------------------------------- /Game_Maker8/extensions/GM Room Transitions.ged: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/extensions/GM Room Transitions.ged -------------------------------------------------------------------------------- /Game_Maker8/extensions/GM Windows Dialogs.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/extensions/GM Windows Dialogs.chm -------------------------------------------------------------------------------- /Game_Maker8/extensions/GM Windows Dialogs.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/extensions/GM Windows Dialogs.dat -------------------------------------------------------------------------------- /Game_Maker8/extensions/GM Windows Dialogs.ged: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/extensions/GM Windows Dialogs.ged -------------------------------------------------------------------------------- /Game_Maker8/fnames: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/fnames -------------------------------------------------------------------------------- /Game_Maker8/gm_changes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/gm_changes.html -------------------------------------------------------------------------------- /Game_Maker8/gm_license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/gm_license.html -------------------------------------------------------------------------------- /Game_Maker8/gm_readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/gm_readme.html -------------------------------------------------------------------------------- /Game_Maker8/html/FirstTime.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/html/FirstTime.htm -------------------------------------------------------------------------------- /Game_Maker8/html/Loader.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/html/Loader.htm -------------------------------------------------------------------------------- /Game_Maker8/html/Loader2.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/html/Loader2.htm -------------------------------------------------------------------------------- /Game_Maker8/html/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/html/images/bg.png -------------------------------------------------------------------------------- /Game_Maker8/html/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/html/images/button.png -------------------------------------------------------------------------------- /Game_Maker8/html/images/larrow_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/html/images/larrow_small.png -------------------------------------------------------------------------------- /Game_Maker8/html/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/html/style.css -------------------------------------------------------------------------------- /Game_Maker8/lib/01_move.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/lib/01_move.lib -------------------------------------------------------------------------------- /Game_Maker8/lib/02_main1.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/lib/02_main1.lib -------------------------------------------------------------------------------- /Game_Maker8/lib/03_main2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/lib/03_main2.lib -------------------------------------------------------------------------------- /Game_Maker8/lib/04_control.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/lib/04_control.lib -------------------------------------------------------------------------------- /Game_Maker8/lib/05_score.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/lib/05_score.lib -------------------------------------------------------------------------------- /Game_Maker8/lib/06_extra.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/lib/06_extra.lib -------------------------------------------------------------------------------- /Game_Maker8/lib/07_draw.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/lib/07_draw.lib -------------------------------------------------------------------------------- /Game_Maker8/rundata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/rundata -------------------------------------------------------------------------------- /Game_Maker8/snippets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Game_Maker8/snippets.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/README.md -------------------------------------------------------------------------------- /Source/spelunky_1_1/Adjascent_NODES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/Adjascent_NODES.txt -------------------------------------------------------------------------------- /Source/spelunky_1_1/Bot.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/Bot.dll -------------------------------------------------------------------------------- /Source/spelunky_1_1/Bot.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/Bot.exp -------------------------------------------------------------------------------- /Source/spelunky_1_1/Bot.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/Bot.lib -------------------------------------------------------------------------------- /Source/spelunky_1_1/Bot.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/Bot.pdb -------------------------------------------------------------------------------- /Source/spelunky_1_1/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/COPYING.txt -------------------------------------------------------------------------------- /Source/spelunky_1_1/Level_Path: -------------------------------------------------------------------------------- 1 | End Found -------------------------------------------------------------------------------- /Source/spelunky_1_1/Spelunkbots.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/Spelunkbots.dll -------------------------------------------------------------------------------- /Source/spelunky_1_1/Spelunkbots.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/Spelunkbots.exp -------------------------------------------------------------------------------- /Source/spelunky_1_1/Spelunkbots.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/Spelunkbots.lib -------------------------------------------------------------------------------- /Source/spelunky_1_1/Spelunky.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/Spelunky.exe -------------------------------------------------------------------------------- /Source/spelunky_1_1/Spelunky.gb1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/Spelunky.gb1 -------------------------------------------------------------------------------- /Source/spelunky_1_1/Spelunky.gm81: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/Spelunky.gm81 -------------------------------------------------------------------------------- /Source/spelunky_1_1/Spelunky.gmk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/Spelunky.gmk -------------------------------------------------------------------------------- /Source/spelunky_1_1/config.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/config.exe -------------------------------------------------------------------------------- /Source/spelunky_1_1/distance.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/distance.txt -------------------------------------------------------------------------------- /Source/spelunky_1_1/gamepad.cfg: -------------------------------------------------------------------------------- 1 | 2 2 | 1 3 | 3 4 | 5 5 | 7 6 | 8 7 | 4 8 | 6 9 | 10 -------------------------------------------------------------------------------- /Source/spelunky_1_1/keys.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/keys.cfg -------------------------------------------------------------------------------- /Source/spelunky_1_1/level_bats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/level_bats.txt -------------------------------------------------------------------------------- /Source/spelunky_1_1/level_blocks.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/spelunky_1_1/level_collectables.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/level_collectables.txt -------------------------------------------------------------------------------- /Source/spelunky_1_1/level_enemies.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/spelunky_1_1/level_layout.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/level_layout.txt -------------------------------------------------------------------------------- /Source/spelunky_1_1/level_layoutsssss.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/level_layoutsssss.txt -------------------------------------------------------------------------------- /Source/spelunky_1_1/level_liquids.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/level_liquids.txt -------------------------------------------------------------------------------- /Source/spelunky_1_1/level_path.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/level_path.txt -------------------------------------------------------------------------------- /Source/spelunky_1_1/level_paths.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/level_paths.txt -------------------------------------------------------------------------------- /Source/spelunky_1_1/level_webs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/level_webs.txt -------------------------------------------------------------------------------- /Source/spelunky_1_1/levels/Sorted/DiscoveryDanBot.lvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/levels/Sorted/DiscoveryDanBot.lvl -------------------------------------------------------------------------------- /Source/spelunky_1_1/levels/Sorted/FishBot.lvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/levels/Sorted/FishBot.lvl -------------------------------------------------------------------------------- /Source/spelunky_1_1/levels/Sorted/GoldDiggerBot.lvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/levels/Sorted/GoldDiggerBot.lvl -------------------------------------------------------------------------------- /Source/spelunky_1_1/levels/Sorted/IndieBot.lvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/levels/Sorted/IndieBot.lvl -------------------------------------------------------------------------------- /Source/spelunky_1_1/levels/Sorted/NotSoSolidSnakeBot.lvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/levels/Sorted/NotSoSolidSnakeBot.lvl -------------------------------------------------------------------------------- /Source/spelunky_1_1/levels/Sorted/SeanBeanBot.lvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/levels/Sorted/SeanBeanBot.lvl -------------------------------------------------------------------------------- /Source/spelunky_1_1/levels/arandomisedlevel01.lvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/levels/arandomisedlevel01.lvl -------------------------------------------------------------------------------- /Source/spelunky_1_1/levels/arandomisedlevel02.lvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/levels/arandomisedlevel02.lvl -------------------------------------------------------------------------------- /Source/spelunky_1_1/levels/arandomisedlevel03.lvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/levels/arandomisedlevel03.lvl -------------------------------------------------------------------------------- /Source/spelunky_1_1/levels/arandomisedlevel04.lvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/levels/arandomisedlevel04.lvl -------------------------------------------------------------------------------- /Source/spelunky_1_1/levels/arandomisedlevel05.lvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/levels/arandomisedlevel05.lvl -------------------------------------------------------------------------------- /Source/spelunky_1_1/levels/bat.lvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/levels/bat.lvl -------------------------------------------------------------------------------- /Source/spelunky_1_1/levels/bats.lvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/levels/bats.lvl -------------------------------------------------------------------------------- /Source/spelunky_1_1/levels/cake.lvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/levels/cake.lvl -------------------------------------------------------------------------------- /Source/spelunky_1_1/levels/cape.lvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/levels/cape.lvl -------------------------------------------------------------------------------- /Source/spelunky_1_1/levels/climbing gloves.lvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/levels/climbing gloves.lvl -------------------------------------------------------------------------------- /Source/spelunky_1_1/levels/enemy spikes.lvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/levels/enemy spikes.lvl -------------------------------------------------------------------------------- /Source/spelunky_1_1/levels/fall damage.lvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/levels/fall damage.lvl -------------------------------------------------------------------------------- /Source/spelunky_1_1/levels/fishtest.lvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/levels/fishtest.lvl -------------------------------------------------------------------------------- /Source/spelunky_1_1/levels/fog.lvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/levels/fog.lvl -------------------------------------------------------------------------------- /Source/spelunky_1_1/levels/gold.lvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/levels/gold.lvl -------------------------------------------------------------------------------- /Source/spelunky_1_1/levels/idol.lvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/levels/idol.lvl -------------------------------------------------------------------------------- /Source/spelunky_1_1/levels/jamestestbed.lvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/levels/jamestestbed.lvl -------------------------------------------------------------------------------- /Source/spelunky_1_1/levels/jar.lvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/levels/jar.lvl -------------------------------------------------------------------------------- /Source/spelunky_1_1/levels/jetpack.lvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/levels/jetpack.lvl -------------------------------------------------------------------------------- /Source/spelunky_1_1/levels/jetpackc.lvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/levels/jetpackc.lvl -------------------------------------------------------------------------------- /Source/spelunky_1_1/levels/knife.lvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/levels/knife.lvl -------------------------------------------------------------------------------- /Source/spelunky_1_1/levels/mattock.lvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/levels/mattock.lvl -------------------------------------------------------------------------------- /Source/spelunky_1_1/levels/maze.lvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/levels/maze.lvl -------------------------------------------------------------------------------- /Source/spelunky_1_1/levels/publictest0.lvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/levels/publictest0.lvl -------------------------------------------------------------------------------- /Source/spelunky_1_1/levels/publictest1.lvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/levels/publictest1.lvl -------------------------------------------------------------------------------- /Source/spelunky_1_1/levels/publictest2.lvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/levels/publictest2.lvl -------------------------------------------------------------------------------- /Source/spelunky_1_1/levels/publictest3.lvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/levels/publictest3.lvl -------------------------------------------------------------------------------- /Source/spelunky_1_1/levels/publictest4.lvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/levels/publictest4.lvl -------------------------------------------------------------------------------- /Source/spelunky_1_1/levels/publictest5.lvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/levels/publictest5.lvl -------------------------------------------------------------------------------- /Source/spelunky_1_1/levels/publictest6.lvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/levels/publictest6.lvl -------------------------------------------------------------------------------- /Source/spelunky_1_1/levels/publictest7.lvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/levels/publictest7.lvl -------------------------------------------------------------------------------- /Source/spelunky_1_1/levels/publictest8.lvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/levels/publictest8.lvl -------------------------------------------------------------------------------- /Source/spelunky_1_1/levels/publictest9.lvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/levels/publictest9.lvl -------------------------------------------------------------------------------- /Source/spelunky_1_1/levels/rocks.lvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/levels/rocks.lvl -------------------------------------------------------------------------------- /Source/spelunky_1_1/levels/shotgold.lvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/levels/shotgold.lvl -------------------------------------------------------------------------------- /Source/spelunky_1_1/levels/shotgun.lvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/levels/shotgun.lvl -------------------------------------------------------------------------------- /Source/spelunky_1_1/levels/snakes.lvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/levels/snakes.lvl -------------------------------------------------------------------------------- /Source/spelunky_1_1/levels/spike.lvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/levels/spike.lvl -------------------------------------------------------------------------------- /Source/spelunky_1_1/levels/teleport.lvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/levels/teleport.lvl -------------------------------------------------------------------------------- /Source/spelunky_1_1/levels/testbed1.lvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/levels/testbed1.lvl -------------------------------------------------------------------------------- /Source/spelunky_1_1/levels/testing level.lvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/levels/testing level.lvl -------------------------------------------------------------------------------- /Source/spelunky_1_1/levels/traps.lvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/levels/traps.lvl -------------------------------------------------------------------------------- /Source/spelunky_1_1/levels/web gun.lvl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/levels/web gun.lvl -------------------------------------------------------------------------------- /Source/spelunky_1_1/pathfindingTemp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/pathfindingTemp.txt -------------------------------------------------------------------------------- /Source/spelunky_1_1/pathfindingtemp2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/pathfindingtemp2.txt -------------------------------------------------------------------------------- /Source/spelunky_1_1/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/readme.txt -------------------------------------------------------------------------------- /Source/spelunky_1_1/settings.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/settings.cfg -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/alert.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/alert.wav -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/alien.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/alien.wav -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/arrowtrap.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/arrowtrap.wav -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/bat.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/bat.wav -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/bigjump.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/bigjump.wav -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/blink1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/blink1.wav -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/blink2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/blink2.wav -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/boing.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/boing.wav -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/bombready.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/bombready.wav -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/boss.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/boss.ogg -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/bowpull.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/bowpull.wav -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/break.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/break.wav -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/cave.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/cave.ogg -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/cavemandie.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/cavemandie.wav -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/chestopen.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/chestopen.wav -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/click.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/click.wav -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/climb1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/climb1.wav -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/climb2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/climb2.wav -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/coin.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/coin.wav -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/credits.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/credits.ogg -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/crunch.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/crunch.wav -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/damsel.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/damsel.wav -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/die.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/die.wav -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/explosion.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/explosion.wav -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/flame.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/flame.wav -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/frog.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/frog.wav -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/gem.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/gem.wav -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/ghost.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/ghost.wav -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/giantspider.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/giantspider.wav -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/gspiderjump.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/gspiderjump.wav -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/hit.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/hit.wav -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/hurt.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/hurt.wav -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/ice.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/ice.ogg -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/ignite.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/ignite.wav -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/jetpack.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/jetpack.wav -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/jump.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/jump.wav -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/kiss.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/kiss.wav -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/land.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/land.wav -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/laser.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/laser.wav -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/lasercharge.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/lasercharge.wav -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/letsexplore.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/letsexplore.wav -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/lush.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/lush.ogg -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/mattockbreak.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/mattockbreak.wav -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/monkey.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/monkey.wav -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/pause.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/pause.wav -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/pfall.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/pfall.wav -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/pickup.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/pickup.wav -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/psychic.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/psychic.wav -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/push.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/push.wav -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/shotgun.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/shotgun.wav -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/slam.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/slam.wav -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/smallexplode.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/smallexplode.wav -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/spiderjump.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/spiderjump.wav -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/splash.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/splash.wav -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/steps.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/steps.wav -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/teleport.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/teleport.wav -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/temple.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/temple.ogg -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/tfall.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/tfall.wav -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/throw.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/throw.wav -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/thud.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/thud.wav -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/thump.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/thump.wav -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/title.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/title.ogg -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/trap.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/trap.wav -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/victory.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/victory.ogg -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/whip.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/whip.wav -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/yetiyell.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/yetiyell.wav -------------------------------------------------------------------------------- /Source/spelunky_1_1/sound/zombie.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/sound/zombie.wav -------------------------------------------------------------------------------- /Source/spelunky_1_1/spelunkbots.gb1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/spelunkbots.gb1 -------------------------------------------------------------------------------- /Source/spelunky_1_1/spelunkbots.gmk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/spelunkbots.gmk -------------------------------------------------------------------------------- /Source/spelunky_1_1/stats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/stats.txt -------------------------------------------------------------------------------- /Source/spelunky_1_1/supersound.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/supersound.dll -------------------------------------------------------------------------------- /Source/spelunky_1_1/tempPathFinding.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GET-TUDA-CHOPPA/SpelunkBots/HEAD/Source/spelunky_1_1/tempPathFinding.txt --------------------------------------------------------------------------------