├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ ├── aur-upload.yml │ ├── export_release.yml │ └── snap-upload.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── addons ├── Todo_Manager │ ├── ColourPicker.gd │ ├── ColourPicker.gd.uid │ ├── Current.gd │ ├── Current.gd.uid │ ├── Dock.gd │ ├── Dock.gd.uid │ ├── Pattern.gd │ ├── Pattern.gd.uid │ ├── Project.gd │ ├── Project.gd.uid │ ├── UI │ │ ├── ColourPicker.tscn │ │ ├── Dock.tscn │ │ └── Pattern.tscn │ ├── plugin.cfg │ ├── plugin.gd │ ├── plugin.gd.uid │ ├── todo.cfg │ ├── todoItem_class.gd │ ├── todoItem_class.gd.uid │ ├── todo_class.gd │ └── todo_class.gd.uid ├── default_env.tres └── joystick │ ├── textures │ ├── joystick_base_outline.png │ ├── joystick_base_outline.png.import │ ├── joystick_tip.png │ ├── joystick_tip.png.import │ ├── joystick_tip_arrows.png │ └── joystick_tip_arrows.png.import │ ├── virtual_joystick.gd │ ├── virtual_joystick.gd.uid │ └── virtual_joystick.tscn ├── art-and-sound ├── OutThere.ogg ├── OutThere.ogg.import ├── backarrow.png ├── backarrow.png.import ├── backarrow.svg ├── backarrow.svg.import ├── bg_1_1.png ├── bg_1_1.png.import ├── bullet_death.ogg ├── bullet_death.ogg.import ├── hover.ogg ├── hover.ogg.import ├── iron_fields_loop (Tsorthan Grove-link to opengameart).ogg ├── iron_fields_loop (Tsorthan Grove-link to opengameart).ogg.import ├── kenney_space-shooter-redux │ ├── Backgrounds │ │ ├── darkPurple.png │ │ └── darkPurple.png.import │ ├── Bonus │ │ ├── kenvector_future.ttf │ │ ├── kenvector_future.ttf.import │ │ ├── kenvector_future_thin.ttf │ │ ├── kenvector_future_thin.ttf.import │ │ ├── sfx_laser1.ogg │ │ └── sfx_laser1.ogg.import │ ├── PNG │ │ ├── Lasers │ │ │ ├── laserBlue01.png │ │ │ ├── laserBlue01.png.import │ │ │ ├── laserBlue02.png │ │ │ ├── laserBlue02.png.import │ │ │ ├── laserBlue03.png │ │ │ ├── laserBlue03.png.import │ │ │ ├── laserBlue04.png │ │ │ ├── laserBlue04.png.import │ │ │ ├── laserBlue05.png │ │ │ ├── laserBlue05.png.import │ │ │ ├── laserBlue06.png │ │ │ ├── laserBlue06.png.import │ │ │ ├── laserBlue07.png │ │ │ ├── laserBlue07.png.import │ │ │ ├── laserBlue08.png │ │ │ ├── laserBlue08.png.import │ │ │ ├── laserBlue09.png │ │ │ ├── laserBlue09.png.import │ │ │ ├── laserBlue10.png │ │ │ ├── laserBlue10.png.import │ │ │ ├── laserBlue11.png │ │ │ ├── laserBlue11.png.import │ │ │ ├── laserBlue12.png │ │ │ ├── laserBlue12.png.import │ │ │ ├── laserBlue13.png │ │ │ ├── laserBlue13.png.import │ │ │ ├── laserBlue14.png │ │ │ ├── laserBlue14.png.import │ │ │ ├── laserBlue15.png │ │ │ ├── laserBlue15.png.import │ │ │ ├── laserBlue16.png │ │ │ ├── laserBlue16.png.import │ │ │ ├── laserGreen01.png │ │ │ ├── laserGreen01.png.import │ │ │ ├── laserGreen02.png │ │ │ ├── laserGreen02.png.import │ │ │ ├── laserGreen03.png │ │ │ ├── laserGreen03.png.import │ │ │ ├── laserGreen04.png │ │ │ ├── laserGreen04.png.import │ │ │ ├── laserGreen05.png │ │ │ ├── laserGreen05.png.import │ │ │ ├── laserGreen06.png │ │ │ ├── laserGreen06.png.import │ │ │ ├── laserGreen07.png │ │ │ ├── laserGreen07.png.import │ │ │ ├── laserGreen08.png │ │ │ ├── laserGreen08.png.import │ │ │ ├── laserGreen09.png │ │ │ ├── laserGreen09.png.import │ │ │ ├── laserGreen10.png │ │ │ ├── laserGreen10.png.import │ │ │ ├── laserGreen11.png │ │ │ ├── laserGreen11.png.import │ │ │ ├── laserGreen12.png │ │ │ ├── laserGreen12.png.import │ │ │ ├── laserGreen13.png │ │ │ ├── laserGreen13.png.import │ │ │ ├── laserGreen14.png │ │ │ ├── laserGreen14.png.import │ │ │ ├── laserGreen15.png │ │ │ ├── laserGreen15.png.import │ │ │ ├── laserGreen16.png │ │ │ ├── laserGreen16.png.import │ │ │ ├── laserRed01.png │ │ │ ├── laserRed01.png.import │ │ │ ├── laserRed02.png │ │ │ ├── laserRed02.png.import │ │ │ ├── laserRed03.png │ │ │ ├── laserRed03.png.import │ │ │ ├── laserRed04.png │ │ │ ├── laserRed04.png.import │ │ │ ├── laserRed05.png │ │ │ ├── laserRed05.png.import │ │ │ ├── laserRed06.png │ │ │ ├── laserRed06.png.import │ │ │ ├── laserRed07.png │ │ │ ├── laserRed07.png.import │ │ │ ├── laserRed08.png │ │ │ ├── laserRed08.png.import │ │ │ ├── laserRed09.png │ │ │ ├── laserRed09.png.import │ │ │ ├── laserRed10.png │ │ │ ├── laserRed10.png.import │ │ │ ├── laserRed11.png │ │ │ ├── laserRed11.png.import │ │ │ ├── laserRed12.png │ │ │ ├── laserRed12.png.import │ │ │ ├── laserRed13.png │ │ │ ├── laserRed13.png.import │ │ │ ├── laserRed14.png │ │ │ ├── laserRed14.png.import │ │ │ ├── laserRed15.png │ │ │ ├── laserRed15.png.import │ │ │ ├── laserRed16.png │ │ │ └── laserRed16.png.import │ │ ├── Meteors │ │ │ ├── meteorBrown_big1.png │ │ │ ├── meteorBrown_big1.png.import │ │ │ ├── meteorBrown_big2.png │ │ │ ├── meteorBrown_big2.png.import │ │ │ ├── meteorBrown_big3.png │ │ │ ├── meteorBrown_big3.png.import │ │ │ ├── meteorBrown_big4.png │ │ │ ├── meteorBrown_big4.png.import │ │ │ ├── meteorBrown_med1.png │ │ │ ├── meteorBrown_med1.png.import │ │ │ ├── meteorBrown_med3.png │ │ │ ├── meteorBrown_med3.png.import │ │ │ ├── meteorBrown_small1.png │ │ │ ├── meteorBrown_small1.png.import │ │ │ ├── meteorBrown_small2.png │ │ │ ├── meteorBrown_small2.png.import │ │ │ ├── meteorBrown_tiny1.png │ │ │ ├── meteorBrown_tiny1.png.import │ │ │ ├── meteorBrown_tiny2.png │ │ │ ├── meteorBrown_tiny2.png.import │ │ │ ├── meteorGrey_big1.png │ │ │ ├── meteorGrey_big1.png.import │ │ │ ├── meteorGrey_big2.png │ │ │ ├── meteorGrey_big2.png.import │ │ │ ├── meteorGrey_big3.png │ │ │ ├── meteorGrey_big3.png.import │ │ │ ├── meteorGrey_big4.png │ │ │ ├── meteorGrey_big4.png.import │ │ │ ├── meteorGrey_med1.png │ │ │ ├── meteorGrey_med1.png.import │ │ │ ├── meteorGrey_med2.png │ │ │ ├── meteorGrey_med2.png.import │ │ │ ├── meteorGrey_small1.png │ │ │ ├── meteorGrey_small1.png.import │ │ │ ├── meteorGrey_small2.png │ │ │ ├── meteorGrey_small2.png.import │ │ │ ├── meteorGrey_tiny1.png │ │ │ ├── meteorGrey_tiny1.png.import │ │ │ ├── meteorGrey_tiny2.png │ │ │ └── meteorGrey_tiny2.png.import │ │ ├── Parts │ │ │ ├── beam0.png │ │ │ ├── beam0.png.import │ │ │ ├── beam1.png │ │ │ ├── beam1.png.import │ │ │ ├── beam2.png │ │ │ ├── beam2.png.import │ │ │ ├── beam3.png │ │ │ ├── beam3.png.import │ │ │ ├── beam4.png │ │ │ ├── beam4.png.import │ │ │ ├── beam5.png │ │ │ ├── beam5.png.import │ │ │ ├── beam6.png │ │ │ ├── beam6.png.import │ │ │ ├── beamLong1.png │ │ │ ├── beamLong1.png.import │ │ │ ├── beamLong2.png │ │ │ ├── beamLong2.png.import │ │ │ ├── cockpitBlue_0.png │ │ │ ├── cockpitBlue_0.png.import │ │ │ ├── cockpitBlue_1.png │ │ │ ├── cockpitBlue_1.png.import │ │ │ ├── cockpitBlue_2.png │ │ │ ├── cockpitBlue_2.png.import │ │ │ ├── cockpitBlue_3.png │ │ │ ├── cockpitBlue_3.png.import │ │ │ ├── cockpitBlue_4.png │ │ │ ├── cockpitBlue_4.png.import │ │ │ ├── cockpitBlue_5.png │ │ │ ├── cockpitBlue_5.png.import │ │ │ ├── cockpitBlue_6.png │ │ │ ├── cockpitBlue_6.png.import │ │ │ ├── cockpitBlue_7.png │ │ │ ├── cockpitBlue_7.png.import │ │ │ ├── cockpitGreen_0.png │ │ │ ├── cockpitGreen_0.png.import │ │ │ ├── cockpitGreen_1.png │ │ │ ├── cockpitGreen_1.png.import │ │ │ ├── cockpitGreen_2.png │ │ │ ├── cockpitGreen_2.png.import │ │ │ ├── cockpitGreen_3.png │ │ │ ├── cockpitGreen_3.png.import │ │ │ ├── cockpitGreen_4.png │ │ │ ├── cockpitGreen_4.png.import │ │ │ ├── cockpitGreen_5.png │ │ │ ├── cockpitGreen_5.png.import │ │ │ ├── cockpitGreen_6.png │ │ │ ├── cockpitGreen_6.png.import │ │ │ ├── cockpitGreen_7.png │ │ │ ├── cockpitGreen_7.png.import │ │ │ ├── cockpitRed_0.png │ │ │ ├── cockpitRed_0.png.import │ │ │ ├── cockpitRed_1.png │ │ │ ├── cockpitRed_1.png.import │ │ │ ├── cockpitRed_2.png │ │ │ ├── cockpitRed_2.png.import │ │ │ ├── cockpitRed_3.png │ │ │ ├── cockpitRed_3.png.import │ │ │ ├── cockpitRed_4.png │ │ │ ├── cockpitRed_4.png.import │ │ │ ├── cockpitRed_5.png │ │ │ ├── cockpitRed_5.png.import │ │ │ ├── cockpitRed_6.png │ │ │ ├── cockpitRed_6.png.import │ │ │ ├── cockpitRed_7.png │ │ │ ├── cockpitRed_7.png.import │ │ │ ├── cockpitYellow_0.png │ │ │ ├── cockpitYellow_0.png.import │ │ │ ├── cockpitYellow_1.png │ │ │ ├── cockpitYellow_1.png.import │ │ │ ├── cockpitYellow_2.png │ │ │ ├── cockpitYellow_2.png.import │ │ │ ├── cockpitYellow_3.png │ │ │ ├── cockpitYellow_3.png.import │ │ │ ├── cockpitYellow_4.png │ │ │ ├── cockpitYellow_4.png.import │ │ │ ├── cockpitYellow_5.png │ │ │ ├── cockpitYellow_5.png.import │ │ │ ├── cockpitYellow_6.png │ │ │ ├── cockpitYellow_6.png.import │ │ │ ├── cockpitYellow_7.png │ │ │ ├── cockpitYellow_7.png.import │ │ │ ├── engine1.png │ │ │ ├── engine1.png.import │ │ │ ├── engine2.png │ │ │ ├── engine2.png.import │ │ │ ├── engine3.png │ │ │ ├── engine3.png.import │ │ │ ├── engine4.png │ │ │ ├── engine4.png.import │ │ │ ├── engine5.png │ │ │ ├── engine5.png.import │ │ │ ├── gun00.png │ │ │ ├── gun00.png.import │ │ │ ├── gun01.png │ │ │ ├── gun01.png.import │ │ │ ├── gun02.png │ │ │ ├── gun02.png.import │ │ │ ├── gun03.png │ │ │ ├── gun03.png.import │ │ │ ├── gun04.png │ │ │ ├── gun04.png.import │ │ │ ├── gun05.png │ │ │ ├── gun05.png.import │ │ │ ├── gun06.png │ │ │ ├── gun06.png.import │ │ │ ├── gun07.png │ │ │ ├── gun07.png.import │ │ │ ├── gun08.png │ │ │ ├── gun08.png.import │ │ │ ├── gun09.png │ │ │ ├── gun09.png.import │ │ │ ├── gun10.png │ │ │ ├── gun10.png.import │ │ │ ├── scratch1.png │ │ │ ├── scratch1.png.import │ │ │ ├── scratch2.png │ │ │ ├── scratch2.png.import │ │ │ ├── scratch3.png │ │ │ ├── scratch3.png.import │ │ │ ├── turretBase_big.png │ │ │ ├── turretBase_big.png.import │ │ │ ├── turretBase_small.png │ │ │ ├── turretBase_small.png.import │ │ │ ├── wingBlue_0.png │ │ │ ├── wingBlue_0.png.import │ │ │ ├── wingBlue_1.png │ │ │ ├── wingBlue_1.png.import │ │ │ ├── wingBlue_2.png │ │ │ ├── wingBlue_2.png.import │ │ │ ├── wingBlue_3.png │ │ │ ├── wingBlue_3.png.import │ │ │ ├── wingBlue_4.png │ │ │ ├── wingBlue_4.png.import │ │ │ ├── wingBlue_5.png │ │ │ ├── wingBlue_5.png.import │ │ │ ├── wingBlue_6.png │ │ │ ├── wingBlue_6.png.import │ │ │ ├── wingBlue_7.png │ │ │ ├── wingBlue_7.png.import │ │ │ ├── wingGreen_0.png │ │ │ ├── wingGreen_0.png.import │ │ │ ├── wingGreen_1.png │ │ │ ├── wingGreen_1.png.import │ │ │ ├── wingGreen_2.png │ │ │ ├── wingGreen_2.png.import │ │ │ ├── wingGreen_3.png │ │ │ ├── wingGreen_3.png.import │ │ │ ├── wingGreen_4.png │ │ │ ├── wingGreen_4.png.import │ │ │ ├── wingGreen_5.png │ │ │ ├── wingGreen_5.png.import │ │ │ ├── wingGreen_6.png │ │ │ ├── wingGreen_6.png.import │ │ │ ├── wingGreen_7.png │ │ │ ├── wingGreen_7.png.import │ │ │ ├── wingRed_0.png │ │ │ ├── wingRed_0.png.import │ │ │ ├── wingRed_1.png │ │ │ ├── wingRed_1.png.import │ │ │ ├── wingRed_2.png │ │ │ ├── wingRed_2.png.import │ │ │ ├── wingRed_3.png │ │ │ ├── wingRed_3.png.import │ │ │ ├── wingRed_4.png │ │ │ ├── wingRed_4.png.import │ │ │ ├── wingRed_5.png │ │ │ ├── wingRed_5.png.import │ │ │ ├── wingRed_6.png │ │ │ ├── wingRed_6.png.import │ │ │ ├── wingRed_7.png │ │ │ ├── wingRed_7.png.import │ │ │ ├── wingYellow_0.png │ │ │ ├── wingYellow_0.png.import │ │ │ ├── wingYellow_1.png │ │ │ ├── wingYellow_1.png.import │ │ │ ├── wingYellow_2.png │ │ │ ├── wingYellow_2.png.import │ │ │ ├── wingYellow_3.png │ │ │ ├── wingYellow_3.png.import │ │ │ ├── wingYellow_4.png │ │ │ ├── wingYellow_4.png.import │ │ │ ├── wingYellow_5.png │ │ │ ├── wingYellow_5.png.import │ │ │ ├── wingYellow_6.png │ │ │ ├── wingYellow_6.png.import │ │ │ ├── wingYellow_7.png │ │ │ └── wingYellow_7.png.import │ │ ├── UI │ │ │ ├── cursor.png │ │ │ └── cursor.png.import │ │ ├── playerShip1_blue.png │ │ ├── playerShip1_blue.png.import │ │ ├── playerShip1_green.png │ │ ├── playerShip1_green.png.import │ │ ├── playerShip1_orange.png │ │ ├── playerShip1_orange.png.import │ │ ├── playerShip1_red.png │ │ ├── playerShip1_red.png.import │ │ ├── playerShip2_blue.png │ │ ├── playerShip2_blue.png.import │ │ ├── playerShip2_green.png │ │ ├── playerShip2_green.png.import │ │ ├── playerShip2_orange.png │ │ ├── playerShip2_orange.png.import │ │ ├── playerShip2_red.png │ │ ├── playerShip2_red.png.import │ │ ├── playerShip3_blue.png │ │ ├── playerShip3_blue.png.import │ │ ├── playerShip3_green.png │ │ ├── playerShip3_green.png.import │ │ ├── playerShip3_orange.png │ │ ├── playerShip3_orange.png.import │ │ ├── playerShip3_red.png │ │ ├── playerShip3_red.png.import │ │ ├── ufoBlue.png │ │ ├── ufoBlue.png.import │ │ ├── ufoGreen.png │ │ ├── ufoGreen.png.import │ │ ├── ufoRed.png │ │ ├── ufoRed.png.import │ │ ├── ufoYellow.png │ │ └── ufoYellow.png.import │ ├── wrench.png │ └── wrench.png.import ├── lasershot.wav ├── lasershot.wav.import ├── launches │ ├── flaunch.wav │ ├── flaunch.wav.import │ ├── iceball.wav │ ├── iceball.wav.import │ ├── info.txt │ ├── rlaunch.wav │ ├── rlaunch.wav.import │ ├── slimeball.wav │ └── slimeball.wav.import ├── menu_click_sound.ogg ├── menu_click_sound.ogg.import ├── missile │ ├── smoke │ │ ├── spr_smoke_strip17trail.png │ │ ├── spr_smoke_strip17trail.png.import │ │ ├── spr_smoke_strip24.png │ │ └── spr_smoke_strip24.png.import │ ├── spr_missile.png │ └── spr_missile.png.import ├── missile_target_locked.ogg ├── missile_target_locked.ogg.import ├── missile_target_locked.wav ├── missile_target_locked.wav.import ├── my-assets │ ├── mini_asteroid_death.ogg │ ├── mini_asteroid_death.ogg.import │ ├── resource-icons │ │ ├── level_progression.svg │ │ ├── level_progression.svg.import │ │ ├── stage.svg │ │ └── stage.svg.import │ ├── star.svg │ └── star.svg.import ├── through space.ogg ├── through space.ogg.import ├── transition_sound.ogg ├── transition_sound.ogg.import ├── transition_sound2.ogg ├── transition_sound2.ogg.import └── unused_art │ ├── kenney │ ├── Backgrounds │ │ ├── black.png │ │ ├── black.png.import │ │ ├── blue.png │ │ ├── blue.png.import │ │ ├── purple.png │ │ └── purple.png.import │ ├── Bonus │ │ ├── sfx_laser2.ogg │ │ ├── sfx_laser2.ogg.import │ │ ├── sfx_lose.ogg │ │ ├── sfx_lose.ogg.import │ │ ├── sfx_shieldDown.ogg │ │ ├── sfx_shieldDown.ogg.import │ │ ├── sfx_shieldUp.ogg │ │ ├── sfx_shieldUp.ogg.import │ │ ├── sfx_twoTone.ogg │ │ ├── sfx_twoTone.ogg.import │ │ ├── sfx_zap.ogg │ │ └── sfx_zap.ogg.import │ ├── PNG │ │ ├── Damage │ │ │ ├── playerShip1_damage1.png │ │ │ ├── playerShip1_damage1.png.import │ │ │ ├── playerShip1_damage2.png │ │ │ ├── playerShip1_damage2.png.import │ │ │ ├── playerShip1_damage3.png │ │ │ ├── playerShip1_damage3.png.import │ │ │ ├── playerShip2_damage1.png │ │ │ ├── playerShip2_damage1.png.import │ │ │ ├── playerShip2_damage2.png │ │ │ ├── playerShip2_damage2.png.import │ │ │ ├── playerShip2_damage3.png │ │ │ ├── playerShip2_damage3.png.import │ │ │ ├── playerShip3_damage1.png │ │ │ ├── playerShip3_damage1.png.import │ │ │ ├── playerShip3_damage2.png │ │ │ ├── playerShip3_damage2.png.import │ │ │ ├── playerShip3_damage3.png │ │ │ └── playerShip3_damage3.png.import │ │ ├── Effects │ │ │ ├── fire00.png │ │ │ ├── fire00.png.import │ │ │ ├── fire01.png │ │ │ ├── fire01.png.import │ │ │ ├── fire02.png │ │ │ ├── fire02.png.import │ │ │ ├── fire03.png │ │ │ ├── fire03.png.import │ │ │ ├── fire04.png │ │ │ ├── fire04.png.import │ │ │ ├── fire05.png │ │ │ ├── fire05.png.import │ │ │ ├── fire06.png │ │ │ ├── fire06.png.import │ │ │ ├── fire07.png │ │ │ ├── fire07.png.import │ │ │ ├── fire08.png │ │ │ ├── fire08.png.import │ │ │ ├── fire09.png │ │ │ ├── fire09.png.import │ │ │ ├── fire10.png │ │ │ ├── fire10.png.import │ │ │ ├── fire11.png │ │ │ ├── fire11.png.import │ │ │ ├── fire12.png │ │ │ ├── fire12.png.import │ │ │ ├── fire13.png │ │ │ ├── fire13.png.import │ │ │ ├── fire14.png │ │ │ ├── fire14.png.import │ │ │ ├── fire15.png │ │ │ ├── fire15.png.import │ │ │ ├── fire16.png │ │ │ ├── fire16.png.import │ │ │ ├── fire17.png │ │ │ ├── fire17.png.import │ │ │ ├── fire18.png │ │ │ ├── fire18.png.import │ │ │ ├── fire19.png │ │ │ ├── fire19.png.import │ │ │ ├── shield1.png │ │ │ ├── shield1.png.import │ │ │ ├── shield2.png │ │ │ ├── shield2.png.import │ │ │ ├── shield3.png │ │ │ ├── shield3.png.import │ │ │ ├── speed.png │ │ │ ├── speed.png.import │ │ │ ├── star1.png │ │ │ ├── star1.png.import │ │ │ ├── star2.png │ │ │ ├── star2.png.import │ │ │ ├── star3.png │ │ │ └── star3.png.import │ │ ├── Enemies │ │ │ ├── enemyBlack1.png │ │ │ ├── enemyBlack1.png.import │ │ │ ├── enemyBlack2.png │ │ │ ├── enemyBlack2.png.import │ │ │ ├── enemyBlack3.png │ │ │ ├── enemyBlack3.png.import │ │ │ ├── enemyBlack4.png │ │ │ ├── enemyBlack4.png.import │ │ │ ├── enemyBlack5.png │ │ │ ├── enemyBlack5.png.import │ │ │ ├── enemyBlue1.png │ │ │ ├── enemyBlue1.png.import │ │ │ ├── enemyBlue2.png │ │ │ ├── enemyBlue2.png.import │ │ │ ├── enemyBlue3.png │ │ │ ├── enemyBlue3.png.import │ │ │ ├── enemyBlue4.png │ │ │ ├── enemyBlue4.png.import │ │ │ ├── enemyBlue5.png │ │ │ ├── enemyBlue5.png.import │ │ │ ├── enemyGreen1.png │ │ │ ├── enemyGreen1.png.import │ │ │ ├── enemyGreen2.png │ │ │ ├── enemyGreen2.png.import │ │ │ ├── enemyGreen3.png │ │ │ ├── enemyGreen3.png.import │ │ │ ├── enemyGreen4.png │ │ │ ├── enemyGreen4.png.import │ │ │ ├── enemyGreen5.png │ │ │ ├── enemyGreen5.png.import │ │ │ ├── enemyRed1.png │ │ │ ├── enemyRed1.png.import │ │ │ ├── enemyRed2.png │ │ │ ├── enemyRed2.png.import │ │ │ ├── enemyRed3.png │ │ │ ├── enemyRed3.png.import │ │ │ ├── enemyRed4.png │ │ │ ├── enemyRed4.png.import │ │ │ ├── enemyRed5.png │ │ │ └── enemyRed5.png.import │ │ ├── Power-ups │ │ │ ├── bold_silver.png │ │ │ ├── bold_silver.png.import │ │ │ ├── bolt_bronze.png │ │ │ ├── bolt_bronze.png.import │ │ │ ├── bolt_gold.png │ │ │ ├── bolt_gold.png.import │ │ │ ├── pill_blue.png │ │ │ ├── pill_blue.png.import │ │ │ ├── pill_green.png │ │ │ ├── pill_green.png.import │ │ │ ├── pill_red.png │ │ │ ├── pill_red.png.import │ │ │ ├── pill_yellow.png │ │ │ ├── pill_yellow.png.import │ │ │ ├── powerupBlue.png │ │ │ ├── powerupBlue.png.import │ │ │ ├── powerupBlue_bolt.png │ │ │ ├── powerupBlue_bolt.png.import │ │ │ ├── powerupBlue_shield.png │ │ │ ├── powerupBlue_shield.png.import │ │ │ ├── powerupBlue_star.png │ │ │ ├── powerupBlue_star.png.import │ │ │ ├── powerupGreen.png │ │ │ ├── powerupGreen.png.import │ │ │ ├── powerupGreen_bolt.png │ │ │ ├── powerupGreen_bolt.png.import │ │ │ ├── powerupGreen_shield.png │ │ │ ├── powerupGreen_shield.png.import │ │ │ ├── powerupGreen_star.png │ │ │ ├── powerupGreen_star.png.import │ │ │ ├── powerupRed.png │ │ │ ├── powerupRed.png.import │ │ │ ├── powerupRed_bolt.png │ │ │ ├── powerupRed_bolt.png.import │ │ │ ├── powerupRed_shield.png │ │ │ ├── powerupRed_shield.png.import │ │ │ ├── powerupRed_star.png │ │ │ ├── powerupRed_star.png.import │ │ │ ├── powerupYellow.png │ │ │ ├── powerupYellow.png.import │ │ │ ├── powerupYellow_bolt.png │ │ │ ├── powerupYellow_bolt.png.import │ │ │ ├── powerupYellow_shield.png │ │ │ ├── powerupYellow_shield.png.import │ │ │ ├── powerupYellow_star.png │ │ │ ├── powerupYellow_star.png.import │ │ │ ├── shield_bronze.png │ │ │ ├── shield_bronze.png.import │ │ │ ├── shield_gold.png │ │ │ ├── shield_gold.png.import │ │ │ ├── shield_silver.png │ │ │ ├── shield_silver.png.import │ │ │ ├── star_bronze.png │ │ │ ├── star_bronze.png.import │ │ │ ├── star_gold.png │ │ │ ├── star_gold.png.import │ │ │ ├── star_silver.png │ │ │ ├── star_silver.png.import │ │ │ ├── things_bronze.png │ │ │ ├── things_bronze.png.import │ │ │ ├── things_gold.png │ │ │ ├── things_gold.png.import │ │ │ ├── things_silver.png │ │ │ └── things_silver.png.import │ │ └── UI │ │ │ ├── buttonBlue.png │ │ │ ├── buttonBlue.png.import │ │ │ ├── buttonGreen.png │ │ │ ├── buttonGreen.png.import │ │ │ ├── buttonRed.png │ │ │ ├── buttonRed.png.import │ │ │ ├── buttonYellow.png │ │ │ ├── buttonYellow.png.import │ │ │ ├── numeral0.png │ │ │ ├── numeral0.png.import │ │ │ ├── numeral1.png │ │ │ ├── numeral1.png.import │ │ │ ├── numeral2.png │ │ │ ├── numeral2.png.import │ │ │ ├── numeral3.png │ │ │ ├── numeral3.png.import │ │ │ ├── numeral4.png │ │ │ ├── numeral4.png.import │ │ │ ├── numeral5.png │ │ │ ├── numeral5.png.import │ │ │ ├── numeral6.png │ │ │ ├── numeral6.png.import │ │ │ ├── numeral7.png │ │ │ ├── numeral7.png.import │ │ │ ├── numeral8.png │ │ │ ├── numeral8.png.import │ │ │ ├── numeral9.png │ │ │ ├── numeral9.png.import │ │ │ ├── numeralX.png │ │ │ ├── numeralX.png.import │ │ │ ├── playerLife1_blue.png │ │ │ ├── playerLife1_blue.png.import │ │ │ ├── playerLife1_green.png │ │ │ ├── playerLife1_green.png.import │ │ │ ├── playerLife1_orange.png │ │ │ ├── playerLife1_orange.png.import │ │ │ ├── playerLife1_red.png │ │ │ ├── playerLife1_red.png.import │ │ │ ├── playerLife2_blue.png │ │ │ ├── playerLife2_blue.png.import │ │ │ ├── playerLife2_green.png │ │ │ ├── playerLife2_green.png.import │ │ │ ├── playerLife2_orange.png │ │ │ ├── playerLife2_orange.png.import │ │ │ ├── playerLife2_red.png │ │ │ ├── playerLife2_red.png.import │ │ │ ├── playerLife3_blue.png │ │ │ ├── playerLife3_blue.png.import │ │ │ ├── playerLife3_green.png │ │ │ ├── playerLife3_green.png.import │ │ │ ├── playerLife3_orange.png │ │ │ ├── playerLife3_orange.png.import │ │ │ ├── playerLife3_red.png │ │ │ └── playerLife3_red.png.import │ ├── Spritesheet │ │ ├── sheet.png │ │ ├── sheet.png.import │ │ └── sheet.xml │ ├── Vector │ │ ├── sheet.svg │ │ ├── sheet.svg.import │ │ └── sheet.swf │ ├── preview.png │ ├── preview.png.import │ ├── sample.png │ └── sample.png.import │ └── missile │ ├── missile_0.png │ ├── missile_0.png.import │ ├── missile_1.png │ ├── missile_1.png.import │ ├── missile_2.png │ ├── missile_2.png.import │ ├── missile_3.png │ ├── missile_3.png.import │ ├── missile_4.png │ ├── missile_4.png.import │ ├── missile_5.png │ ├── missile_5.png.import │ ├── missile_6.png │ ├── missile_6.png.import │ ├── missile_7.png │ ├── missile_7.png.import │ ├── spr_missile_half.png │ └── spr_missile_half.png.import ├── credits.md ├── default_bus_layout.tres ├── export_presets.cfg ├── fastlane └── metadata │ └── android │ ├── de │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── en-US │ ├── changelogs │ │ ├── 100002.txt │ │ ├── 100012.txt │ │ ├── 100022.txt │ │ ├── 100032.txt │ │ ├── 100052.txt │ │ ├── 100056.txt │ │ ├── 100062.txt │ │ ├── 100072.txt │ │ ├── 100082.txt │ │ ├── 100090.txt │ │ ├── 100092.txt │ │ ├── 100094.txt │ │ ├── 100102.txt │ │ ├── 100104.txt │ │ ├── 100106.txt │ │ ├── 100108.txt │ │ ├── 100111.txt │ │ ├── 100120.txt │ │ ├── 100130.txt │ │ ├── 100140.txt │ │ ├── 100150.txt │ │ ├── 100160.txt │ │ ├── 100170.txt │ │ ├── 100180.txt │ │ ├── 100190.txt │ │ ├── 100200.txt │ │ ├── 100210.txt │ │ ├── 100220.txt │ │ ├── 100230.txt │ │ ├── 100240.txt │ │ └── default.txt │ ├── full_description.txt │ ├── images │ │ ├── icon.png │ │ ├── icon.png.import │ │ └── phoneScreenshots │ │ │ ├── 1.png │ │ │ ├── 1.png.import │ │ │ ├── 2.png │ │ │ ├── 2.png.import │ │ │ ├── 3.png │ │ │ ├── 3.png.import │ │ │ ├── 4.png │ │ │ ├── 4.png.import │ │ │ ├── 5.png │ │ │ ├── 5.png.import │ │ │ ├── 6.png │ │ │ └── 6.png.import │ ├── short_description.txt │ └── title.txt │ ├── es │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── fr │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── it │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── ja │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── ko │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── pt-BR │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── pt-PT │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── ru │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── zh-CN │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ └── zh-TW │ ├── .gitkeep │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt ├── icon.svg ├── icons ├── icon.icns ├── icon.ico ├── icon.png ├── icon.png.import ├── icon.svg └── icon.svg.import ├── locale ├── translations.DESCRIPTION.translation ├── translations.ar.translation ├── translations.bg.translation ├── translations.br.translation ├── translations.bs.translation ├── translations.cs.translation ├── translations.csv ├── translations.csv.import ├── translations.da.translation ├── translations.de.translation ├── translations.el.translation ├── translations.en.translation ├── translations.es.translation ├── translations.fi.translation ├── translations.fr.translation ├── translations.he.translation ├── translations.hu.translation ├── translations.it.translation ├── translations.ja.translation ├── translations.ko.translation ├── translations.lzh.translation ├── translations.nb.translation ├── translations.nl.translation ├── translations.pl.translation ├── translations.pt.translation ├── translations.ro.translation ├── translations.ru.translation ├── translations.sv.translation ├── translations.th.translation ├── translations.tr.translation └── translations.zh.translation ├── others ├── flathub │ ├── io.github.mlm_games.asteroids_revenge.desktop │ └── io.github.mlm_games.asteroids_revenge.metainfo.xml └── snap │ └── snapcraft.yaml ├── project.godot ├── resources ├── button-theme.tres ├── darken_slightly.tres ├── hard_mode.tres ├── level_progression.gd ├── level_progression.gd.uid ├── normal_mode.tres ├── obstacle1.tres ├── obstacle2.tres ├── obstacle3.tres ├── obstacle4.tres ├── obstacle5.tres ├── obstacle6.tres ├── obstacle7.tres ├── obstacle8.tres ├── obstacle9.tres ├── pixelated.gdshader ├── pixelated.gdshader.uid ├── small_textstyle.tres ├── stage.gd ├── stage.gd.uid └── textstyle.tres └── scenes ├── Main.gd ├── Main.gd.uid ├── asteroid_bullet.gd ├── asteroid_bullet.gd.uid ├── asteroid_bullet.tscn ├── base_obstacle.gd ├── base_obstacle.gd.uid ├── base_obstacle.tscn ├── base_scene.tscn ├── boss_spaceship.gd ├── boss_spaceship.gd.uid ├── boss_spaceship.tscn ├── bouncing_laser.gd ├── bouncing_laser.gd.uid ├── bouncing_laser.tscn ├── cloaking_laser.gd ├── cloaking_laser.gd.uid ├── cloaking_laser.tscn ├── curve_laser.gd ├── curve_laser.gd.uid ├── curve_laser.tscn ├── game_state.gd ├── game_state.gd.uid ├── hit_effects.gd ├── hit_effects.gd.uid ├── hud.gd ├── hud.gd.uid ├── hud.tscn ├── laser.gd ├── laser.gd.uid ├── laser.tscn ├── main-theme.tres ├── main.tscn ├── main_old.tscn ├── mini_asteroid.gd ├── mini_asteroid.gd.uid ├── mini_asteroid.tscn ├── missile.gd ├── missile.gd.uid ├── missile.tscn ├── nebula.gdshader ├── nebula.gdshader.uid ├── obstacles.gd ├── obstacles.gd.uid ├── player_rock.gd ├── player_rock.gd.uid ├── player_rock.tscn ├── scaling_laser.gd ├── scaling_laser.gd.uid ├── scaling_laser.tscn ├── settings.gd ├── settings.gd.uid ├── settings.tscn ├── spinner.gd ├── spinner.gd.uid ├── spinner.tscn ├── spring_laser.gd ├── spring_laser.gd.uid ├── spring_laser.tscn ├── starry-bg.gdshader ├── starry-bg.gdshader.uid ├── teleporting_laser.gd ├── teleporting_laser.gd.uid ├── teleporting_laser.tscn ├── transition.tscn ├── transitions.gd ├── transitions.gd.uid ├── tutorial.gd ├── tutorial.gd.uid ├── tutorial.tscn ├── world.gd ├── world.gd.uid ├── world.tscn └── world_new_temp.tscn /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/aur-upload.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/.github/workflows/aur-upload.yml -------------------------------------------------------------------------------- /.github/workflows/export_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/.github/workflows/export_release.yml -------------------------------------------------------------------------------- /.github/workflows/snap-upload.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/.github/workflows/snap-upload.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/README.md -------------------------------------------------------------------------------- /addons/Todo_Manager/ColourPicker.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/addons/Todo_Manager/ColourPicker.gd -------------------------------------------------------------------------------- /addons/Todo_Manager/ColourPicker.gd.uid: -------------------------------------------------------------------------------- 1 | uid://ddbldqrtv2yo4 2 | -------------------------------------------------------------------------------- /addons/Todo_Manager/Current.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/addons/Todo_Manager/Current.gd -------------------------------------------------------------------------------- /addons/Todo_Manager/Current.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dy7shajy0xe8f 2 | -------------------------------------------------------------------------------- /addons/Todo_Manager/Dock.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/addons/Todo_Manager/Dock.gd -------------------------------------------------------------------------------- /addons/Todo_Manager/Dock.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bpbxvq5y3xn2y 2 | -------------------------------------------------------------------------------- /addons/Todo_Manager/Pattern.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/addons/Todo_Manager/Pattern.gd -------------------------------------------------------------------------------- /addons/Todo_Manager/Pattern.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cq7ql6vqk1vtp 2 | -------------------------------------------------------------------------------- /addons/Todo_Manager/Project.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/addons/Todo_Manager/Project.gd -------------------------------------------------------------------------------- /addons/Todo_Manager/Project.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dfwkkblan5na 2 | -------------------------------------------------------------------------------- /addons/Todo_Manager/UI/ColourPicker.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/addons/Todo_Manager/UI/ColourPicker.tscn -------------------------------------------------------------------------------- /addons/Todo_Manager/UI/Dock.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/addons/Todo_Manager/UI/Dock.tscn -------------------------------------------------------------------------------- /addons/Todo_Manager/UI/Pattern.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/addons/Todo_Manager/UI/Pattern.tscn -------------------------------------------------------------------------------- /addons/Todo_Manager/plugin.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/addons/Todo_Manager/plugin.cfg -------------------------------------------------------------------------------- /addons/Todo_Manager/plugin.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/addons/Todo_Manager/plugin.gd -------------------------------------------------------------------------------- /addons/Todo_Manager/plugin.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dtrn85a5yfi23 2 | -------------------------------------------------------------------------------- /addons/Todo_Manager/todo.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/addons/Todo_Manager/todo.cfg -------------------------------------------------------------------------------- /addons/Todo_Manager/todoItem_class.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/addons/Todo_Manager/todoItem_class.gd -------------------------------------------------------------------------------- /addons/Todo_Manager/todoItem_class.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cblvpj0ty5owh 2 | -------------------------------------------------------------------------------- /addons/Todo_Manager/todo_class.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/addons/Todo_Manager/todo_class.gd -------------------------------------------------------------------------------- /addons/Todo_Manager/todo_class.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bj58kef4puxxu 2 | -------------------------------------------------------------------------------- /addons/default_env.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/addons/default_env.tres -------------------------------------------------------------------------------- /addons/joystick/textures/joystick_base_outline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/addons/joystick/textures/joystick_base_outline.png -------------------------------------------------------------------------------- /addons/joystick/textures/joystick_base_outline.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/addons/joystick/textures/joystick_base_outline.png.import -------------------------------------------------------------------------------- /addons/joystick/textures/joystick_tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/addons/joystick/textures/joystick_tip.png -------------------------------------------------------------------------------- /addons/joystick/textures/joystick_tip.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/addons/joystick/textures/joystick_tip.png.import -------------------------------------------------------------------------------- /addons/joystick/textures/joystick_tip_arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/addons/joystick/textures/joystick_tip_arrows.png -------------------------------------------------------------------------------- /addons/joystick/textures/joystick_tip_arrows.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/addons/joystick/textures/joystick_tip_arrows.png.import -------------------------------------------------------------------------------- /addons/joystick/virtual_joystick.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/addons/joystick/virtual_joystick.gd -------------------------------------------------------------------------------- /addons/joystick/virtual_joystick.gd.uid: -------------------------------------------------------------------------------- 1 | uid://dcbkkusleetq7 2 | -------------------------------------------------------------------------------- /addons/joystick/virtual_joystick.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/addons/joystick/virtual_joystick.tscn -------------------------------------------------------------------------------- /art-and-sound/OutThere.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/OutThere.ogg -------------------------------------------------------------------------------- /art-and-sound/OutThere.ogg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/OutThere.ogg.import -------------------------------------------------------------------------------- /art-and-sound/backarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/backarrow.png -------------------------------------------------------------------------------- /art-and-sound/backarrow.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/backarrow.png.import -------------------------------------------------------------------------------- /art-and-sound/backarrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/backarrow.svg -------------------------------------------------------------------------------- /art-and-sound/backarrow.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/backarrow.svg.import -------------------------------------------------------------------------------- /art-and-sound/bg_1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/bg_1_1.png -------------------------------------------------------------------------------- /art-and-sound/bg_1_1.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/bg_1_1.png.import -------------------------------------------------------------------------------- /art-and-sound/bullet_death.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/bullet_death.ogg -------------------------------------------------------------------------------- /art-and-sound/bullet_death.ogg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/bullet_death.ogg.import -------------------------------------------------------------------------------- /art-and-sound/hover.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/hover.ogg -------------------------------------------------------------------------------- /art-and-sound/hover.ogg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/hover.ogg.import -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/Backgrounds/darkPurple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/Backgrounds/darkPurple.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/Bonus/kenvector_future.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/Bonus/kenvector_future.ttf -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/Bonus/sfx_laser1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/Bonus/sfx_laser1.ogg -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/Bonus/sfx_laser1.ogg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/Bonus/sfx_laser1.ogg.import -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserBlue01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserBlue01.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserBlue02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserBlue02.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserBlue03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserBlue03.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserBlue04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserBlue04.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserBlue05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserBlue05.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserBlue06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserBlue06.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserBlue07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserBlue07.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserBlue08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserBlue08.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserBlue09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserBlue09.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserBlue10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserBlue10.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserBlue11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserBlue11.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserBlue12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserBlue12.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserBlue13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserBlue13.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserBlue14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserBlue14.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserBlue15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserBlue15.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserBlue16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserBlue16.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserGreen01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserGreen01.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserGreen02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserGreen02.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserGreen03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserGreen03.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserGreen04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserGreen04.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserGreen05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserGreen05.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserGreen06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserGreen06.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserGreen07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserGreen07.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserGreen08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserGreen08.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserGreen09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserGreen09.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserGreen10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserGreen10.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserGreen11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserGreen11.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserGreen12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserGreen12.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserGreen13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserGreen13.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserGreen14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserGreen14.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserGreen15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserGreen15.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserGreen16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserGreen16.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserRed01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserRed01.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserRed02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserRed02.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserRed03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserRed03.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserRed04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserRed04.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserRed05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserRed05.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserRed06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserRed06.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserRed07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserRed07.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserRed08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserRed08.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserRed09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserRed09.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserRed10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserRed10.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserRed11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserRed11.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserRed12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserRed12.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserRed13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserRed13.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserRed14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserRed14.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserRed15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserRed15.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserRed16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Lasers/laserRed16.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/beam0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/beam0.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/beam0.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/beam0.png.import -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/beam1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/beam1.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/beam1.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/beam1.png.import -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/beam2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/beam2.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/beam2.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/beam2.png.import -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/beam3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/beam3.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/beam3.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/beam3.png.import -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/beam4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/beam4.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/beam4.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/beam4.png.import -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/beam5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/beam5.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/beam5.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/beam5.png.import -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/beam6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/beam6.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/beam6.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/beam6.png.import -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/beamLong1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/beamLong1.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/beamLong2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/beamLong2.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitBlue_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitBlue_0.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitBlue_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitBlue_1.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitBlue_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitBlue_2.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitBlue_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitBlue_3.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitBlue_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitBlue_4.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitBlue_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitBlue_5.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitBlue_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitBlue_6.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitBlue_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitBlue_7.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitGreen_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitGreen_0.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitGreen_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitGreen_1.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitGreen_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitGreen_2.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitGreen_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitGreen_3.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitGreen_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitGreen_4.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitGreen_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitGreen_5.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitGreen_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitGreen_6.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitGreen_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitGreen_7.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitRed_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitRed_0.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitRed_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitRed_1.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitRed_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitRed_2.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitRed_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitRed_3.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitRed_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitRed_4.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitRed_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitRed_5.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitRed_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitRed_6.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitRed_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitRed_7.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitYellow_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitYellow_0.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitYellow_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitYellow_1.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitYellow_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitYellow_2.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitYellow_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitYellow_3.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitYellow_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitYellow_4.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitYellow_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitYellow_5.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitYellow_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitYellow_6.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitYellow_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/cockpitYellow_7.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/engine1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/engine1.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/engine1.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/engine1.png.import -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/engine2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/engine2.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/engine2.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/engine2.png.import -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/engine3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/engine3.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/engine3.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/engine3.png.import -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/engine4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/engine4.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/engine4.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/engine4.png.import -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/engine5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/engine5.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/engine5.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/engine5.png.import -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/gun00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/gun00.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/gun00.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/gun00.png.import -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/gun01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/gun01.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/gun01.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/gun01.png.import -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/gun02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/gun02.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/gun02.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/gun02.png.import -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/gun03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/gun03.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/gun03.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/gun03.png.import -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/gun04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/gun04.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/gun04.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/gun04.png.import -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/gun05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/gun05.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/gun05.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/gun05.png.import -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/gun06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/gun06.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/gun06.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/gun06.png.import -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/gun07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/gun07.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/gun07.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/gun07.png.import -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/gun08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/gun08.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/gun08.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/gun08.png.import -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/gun09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/gun09.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/gun09.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/gun09.png.import -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/gun10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/gun10.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/gun10.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/gun10.png.import -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/scratch1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/scratch1.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/scratch1.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/scratch1.png.import -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/scratch2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/scratch2.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/scratch2.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/scratch2.png.import -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/scratch3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/scratch3.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/scratch3.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/scratch3.png.import -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/turretBase_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/turretBase_big.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingBlue_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingBlue_0.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingBlue_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingBlue_1.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingBlue_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingBlue_2.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingBlue_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingBlue_3.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingBlue_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingBlue_4.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingBlue_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingBlue_5.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingBlue_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingBlue_6.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingBlue_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingBlue_7.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingGreen_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingGreen_0.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingGreen_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingGreen_1.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingGreen_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingGreen_2.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingGreen_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingGreen_3.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingGreen_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingGreen_4.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingGreen_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingGreen_5.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingGreen_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingGreen_6.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingGreen_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingGreen_7.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingRed_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingRed_0.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingRed_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingRed_1.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingRed_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingRed_2.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingRed_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingRed_3.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingRed_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingRed_4.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingRed_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingRed_5.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingRed_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingRed_6.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingRed_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingRed_7.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingYellow_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingYellow_0.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingYellow_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingYellow_1.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingYellow_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingYellow_2.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingYellow_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingYellow_3.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingYellow_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingYellow_4.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingYellow_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingYellow_5.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingYellow_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingYellow_6.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingYellow_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/Parts/wingYellow_7.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/UI/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/UI/cursor.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/UI/cursor.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/UI/cursor.png.import -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/playerShip1_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/playerShip1_blue.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/playerShip1_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/playerShip1_green.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/playerShip1_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/playerShip1_orange.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/playerShip1_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/playerShip1_red.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/playerShip2_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/playerShip2_blue.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/playerShip2_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/playerShip2_green.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/playerShip2_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/playerShip2_orange.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/playerShip2_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/playerShip2_red.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/playerShip3_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/playerShip3_blue.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/playerShip3_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/playerShip3_green.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/playerShip3_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/playerShip3_orange.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/playerShip3_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/playerShip3_red.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/ufoBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/ufoBlue.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/ufoBlue.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/ufoBlue.png.import -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/ufoGreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/ufoGreen.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/ufoGreen.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/ufoGreen.png.import -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/ufoRed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/ufoRed.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/ufoRed.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/ufoRed.png.import -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/ufoYellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/ufoYellow.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/PNG/ufoYellow.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/PNG/ufoYellow.png.import -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/wrench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/wrench.png -------------------------------------------------------------------------------- /art-and-sound/kenney_space-shooter-redux/wrench.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/kenney_space-shooter-redux/wrench.png.import -------------------------------------------------------------------------------- /art-and-sound/lasershot.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/lasershot.wav -------------------------------------------------------------------------------- /art-and-sound/lasershot.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/lasershot.wav.import -------------------------------------------------------------------------------- /art-and-sound/launches/flaunch.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/launches/flaunch.wav -------------------------------------------------------------------------------- /art-and-sound/launches/flaunch.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/launches/flaunch.wav.import -------------------------------------------------------------------------------- /art-and-sound/launches/iceball.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/launches/iceball.wav -------------------------------------------------------------------------------- /art-and-sound/launches/iceball.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/launches/iceball.wav.import -------------------------------------------------------------------------------- /art-and-sound/launches/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/launches/info.txt -------------------------------------------------------------------------------- /art-and-sound/launches/rlaunch.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/launches/rlaunch.wav -------------------------------------------------------------------------------- /art-and-sound/launches/rlaunch.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/launches/rlaunch.wav.import -------------------------------------------------------------------------------- /art-and-sound/launches/slimeball.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/launches/slimeball.wav -------------------------------------------------------------------------------- /art-and-sound/launches/slimeball.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/launches/slimeball.wav.import -------------------------------------------------------------------------------- /art-and-sound/menu_click_sound.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/menu_click_sound.ogg -------------------------------------------------------------------------------- /art-and-sound/menu_click_sound.ogg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/menu_click_sound.ogg.import -------------------------------------------------------------------------------- /art-and-sound/missile/smoke/spr_smoke_strip17trail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/missile/smoke/spr_smoke_strip17trail.png -------------------------------------------------------------------------------- /art-and-sound/missile/smoke/spr_smoke_strip17trail.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/missile/smoke/spr_smoke_strip17trail.png.import -------------------------------------------------------------------------------- /art-and-sound/missile/smoke/spr_smoke_strip24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/missile/smoke/spr_smoke_strip24.png -------------------------------------------------------------------------------- /art-and-sound/missile/smoke/spr_smoke_strip24.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/missile/smoke/spr_smoke_strip24.png.import -------------------------------------------------------------------------------- /art-and-sound/missile/spr_missile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/missile/spr_missile.png -------------------------------------------------------------------------------- /art-and-sound/missile/spr_missile.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/missile/spr_missile.png.import -------------------------------------------------------------------------------- /art-and-sound/missile_target_locked.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/missile_target_locked.ogg -------------------------------------------------------------------------------- /art-and-sound/missile_target_locked.ogg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/missile_target_locked.ogg.import -------------------------------------------------------------------------------- /art-and-sound/missile_target_locked.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/missile_target_locked.wav -------------------------------------------------------------------------------- /art-and-sound/missile_target_locked.wav.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/missile_target_locked.wav.import -------------------------------------------------------------------------------- /art-and-sound/my-assets/mini_asteroid_death.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/my-assets/mini_asteroid_death.ogg -------------------------------------------------------------------------------- /art-and-sound/my-assets/mini_asteroid_death.ogg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/my-assets/mini_asteroid_death.ogg.import -------------------------------------------------------------------------------- /art-and-sound/my-assets/resource-icons/level_progression.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/my-assets/resource-icons/level_progression.svg -------------------------------------------------------------------------------- /art-and-sound/my-assets/resource-icons/level_progression.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/my-assets/resource-icons/level_progression.svg.import -------------------------------------------------------------------------------- /art-and-sound/my-assets/resource-icons/stage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/my-assets/resource-icons/stage.svg -------------------------------------------------------------------------------- /art-and-sound/my-assets/resource-icons/stage.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/my-assets/resource-icons/stage.svg.import -------------------------------------------------------------------------------- /art-and-sound/my-assets/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/my-assets/star.svg -------------------------------------------------------------------------------- /art-and-sound/my-assets/star.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/my-assets/star.svg.import -------------------------------------------------------------------------------- /art-and-sound/through space.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/through space.ogg -------------------------------------------------------------------------------- /art-and-sound/through space.ogg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/through space.ogg.import -------------------------------------------------------------------------------- /art-and-sound/transition_sound.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/transition_sound.ogg -------------------------------------------------------------------------------- /art-and-sound/transition_sound.ogg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/transition_sound.ogg.import -------------------------------------------------------------------------------- /art-and-sound/transition_sound2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/transition_sound2.ogg -------------------------------------------------------------------------------- /art-and-sound/transition_sound2.ogg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/transition_sound2.ogg.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/Backgrounds/black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/Backgrounds/black.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/Backgrounds/black.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/Backgrounds/black.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/Backgrounds/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/Backgrounds/blue.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/Backgrounds/blue.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/Backgrounds/blue.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/Backgrounds/purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/Backgrounds/purple.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/Backgrounds/purple.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/Backgrounds/purple.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/Bonus/sfx_laser2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/Bonus/sfx_laser2.ogg -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/Bonus/sfx_laser2.ogg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/Bonus/sfx_laser2.ogg.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/Bonus/sfx_lose.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/Bonus/sfx_lose.ogg -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/Bonus/sfx_lose.ogg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/Bonus/sfx_lose.ogg.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/Bonus/sfx_shieldDown.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/Bonus/sfx_shieldDown.ogg -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/Bonus/sfx_shieldDown.ogg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/Bonus/sfx_shieldDown.ogg.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/Bonus/sfx_shieldUp.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/Bonus/sfx_shieldUp.ogg -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/Bonus/sfx_shieldUp.ogg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/Bonus/sfx_shieldUp.ogg.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/Bonus/sfx_twoTone.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/Bonus/sfx_twoTone.ogg -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/Bonus/sfx_twoTone.ogg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/Bonus/sfx_twoTone.ogg.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/Bonus/sfx_zap.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/Bonus/sfx_zap.ogg -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/Bonus/sfx_zap.ogg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/Bonus/sfx_zap.ogg.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Damage/playerShip1_damage1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Damage/playerShip1_damage1.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Damage/playerShip1_damage2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Damage/playerShip1_damage2.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Damage/playerShip1_damage3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Damage/playerShip1_damage3.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Damage/playerShip2_damage1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Damage/playerShip2_damage1.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Damage/playerShip2_damage2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Damage/playerShip2_damage2.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Damage/playerShip2_damage3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Damage/playerShip2_damage3.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Damage/playerShip3_damage1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Damage/playerShip3_damage1.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Damage/playerShip3_damage2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Damage/playerShip3_damage2.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Damage/playerShip3_damage3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Damage/playerShip3_damage3.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Effects/fire00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Effects/fire00.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Effects/fire00.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Effects/fire00.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Effects/fire01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Effects/fire01.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Effects/fire01.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Effects/fire01.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Effects/fire02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Effects/fire02.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Effects/fire02.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Effects/fire02.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Effects/fire03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Effects/fire03.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Effects/fire03.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Effects/fire03.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Effects/fire04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Effects/fire04.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Effects/fire04.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Effects/fire04.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Effects/fire05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Effects/fire05.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Effects/fire05.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Effects/fire05.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Effects/fire06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Effects/fire06.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Effects/fire06.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Effects/fire06.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Effects/fire07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Effects/fire07.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Effects/fire07.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Effects/fire07.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Effects/fire08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Effects/fire08.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Effects/fire08.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Effects/fire08.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Effects/fire09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Effects/fire09.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Effects/fire09.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Effects/fire09.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Effects/fire10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Effects/fire10.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Effects/fire10.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Effects/fire10.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Effects/fire11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Effects/fire11.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Effects/fire11.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Effects/fire11.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Effects/fire12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Effects/fire12.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Effects/fire12.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Effects/fire12.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Effects/fire13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Effects/fire13.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Effects/fire13.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Effects/fire13.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Effects/fire14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Effects/fire14.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Effects/fire14.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Effects/fire14.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Effects/fire15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Effects/fire15.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Effects/fire15.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Effects/fire15.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Effects/fire16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Effects/fire16.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Effects/fire16.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Effects/fire16.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Effects/fire17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Effects/fire17.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Effects/fire17.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Effects/fire17.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Effects/fire18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Effects/fire18.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Effects/fire18.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Effects/fire18.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Effects/fire19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Effects/fire19.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Effects/fire19.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Effects/fire19.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Effects/shield1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Effects/shield1.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Effects/shield1.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Effects/shield1.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Effects/shield2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Effects/shield2.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Effects/shield2.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Effects/shield2.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Effects/shield3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Effects/shield3.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Effects/shield3.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Effects/shield3.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Effects/speed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Effects/speed.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Effects/speed.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Effects/speed.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Effects/star1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Effects/star1.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Effects/star1.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Effects/star1.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Effects/star2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Effects/star2.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Effects/star2.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Effects/star2.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Effects/star3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Effects/star3.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Effects/star3.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Effects/star3.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Enemies/enemyBlack1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Enemies/enemyBlack1.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Enemies/enemyBlack1.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Enemies/enemyBlack1.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Enemies/enemyBlack2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Enemies/enemyBlack2.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Enemies/enemyBlack2.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Enemies/enemyBlack2.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Enemies/enemyBlack3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Enemies/enemyBlack3.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Enemies/enemyBlack3.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Enemies/enemyBlack3.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Enemies/enemyBlack4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Enemies/enemyBlack4.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Enemies/enemyBlack4.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Enemies/enemyBlack4.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Enemies/enemyBlack5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Enemies/enemyBlack5.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Enemies/enemyBlack5.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Enemies/enemyBlack5.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Enemies/enemyBlue1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Enemies/enemyBlue1.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Enemies/enemyBlue1.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Enemies/enemyBlue1.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Enemies/enemyBlue2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Enemies/enemyBlue2.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Enemies/enemyBlue2.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Enemies/enemyBlue2.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Enemies/enemyBlue3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Enemies/enemyBlue3.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Enemies/enemyBlue3.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Enemies/enemyBlue3.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Enemies/enemyBlue4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Enemies/enemyBlue4.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Enemies/enemyBlue4.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Enemies/enemyBlue4.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Enemies/enemyBlue5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Enemies/enemyBlue5.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Enemies/enemyBlue5.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Enemies/enemyBlue5.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Enemies/enemyGreen1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Enemies/enemyGreen1.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Enemies/enemyGreen1.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Enemies/enemyGreen1.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Enemies/enemyGreen2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Enemies/enemyGreen2.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Enemies/enemyGreen2.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Enemies/enemyGreen2.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Enemies/enemyGreen3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Enemies/enemyGreen3.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Enemies/enemyGreen3.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Enemies/enemyGreen3.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Enemies/enemyGreen4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Enemies/enemyGreen4.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Enemies/enemyGreen4.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Enemies/enemyGreen4.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Enemies/enemyGreen5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Enemies/enemyGreen5.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Enemies/enemyGreen5.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Enemies/enemyGreen5.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Enemies/enemyRed1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Enemies/enemyRed1.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Enemies/enemyRed1.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Enemies/enemyRed1.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Enemies/enemyRed2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Enemies/enemyRed2.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Enemies/enemyRed2.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Enemies/enemyRed2.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Enemies/enemyRed3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Enemies/enemyRed3.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Enemies/enemyRed3.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Enemies/enemyRed3.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Enemies/enemyRed4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Enemies/enemyRed4.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Enemies/enemyRed4.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Enemies/enemyRed4.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Enemies/enemyRed5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Enemies/enemyRed5.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Enemies/enemyRed5.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Enemies/enemyRed5.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Power-ups/bold_silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Power-ups/bold_silver.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Power-ups/bold_silver.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Power-ups/bold_silver.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Power-ups/bolt_bronze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Power-ups/bolt_bronze.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Power-ups/bolt_bronze.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Power-ups/bolt_bronze.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Power-ups/bolt_gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Power-ups/bolt_gold.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Power-ups/bolt_gold.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Power-ups/bolt_gold.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Power-ups/pill_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Power-ups/pill_blue.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Power-ups/pill_blue.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Power-ups/pill_blue.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Power-ups/pill_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Power-ups/pill_green.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Power-ups/pill_green.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Power-ups/pill_green.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Power-ups/pill_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Power-ups/pill_red.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Power-ups/pill_red.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Power-ups/pill_red.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Power-ups/pill_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Power-ups/pill_yellow.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Power-ups/pill_yellow.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Power-ups/pill_yellow.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Power-ups/powerupBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Power-ups/powerupBlue.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Power-ups/powerupBlue.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Power-ups/powerupBlue.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Power-ups/powerupBlue_bolt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Power-ups/powerupBlue_bolt.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Power-ups/powerupBlue_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Power-ups/powerupBlue_shield.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Power-ups/powerupBlue_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Power-ups/powerupBlue_star.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Power-ups/powerupGreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Power-ups/powerupGreen.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Power-ups/powerupGreen.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Power-ups/powerupGreen.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Power-ups/powerupGreen_bolt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Power-ups/powerupGreen_bolt.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Power-ups/powerupGreen_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Power-ups/powerupGreen_shield.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Power-ups/powerupGreen_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Power-ups/powerupGreen_star.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Power-ups/powerupRed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Power-ups/powerupRed.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Power-ups/powerupRed.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Power-ups/powerupRed.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Power-ups/powerupRed_bolt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Power-ups/powerupRed_bolt.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Power-ups/powerupRed_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Power-ups/powerupRed_shield.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Power-ups/powerupRed_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Power-ups/powerupRed_star.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Power-ups/powerupYellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Power-ups/powerupYellow.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Power-ups/powerupYellow.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Power-ups/powerupYellow.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Power-ups/powerupYellow_bolt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Power-ups/powerupYellow_bolt.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Power-ups/powerupYellow_shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Power-ups/powerupYellow_shield.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Power-ups/powerupYellow_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Power-ups/powerupYellow_star.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Power-ups/shield_bronze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Power-ups/shield_bronze.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Power-ups/shield_bronze.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Power-ups/shield_bronze.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Power-ups/shield_gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Power-ups/shield_gold.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Power-ups/shield_gold.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Power-ups/shield_gold.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Power-ups/shield_silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Power-ups/shield_silver.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Power-ups/shield_silver.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Power-ups/shield_silver.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Power-ups/star_bronze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Power-ups/star_bronze.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Power-ups/star_bronze.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Power-ups/star_bronze.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Power-ups/star_gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Power-ups/star_gold.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Power-ups/star_gold.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Power-ups/star_gold.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Power-ups/star_silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Power-ups/star_silver.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Power-ups/star_silver.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Power-ups/star_silver.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Power-ups/things_bronze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Power-ups/things_bronze.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Power-ups/things_gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Power-ups/things_gold.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/Power-ups/things_silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/Power-ups/things_silver.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/UI/buttonBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/UI/buttonBlue.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/UI/buttonBlue.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/UI/buttonBlue.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/UI/buttonGreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/UI/buttonGreen.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/UI/buttonGreen.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/UI/buttonGreen.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/UI/buttonRed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/UI/buttonRed.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/UI/buttonRed.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/UI/buttonRed.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/UI/buttonYellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/UI/buttonYellow.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/UI/buttonYellow.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/UI/buttonYellow.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/UI/numeral0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/UI/numeral0.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/UI/numeral0.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/UI/numeral0.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/UI/numeral1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/UI/numeral1.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/UI/numeral1.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/UI/numeral1.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/UI/numeral2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/UI/numeral2.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/UI/numeral2.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/UI/numeral2.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/UI/numeral3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/UI/numeral3.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/UI/numeral3.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/UI/numeral3.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/UI/numeral4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/UI/numeral4.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/UI/numeral4.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/UI/numeral4.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/UI/numeral5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/UI/numeral5.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/UI/numeral5.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/UI/numeral5.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/UI/numeral6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/UI/numeral6.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/UI/numeral6.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/UI/numeral6.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/UI/numeral7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/UI/numeral7.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/UI/numeral7.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/UI/numeral7.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/UI/numeral8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/UI/numeral8.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/UI/numeral8.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/UI/numeral8.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/UI/numeral9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/UI/numeral9.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/UI/numeral9.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/UI/numeral9.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/UI/numeralX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/UI/numeralX.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/UI/numeralX.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/UI/numeralX.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/UI/playerLife1_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/UI/playerLife1_blue.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/UI/playerLife1_blue.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/UI/playerLife1_blue.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/UI/playerLife1_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/UI/playerLife1_green.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/UI/playerLife1_green.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/UI/playerLife1_green.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/UI/playerLife1_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/UI/playerLife1_orange.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/UI/playerLife1_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/UI/playerLife1_red.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/UI/playerLife1_red.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/UI/playerLife1_red.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/UI/playerLife2_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/UI/playerLife2_blue.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/UI/playerLife2_blue.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/UI/playerLife2_blue.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/UI/playerLife2_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/UI/playerLife2_green.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/UI/playerLife2_green.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/UI/playerLife2_green.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/UI/playerLife2_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/UI/playerLife2_orange.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/UI/playerLife2_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/UI/playerLife2_red.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/UI/playerLife2_red.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/UI/playerLife2_red.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/UI/playerLife3_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/UI/playerLife3_blue.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/UI/playerLife3_blue.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/UI/playerLife3_blue.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/UI/playerLife3_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/UI/playerLife3_green.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/UI/playerLife3_green.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/UI/playerLife3_green.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/UI/playerLife3_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/UI/playerLife3_orange.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/UI/playerLife3_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/UI/playerLife3_red.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/PNG/UI/playerLife3_red.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/PNG/UI/playerLife3_red.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/Spritesheet/sheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/Spritesheet/sheet.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/Spritesheet/sheet.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/Spritesheet/sheet.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/Spritesheet/sheet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/Spritesheet/sheet.xml -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/Vector/sheet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/Vector/sheet.svg -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/Vector/sheet.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/Vector/sheet.svg.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/Vector/sheet.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/Vector/sheet.swf -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/preview.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/preview.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/preview.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/sample.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/kenney/sample.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/kenney/sample.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/missile/missile_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/missile/missile_0.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/missile/missile_0.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/missile/missile_0.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/missile/missile_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/missile/missile_1.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/missile/missile_1.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/missile/missile_1.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/missile/missile_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/missile/missile_2.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/missile/missile_2.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/missile/missile_2.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/missile/missile_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/missile/missile_3.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/missile/missile_3.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/missile/missile_3.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/missile/missile_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/missile/missile_4.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/missile/missile_4.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/missile/missile_4.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/missile/missile_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/missile/missile_5.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/missile/missile_5.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/missile/missile_5.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/missile/missile_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/missile/missile_6.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/missile/missile_6.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/missile/missile_6.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/missile/missile_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/missile/missile_7.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/missile/missile_7.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/missile/missile_7.png.import -------------------------------------------------------------------------------- /art-and-sound/unused_art/missile/spr_missile_half.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/missile/spr_missile_half.png -------------------------------------------------------------------------------- /art-and-sound/unused_art/missile/spr_missile_half.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/art-and-sound/unused_art/missile/spr_missile_half.png.import -------------------------------------------------------------------------------- /credits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/credits.md -------------------------------------------------------------------------------- /default_bus_layout.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/default_bus_layout.tres -------------------------------------------------------------------------------- /export_presets.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/export_presets.cfg -------------------------------------------------------------------------------- /fastlane/metadata/android/de/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/fastlane/metadata/android/de/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/de/short_description.txt: -------------------------------------------------------------------------------- 1 | Endlose Überlebenskugelhölle (Highscore-basiert). -------------------------------------------------------------------------------- /fastlane/metadata/android/de/title.txt: -------------------------------------------------------------------------------- 1 | Die Rache der Asteroiden -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/100002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/fastlane/metadata/android/en-US/changelogs/100002.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/100012.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/fastlane/metadata/android/en-US/changelogs/100012.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/100022.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/fastlane/metadata/android/en-US/changelogs/100022.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/100032.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/fastlane/metadata/android/en-US/changelogs/100032.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/100052.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/fastlane/metadata/android/en-US/changelogs/100052.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/100056.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/fastlane/metadata/android/en-US/changelogs/100056.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/100062.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/fastlane/metadata/android/en-US/changelogs/100062.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/100072.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/fastlane/metadata/android/en-US/changelogs/100072.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/100082.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/fastlane/metadata/android/en-US/changelogs/100082.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/100090.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/fastlane/metadata/android/en-US/changelogs/100090.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/100092.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/fastlane/metadata/android/en-US/changelogs/100092.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/100094.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/fastlane/metadata/android/en-US/changelogs/100094.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/100102.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/fastlane/metadata/android/en-US/changelogs/100102.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/100104.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/fastlane/metadata/android/en-US/changelogs/100104.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/100106.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/fastlane/metadata/android/en-US/changelogs/100106.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/100108.txt: -------------------------------------------------------------------------------- 1 | v0.11.3 Changes 2 | 3 | - Add arrows for alt controls in the bottom 4 | 5 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/100111.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/fastlane/metadata/android/en-US/changelogs/100111.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/100120.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/fastlane/metadata/android/en-US/changelogs/100120.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/100130.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/fastlane/metadata/android/en-US/changelogs/100130.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/100140.txt: -------------------------------------------------------------------------------- 1 | v0.12.3 Changes 2 | 3 | - New release for fdroid due to build issues 4 | 5 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/100150.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/fastlane/metadata/android/en-US/changelogs/100150.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/100160.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/fastlane/metadata/android/en-US/changelogs/100160.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/100170.txt: -------------------------------------------------------------------------------- 1 | v0.13.3 Changes 2 | 3 | - Try fixing releases not being uploaded 4 | 5 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/100180.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/fastlane/metadata/android/en-US/changelogs/100180.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/100190.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/fastlane/metadata/android/en-US/changelogs/100190.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/100200.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/fastlane/metadata/android/en-US/changelogs/100200.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/100210.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/fastlane/metadata/android/en-US/changelogs/100210.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/100220.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/fastlane/metadata/android/en-US/changelogs/100220.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/100230.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/fastlane/metadata/android/en-US/changelogs/100230.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/100240.txt: -------------------------------------------------------------------------------- 1 | v0.15.4 Changes 2 | 3 | - Fix flathub details 4 | 5 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/default.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/fastlane/metadata/android/en-US/changelogs/default.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/fastlane/metadata/android/en-US/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/fastlane/metadata/android/en-US/images/icon.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/fastlane/metadata/android/en-US/images/icon.png.import -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/1.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/2.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/3.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/4.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/5.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/6.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- 1 | Endless survival bulletHell (highscore based). 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/title.txt: -------------------------------------------------------------------------------- 1 | Asteroid's Revenge 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/es/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/fastlane/metadata/android/es/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/es/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/fastlane/metadata/android/es/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/es/title.txt: -------------------------------------------------------------------------------- 1 | La venganza de los asteroides -------------------------------------------------------------------------------- /fastlane/metadata/android/fr/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/fastlane/metadata/android/fr/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/fr/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/fastlane/metadata/android/fr/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/fr/title.txt: -------------------------------------------------------------------------------- 1 | La vengeance des astéroïdes -------------------------------------------------------------------------------- /fastlane/metadata/android/it/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/fastlane/metadata/android/it/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/it/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/fastlane/metadata/android/it/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/it/title.txt: -------------------------------------------------------------------------------- 1 | La vendetta degli asteroidi 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ja/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/fastlane/metadata/android/ja/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ja/short_description.txt: -------------------------------------------------------------------------------- 1 | 終わりのないサバイバル弾幕 (ハイスコアベース)。 -------------------------------------------------------------------------------- /fastlane/metadata/android/ja/title.txt: -------------------------------------------------------------------------------- 1 | 小惑星のリベンジ -------------------------------------------------------------------------------- /fastlane/metadata/android/ko/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/fastlane/metadata/android/ko/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ko/short_description.txt: -------------------------------------------------------------------------------- 1 | 끝없는 생존 탄환지옥(고득점 기반). -------------------------------------------------------------------------------- /fastlane/metadata/android/ko/title.txt: -------------------------------------------------------------------------------- 1 | 소행성 복수 -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/fastlane/metadata/android/pt-BR/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/fastlane/metadata/android/pt-BR/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/title.txt: -------------------------------------------------------------------------------- 1 | Vingança dos asteroides -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-PT/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/fastlane/metadata/android/pt-PT/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-PT/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/fastlane/metadata/android/pt-PT/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-PT/title.txt: -------------------------------------------------------------------------------- 1 | Vingança dos asteroides -------------------------------------------------------------------------------- /fastlane/metadata/android/ru/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/fastlane/metadata/android/ru/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ru/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/fastlane/metadata/android/ru/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ru/title.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/fastlane/metadata/android/ru/title.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/fastlane/metadata/android/zh-CN/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/short_description.txt: -------------------------------------------------------------------------------- 1 | 无尽的生存子弹地狱(基于高分)。 -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/title.txt: -------------------------------------------------------------------------------- 1 | 小行星的报复 -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-TW/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-TW/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/fastlane/metadata/android/zh-TW/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-TW/short_description.txt: -------------------------------------------------------------------------------- 1 | 無窮無盡的生存子彈地獄(基於高分)。 -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-TW/title.txt: -------------------------------------------------------------------------------- 1 | 小行星的報復 -------------------------------------------------------------------------------- /icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/icon.svg -------------------------------------------------------------------------------- /icons/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/icons/icon.icns -------------------------------------------------------------------------------- /icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/icons/icon.ico -------------------------------------------------------------------------------- /icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/icons/icon.png -------------------------------------------------------------------------------- /icons/icon.png.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/icons/icon.png.import -------------------------------------------------------------------------------- /icons/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/icons/icon.svg -------------------------------------------------------------------------------- /icons/icon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/icons/icon.svg.import -------------------------------------------------------------------------------- /locale/translations.DESCRIPTION.translation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/locale/translations.DESCRIPTION.translation -------------------------------------------------------------------------------- /locale/translations.ar.translation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/locale/translations.ar.translation -------------------------------------------------------------------------------- /locale/translations.bg.translation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/locale/translations.bg.translation -------------------------------------------------------------------------------- /locale/translations.br.translation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/locale/translations.br.translation -------------------------------------------------------------------------------- /locale/translations.bs.translation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/locale/translations.bs.translation -------------------------------------------------------------------------------- /locale/translations.cs.translation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/locale/translations.cs.translation -------------------------------------------------------------------------------- /locale/translations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/locale/translations.csv -------------------------------------------------------------------------------- /locale/translations.csv.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/locale/translations.csv.import -------------------------------------------------------------------------------- /locale/translations.da.translation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/locale/translations.da.translation -------------------------------------------------------------------------------- /locale/translations.de.translation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/locale/translations.de.translation -------------------------------------------------------------------------------- /locale/translations.el.translation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/locale/translations.el.translation -------------------------------------------------------------------------------- /locale/translations.en.translation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/locale/translations.en.translation -------------------------------------------------------------------------------- /locale/translations.es.translation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/locale/translations.es.translation -------------------------------------------------------------------------------- /locale/translations.fi.translation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/locale/translations.fi.translation -------------------------------------------------------------------------------- /locale/translations.fr.translation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/locale/translations.fr.translation -------------------------------------------------------------------------------- /locale/translations.he.translation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/locale/translations.he.translation -------------------------------------------------------------------------------- /locale/translations.hu.translation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/locale/translations.hu.translation -------------------------------------------------------------------------------- /locale/translations.it.translation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/locale/translations.it.translation -------------------------------------------------------------------------------- /locale/translations.ja.translation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/locale/translations.ja.translation -------------------------------------------------------------------------------- /locale/translations.ko.translation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/locale/translations.ko.translation -------------------------------------------------------------------------------- /locale/translations.lzh.translation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/locale/translations.lzh.translation -------------------------------------------------------------------------------- /locale/translations.nb.translation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/locale/translations.nb.translation -------------------------------------------------------------------------------- /locale/translations.nl.translation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/locale/translations.nl.translation -------------------------------------------------------------------------------- /locale/translations.pl.translation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/locale/translations.pl.translation -------------------------------------------------------------------------------- /locale/translations.pt.translation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/locale/translations.pt.translation -------------------------------------------------------------------------------- /locale/translations.ro.translation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/locale/translations.ro.translation -------------------------------------------------------------------------------- /locale/translations.ru.translation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/locale/translations.ru.translation -------------------------------------------------------------------------------- /locale/translations.sv.translation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/locale/translations.sv.translation -------------------------------------------------------------------------------- /locale/translations.th.translation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/locale/translations.th.translation -------------------------------------------------------------------------------- /locale/translations.tr.translation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/locale/translations.tr.translation -------------------------------------------------------------------------------- /locale/translations.zh.translation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/locale/translations.zh.translation -------------------------------------------------------------------------------- /others/flathub/io.github.mlm_games.asteroids_revenge.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/others/flathub/io.github.mlm_games.asteroids_revenge.desktop -------------------------------------------------------------------------------- /others/flathub/io.github.mlm_games.asteroids_revenge.metainfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/others/flathub/io.github.mlm_games.asteroids_revenge.metainfo.xml -------------------------------------------------------------------------------- /others/snap/snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/others/snap/snapcraft.yaml -------------------------------------------------------------------------------- /project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/project.godot -------------------------------------------------------------------------------- /resources/button-theme.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/resources/button-theme.tres -------------------------------------------------------------------------------- /resources/darken_slightly.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/resources/darken_slightly.tres -------------------------------------------------------------------------------- /resources/hard_mode.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/resources/hard_mode.tres -------------------------------------------------------------------------------- /resources/level_progression.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/resources/level_progression.gd -------------------------------------------------------------------------------- /resources/level_progression.gd.uid: -------------------------------------------------------------------------------- 1 | uid://4tdp8052qjnq 2 | -------------------------------------------------------------------------------- /resources/normal_mode.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/resources/normal_mode.tres -------------------------------------------------------------------------------- /resources/obstacle1.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/resources/obstacle1.tres -------------------------------------------------------------------------------- /resources/obstacle2.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/resources/obstacle2.tres -------------------------------------------------------------------------------- /resources/obstacle3.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/resources/obstacle3.tres -------------------------------------------------------------------------------- /resources/obstacle4.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/resources/obstacle4.tres -------------------------------------------------------------------------------- /resources/obstacle5.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/resources/obstacle5.tres -------------------------------------------------------------------------------- /resources/obstacle6.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/resources/obstacle6.tres -------------------------------------------------------------------------------- /resources/obstacle7.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/resources/obstacle7.tres -------------------------------------------------------------------------------- /resources/obstacle8.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/resources/obstacle8.tres -------------------------------------------------------------------------------- /resources/obstacle9.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/resources/obstacle9.tres -------------------------------------------------------------------------------- /resources/pixelated.gdshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/resources/pixelated.gdshader -------------------------------------------------------------------------------- /resources/pixelated.gdshader.uid: -------------------------------------------------------------------------------- 1 | uid://dhympip8vcjb1 2 | -------------------------------------------------------------------------------- /resources/small_textstyle.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/resources/small_textstyle.tres -------------------------------------------------------------------------------- /resources/stage.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/resources/stage.gd -------------------------------------------------------------------------------- /resources/stage.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cdht0vr24ls0 2 | -------------------------------------------------------------------------------- /resources/textstyle.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/resources/textstyle.tres -------------------------------------------------------------------------------- /scenes/Main.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/scenes/Main.gd -------------------------------------------------------------------------------- /scenes/Main.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cu6nvp4mmo11k 2 | -------------------------------------------------------------------------------- /scenes/asteroid_bullet.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/scenes/asteroid_bullet.gd -------------------------------------------------------------------------------- /scenes/asteroid_bullet.gd.uid: -------------------------------------------------------------------------------- 1 | uid://d2jvst3mxg1br 2 | -------------------------------------------------------------------------------- /scenes/asteroid_bullet.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/scenes/asteroid_bullet.tscn -------------------------------------------------------------------------------- /scenes/base_obstacle.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/scenes/base_obstacle.gd -------------------------------------------------------------------------------- /scenes/base_obstacle.gd.uid: -------------------------------------------------------------------------------- 1 | uid://by1becefa4y8w 2 | -------------------------------------------------------------------------------- /scenes/base_obstacle.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/scenes/base_obstacle.tscn -------------------------------------------------------------------------------- /scenes/base_scene.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/scenes/base_scene.tscn -------------------------------------------------------------------------------- /scenes/boss_spaceship.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/scenes/boss_spaceship.gd -------------------------------------------------------------------------------- /scenes/boss_spaceship.gd.uid: -------------------------------------------------------------------------------- 1 | uid://xxwklu2ef6p2 2 | -------------------------------------------------------------------------------- /scenes/boss_spaceship.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/scenes/boss_spaceship.tscn -------------------------------------------------------------------------------- /scenes/bouncing_laser.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/scenes/bouncing_laser.gd -------------------------------------------------------------------------------- /scenes/bouncing_laser.gd.uid: -------------------------------------------------------------------------------- 1 | uid://d2c6xfw6mw1lk 2 | -------------------------------------------------------------------------------- /scenes/bouncing_laser.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/scenes/bouncing_laser.tscn -------------------------------------------------------------------------------- /scenes/cloaking_laser.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/scenes/cloaking_laser.gd -------------------------------------------------------------------------------- /scenes/cloaking_laser.gd.uid: -------------------------------------------------------------------------------- 1 | uid://3heq64xp7wl1 2 | -------------------------------------------------------------------------------- /scenes/cloaking_laser.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/scenes/cloaking_laser.tscn -------------------------------------------------------------------------------- /scenes/curve_laser.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/scenes/curve_laser.gd -------------------------------------------------------------------------------- /scenes/curve_laser.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cn5jvgklmc0sq 2 | -------------------------------------------------------------------------------- /scenes/curve_laser.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/scenes/curve_laser.tscn -------------------------------------------------------------------------------- /scenes/game_state.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/scenes/game_state.gd -------------------------------------------------------------------------------- /scenes/game_state.gd.uid: -------------------------------------------------------------------------------- 1 | uid://wjoswru52uta 2 | -------------------------------------------------------------------------------- /scenes/hit_effects.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/scenes/hit_effects.gd -------------------------------------------------------------------------------- /scenes/hit_effects.gd.uid: -------------------------------------------------------------------------------- 1 | uid://d1bm20pms4ud8 2 | -------------------------------------------------------------------------------- /scenes/hud.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/scenes/hud.gd -------------------------------------------------------------------------------- /scenes/hud.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cshofsmqqv45m 2 | -------------------------------------------------------------------------------- /scenes/hud.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/scenes/hud.tscn -------------------------------------------------------------------------------- /scenes/laser.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/scenes/laser.gd -------------------------------------------------------------------------------- /scenes/laser.gd.uid: -------------------------------------------------------------------------------- 1 | uid://np8sici1acca 2 | -------------------------------------------------------------------------------- /scenes/laser.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/scenes/laser.tscn -------------------------------------------------------------------------------- /scenes/main-theme.tres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/scenes/main-theme.tres -------------------------------------------------------------------------------- /scenes/main.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/scenes/main.tscn -------------------------------------------------------------------------------- /scenes/main_old.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/scenes/main_old.tscn -------------------------------------------------------------------------------- /scenes/mini_asteroid.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/scenes/mini_asteroid.gd -------------------------------------------------------------------------------- /scenes/mini_asteroid.gd.uid: -------------------------------------------------------------------------------- 1 | uid://b5dng71okpap6 2 | -------------------------------------------------------------------------------- /scenes/mini_asteroid.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/scenes/mini_asteroid.tscn -------------------------------------------------------------------------------- /scenes/missile.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/scenes/missile.gd -------------------------------------------------------------------------------- /scenes/missile.gd.uid: -------------------------------------------------------------------------------- 1 | uid://x8elwfea6jl7 2 | -------------------------------------------------------------------------------- /scenes/missile.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/scenes/missile.tscn -------------------------------------------------------------------------------- /scenes/nebula.gdshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/scenes/nebula.gdshader -------------------------------------------------------------------------------- /scenes/nebula.gdshader.uid: -------------------------------------------------------------------------------- 1 | uid://yv41jfhhduej 2 | -------------------------------------------------------------------------------- /scenes/obstacles.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/scenes/obstacles.gd -------------------------------------------------------------------------------- /scenes/obstacles.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c6tji6njl0mr0 2 | -------------------------------------------------------------------------------- /scenes/player_rock.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/scenes/player_rock.gd -------------------------------------------------------------------------------- /scenes/player_rock.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cv6lgtatphwgd 2 | -------------------------------------------------------------------------------- /scenes/player_rock.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/scenes/player_rock.tscn -------------------------------------------------------------------------------- /scenes/scaling_laser.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/scenes/scaling_laser.gd -------------------------------------------------------------------------------- /scenes/scaling_laser.gd.uid: -------------------------------------------------------------------------------- 1 | uid://blrtgmpe8xvwj 2 | -------------------------------------------------------------------------------- /scenes/scaling_laser.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/scenes/scaling_laser.tscn -------------------------------------------------------------------------------- /scenes/settings.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/scenes/settings.gd -------------------------------------------------------------------------------- /scenes/settings.gd.uid: -------------------------------------------------------------------------------- 1 | uid://c62qyhl2ngsj3 2 | -------------------------------------------------------------------------------- /scenes/settings.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/scenes/settings.tscn -------------------------------------------------------------------------------- /scenes/spinner.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/scenes/spinner.gd -------------------------------------------------------------------------------- /scenes/spinner.gd.uid: -------------------------------------------------------------------------------- 1 | uid://be375yw8jxv5w 2 | -------------------------------------------------------------------------------- /scenes/spinner.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/scenes/spinner.tscn -------------------------------------------------------------------------------- /scenes/spring_laser.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/scenes/spring_laser.gd -------------------------------------------------------------------------------- /scenes/spring_laser.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cbp3ppwkb0yqk 2 | -------------------------------------------------------------------------------- /scenes/spring_laser.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/scenes/spring_laser.tscn -------------------------------------------------------------------------------- /scenes/starry-bg.gdshader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/scenes/starry-bg.gdshader -------------------------------------------------------------------------------- /scenes/starry-bg.gdshader.uid: -------------------------------------------------------------------------------- 1 | uid://clvsl8spqfmcu 2 | -------------------------------------------------------------------------------- /scenes/teleporting_laser.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/scenes/teleporting_laser.gd -------------------------------------------------------------------------------- /scenes/teleporting_laser.gd.uid: -------------------------------------------------------------------------------- 1 | uid://cn2sbgolxv3jv 2 | -------------------------------------------------------------------------------- /scenes/teleporting_laser.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/scenes/teleporting_laser.tscn -------------------------------------------------------------------------------- /scenes/transition.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/scenes/transition.tscn -------------------------------------------------------------------------------- /scenes/transitions.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/scenes/transitions.gd -------------------------------------------------------------------------------- /scenes/transitions.gd.uid: -------------------------------------------------------------------------------- 1 | uid://bj038nxttm1cg 2 | -------------------------------------------------------------------------------- /scenes/tutorial.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/scenes/tutorial.gd -------------------------------------------------------------------------------- /scenes/tutorial.gd.uid: -------------------------------------------------------------------------------- 1 | uid://mbpwnml8gb0p 2 | -------------------------------------------------------------------------------- /scenes/tutorial.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/scenes/tutorial.tscn -------------------------------------------------------------------------------- /scenes/world.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/scenes/world.gd -------------------------------------------------------------------------------- /scenes/world.gd.uid: -------------------------------------------------------------------------------- 1 | uid://d07nfekv3qrfm 2 | -------------------------------------------------------------------------------- /scenes/world.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/scenes/world.tscn -------------------------------------------------------------------------------- /scenes/world_new_temp.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mlm-games/asteroids-revenge/HEAD/scenes/world_new_temp.tscn --------------------------------------------------------------------------------