├── .gitattributes ├── Alpha Squirrel ├── assets │ ├── font │ │ ├── GrapeSoda.ttf │ │ ├── large.font │ │ └── main.font │ ├── ogg │ │ ├── hit.ogg │ │ ├── jump.ogg │ │ ├── jumping-beans.ogg │ │ ├── jumping-sprites.ogg │ │ ├── land.ogg │ │ ├── pickup.ogg │ │ └── squeak.ogg │ └── png │ │ ├── bg.png │ │ ├── fire.png │ │ ├── grey.png │ │ ├── logo.png │ │ ├── meter.png │ │ ├── pixel.png │ │ ├── splash.png │ │ ├── sq.png │ │ ├── tiles.png │ │ ├── treebg.png │ │ └── vig.png ├── game.project ├── game │ ├── core │ │ ├── camera.script │ │ ├── common.collection │ │ ├── game.camera │ │ ├── game.collection │ │ ├── game.tilesource │ │ ├── loader.script │ │ ├── pixel.tilesource │ │ └── rads.particlefx │ ├── effects │ │ ├── effect.go │ │ ├── effect.script │ │ ├── land.particlefx │ │ └── pickup.particlefx │ ├── gui │ │ ├── clear.gui │ │ ├── clear.gui_script │ │ ├── game.gui │ │ ├── game.gui_script │ │ ├── gameover.gui │ │ ├── gameover.gui_script │ │ ├── shutter.gui │ │ └── shutter.gui_script │ ├── levels │ │ ├── bg.go │ │ ├── bg.script │ │ ├── level.script │ │ ├── level1.collection │ │ ├── level1.tilemap │ │ ├── level2.collection │ │ ├── level2.tilemap │ │ ├── level3.collection │ │ └── level3.tilemap │ ├── object │ │ ├── fire.go │ │ ├── fire.tilesource │ │ ├── grey.go │ │ ├── grey.script │ │ └── grey.tilesource │ └── player │ │ ├── player.go │ │ ├── player.script │ │ └── squirrel.tilesource ├── input │ └── game.input_binding ├── main │ ├── data.lua │ ├── handler.script │ ├── main.atlas │ ├── main.collection │ └── ui.lua ├── menu │ ├── bg.gui │ ├── bg.gui_script │ ├── controls.gui │ ├── controls.gui_script │ ├── credits.gui │ ├── credits.gui_script │ ├── menu.collection │ ├── menu.gui │ ├── menu.gui_script │ └── temp.tilemap └── render │ ├── custom.render │ └── custom.render_script ├── Bomb Frog ├── assets │ ├── font │ │ ├── LycheeSoda.ttf │ │ ├── main.font │ │ └── small.font │ ├── ogg │ │ ├── death.ogg │ │ ├── exp.ogg │ │ ├── fuse.ogg │ │ ├── heart.ogg │ │ ├── hit.ogg │ │ ├── jump.ogg │ │ ├── mushroom.ogg │ │ ├── music_game.ogg │ │ ├── music_title.ogg │ │ ├── no.ogg │ │ ├── pickup.ogg │ │ └── treasure.ogg │ └── png │ │ ├── bg.png │ │ ├── bg2.png │ │ ├── explosion.png │ │ ├── icon.png │ │ ├── logo.png │ │ ├── particle.png │ │ ├── splash.png │ │ └── tiles.png ├── game.project ├── game │ ├── core │ │ ├── camera.script │ │ ├── common.collection │ │ ├── game.camera │ │ ├── game.collection │ │ ├── loader.script │ │ └── main.tilesource │ ├── enemy │ │ ├── ghost.go │ │ └── ghost.script │ ├── gui │ │ ├── clear.gui │ │ ├── clear.gui_script │ │ ├── complete.gui │ │ ├── complete.gui_script │ │ ├── game.gui │ │ ├── game.gui_script │ │ ├── gameover.gui │ │ ├── gameover.gui_script │ │ ├── getready.gui │ │ ├── getready.gui_script │ │ ├── shutter.gui │ │ └── shutter.gui_script │ ├── levels │ │ ├── level.script │ │ ├── level1.collection │ │ ├── level1.tilemap │ │ ├── level2.collection │ │ ├── level2.tilemap │ │ ├── level3.collection │ │ ├── level3.tilemap │ │ ├── level4.collection │ │ ├── level4.tilemap │ │ ├── level5.collection │ │ ├── level5.tilemap │ │ ├── level6.collection │ │ ├── level6.tilemap │ │ ├── level7.collection │ │ ├── level7.tilemap │ │ ├── level8.collection │ │ └── level8.tilemap │ ├── objects │ │ ├── bomb.go │ │ ├── bomb.particlefx │ │ ├── bomb.script │ │ ├── explosion.go │ │ ├── explosion.particlefx │ │ ├── explosion.script │ │ └── explosion.tilesource │ └── player │ │ ├── player.go │ │ └── player.script ├── input │ └── game.input_binding ├── main │ ├── data.lua │ ├── handler.script │ ├── main.atlas │ └── main.collection ├── menu │ ├── controls.gui │ ├── controls.gui_script │ ├── credits.gui │ ├── credits.gui_script │ ├── menu.collection │ ├── menu.gui │ └── menu.gui_script └── render │ ├── custom.render │ └── custom.render_script ├── Crystal Caverns 2 ├── assets │ ├── font │ │ ├── LycheeSoda.ttf │ │ ├── large.font │ │ └── main.font │ ├── ogg │ │ ├── arc.ogg │ │ ├── axe.ogg │ │ ├── boom.ogg │ │ ├── boss.ogg │ │ ├── catch.ogg │ │ ├── checkpoint.ogg │ │ ├── chirp.ogg │ │ ├── door.ogg │ │ ├── explode.ogg │ │ ├── heart.ogg │ │ ├── hit.ogg │ │ ├── jump.ogg │ │ ├── land.ogg │ │ ├── lift.ogg │ │ ├── music-clear.ogg │ │ ├── music-game.ogg │ │ ├── music-menu.ogg │ │ ├── pickup.ogg │ │ ├── secret.ogg │ │ ├── shot.ogg │ │ ├── spit.ogg │ │ ├── splash.ogg │ │ ├── spring.ogg │ │ ├── switch.ogg │ │ ├── teleport.ogg │ │ ├── throw.ogg │ │ ├── tick.ogg │ │ └── woodhit.ogg │ └── png │ │ ├── bg.png │ │ ├── boss1.png │ │ ├── explode.png │ │ ├── logo.png │ │ ├── pixels.png │ │ ├── splash.png │ │ ├── stencil.png │ │ ├── tiles.png │ │ ├── tiles32.png │ │ └── vignette.png ├── custom │ ├── custom.render │ └── custom.render_script ├── game.project ├── game │ ├── core │ │ ├── camera.script │ │ ├── common.collection │ │ ├── game.camera │ │ ├── game.collection │ │ ├── game.tilesource │ │ ├── game32.tilesource │ │ ├── loader.script │ │ └── pixel.tilesource │ ├── effects │ │ ├── effect.go │ │ ├── effect.script │ │ ├── explode.particlefx │ │ ├── explode.tilesource │ │ └── gem.particlefx │ ├── enemy │ │ ├── arc.go │ │ ├── arc.script │ │ ├── axe.go │ │ ├── axe.script │ │ ├── blob.go │ │ ├── blob.script │ │ ├── block.go │ │ ├── block.script │ │ ├── blockdropper.go │ │ ├── blockdropper.script │ │ ├── bosses │ │ │ ├── boss1.go │ │ │ ├── boss1.script │ │ │ ├── boss1.tilesource │ │ │ ├── boss2.go │ │ │ ├── boss2.script │ │ │ ├── boss3.go │ │ │ ├── boss3.script │ │ │ ├── fireball.particlefx │ │ │ ├── laser.go │ │ │ ├── laser.script │ │ │ ├── shot.go │ │ │ └── shot.script │ │ ├── bullet.go │ │ ├── bullet.script │ │ ├── disc.go │ │ ├── disc.script │ │ ├── discdust.particlefx │ │ ├── drip.go │ │ ├── drip.script │ │ ├── dripper.go │ │ ├── dripper.script │ │ ├── eyestalk.go │ │ ├── eyestalk.script │ │ ├── fly.go │ │ ├── fly.script │ │ ├── hammer.go │ │ ├── hammer.script │ │ ├── spider.go │ │ ├── spider.script │ │ ├── spike.go │ │ ├── spike.script │ │ ├── toxic.go │ │ ├── toxic.particlefx │ │ └── toxic.script │ ├── gui │ │ ├── clear.gui │ │ ├── clear.gui_script │ │ ├── game.gui │ │ ├── game.gui_script │ │ ├── shutter.gui │ │ └── shutter.gui_script │ ├── levels │ │ ├── bg.go │ │ ├── bg.script │ │ ├── level.script │ │ ├── level1.collection │ │ ├── level1.tilemap │ │ ├── level2.collection │ │ ├── level2.tilemap │ │ ├── level3.collection │ │ └── level3.tilemap │ ├── object │ │ ├── belt.go │ │ ├── belt.script │ │ ├── box.go │ │ ├── collapse.go │ │ ├── collapse.script │ │ ├── door.go │ │ ├── door.script │ │ ├── highlight.go │ │ ├── highlight.particlefx │ │ ├── highlight.script │ │ ├── lift.go │ │ ├── lift.script │ │ ├── platform.go │ │ ├── platform.script │ │ ├── portal.go │ │ ├── portal.script │ │ ├── respawn.go │ │ ├── respawn.script │ │ ├── roomlock.go │ │ ├── roomlock.script │ │ ├── secret.go │ │ ├── secret.script │ │ ├── torch.go │ │ └── torch.script │ └── player │ │ ├── boom.go │ │ ├── boom.script │ │ ├── bubbles.particlefx │ │ ├── dust.particlefx │ │ ├── player.go │ │ ├── player.script │ │ └── splash.particlefx ├── input │ └── game.input_binding ├── main │ ├── data.lua │ ├── handler.script │ ├── main.atlas │ └── main.collection └── menu │ ├── bg.gui │ ├── controls.gui │ ├── controls.gui_script │ ├── credits.gui │ ├── credits.gui_script │ ├── menu.collection │ ├── menu.gui │ ├── menu.gui_script │ └── sparkle.particlefx ├── Defrog ├── assets │ ├── font │ │ ├── PressStart2P-vaV7.ttf │ │ ├── main.font │ │ └── small.font │ ├── ogg │ │ ├── dead.ogg │ │ ├── gameover.ogg │ │ ├── home.ogg │ │ └── hop.ogg │ └── png │ │ ├── logo.png │ │ ├── pixel.png │ │ ├── sine.png │ │ ├── splash.png │ │ ├── tile-coll.png │ │ └── tiles.png ├── game.project ├── game │ ├── core │ │ ├── game.collection │ │ ├── game.tilesource │ │ ├── level.script │ │ ├── level.tilemap │ │ └── pixel.tilesource │ ├── effects │ │ ├── water16.particlefx │ │ └── water48.particlefx │ ├── gui │ │ ├── clear.gui │ │ ├── clear.gui_script │ │ ├── game.gui │ │ ├── game.gui_script │ │ ├── gameover.gui │ │ ├── gameover.gui_script │ │ ├── pause.gui │ │ ├── pause.gui_script │ │ ├── shutter.gui │ │ └── shutter.gui_script │ ├── object │ │ ├── car.go │ │ ├── croc.go │ │ ├── croc.script │ │ ├── crochead.go │ │ ├── crochead.script │ │ ├── fly.go │ │ ├── fly.script │ │ ├── home.go │ │ ├── home.script │ │ ├── log-l.go │ │ ├── log-m.go │ │ ├── log-s.go │ │ ├── lorry.go │ │ ├── move.script │ │ ├── otter.go │ │ ├── otter.script │ │ ├── snake.go │ │ ├── snake.script │ │ ├── turtle-2.go │ │ ├── turtle-3.go │ │ └── turtle.script │ └── player │ │ ├── player.go │ │ └── player.script ├── generated.appmanifest ├── main │ ├── custom.render │ ├── custom.render_script │ ├── data.lua │ ├── game.input_binding │ ├── handler.script │ ├── main.atlas │ ├── main.collection │ └── ui.lua └── menu │ ├── bg.gui │ ├── bg.gui_script │ ├── controls.gui │ ├── controls.gui_script │ ├── info.gui │ ├── info.gui_script │ ├── menu.collection │ ├── menu.gui │ └── menu.gui_script ├── Driller 2 ├── assets │ ├── font │ │ ├── Russo_One.ttf │ │ ├── fixed.font │ │ ├── large.font │ │ ├── main.font │ │ ├── small.font │ │ └── whitrabt.ttf │ ├── ogg │ │ ├── Bubble-Gum-Groovin_Looping.ogg │ │ ├── Pixel-City-Groovin_Looping.ogg │ │ ├── clear.ogg │ │ ├── damage.ogg │ │ ├── gameover.ogg │ │ ├── heart.ogg │ │ ├── no.ogg │ │ ├── pickup.ogg │ │ ├── rewind.ogg │ │ ├── snap.ogg │ │ ├── speedup.ogg │ │ └── tick.ogg │ └── png │ │ ├── arrow.png │ │ ├── bg.png │ │ ├── bg2.png │ │ ├── bg_left.png │ │ ├── bg_right.png │ │ ├── blast.png │ │ ├── box-green.png │ │ ├── box-orange.png │ │ ├── box-red.png │ │ ├── cloud-l.png │ │ ├── cloud-s.png │ │ ├── logo.png │ │ ├── monsters.png │ │ ├── pixel.png │ │ ├── smoke.png │ │ ├── splash.png │ │ ├── tiles.png │ │ └── tutorial.png ├── game.project ├── game │ ├── core │ │ ├── common.collection │ │ ├── game.collection │ │ ├── game.tilesource │ │ ├── loader.script │ │ └── pixel.tilesource │ ├── enemy │ │ ├── enemy.go │ │ ├── enemy.script │ │ ├── enemy.tilesource │ │ ├── smoke.tilesource │ │ ├── snap.particlefx │ │ └── spark.particlefx │ ├── gui │ │ ├── clear.gui │ │ ├── clear.gui_script │ │ ├── complete.gui │ │ ├── game.gui │ │ ├── game.gui_script │ │ ├── gameover.gui │ │ ├── gameover.gui_script │ │ ├── tutorial.gui │ │ └── tutorial.gui_script │ ├── levels │ │ ├── cloud.script │ │ ├── cloud_large.go │ │ ├── cloud_small.go │ │ ├── level.script │ │ ├── level1.collection │ │ ├── level1.tilemap │ │ ├── level10.collection │ │ ├── level10.tilemap │ │ ├── level2.collection │ │ ├── level2.tilemap │ │ ├── level3.collection │ │ ├── level3.tilemap │ │ ├── level4.collection │ │ ├── level4.tilemap │ │ ├── level5.collection │ │ ├── level5.tilemap │ │ ├── level6.collection │ │ ├── level6.tilemap │ │ ├── level7.collection │ │ ├── level7.tilemap │ │ ├── level8.collection │ │ ├── level8.tilemap │ │ ├── level9.collection │ │ └── level9.tilemap │ └── player │ │ ├── eat.particlefx │ │ ├── player.go │ │ └── player.script ├── input │ └── game.input_binding ├── main │ ├── data.lua │ ├── handler.script │ ├── main.atlas │ ├── main.collection │ ├── shutter.gui │ └── shutter.gui_script ├── menu │ ├── bg.gui │ ├── controls.gui │ ├── controls.gui_script │ ├── credits.gui │ ├── credits.gui_script │ ├── menu.collection │ ├── menu.gui │ └── menu.gui_script └── render │ ├── custom.render │ └── custom.render_script ├── Driller ├── assets │ ├── font │ │ ├── PixelOperatorHB.ttf │ │ ├── large.font │ │ └── main.font │ ├── ogg │ │ ├── clear.ogg │ │ ├── damage.ogg │ │ ├── eat.ogg │ │ ├── gameover.ogg │ │ ├── music.ogg │ │ ├── rewind.ogg │ │ └── snap.ogg │ └── png │ │ ├── burst.png │ │ ├── dialog.png │ │ ├── dialogbad.png │ │ ├── dialoglarge.png │ │ ├── enemies.png │ │ ├── guibg.png │ │ ├── key.png │ │ ├── logo.png │ │ ├── palette_bg.png │ │ ├── palette_spr.png │ │ ├── pixel.png │ │ ├── space.png │ │ ├── splash.png │ │ ├── tiles.png │ │ └── tutorial.png ├── game.project ├── game │ ├── core │ │ ├── common.collection │ │ ├── game.collection │ │ └── loader.script │ ├── enemy │ │ ├── enemy.go │ │ ├── enemy.script │ │ ├── enemy.tilesource │ │ ├── pop.particlefx │ │ ├── spawner.go │ │ └── spawner.script │ ├── gui │ │ ├── complete.gui │ │ ├── game.gui │ │ ├── game.gui_script │ │ ├── gameover.gui │ │ ├── gameover.gui_script │ │ ├── levelclear.gui │ │ ├── levelclear.gui_script │ │ ├── shutter.gui │ │ ├── shutter.gui_script │ │ ├── tutorial.gui │ │ └── tutorial.gui_script │ ├── levels │ │ ├── level.script │ │ ├── level1.collection │ │ ├── level1.tilemap │ │ ├── level2.collection │ │ ├── level2.tilemap │ │ ├── level3.collection │ │ ├── level3.tilemap │ │ ├── level4.collection │ │ ├── level4.tilemap │ │ ├── level5.collection │ │ ├── level5.tilemap │ │ ├── level6.collection │ │ ├── level6.tilemap │ │ ├── level7.collection │ │ ├── level7.tilemap │ │ ├── level8.collection │ │ ├── level8.tilemap │ │ └── tiles.tilesource │ └── player │ │ ├── player.go │ │ └── player.script ├── input │ └── game.input_binding ├── main │ ├── data.lua │ ├── handler.script │ ├── main.atlas │ └── main.collection ├── menu │ ├── controls.gui │ ├── controls.gui_script │ ├── credits.gui │ ├── credits.gui_script │ ├── menu.collection │ ├── menu.gui │ └── menu.gui_script └── render │ ├── custom.render │ └── custom.render_script ├── Escape from Mars ├── assets │ ├── font │ │ ├── large.font │ │ ├── main.font │ │ ├── smallest_pixel-7.ttf │ │ └── tiny.font │ ├── ogg │ │ ├── boom.ogg │ │ ├── click.ogg │ │ ├── close.ogg │ │ ├── clunk.ogg │ │ ├── dead.ogg │ │ ├── delete.ogg │ │ ├── door.ogg │ │ ├── fusedown.ogg │ │ ├── fuseswap.ogg │ │ ├── fuseup.ogg │ │ ├── hit1.ogg │ │ ├── hit2.ogg │ │ ├── in.ogg │ │ ├── machine.ogg │ │ ├── music.ogg │ │ ├── no.ogg │ │ ├── open.ogg │ │ ├── out.ogg │ │ ├── pickup.ogg │ │ ├── positive.ogg │ │ ├── shot1.ogg │ │ ├── square.ogg │ │ ├── startup.ogg │ │ ├── step.ogg │ │ ├── tick.ogg │ │ └── wreck.ogg │ └── png │ │ ├── codepad.png │ │ ├── complete.png │ │ ├── cursor.png │ │ ├── dead.png │ │ ├── dialog.png │ │ ├── explosion.png │ │ ├── fan.png │ │ ├── fuses.png │ │ ├── fuses_bg.png │ │ ├── logo.png │ │ ├── mars.png │ │ ├── minimap.png │ │ ├── panel_left.png │ │ ├── panel_right.png │ │ ├── pixel.png │ │ ├── scanlines.png │ │ ├── smoke.png │ │ ├── splash.png │ │ ├── stars.png │ │ ├── surface.png │ │ ├── symbols.png │ │ └── tiles.png ├── custom.html ├── game.project ├── game │ ├── core │ │ ├── bg.script │ │ ├── common.collection │ │ ├── game.atlas │ │ ├── game.camera │ │ ├── game.collection │ │ ├── item.lua │ │ ├── loader.script │ │ ├── tiles.tilesource │ │ └── view.script │ ├── enemy │ │ ├── enemy.go │ │ ├── enemy.lua │ │ ├── enemy.script │ │ └── handler.script │ ├── fx │ │ ├── explode.particlefx │ │ ├── explode.tilesource │ │ ├── fan.go │ │ ├── fan.script │ │ ├── fx.go │ │ ├── fx.script │ │ ├── gas.go │ │ ├── gas.particlefx │ │ ├── gas.script │ │ ├── gas.tilesource │ │ ├── handler.script │ │ ├── hit.particlefx │ │ ├── sound.go │ │ └── sound.script │ ├── gui │ │ ├── complete.gui │ │ ├── complete.gui_script │ │ ├── examine.gui │ │ ├── examine.gui_script │ │ ├── game.gui │ │ ├── game.gui_script │ │ ├── gameover.gui │ │ ├── gameover.gui_script │ │ ├── shutter.gui │ │ └── shutter.gui_script │ ├── levels │ │ ├── level.script │ │ ├── level1.collection │ │ ├── level1.tilemap │ │ ├── level2.collection │ │ ├── level2.tilemap │ │ ├── level3.collection │ │ ├── level3.tilemap │ │ ├── level4.collection │ │ ├── level4.tilemap │ │ ├── minimap.atlas │ │ └── minimap.script │ ├── player │ │ ├── cursor.go │ │ ├── cursor.script │ │ ├── cursor.tilesource │ │ ├── fire.go │ │ ├── fire.script │ │ ├── player.go │ │ └── player.script │ └── puzzles │ │ ├── fuses.gui │ │ ├── fuses.gui_script │ │ ├── fuses.tilesource │ │ ├── symbol.gui │ │ ├── symbol.gui_script │ │ └── symbol.tilesource ├── input │ └── game.input_binding ├── main │ ├── data.lua │ ├── handler.script │ └── main.collection ├── menu │ ├── bg.script │ ├── menu.atlas │ ├── menu.collection │ ├── menu.gui │ └── menu.gui_script └── render │ ├── custom.render │ └── custom.render_script ├── Exolon ├── assets │ ├── font │ │ ├── Tecmo Bowl.ttf │ │ └── main.font │ ├── ogg │ │ ├── chime1.ogg │ │ ├── chime2.ogg │ │ ├── exp1.ogg │ │ ├── exp2.ogg │ │ ├── exp3.ogg │ │ ├── exp4.ogg │ │ ├── powerup.ogg │ │ ├── shot.ogg │ │ ├── shot2.ogg │ │ ├── teleport.ogg │ │ ├── theme.ogg │ │ ├── throw.ogg │ │ └── tick.ogg │ └── png │ │ ├── bg.png │ │ ├── exp-tiny.png │ │ ├── exp.png │ │ ├── firetrail.png │ │ ├── logo-hor-outline-bright.png │ │ ├── logo.png │ │ ├── obj.png │ │ ├── player.png │ │ ├── ship.png │ │ ├── splash.png │ │ └── tiles.png ├── game.project ├── game │ ├── core │ │ ├── common.collection │ │ ├── core.atlas │ │ ├── game.collection │ │ ├── game.tilesource │ │ ├── loader.script │ │ ├── obj.tilesource │ │ └── screen.tilemap │ ├── effects │ │ ├── effect.go │ │ ├── effect.script │ │ ├── exp-small.particlefx │ │ ├── exp-tiny.particlefx │ │ ├── exp-tiny.tilesource │ │ ├── exp.particlefx │ │ └── exp.tilesource │ ├── gui │ │ ├── clear.gui │ │ ├── clear.gui_script │ │ ├── complete.gui │ │ ├── complete.gui_script │ │ ├── game.gui │ │ ├── game.gui_script │ │ ├── pause.gui │ │ ├── pause.gui_script │ │ ├── shutter.gui │ │ └── shutter.gui_script │ ├── levels │ │ ├── level.script │ │ ├── level1.collection │ │ ├── level1.tilemap │ │ ├── level2.collection │ │ ├── level2.tilemap │ │ ├── level3.collection │ │ ├── level3.tilemap │ │ ├── level4.collection │ │ ├── level4.tilemap │ │ ├── level5.collection │ │ └── level5.tilemap │ ├── object │ │ ├── alien.go │ │ ├── alien.script │ │ ├── arc.go │ │ ├── arc.particlefx │ │ ├── arc.script │ │ ├── beam.go │ │ ├── beam.script │ │ ├── bigblob.go │ │ ├── bigblob.script │ │ ├── blob.go │ │ ├── blob.script │ │ ├── cannon.go │ │ ├── cannon.script │ │ ├── changer.go │ │ ├── changer.script │ │ ├── firetrail.particlefx │ │ ├── firetrail.tilesource │ │ ├── flame.go │ │ ├── globe.go │ │ ├── globe.script │ │ ├── jelly.go │ │ ├── jelly.script │ │ ├── launcher.go │ │ ├── launcher.script │ │ ├── light.go │ │ ├── missile.go │ │ ├── missile.script │ │ ├── obj.lua │ │ ├── orb.go │ │ ├── orb.particlefx │ │ ├── orb.script │ │ ├── plane.go │ │ ├── plane.script │ │ ├── rocket.go │ │ ├── rocket.script │ │ ├── ship.go │ │ ├── ship.script │ │ ├── shot.go │ │ ├── shot.script │ │ ├── solid.go │ │ ├── solid.script │ │ ├── spawner.go │ │ ├── spawner.script │ │ ├── tank.go │ │ ├── tank.script │ │ ├── tele.go │ │ ├── tele.particlefx │ │ ├── tele.script │ │ ├── trap.go │ │ └── trap.script │ └── player │ │ ├── bomb.go │ │ ├── bomb.script │ │ ├── laser.go │ │ ├── laser.script │ │ ├── player.go │ │ ├── player.script │ │ └── player.tilesource ├── main │ ├── custom.render │ ├── custom.render_script │ ├── data.lua │ ├── game.input_binding │ ├── handler.script │ ├── main.atlas │ ├── main.collection │ └── ui.lua └── menu │ ├── bg.script │ ├── bg.tilemap │ ├── controls.gui │ ├── controls.gui_script │ ├── credits.gui │ ├── credits.gui_script │ ├── menu.atlas │ ├── menu.collection │ ├── menu.gui │ ├── menu.gui_script │ └── test.particlefx ├── Helo Storm ├── assets │ ├── font │ │ ├── 8-bit-hud.ttf │ │ ├── large.font │ │ └── main.font │ ├── ogg │ │ ├── back.ogg │ │ ├── blade.ogg │ │ ├── caution.ogg │ │ ├── exp1.ogg │ │ ├── exp2.ogg │ │ ├── exp3.ogg │ │ ├── m72_crystal_moon.ogg │ │ ├── mortar.ogg │ │ ├── pickup.ogg │ │ ├── select.ogg │ │ ├── shot.ogg │ │ ├── tick.ogg │ │ └── whoosh.ogg │ └── png │ │ ├── 11.png │ │ ├── 12.png │ │ ├── 13.png │ │ ├── 16x16.png │ │ ├── 21.png │ │ ├── 22.png │ │ ├── 23.png │ │ ├── 31.png │ │ ├── 32.png │ │ ├── 32x16.png │ │ ├── 32x32.png │ │ ├── 33.png │ │ ├── 41.png │ │ ├── 42.png │ │ ├── 43.png │ │ ├── 48x16.png │ │ ├── 80x32.png │ │ ├── bg.png │ │ ├── bigblade.png │ │ ├── caution.png │ │ ├── chevron.png │ │ ├── circle.png │ │ ├── control.png │ │ ├── exp24.png │ │ ├── exp48.png │ │ ├── exp96.png │ │ ├── gameover.png │ │ ├── hp-bar.png │ │ ├── logo.png │ │ ├── missile.png │ │ ├── pixels.png │ │ ├── sky.png │ │ └── splash.png ├── game.project ├── game │ ├── core │ │ ├── 16x16.tilesource │ │ ├── 32x16.tilesource │ │ ├── 32x32.tilesource │ │ ├── 48x16.tilesource │ │ ├── 80x32.tilesource │ │ ├── bigblade.tilesource │ │ ├── game.atlas │ │ └── game.collection │ ├── effects │ │ ├── effect.go │ │ ├── effect.script │ │ ├── exp24.particlefx │ │ ├── exp24.tilesource │ │ ├── exp48.particlefx │ │ ├── exp48.tilesource │ │ ├── exp96.particlefx │ │ ├── exp96.tilesource │ │ ├── pixel.tilesource │ │ └── splat.particlefx │ ├── enemy │ │ ├── 1.go │ │ ├── 1.script │ │ ├── 2.go │ │ ├── 2.script │ │ ├── 3.go │ │ ├── 3.script │ │ ├── 4.go │ │ ├── 4.script │ │ ├── 5.go │ │ ├── 5.script │ │ ├── 6.go │ │ ├── 6.script │ │ ├── aam.go │ │ ├── aam.script │ │ ├── bomb.go │ │ ├── bomb.script │ │ ├── boss.go │ │ ├── boss.script │ │ ├── boss2.go │ │ ├── boss2.script │ │ ├── g1.go │ │ ├── g1.script │ │ ├── g2.go │ │ ├── g2.script │ │ ├── g3.go │ │ ├── g3.script │ │ ├── g4.go │ │ ├── g4.script │ │ ├── g5.go │ │ ├── g5.script │ │ ├── g6.go │ │ ├── g6.script │ │ ├── g7.go │ │ ├── g7.script │ │ ├── missile.go │ │ ├── missile.script │ │ ├── rocket.go │ │ ├── rocket.script │ │ ├── sam.go │ │ └── sam.script │ ├── gui │ │ ├── clear.gui │ │ ├── clear.gui_script │ │ ├── complete.gui │ │ ├── complete.gui_script │ │ ├── game.gui │ │ ├── game.gui_script │ │ ├── gameover.gui │ │ ├── gameover.gui_script │ │ ├── shutter.gui │ │ └── shutter.gui_script │ ├── level │ │ ├── control.tilesource │ │ ├── ground.go │ │ ├── ground.script │ │ ├── level.script │ │ ├── level.tilemap │ │ └── sky.tilesource │ ├── object │ │ ├── pickup.go │ │ └── pickup.script │ └── player │ │ ├── player.go │ │ ├── player.script │ │ ├── shot.go │ │ └── shot.script ├── input │ └── game.input_binding ├── main │ ├── data.lua │ ├── handler.script │ ├── main.collection │ └── ui.lua ├── menu │ ├── bg.gui │ ├── bg.gui_script │ ├── controls.gui │ ├── controls.gui_script │ ├── credits.gui │ ├── credits.gui_script │ ├── menu.atlas │ ├── menu.collection │ ├── menu.gui │ └── menu.gui_script └── render │ ├── custom.render │ └── custom.render_script ├── Incinerator ├── assets │ ├── font │ │ ├── CG pixel 3x5.ttf │ │ └── main.font │ ├── ogg │ │ ├── alien2.ogg │ │ ├── aliendeath.ogg │ │ ├── blip.ogg │ │ ├── chirp.ogg │ │ ├── dead.ogg │ │ ├── dna-groove_-_underground_market.ogg │ │ ├── dropship.ogg │ │ ├── edoor.ogg │ │ ├── egg.ogg │ │ ├── exp.ogg │ │ ├── fire.ogg │ │ ├── flame.ogg │ │ ├── hit.ogg │ │ ├── mb_dpspc.ogg │ │ ├── no.ogg │ │ ├── pickup.ogg │ │ ├── pickup2.ogg │ │ ├── pickup3.ogg │ │ ├── reset.ogg │ │ ├── spawn.ogg │ │ └── unlock.ogg │ └── png │ │ ├── bg.png │ │ ├── dropship.png │ │ ├── exp24.png │ │ ├── fan.png │ │ ├── flame.png │ │ ├── laser.png │ │ ├── logo.png │ │ ├── map.png │ │ ├── panel.png │ │ ├── splash.png │ │ └── tiles.png ├── game.project ├── game │ ├── core │ │ ├── camera.script │ │ ├── fire.tilesource │ │ ├── game.camera │ │ ├── game.collection │ │ └── game.tilesource │ ├── effects │ │ ├── effect.go │ │ ├── effect.script │ │ ├── exp.tilesource │ │ ├── fire.go │ │ └── fire.script │ ├── enemy │ │ ├── enemy.go │ │ └── enemy.script │ ├── gui │ │ ├── clear.gui │ │ ├── clear.gui_script │ │ ├── complete.gui │ │ ├── complete.gui_script │ │ ├── game.gui │ │ ├── game.gui_script │ │ ├── gameover.gui │ │ ├── gameover.gui_script │ │ ├── map.atlas │ │ ├── map.gui │ │ ├── map.gui_script │ │ ├── map.script │ │ ├── pause.gui │ │ ├── pause.gui_script │ │ ├── shutter.gui │ │ └── shutter.gui_script │ ├── levels │ │ ├── level.script │ │ └── level.tilemap │ ├── object │ │ ├── anim.go │ │ ├── anim.script │ │ ├── dropship.go │ │ ├── dropship.script │ │ ├── edoor.go │ │ ├── edoor.script │ │ ├── fan.go │ │ ├── fan.tilesource │ │ ├── laser.go │ │ ├── laser.script │ │ ├── smoke.go │ │ ├── smoke.script │ │ ├── spawner.go │ │ └── spawner.script │ └── player │ │ ├── flame.go │ │ ├── flame.script │ │ ├── player.go │ │ └── player.script ├── main │ ├── custom.render │ ├── custom.render_script │ ├── data.lua │ ├── game.input_binding │ ├── generated.appmanifest │ ├── handler.script │ ├── main.atlas │ ├── main.collection │ └── ui.lua └── menu │ ├── bg.gui │ ├── bg.gui_script │ ├── controls.gui │ ├── controls.gui_script │ ├── credits.gui │ ├── credits.gui_script │ ├── menu.collection │ ├── menu.gui │ └── menu.gui_script ├── Jetpack Jeopardy ├── assets │ ├── font │ │ ├── Oxanium-Bold.ttf │ │ ├── large.font │ │ └── main.font │ ├── ogg │ │ ├── cannon.ogg │ │ ├── clear.ogg │ │ ├── coin.ogg │ │ ├── fuel.ogg │ │ ├── gameover.ogg │ │ ├── hit.ogg │ │ ├── music.ogg │ │ └── thrust.ogg │ └── png │ │ ├── bg-menu.png │ │ ├── bg.png │ │ ├── box-green.png │ │ ├── box-red.png │ │ ├── doors.png │ │ ├── logo.png │ │ ├── pixel.png │ │ ├── splash.png │ │ └── tiles.png ├── game.project ├── game │ ├── core │ │ ├── camera.script │ │ ├── common.collection │ │ ├── game.camera │ │ ├── game.collection │ │ ├── game.tilesource │ │ ├── loader.script │ │ └── pixels.tilesource │ ├── enemy │ │ ├── ball.go │ │ ├── ball.script │ │ ├── cannon.go │ │ ├── cannon.script │ │ ├── flame.go │ │ ├── flame.script │ │ ├── sine.go │ │ └── sine.script │ ├── gui │ │ ├── clear.gui │ │ ├── clear.gui_script │ │ ├── complete.gui │ │ ├── game.gui │ │ ├── game.gui_script │ │ ├── gameover.gui │ │ ├── gameover.gui_script │ │ ├── getready.gui │ │ ├── getready.gui_script │ │ ├── shutter.gui │ │ └── shutter.gui_script │ ├── levels │ │ ├── bg.go │ │ ├── bg.script │ │ ├── door.go │ │ ├── door.script │ │ ├── door.tilesource │ │ ├── level.script │ │ ├── level1.collection │ │ ├── level1.tilemap │ │ ├── level2.collection │ │ ├── level2.tilemap │ │ ├── level3.collection │ │ ├── level3.tilemap │ │ ├── level4.collection │ │ └── level4.tilemap │ └── player │ │ ├── jet.particlefx │ │ ├── player.go │ │ └── player.script ├── input │ └── game.input_binding ├── main │ ├── data.lua │ ├── handler.script │ ├── main.atlas │ └── main.collection ├── menu │ ├── menu.collection │ ├── menu.gui │ └── menu.gui_script └── render │ ├── custom.render │ └── custom.render_script ├── LICENSE ├── Mystery Mansion ├── assets │ ├── font │ │ ├── Alkhemikal.ttf │ │ ├── Maybe Next.ttf │ │ ├── Typecast.ttf │ │ ├── hand.font │ │ ├── large.font │ │ └── main.font │ ├── ogg │ │ ├── ambience.ogg │ │ ├── chime.ogg │ │ ├── chime2.ogg │ │ ├── click.ogg │ │ ├── door_closed.ogg │ │ ├── door_open.ogg │ │ ├── fear.ogg │ │ ├── heart.ogg │ │ ├── pickup.ogg │ │ └── reverse.ogg │ └── png │ │ ├── 32.png │ │ ├── fear.png │ │ ├── lock.png │ │ ├── logo.png │ │ ├── num.png │ │ ├── scared.png │ │ ├── smoke.png │ │ ├── splash.png │ │ ├── stone.png │ │ ├── tiles.png │ │ ├── tiles_col.png │ │ ├── todeath.png │ │ └── vig.png ├── game.project ├── game │ ├── core │ │ ├── 32.tilesource │ │ ├── camera.script │ │ ├── game.camera │ │ ├── game.collection │ │ ├── game.tilesource │ │ ├── item.lua │ │ ├── num.tilesource │ │ └── room.lua │ ├── gui │ │ ├── complete.gui │ │ ├── complete.gui_script │ │ ├── game.gui │ │ ├── game.gui_script │ │ ├── gameover.gui │ │ ├── gameover.gui_script │ │ ├── lock.gui │ │ ├── lock.gui_script │ │ ├── pause.gui │ │ ├── pause.gui_script │ │ ├── shutter.gui │ │ ├── shutter.gui_script │ │ ├── slab.gui │ │ └── slab.gui_script │ ├── levels │ │ ├── level.script │ │ └── level.tilemap │ ├── object │ │ ├── door.go │ │ ├── door.script │ │ ├── lockbox.go │ │ ├── lockbox.script │ │ ├── monster.go │ │ ├── monster.script │ │ ├── smoke.particlefx │ │ └── smoke.tilesource │ └── player │ │ ├── player.go │ │ └── player.script ├── main │ ├── custom.render │ ├── custom.render_script │ ├── data.lua │ ├── game.input_binding │ ├── handler.script │ ├── main.atlas │ ├── main.collection │ └── ui.lua └── menu │ ├── bg.gui │ ├── bg.gui_script │ ├── controls.gui │ ├── controls.gui_script │ ├── credits.gui │ ├── credits.gui_script │ ├── menu.collection │ ├── menu.gui │ └── menu.gui_script ├── Pathfinder ├── assets │ ├── font │ │ ├── good timing bd.ttf │ │ ├── large.font │ │ └── main.font │ ├── ogg │ │ ├── deflect.ogg │ │ ├── door.ogg │ │ ├── exp.ogg │ │ ├── jump.ogg │ │ ├── land.ogg │ │ ├── laser.ogg │ │ ├── lift.ogg │ │ ├── music-game.ogg │ │ ├── music-menu.ogg │ │ ├── star.ogg │ │ ├── switch.ogg │ │ ├── teleport.ogg │ │ └── warp.ogg │ └── png │ │ ├── bg-m.png │ │ ├── bg1.png │ │ ├── defold.png │ │ ├── exp.png │ │ ├── float.png │ │ ├── logo.png │ │ ├── pixels.png │ │ ├── tick.gif │ │ ├── tiles.png │ │ └── vui.png ├── custom.css ├── game.project ├── game │ ├── core │ │ ├── common.collection │ │ ├── core.atlas │ │ ├── game.collection │ │ ├── game.tilesource │ │ ├── loader.script │ │ ├── pixel.tilesource │ │ └── vui.tilesource │ ├── effects │ │ ├── effect.go │ │ ├── effect.script │ │ ├── explode.particlefx │ │ └── expode.tilesource │ ├── gui │ │ ├── clear.gui │ │ ├── clear.gui_script │ │ ├── game.gui │ │ ├── game.gui_script │ │ ├── pause.gui │ │ ├── pause.gui_script │ │ ├── shutter.gui │ │ ├── shutter.gui_script │ │ ├── vui.gui │ │ └── vui.gui_script │ ├── levels │ │ ├── level.script │ │ ├── level1.collection │ │ ├── level1.tilemap │ │ ├── level2.collection │ │ ├── level2.tilemap │ │ ├── level3.collection │ │ ├── level3.tilemap │ │ └── screen.tilemap │ ├── object │ │ ├── crate.go │ │ ├── crate.script │ │ ├── door.go │ │ ├── door.script │ │ ├── exit.go │ │ ├── fireball.go │ │ ├── fireball.particlefx │ │ ├── fireball.script │ │ ├── float.go │ │ ├── float.particlefx │ │ ├── float.script │ │ ├── lift.go │ │ ├── lift.script │ │ ├── mirror.go │ │ ├── mirror.script │ │ ├── pointer.go │ │ ├── pointer.script │ │ ├── teleport.go │ │ ├── teleport.particlefx │ │ └── teleport.script │ └── player │ │ ├── dust.particlefx │ │ ├── player.go │ │ └── player.script ├── input │ └── game.input_binding ├── main │ ├── data.lua │ ├── handler.script │ ├── main.collection │ ├── strings.lua │ └── ui.lua ├── menu │ ├── bg.gui │ ├── controls-v.gui │ ├── controls-v.gui_script │ ├── controls.gui │ ├── controls.gui_script │ ├── credits.gui │ ├── credits.gui_script │ ├── menu.atlas │ ├── menu.collection │ ├── menu.gui │ ├── menu.gui_script │ ├── select.gui │ ├── select.gui_script │ ├── world.gui │ └── world.gui_script └── render │ ├── custom.render │ └── custom.render_script ├── PicoShot ├── .gitignore ├── assets │ ├── font │ │ ├── CG pixel 3x5.ttf │ │ └── main.font │ ├── ogg │ │ ├── bigbang.ogg │ │ ├── music.ogg │ │ ├── music_menu.ogg │ │ ├── pickup.ogg │ │ ├── shot1.ogg │ │ ├── shot2.ogg │ │ ├── shot3.ogg │ │ ├── shot4.ogg │ │ ├── shot5.ogg │ │ ├── shot_boss.ogg │ │ ├── siren.ogg │ │ ├── sm_exp1.ogg │ │ ├── sm_exp2.ogg │ │ ├── sm_exp3.ogg │ │ ├── special.ogg │ │ └── spit.ogg │ └── png │ │ ├── bosses.png │ │ ├── caution.png │ │ ├── enemy.png │ │ ├── explosion24.png │ │ ├── explosion32.png │ │ ├── icons.png │ │ ├── logo.png │ │ ├── player.png │ │ ├── special1.png │ │ ├── splash.png │ │ ├── stars.png │ │ ├── tiles.png │ │ └── x.png ├── custom.html ├── game.project ├── game │ ├── core │ │ ├── common.collection │ │ ├── game.collection │ │ ├── game.tilesource │ │ └── loader.script │ ├── effects │ │ ├── effect.go │ │ ├── effect.script │ │ ├── explosion.particlefx │ │ ├── explosion.tilesource │ │ ├── explosion_large.particlefx │ │ └── explosion_large.tilesource │ ├── enemy │ │ ├── boss1.go │ │ ├── boss1.script │ │ ├── boss2.go │ │ ├── boss2.script │ │ ├── bosses.tilesource │ │ ├── enemy.script │ │ ├── enemy.tilesource │ │ ├── enemy1.go │ │ ├── enemy2.go │ │ ├── enemy3.go │ │ ├── enemy4.go │ │ ├── enemy5.go │ │ ├── enemy6.go │ │ ├── enemy7.go │ │ ├── enemy8.go │ │ ├── fire1.go │ │ └── fire2.go │ ├── gui │ │ ├── caution.gui │ │ ├── caution.gui_script │ │ ├── caution.tilesource │ │ ├── clear.gui │ │ ├── clear.gui_script │ │ ├── complete.gui │ │ ├── complete.gui_script │ │ ├── game.gui │ │ ├── game.gui_script │ │ ├── gameover.gui │ │ ├── gameover.gui_script │ │ ├── getready.gui │ │ ├── getready.gui_script │ │ ├── shutter.gui │ │ └── shutter.gui_script │ ├── levels │ │ ├── 1bot.tilemap │ │ ├── 1top.tilemap │ │ ├── 2bot.tilemap │ │ ├── 2top.tilemap │ │ ├── level.script │ │ ├── level1.collection │ │ ├── level2.collection │ │ ├── scroll.script │ │ └── stars.go │ └── player │ │ ├── item.go │ │ ├── item.script │ │ ├── player.go │ │ ├── player.script │ │ ├── player.tilesource │ │ ├── special.go │ │ ├── special.script │ │ ├── weap.go │ │ └── weap.script ├── input │ └── game.input_binding ├── main │ ├── data.lua │ ├── handler.script │ ├── main.atlas │ └── main.collection ├── menu │ ├── controls.gui │ ├── credits.gui │ ├── menu.collection │ ├── menu.gui │ ├── menu.gui_script │ └── submenu.gui_script └── render │ ├── custom.render │ └── custom.render_script ├── Pixel Crypt ├── assets │ ├── font │ │ ├── CG pixel 3x5.ttf │ │ └── main.font │ ├── ogg │ │ ├── accent.ogg │ │ ├── beam.ogg │ │ ├── click.ogg │ │ ├── coin.ogg │ │ ├── dart.ogg │ │ ├── dead.ogg │ │ ├── explode.ogg │ │ ├── fireball.ogg │ │ ├── goose.ogg │ │ ├── hit.ogg │ │ ├── monster.ogg │ │ ├── mystery_level_looped.ogg │ │ ├── no.ogg │ │ ├── pickup.ogg │ │ ├── pickup2.ogg │ │ ├── secret.ogg │ │ ├── spawn.ogg │ │ ├── unlock.ogg │ │ └── water.ogg │ └── png │ │ ├── beam.png │ │ ├── bg-shop.png │ │ ├── bg.png │ │ ├── elf.png │ │ ├── exp.png │ │ ├── line.png │ │ ├── logo.png │ │ ├── monster.png │ │ ├── sky.png │ │ ├── sky2.png │ │ ├── splash.png │ │ ├── tents.png │ │ ├── tiles.png │ │ ├── ufo.png │ │ ├── vig.png │ │ ├── warrior.png │ │ └── wizard.png ├── game.project ├── game │ ├── core │ │ ├── camera.script │ │ ├── game.camera │ │ ├── game.collection │ │ └── game.tilesource │ ├── effects │ │ ├── effect.go │ │ ├── effect.script │ │ └── exp-l.tilesource │ ├── enemy │ │ ├── arrow.go │ │ ├── arrow.script │ │ ├── enemy.go │ │ ├── enemy.script │ │ ├── flame.go │ │ ├── flame.particlefx │ │ ├── flame.script │ │ ├── monster.go │ │ ├── monster.script │ │ ├── monster.tilesource │ │ ├── shooter.go │ │ ├── shooter.script │ │ ├── spawner.go │ │ ├── spawner.script │ │ ├── spike.go │ │ ├── spike.script │ │ └── tents.tilesource │ ├── gui │ │ ├── complete.gui │ │ ├── complete.gui_script │ │ ├── game.gui │ │ ├── game.gui_script │ │ ├── pause.gui │ │ ├── pause.gui_script │ │ ├── shop.gui │ │ ├── shop.gui_script │ │ ├── shutter.gui │ │ └── shutter.gui_script │ ├── levels │ │ ├── level.script │ │ └── level.tilemap │ ├── object │ │ ├── keeper.go │ │ ├── keeper.script │ │ ├── ufo.go │ │ ├── ufo.script │ │ └── ufo.tilesource │ └── player │ │ ├── elf.go │ │ ├── elf.tilesource │ │ ├── player.script │ │ ├── shot.go │ │ ├── shot.script │ │ ├── warrior.go │ │ ├── warrior.tilesource │ │ ├── wizard.go │ │ └── wizard.tilesource ├── input │ └── game.input_binding ├── main │ ├── data.lua │ ├── handler.script │ ├── main.atlas │ ├── main.collection │ └── ui.lua ├── menu │ ├── bg.gui │ ├── bg.gui_script │ ├── char.gui │ ├── char.gui_script │ ├── controls.gui │ ├── controls.gui_script │ ├── credits.gui │ ├── credits.gui_script │ ├── menu.collection │ ├── menu.gui │ └── menu.gui_script └── render │ ├── custom.render │ └── custom.render_script ├── Planetoid ├── assets │ ├── font │ │ ├── 8-bit-pusab.ttf │ │ └── main.font │ ├── ogg │ │ ├── blip.ogg │ │ ├── bonus.ogg │ │ ├── capture.ogg │ │ ├── exp-2.ogg │ │ ├── exp-3.ogg │ │ ├── exp-4.ogg │ │ ├── exp-big.ogg │ │ ├── exp-low.ogg │ │ ├── exp-small.ogg │ │ ├── extra.ogg │ │ ├── hyperspace.ogg │ │ ├── laser.ogg │ │ ├── mutant.ogg │ │ ├── mutieland.ogg │ │ ├── shot.ogg │ │ ├── shot2.ogg │ │ ├── smart.ogg │ │ ├── start.ogg │ │ ├── swarmer.ogg │ │ └── warp-in.ogg │ └── png │ │ ├── bg1.png │ │ ├── bg2.png │ │ ├── laser.png │ │ ├── logo.png │ │ ├── pixel.png │ │ ├── scanner.png │ │ ├── sky.png │ │ ├── splash.png │ │ ├── stars.png │ │ └── tiles.png ├── game.project ├── game │ ├── core │ │ ├── camera.script │ │ ├── game.collection │ │ └── game.tilesource │ ├── effects │ │ ├── exp-baiter.particlefx │ │ ├── exp-bomber.particlefx │ │ ├── exp-dynamo.particlefx │ │ ├── exp-guppy.particlefx │ │ ├── exp-lander-warp.particlefx │ │ ├── exp-lander.particlefx │ │ ├── exp-man.particlefx │ │ ├── exp-mutant.particlefx │ │ ├── exp-pod.particlefx │ │ ├── exp-spinner.particlefx │ │ ├── exp-swarmer.particlefx │ │ ├── exp-ufo.particlefx │ │ └── pixel.tilesource │ ├── enemy │ │ ├── baiter.go │ │ ├── baiter.script │ │ ├── bomb.go │ │ ├── bomb.script │ │ ├── bomber.go │ │ ├── bomber.script │ │ ├── dynamo.go │ │ ├── dynamo.script │ │ ├── enemy.lua │ │ ├── guppy.go │ │ ├── guppy.script │ │ ├── lander.go │ │ ├── lander.script │ │ ├── mutant-b.go │ │ ├── mutant.go │ │ ├── mutant.script │ │ ├── pod.go │ │ ├── pod.script │ │ ├── shot.go │ │ ├── shot.script │ │ ├── spinner.go │ │ ├── spinner.script │ │ ├── swarmer.go │ │ ├── swarmer.script │ │ ├── ufo.go │ │ └── ufo.script │ ├── gui │ │ ├── clear.gui │ │ ├── clear.gui_script │ │ ├── game.gui │ │ ├── game.gui_script │ │ ├── gameover.gui │ │ ├── gameover.gui_script │ │ ├── pause.gui │ │ ├── pause.gui_script │ │ ├── shutter.gui │ │ └── shutter.gui_script │ ├── levels │ │ ├── bg.go │ │ ├── bg.script │ │ └── level.script │ ├── object │ │ ├── bonus.go │ │ ├── bonus.script │ │ ├── man.go │ │ └── man.script │ └── player │ │ ├── exp-player.particlefx │ │ ├── laser.go │ │ ├── laser.script │ │ ├── laser.tilesource │ │ ├── player.go │ │ └── player.script ├── main │ ├── custom.render │ ├── custom.render_script │ ├── data.lua │ ├── game.input_binding │ ├── handler.script │ ├── main.atlas │ ├── main.collection │ └── ui.lua └── menu │ ├── bg.gui │ ├── bg.gui_script │ ├── bg.particlefx │ ├── controls.gui │ ├── controls.gui_script │ ├── menu.collection │ ├── menu.gui │ ├── menu.gui_script │ ├── scoring.gui │ └── scoring.gui_script ├── README.md ├── Rock Hopper ├── assets │ ├── font │ │ ├── PearSoda.ttf │ │ ├── large.font │ │ └── main.font │ ├── ogg │ │ ├── alarm.ogg │ │ ├── back.ogg │ │ ├── beep.ogg │ │ ├── fail.ogg │ │ ├── jump.ogg │ │ ├── launch.ogg │ │ ├── music-menu.ogg │ │ ├── music.ogg │ │ ├── ping.ogg │ │ ├── rachet.ogg │ │ ├── special.ogg │ │ ├── teleport.ogg │ │ └── tracker.ogg │ └── png │ │ ├── bg-menu.png │ │ ├── bg.png │ │ ├── flame.png │ │ ├── flame_s.png │ │ ├── letters.png │ │ ├── logo.png │ │ ├── panel.png │ │ ├── pixels.png │ │ ├── rocket.png │ │ ├── room.png │ │ ├── smoke.png │ │ ├── splash.png │ │ ├── tiles.png │ │ └── tracker.png ├── game.project ├── game │ ├── core │ │ ├── camera.script │ │ ├── game.camera │ │ ├── game.collection │ │ └── game.tilesource │ ├── gui │ │ ├── game.gui │ │ ├── game.gui_script │ │ ├── gameover.gui │ │ ├── gameover.gui_script │ │ ├── map.gui │ │ ├── map.gui_script │ │ ├── message.gui │ │ ├── message.gui_script │ │ ├── rank.gui │ │ ├── rank.gui_script │ │ ├── shutter.gui │ │ └── shutter.gui_script │ ├── levels │ │ ├── level.script │ │ └── level.tilemap │ ├── objects │ │ ├── exhaust.particlefx │ │ ├── flame.tilesource │ │ ├── flame_s.tilesource │ │ ├── geo.go │ │ ├── geo.script │ │ ├── man.go │ │ ├── man.script │ │ ├── pixel.tilesource │ │ ├── rocket.go │ │ ├── rocket.script │ │ ├── smoke.tilesource │ │ └── teleport.particlefx │ └── player │ │ ├── dust.particlefx │ │ ├── player.go │ │ ├── player.script │ │ ├── tracker.go │ │ ├── tracker.script │ │ └── tracker.tilesource ├── input │ └── game.input_binding ├── main │ ├── data.lua │ ├── handler.script │ ├── main.atlas │ ├── main.collection │ └── ui.lua ├── menu │ ├── bg.gui │ ├── controls.gui │ ├── controls.gui_script │ ├── credits.gui │ ├── credits.gui_script │ ├── letters.tilesource │ ├── menu.collection │ ├── menu.gui │ └── menu.gui_script └── render │ ├── custom.render │ └── custom.render_script ├── Snowline ├── assets │ ├── font │ │ ├── GrapeSoda.ttf │ │ ├── KiwiSoda.ttf │ │ ├── large.font │ │ └── main.font │ ├── ogg │ │ ├── 83050-snowflake.ogg │ │ ├── dlz-flks.ogg │ │ ├── explode.ogg │ │ ├── fireball.ogg │ │ ├── hit.ogg │ │ ├── pickup.ogg │ │ ├── power.ogg │ │ └── shot.ogg │ └── png │ │ ├── 16x16.png │ │ ├── 32x32.png │ │ ├── bg.png │ │ ├── clouds.png │ │ ├── explode.png │ │ ├── hp-bar.png │ │ ├── logo.png │ │ └── splash.png ├── game.project ├── game │ ├── core │ │ ├── camera.script │ │ ├── game.collection │ │ ├── game16.tilesource │ │ ├── game32.tilesource │ │ ├── level.script │ │ └── level.tilemap │ ├── effects │ │ ├── 25.particlefx │ │ ├── 50.particlefx │ │ ├── explode.particlefx │ │ ├── fireball.particlefx │ │ ├── fireball.script │ │ └── fireball.tilesource │ ├── gui │ │ ├── game.gui │ │ ├── game.gui_script │ │ ├── gameover.gui │ │ ├── gameover.gui_script │ │ ├── pause.gui │ │ └── pause.gui_script │ ├── object │ │ ├── cloud.go │ │ ├── cloud.script │ │ ├── clouds.tilesource │ │ ├── snowball-m.go │ │ ├── snowball.go │ │ ├── snowball.script │ │ ├── token.go │ │ └── token.script │ └── player │ │ ├── player.go │ │ ├── player.script │ │ ├── power.go │ │ ├── power.script │ │ ├── shot.go │ │ └── shot.script ├── input │ └── game.input_binding ├── main │ ├── data.lua │ ├── handler.script │ ├── main.atlas │ ├── main.collection │ └── ui.lua ├── menu │ ├── menu.atlas │ ├── menu.collection │ ├── menu.gui │ └── menu.gui_script └── render │ ├── custom.render │ └── custom.render_script ├── StackPack ├── assets │ ├── font │ │ ├── 8-bit-pusab.ttf │ │ ├── large.font │ │ └── main.font │ ├── ogg │ │ ├── Caleb Micklus (DJ Clabe) - Technology.ogg │ │ ├── Inkedsplat - Garuna.ogg │ │ ├── bip.ogg │ │ ├── drop.ogg │ │ ├── pickup.ogg │ │ └── select.ogg │ └── png │ │ ├── banner.png │ │ ├── bg.png │ │ ├── logo.png │ │ ├── map.png │ │ ├── splash.png │ │ └── tiles.png ├── game.project ├── game │ ├── core │ │ ├── camera.script │ │ ├── common.collection │ │ ├── game.camera │ │ ├── game.collection │ │ ├── game.tilesource │ │ └── loader.script │ ├── gui │ │ ├── complete.gui │ │ ├── complete.gui_script │ │ ├── game.gui │ │ ├── game.gui_script │ │ ├── map.atlas │ │ ├── map.script │ │ ├── shutter.gui │ │ └── shutter.gui_script │ ├── levels │ │ ├── level.script │ │ ├── level1.collection │ │ └── level1.tilemap │ ├── object │ │ ├── box.go │ │ ├── box.script │ │ ├── fence.go │ │ └── fence.script │ └── player │ │ ├── player.go │ │ └── player.script ├── input │ └── game.input_binding ├── main │ ├── data.lua │ ├── handler.script │ ├── main.atlas │ ├── main.collection │ └── ui.lua ├── menu │ ├── bg.gui │ ├── controls.gui │ ├── controls.gui_script │ ├── credits.gui │ ├── credits.gui_script │ ├── menu.collection │ ├── menu.gui │ └── menu.gui_script └── render │ ├── custom.render │ └── custom.render_script ├── Star Runner ├── assets │ ├── font │ │ ├── 8-bit-pusab.ttf │ │ ├── large.font │ │ └── main.font │ ├── ogg │ │ ├── blip.ogg │ │ ├── bong.ogg │ │ ├── dink.ogg │ │ ├── hit.ogg │ │ ├── jump.ogg │ │ ├── land.ogg │ │ ├── music.ogg │ │ ├── music_menu.ogg │ │ └── pew.ogg │ └── png │ │ ├── bg.png │ │ ├── door.png │ │ ├── door2.png │ │ ├── inv.png │ │ ├── lift.png │ │ ├── logo.png │ │ ├── map.png │ │ ├── mapbg.png │ │ ├── pixels.png │ │ ├── platform.png │ │ ├── splash.png │ │ └── tiles.png ├── game.project ├── game │ ├── core │ │ ├── camera.script │ │ ├── game.camera │ │ ├── game.collection │ │ ├── game.tilesource │ │ ├── level.script │ │ ├── level.tilemap │ │ └── pixel.tilesource │ ├── enemy │ │ ├── enemy.script │ │ ├── mine.go │ │ └── robot.go │ ├── gui │ │ ├── complete.gui │ │ ├── complete.gui_script │ │ ├── game.gui │ │ ├── game.gui_script │ │ ├── map.gui │ │ ├── map.gui_script │ │ ├── map.tilesource │ │ ├── shutter.gui │ │ └── shutter.gui_script │ ├── objects │ │ ├── door.go │ │ ├── door.script │ │ ├── door2.go │ │ ├── effect.go │ │ ├── effect.script │ │ ├── lift.go │ │ ├── lift.particlefx │ │ ├── lift.script │ │ ├── platform.go │ │ ├── platform.script │ │ └── platform2.go │ └── player │ │ ├── disintegrate.particlefx │ │ ├── dust.particlefx │ │ ├── item.script │ │ ├── player.go │ │ └── player.script ├── input │ └── game.input_binding ├── main │ ├── data.lua │ ├── handler.script │ ├── main.atlas │ └── main.collection ├── menu │ ├── bg.tilemap │ ├── controls.gui │ ├── controls.gui_script │ ├── credits.gui │ ├── credits.gui_script │ ├── menu.camera │ ├── menu.collection │ ├── menu.gui │ ├── menu.gui_script │ └── menu.script └── render │ ├── custom.render │ └── custom.render_script ├── Station Master ├── assets │ ├── font │ │ ├── main.font │ │ ├── pixelfont.ttf │ │ └── small.font │ ├── ogg │ │ ├── click.ogg │ │ ├── hit.ogg │ │ ├── horror.ogg │ │ ├── music.ogg │ │ ├── place.ogg │ │ ├── text.ogg │ │ ├── tick1.ogg │ │ ├── tick2.ogg │ │ ├── tick3.ogg │ │ ├── tick4.ogg │ │ ├── tick5.ogg │ │ ├── tick6.ogg │ │ ├── tick7.ogg │ │ ├── tick8.ogg │ │ └── tick9.ogg │ └── png │ │ ├── arrow.png │ │ ├── bar.png │ │ ├── bg.png │ │ ├── button.png │ │ ├── dash.png │ │ ├── exit.png │ │ ├── eye.png │ │ ├── info.png │ │ ├── pixel.png │ │ ├── splash.png │ │ └── tiles.png ├── custom.html ├── game.project ├── game │ ├── core │ │ ├── eye.tilesource │ │ ├── game.collection │ │ ├── game.tilemap │ │ ├── game.tilesource │ │ ├── scene.script │ │ └── station.script │ ├── effects │ │ ├── create.particlefx │ │ ├── create.script │ │ ├── dust.particlefx │ │ └── vortex.particlefx │ └── gui │ │ ├── arrow.tilesource │ │ ├── button.tilesource │ │ ├── dialogue.gui │ │ ├── dialogue.gui_script │ │ ├── dialogue.lua │ │ ├── end.gui │ │ ├── end.gui_script │ │ ├── exit.gui │ │ ├── exit.gui_script │ │ ├── game.gui │ │ ├── game.gui_script │ │ ├── info.gui │ │ └── info.gui_script ├── input │ └── game.input_binding ├── main │ ├── data.lua │ ├── handler.script │ ├── main.atlas │ └── main.collection └── render │ ├── custom.render │ └── custom.render_script ├── Sub Strike ├── assets │ ├── font │ │ ├── Montara-Gothic.otf │ │ ├── large.font │ │ └── main.font │ ├── ogg │ │ ├── The Eyes of the Oracle.ogg │ │ ├── ambience.ogg │ │ ├── exp1.ogg │ │ ├── exp2.ogg │ │ ├── exp3.ogg │ │ ├── fire.ogg │ │ ├── pickup.ogg │ │ ├── siren.ogg │ │ ├── sonar.ogg │ │ └── splash.ogg │ └── png │ │ ├── bed.png │ │ ├── cloud-l.png │ │ ├── cloud-s.png │ │ ├── explosion.png │ │ ├── holder.png │ │ ├── land-left.png │ │ ├── land-right.png │ │ ├── loading.png │ │ ├── logo.png │ │ ├── pixels.png │ │ ├── seasky.png │ │ ├── splash.png │ │ ├── tiles-small.png │ │ ├── tiles.png │ │ └── vig.png ├── game.project ├── game │ ├── core │ │ ├── bubble.particlefx │ │ ├── game.collection │ │ ├── game.tilesource │ │ ├── pixel.tilesource │ │ ├── sink.particlefx │ │ └── small.tilesource │ ├── effects │ │ ├── effect.go │ │ ├── effect.script │ │ ├── explosion.particlefx │ │ ├── explosion.tilesource │ │ ├── splash.particlefx │ │ └── splash.tilesource │ ├── enemy │ │ ├── enemy.go │ │ ├── enemy.script │ │ ├── mine.go │ │ └── mine.script │ ├── gui │ │ ├── game.gui │ │ ├── game.gui_script │ │ ├── gameover.gui │ │ ├── gameover.gui_script │ │ ├── shutter.gui │ │ └── shutter.gui_script │ ├── level │ │ ├── bed.particlefx │ │ ├── cloud.script │ │ ├── cloud_large.go │ │ ├── cloud_small.go │ │ └── level.script │ └── player │ │ ├── bomb.go │ │ ├── bomb.script │ │ ├── player.go │ │ └── player.script ├── input │ └── game.input_binding ├── main │ ├── data.lua │ ├── handler.script │ ├── main.atlas │ └── main.collection ├── menu │ ├── bed.script │ ├── bg.gui │ ├── controls.gui │ ├── controls.gui_script │ ├── credits.gui │ ├── credits.gui_script │ ├── menu.collection │ ├── menu.gui │ └── menu.gui_script └── render │ ├── custom.render │ └── custom.render_script ├── Timelooper ├── assets │ ├── font │ │ ├── main.font │ │ └── smallest_pixel-7.ttf │ ├── ogg │ │ ├── adcontest.ogg │ │ ├── chime.ogg │ │ ├── clear.ogg │ │ ├── door.ogg │ │ ├── explode.ogg │ │ ├── jump.ogg │ │ ├── pickup.ogg │ │ ├── switch.ogg │ │ ├── tele.ogg │ │ └── tick.ogg │ └── png │ │ ├── bg.png │ │ ├── clock.png │ │ ├── col.png │ │ ├── defold.png │ │ ├── hand-long.png │ │ ├── hand-short.png │ │ ├── logo.png │ │ ├── smoke.png │ │ ├── splash.png │ │ ├── tiles.png │ │ └── tiles48.png ├── game.project ├── game │ ├── core │ │ ├── common.collection │ │ ├── game.tilesource │ │ ├── game48.tilesource │ │ └── loader.script │ ├── gui │ │ ├── complete.gui │ │ ├── complete.gui_script │ │ ├── game.gui │ │ ├── game.gui_script │ │ ├── pause.gui │ │ ├── pause.gui_script │ │ ├── shutter.gui │ │ └── shutter.gui_script │ ├── levels │ │ ├── level.script │ │ ├── level1.collection │ │ ├── level1.tilemap │ │ ├── level2.collection │ │ ├── level2.tilemap │ │ ├── level3.collection │ │ ├── level3.tilemap │ │ ├── level4.collection │ │ ├── level4.tilemap │ │ ├── level5.collection │ │ ├── level5.tilemap │ │ ├── level6.collection │ │ └── level6.tilemap │ ├── object │ │ ├── button.go │ │ ├── button.script │ │ ├── door.go │ │ ├── door.script │ │ ├── exit.go │ │ ├── exit.particlefx │ │ ├── exit.script │ │ ├── gem.go │ │ ├── gem.script │ │ ├── rsj.go │ │ └── rsj.script │ └── player │ │ ├── explode.particlefx │ │ ├── past.go │ │ ├── past.script │ │ ├── player.go │ │ ├── player.script │ │ ├── smoke.particlefx │ │ └── smoke.tilesource ├── main │ ├── custom.render │ ├── custom.render_script │ ├── data.lua │ ├── game.collection │ ├── game.input_binding │ ├── handler.script │ ├── main.atlas │ ├── main.collection │ └── ui.lua └── menu │ ├── bg.gui │ ├── bg.gui_script │ ├── controls.gui │ ├── controls.gui_script │ ├── credits.gui │ ├── credits.gui_script │ ├── menu.collection │ ├── menu.gui │ └── menu.gui_script ├── Typhoon Ballooon ├── assets │ ├── font │ │ ├── Daydream.ttf │ │ └── main.font │ ├── ogg │ │ ├── burn.ogg │ │ ├── explode.ogg │ │ ├── pickup.ogg │ │ └── seppe_-_breeze.ogg │ └── png │ │ ├── bg.png │ │ ├── logo.png │ │ ├── pixel.png │ │ ├── player.png │ │ ├── splash.png │ │ └── tiles.png ├── game.project ├── game │ ├── core │ │ ├── bg.go │ │ ├── bg.script │ │ ├── camera.script │ │ ├── core.atlas │ │ ├── game.camera │ │ ├── game.collection │ │ ├── game.tilesource │ │ └── pixel.tilesource │ ├── gui │ │ ├── complete.gui │ │ ├── complete.gui_script │ │ ├── game.gui │ │ ├── game.gui_script │ │ ├── gameover.gui │ │ ├── gameover.gui_script │ │ ├── pause.gui │ │ ├── pause.gui_script │ │ ├── shutter.gui │ │ └── shutter.gui_script │ ├── levels │ │ ├── level.script │ │ └── level.tilemap │ ├── object │ │ ├── checkpoint.go │ │ ├── checkpoint.script │ │ ├── wind.go │ │ ├── wind.particlefx │ │ └── wind.script │ └── player │ │ ├── player.go │ │ ├── player.script │ │ └── player.tilesource ├── input │ └── game.input_binding ├── main │ ├── data.lua │ ├── handler.script │ ├── main.collection │ └── ui.lua ├── menu │ ├── bg.gui │ ├── controls.gui │ ├── controls.gui_script │ ├── credits.gui │ ├── credits.gui_script │ ├── menu.atlas │ ├── menu.collection │ ├── menu.gui │ └── menu.gui_script └── render │ ├── custom.render │ └── custom.render_script ├── Unit 4 ├── assets │ ├── font │ │ ├── EXEPixelPerfect.ttf │ │ ├── large.font │ │ └── main.font │ ├── ogg │ │ ├── beep.ogg │ │ ├── bomb.ogg │ │ ├── chirp.ogg │ │ ├── freeze.ogg │ │ ├── gameover.ogg │ │ ├── heal.ogg │ │ ├── hit1.ogg │ │ ├── hit2.ogg │ │ ├── hit3.ogg │ │ ├── music.ogg │ │ ├── pickup.ogg │ │ ├── step.ogg │ │ ├── strong.ogg │ │ └── teleport.ogg │ └── png │ │ ├── dialog.png │ │ ├── dialog_large.png │ │ ├── explosion.png │ │ ├── logo.png │ │ ├── menu.png │ │ ├── panel.png │ │ ├── pixel.png │ │ ├── pixel_red.png │ │ ├── splash.png │ │ └── tiles.png ├── custom.html ├── game.project ├── game │ ├── core │ │ ├── common.collection │ │ ├── game.collection │ │ ├── loader.script │ │ └── tiles.tilesource │ ├── enemy │ │ ├── enemy.go │ │ ├── enemy.lua │ │ ├── enemy.script │ │ └── handler.script │ ├── fx │ │ ├── exit.go │ │ ├── exit.script │ │ ├── explode.particlefx │ │ ├── explode.tilesource │ │ ├── fx.go │ │ ├── fx.script │ │ ├── handler.script │ │ ├── hit.particlefx │ │ ├── tele_in.particlefx │ │ └── tele_out.particlefx │ ├── gui │ │ ├── complete.gui │ │ ├── complete.gui_script │ │ ├── game.gui │ │ ├── game.gui_script │ │ ├── gameover.gui │ │ ├── gameover.gui_script │ │ ├── shutter.gui │ │ └── shutter.gui_script │ ├── levels │ │ ├── level.collection │ │ ├── level.script │ │ └── level.tilemap │ └── player │ │ ├── bubbles.particlefx │ │ ├── explode.particlefx │ │ ├── player.go │ │ ├── player.script │ │ └── strong.particlefx ├── input │ └── game.input_binding ├── main │ ├── data.lua │ ├── handler.script │ ├── main.atlas │ └── main.collection ├── menu │ ├── bg.tilemap │ ├── controls.gui │ ├── controls.gui_script │ ├── credits.gui │ ├── credits.gui_script │ ├── intro.gui │ ├── intro.gui_script │ ├── menu.collection │ ├── menu.gui │ └── menu.gui_script └── render │ ├── custom.render │ └── custom.render_script └── Urban Climber ├── assets ├── font │ ├── PressStart2P-vaV7.ttf │ ├── digi.font │ ├── digitalix.ttf │ └── main.font ├── ogg │ ├── beep.ogg │ ├── clear.ogg │ ├── fail.ogg │ ├── heli.ogg │ ├── pop.ogg │ ├── racer1.ogg │ ├── smash.ogg │ ├── splat.ogg │ └── throw.ogg └── png │ ├── bg.png │ ├── bg2.png │ ├── blade.png │ ├── circle.png │ ├── climb.png │ ├── defold.png │ ├── heli.png │ ├── logo.png │ ├── pixel.png │ ├── splash.png │ ├── tiles.png │ └── tiles24.png ├── game.project ├── game ├── core │ ├── 24.tilesource │ ├── bg.script │ ├── camera.script │ ├── game.camera │ ├── game.collection │ ├── game.tilesource │ └── pixel.tilesource ├── effects │ ├── effect.go │ ├── effect.script │ ├── explode.particlefx │ └── smash.particlefx ├── gui │ ├── clear.gui │ ├── clear.gui_script │ ├── game.gui │ ├── game.gui_script │ ├── gameover.gui │ ├── gameover.gui_script │ ├── pause.gui │ ├── pause.gui_script │ ├── shutter.gui │ └── shutter.gui_script ├── levels │ ├── level.script │ └── level.tilemap ├── object │ ├── bird.go │ ├── bird.script │ ├── blade.tilesource │ ├── dropper.go │ ├── dropper.script │ ├── egg.go │ ├── egg.script │ ├── heli.go │ ├── heli.script │ ├── item.go │ └── item.script └── player │ ├── player.go │ └── player.script ├── input └── game.input_binding ├── main ├── data.lua ├── handler.script ├── main.atlas ├── main.collection └── ui.lua ├── menu ├── bg.gui ├── bg.gui_script ├── controls.gui ├── controls.gui_script ├── credits.gui ├── credits.gui_script ├── menu.collection ├── menu.gui └── menu.gui_script └── render ├── custom.render └── custom.render_script /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/.gitattributes -------------------------------------------------------------------------------- /Alpha Squirrel/game.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Alpha Squirrel/game.project -------------------------------------------------------------------------------- /Alpha Squirrel/main/data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Alpha Squirrel/main/data.lua -------------------------------------------------------------------------------- /Alpha Squirrel/main/main.atlas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Alpha Squirrel/main/main.atlas -------------------------------------------------------------------------------- /Alpha Squirrel/main/ui.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Alpha Squirrel/main/ui.lua -------------------------------------------------------------------------------- /Alpha Squirrel/menu/bg.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Alpha Squirrel/menu/bg.gui -------------------------------------------------------------------------------- /Alpha Squirrel/menu/credits.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Alpha Squirrel/menu/credits.gui -------------------------------------------------------------------------------- /Alpha Squirrel/menu/menu.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Alpha Squirrel/menu/menu.gui -------------------------------------------------------------------------------- /Bomb Frog/assets/font/main.font: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Bomb Frog/assets/font/main.font -------------------------------------------------------------------------------- /Bomb Frog/assets/ogg/death.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Bomb Frog/assets/ogg/death.ogg -------------------------------------------------------------------------------- /Bomb Frog/assets/ogg/exp.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Bomb Frog/assets/ogg/exp.ogg -------------------------------------------------------------------------------- /Bomb Frog/assets/ogg/fuse.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Bomb Frog/assets/ogg/fuse.ogg -------------------------------------------------------------------------------- /Bomb Frog/assets/ogg/heart.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Bomb Frog/assets/ogg/heart.ogg -------------------------------------------------------------------------------- /Bomb Frog/assets/ogg/hit.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Bomb Frog/assets/ogg/hit.ogg -------------------------------------------------------------------------------- /Bomb Frog/assets/ogg/jump.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Bomb Frog/assets/ogg/jump.ogg -------------------------------------------------------------------------------- /Bomb Frog/assets/ogg/no.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Bomb Frog/assets/ogg/no.ogg -------------------------------------------------------------------------------- /Bomb Frog/assets/ogg/pickup.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Bomb Frog/assets/ogg/pickup.ogg -------------------------------------------------------------------------------- /Bomb Frog/assets/png/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Bomb Frog/assets/png/bg.png -------------------------------------------------------------------------------- /Bomb Frog/assets/png/bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Bomb Frog/assets/png/bg2.png -------------------------------------------------------------------------------- /Bomb Frog/assets/png/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Bomb Frog/assets/png/icon.png -------------------------------------------------------------------------------- /Bomb Frog/assets/png/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Bomb Frog/assets/png/logo.png -------------------------------------------------------------------------------- /Bomb Frog/assets/png/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Bomb Frog/assets/png/splash.png -------------------------------------------------------------------------------- /Bomb Frog/assets/png/tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Bomb Frog/assets/png/tiles.png -------------------------------------------------------------------------------- /Bomb Frog/game.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Bomb Frog/game.project -------------------------------------------------------------------------------- /Bomb Frog/game/core/game.camera: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Bomb Frog/game/core/game.camera -------------------------------------------------------------------------------- /Bomb Frog/game/enemy/ghost.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Bomb Frog/game/enemy/ghost.go -------------------------------------------------------------------------------- /Bomb Frog/game/gui/clear.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Bomb Frog/game/gui/clear.gui -------------------------------------------------------------------------------- /Bomb Frog/game/gui/complete.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Bomb Frog/game/gui/complete.gui -------------------------------------------------------------------------------- /Bomb Frog/game/gui/game.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Bomb Frog/game/gui/game.gui -------------------------------------------------------------------------------- /Bomb Frog/game/gui/gameover.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Bomb Frog/game/gui/gameover.gui -------------------------------------------------------------------------------- /Bomb Frog/game/gui/getready.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Bomb Frog/game/gui/getready.gui -------------------------------------------------------------------------------- /Bomb Frog/game/gui/shutter.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Bomb Frog/game/gui/shutter.gui -------------------------------------------------------------------------------- /Bomb Frog/game/objects/bomb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Bomb Frog/game/objects/bomb.go -------------------------------------------------------------------------------- /Bomb Frog/game/player/player.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Bomb Frog/game/player/player.go -------------------------------------------------------------------------------- /Bomb Frog/main/data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Bomb Frog/main/data.lua -------------------------------------------------------------------------------- /Bomb Frog/main/handler.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Bomb Frog/main/handler.script -------------------------------------------------------------------------------- /Bomb Frog/main/main.atlas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Bomb Frog/main/main.atlas -------------------------------------------------------------------------------- /Bomb Frog/main/main.collection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Bomb Frog/main/main.collection -------------------------------------------------------------------------------- /Bomb Frog/menu/controls.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Bomb Frog/menu/controls.gui -------------------------------------------------------------------------------- /Bomb Frog/menu/credits.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Bomb Frog/menu/credits.gui -------------------------------------------------------------------------------- /Bomb Frog/menu/menu.collection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Bomb Frog/menu/menu.collection -------------------------------------------------------------------------------- /Bomb Frog/menu/menu.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Bomb Frog/menu/menu.gui -------------------------------------------------------------------------------- /Bomb Frog/menu/menu.gui_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Bomb Frog/menu/menu.gui_script -------------------------------------------------------------------------------- /Bomb Frog/render/custom.render: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Bomb Frog/render/custom.render -------------------------------------------------------------------------------- /Crystal Caverns 2/game.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Crystal Caverns 2/game.project -------------------------------------------------------------------------------- /Crystal Caverns 2/game/enemy/toxic.script: -------------------------------------------------------------------------------- 1 | function init(self) 2 | particlefx.play("#pfx") 3 | end 4 | 5 | -------------------------------------------------------------------------------- /Crystal Caverns 2/main/data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Crystal Caverns 2/main/data.lua -------------------------------------------------------------------------------- /Crystal Caverns 2/menu/bg.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Crystal Caverns 2/menu/bg.gui -------------------------------------------------------------------------------- /Crystal Caverns 2/menu/menu.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Crystal Caverns 2/menu/menu.gui -------------------------------------------------------------------------------- /Defrog/assets/font/main.font: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Defrog/assets/font/main.font -------------------------------------------------------------------------------- /Defrog/assets/font/small.font: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Defrog/assets/font/small.font -------------------------------------------------------------------------------- /Defrog/assets/ogg/dead.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Defrog/assets/ogg/dead.ogg -------------------------------------------------------------------------------- /Defrog/assets/ogg/gameover.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Defrog/assets/ogg/gameover.ogg -------------------------------------------------------------------------------- /Defrog/assets/ogg/home.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Defrog/assets/ogg/home.ogg -------------------------------------------------------------------------------- /Defrog/assets/ogg/hop.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Defrog/assets/ogg/hop.ogg -------------------------------------------------------------------------------- /Defrog/assets/png/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Defrog/assets/png/logo.png -------------------------------------------------------------------------------- /Defrog/assets/png/pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Defrog/assets/png/pixel.png -------------------------------------------------------------------------------- /Defrog/assets/png/sine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Defrog/assets/png/sine.png -------------------------------------------------------------------------------- /Defrog/assets/png/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Defrog/assets/png/splash.png -------------------------------------------------------------------------------- /Defrog/assets/png/tile-coll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Defrog/assets/png/tile-coll.png -------------------------------------------------------------------------------- /Defrog/assets/png/tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Defrog/assets/png/tiles.png -------------------------------------------------------------------------------- /Defrog/game.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Defrog/game.project -------------------------------------------------------------------------------- /Defrog/game/core/level.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Defrog/game/core/level.script -------------------------------------------------------------------------------- /Defrog/game/core/level.tilemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Defrog/game/core/level.tilemap -------------------------------------------------------------------------------- /Defrog/game/gui/clear.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Defrog/game/gui/clear.gui -------------------------------------------------------------------------------- /Defrog/game/gui/game.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Defrog/game/gui/game.gui -------------------------------------------------------------------------------- /Defrog/game/gui/game.gui_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Defrog/game/gui/game.gui_script -------------------------------------------------------------------------------- /Defrog/game/gui/gameover.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Defrog/game/gui/gameover.gui -------------------------------------------------------------------------------- /Defrog/game/gui/pause.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Defrog/game/gui/pause.gui -------------------------------------------------------------------------------- /Defrog/game/gui/shutter.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Defrog/game/gui/shutter.gui -------------------------------------------------------------------------------- /Defrog/game/object/car.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Defrog/game/object/car.go -------------------------------------------------------------------------------- /Defrog/game/object/croc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Defrog/game/object/croc.go -------------------------------------------------------------------------------- /Defrog/game/object/croc.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Defrog/game/object/croc.script -------------------------------------------------------------------------------- /Defrog/game/object/crochead.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Defrog/game/object/crochead.go -------------------------------------------------------------------------------- /Defrog/game/object/fly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Defrog/game/object/fly.go -------------------------------------------------------------------------------- /Defrog/game/object/fly.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Defrog/game/object/fly.script -------------------------------------------------------------------------------- /Defrog/game/object/home.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Defrog/game/object/home.go -------------------------------------------------------------------------------- /Defrog/game/object/home.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Defrog/game/object/home.script -------------------------------------------------------------------------------- /Defrog/game/object/log-l.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Defrog/game/object/log-l.go -------------------------------------------------------------------------------- /Defrog/game/object/log-m.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Defrog/game/object/log-m.go -------------------------------------------------------------------------------- /Defrog/game/object/log-s.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Defrog/game/object/log-s.go -------------------------------------------------------------------------------- /Defrog/game/object/lorry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Defrog/game/object/lorry.go -------------------------------------------------------------------------------- /Defrog/game/object/move.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Defrog/game/object/move.script -------------------------------------------------------------------------------- /Defrog/game/object/otter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Defrog/game/object/otter.go -------------------------------------------------------------------------------- /Defrog/game/object/otter.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Defrog/game/object/otter.script -------------------------------------------------------------------------------- /Defrog/game/object/snake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Defrog/game/object/snake.go -------------------------------------------------------------------------------- /Defrog/game/object/snake.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Defrog/game/object/snake.script -------------------------------------------------------------------------------- /Defrog/game/object/turtle-2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Defrog/game/object/turtle-2.go -------------------------------------------------------------------------------- /Defrog/game/object/turtle-3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Defrog/game/object/turtle-3.go -------------------------------------------------------------------------------- /Defrog/game/player/player.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Defrog/game/player/player.go -------------------------------------------------------------------------------- /Defrog/generated.appmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Defrog/generated.appmanifest -------------------------------------------------------------------------------- /Defrog/main/custom.render: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Defrog/main/custom.render -------------------------------------------------------------------------------- /Defrog/main/data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Defrog/main/data.lua -------------------------------------------------------------------------------- /Defrog/main/game.input_binding: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Defrog/main/game.input_binding -------------------------------------------------------------------------------- /Defrog/main/handler.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Defrog/main/handler.script -------------------------------------------------------------------------------- /Defrog/main/main.atlas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Defrog/main/main.atlas -------------------------------------------------------------------------------- /Defrog/main/main.collection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Defrog/main/main.collection -------------------------------------------------------------------------------- /Defrog/main/ui.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Defrog/main/ui.lua -------------------------------------------------------------------------------- /Defrog/menu/bg.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Defrog/menu/bg.gui -------------------------------------------------------------------------------- /Defrog/menu/bg.gui_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Defrog/menu/bg.gui_script -------------------------------------------------------------------------------- /Defrog/menu/controls.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Defrog/menu/controls.gui -------------------------------------------------------------------------------- /Defrog/menu/controls.gui_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Defrog/menu/controls.gui_script -------------------------------------------------------------------------------- /Defrog/menu/info.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Defrog/menu/info.gui -------------------------------------------------------------------------------- /Defrog/menu/info.gui_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Defrog/menu/info.gui_script -------------------------------------------------------------------------------- /Defrog/menu/menu.collection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Defrog/menu/menu.collection -------------------------------------------------------------------------------- /Defrog/menu/menu.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Defrog/menu/menu.gui -------------------------------------------------------------------------------- /Defrog/menu/menu.gui_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Defrog/menu/menu.gui_script -------------------------------------------------------------------------------- /Driller 2/assets/font/main.font: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller 2/assets/font/main.font -------------------------------------------------------------------------------- /Driller 2/assets/ogg/clear.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller 2/assets/ogg/clear.ogg -------------------------------------------------------------------------------- /Driller 2/assets/ogg/damage.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller 2/assets/ogg/damage.ogg -------------------------------------------------------------------------------- /Driller 2/assets/ogg/heart.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller 2/assets/ogg/heart.ogg -------------------------------------------------------------------------------- /Driller 2/assets/ogg/no.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller 2/assets/ogg/no.ogg -------------------------------------------------------------------------------- /Driller 2/assets/ogg/pickup.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller 2/assets/ogg/pickup.ogg -------------------------------------------------------------------------------- /Driller 2/assets/ogg/rewind.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller 2/assets/ogg/rewind.ogg -------------------------------------------------------------------------------- /Driller 2/assets/ogg/snap.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller 2/assets/ogg/snap.ogg -------------------------------------------------------------------------------- /Driller 2/assets/ogg/tick.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller 2/assets/ogg/tick.ogg -------------------------------------------------------------------------------- /Driller 2/assets/png/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller 2/assets/png/arrow.png -------------------------------------------------------------------------------- /Driller 2/assets/png/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller 2/assets/png/bg.png -------------------------------------------------------------------------------- /Driller 2/assets/png/bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller 2/assets/png/bg2.png -------------------------------------------------------------------------------- /Driller 2/assets/png/blast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller 2/assets/png/blast.png -------------------------------------------------------------------------------- /Driller 2/assets/png/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller 2/assets/png/logo.png -------------------------------------------------------------------------------- /Driller 2/assets/png/pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller 2/assets/png/pixel.png -------------------------------------------------------------------------------- /Driller 2/assets/png/smoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller 2/assets/png/smoke.png -------------------------------------------------------------------------------- /Driller 2/assets/png/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller 2/assets/png/splash.png -------------------------------------------------------------------------------- /Driller 2/assets/png/tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller 2/assets/png/tiles.png -------------------------------------------------------------------------------- /Driller 2/game.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller 2/game.project -------------------------------------------------------------------------------- /Driller 2/game/enemy/enemy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller 2/game/enemy/enemy.go -------------------------------------------------------------------------------- /Driller 2/game/gui/clear.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller 2/game/gui/clear.gui -------------------------------------------------------------------------------- /Driller 2/game/gui/complete.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller 2/game/gui/complete.gui -------------------------------------------------------------------------------- /Driller 2/game/gui/game.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller 2/game/gui/game.gui -------------------------------------------------------------------------------- /Driller 2/game/gui/gameover.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller 2/game/gui/gameover.gui -------------------------------------------------------------------------------- /Driller 2/game/gui/tutorial.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller 2/game/gui/tutorial.gui -------------------------------------------------------------------------------- /Driller 2/game/player/player.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller 2/game/player/player.go -------------------------------------------------------------------------------- /Driller 2/main/data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller 2/main/data.lua -------------------------------------------------------------------------------- /Driller 2/main/handler.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller 2/main/handler.script -------------------------------------------------------------------------------- /Driller 2/main/main.atlas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller 2/main/main.atlas -------------------------------------------------------------------------------- /Driller 2/main/main.collection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller 2/main/main.collection -------------------------------------------------------------------------------- /Driller 2/main/shutter.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller 2/main/shutter.gui -------------------------------------------------------------------------------- /Driller 2/menu/bg.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller 2/menu/bg.gui -------------------------------------------------------------------------------- /Driller 2/menu/controls.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller 2/menu/controls.gui -------------------------------------------------------------------------------- /Driller 2/menu/credits.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller 2/menu/credits.gui -------------------------------------------------------------------------------- /Driller 2/menu/menu.collection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller 2/menu/menu.collection -------------------------------------------------------------------------------- /Driller 2/menu/menu.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller 2/menu/menu.gui -------------------------------------------------------------------------------- /Driller 2/menu/menu.gui_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller 2/menu/menu.gui_script -------------------------------------------------------------------------------- /Driller 2/render/custom.render: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller 2/render/custom.render -------------------------------------------------------------------------------- /Driller/assets/font/large.font: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller/assets/font/large.font -------------------------------------------------------------------------------- /Driller/assets/font/main.font: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller/assets/font/main.font -------------------------------------------------------------------------------- /Driller/assets/ogg/clear.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller/assets/ogg/clear.ogg -------------------------------------------------------------------------------- /Driller/assets/ogg/damage.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller/assets/ogg/damage.ogg -------------------------------------------------------------------------------- /Driller/assets/ogg/eat.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller/assets/ogg/eat.ogg -------------------------------------------------------------------------------- /Driller/assets/ogg/gameover.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller/assets/ogg/gameover.ogg -------------------------------------------------------------------------------- /Driller/assets/ogg/music.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller/assets/ogg/music.ogg -------------------------------------------------------------------------------- /Driller/assets/ogg/rewind.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller/assets/ogg/rewind.ogg -------------------------------------------------------------------------------- /Driller/assets/ogg/snap.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller/assets/ogg/snap.ogg -------------------------------------------------------------------------------- /Driller/assets/png/burst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller/assets/png/burst.png -------------------------------------------------------------------------------- /Driller/assets/png/dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller/assets/png/dialog.png -------------------------------------------------------------------------------- /Driller/assets/png/enemies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller/assets/png/enemies.png -------------------------------------------------------------------------------- /Driller/assets/png/guibg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller/assets/png/guibg.png -------------------------------------------------------------------------------- /Driller/assets/png/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller/assets/png/key.png -------------------------------------------------------------------------------- /Driller/assets/png/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller/assets/png/logo.png -------------------------------------------------------------------------------- /Driller/assets/png/pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller/assets/png/pixel.png -------------------------------------------------------------------------------- /Driller/assets/png/space.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller/assets/png/space.png -------------------------------------------------------------------------------- /Driller/assets/png/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller/assets/png/splash.png -------------------------------------------------------------------------------- /Driller/assets/png/tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller/assets/png/tiles.png -------------------------------------------------------------------------------- /Driller/assets/png/tutorial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller/assets/png/tutorial.png -------------------------------------------------------------------------------- /Driller/game.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller/game.project -------------------------------------------------------------------------------- /Driller/game/core/loader.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller/game/core/loader.script -------------------------------------------------------------------------------- /Driller/game/enemy/enemy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller/game/enemy/enemy.go -------------------------------------------------------------------------------- /Driller/game/enemy/enemy.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller/game/enemy/enemy.script -------------------------------------------------------------------------------- /Driller/game/enemy/spawner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller/game/enemy/spawner.go -------------------------------------------------------------------------------- /Driller/game/gui/complete.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller/game/gui/complete.gui -------------------------------------------------------------------------------- /Driller/game/gui/game.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller/game/gui/game.gui -------------------------------------------------------------------------------- /Driller/game/gui/gameover.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller/game/gui/gameover.gui -------------------------------------------------------------------------------- /Driller/game/gui/levelclear.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller/game/gui/levelclear.gui -------------------------------------------------------------------------------- /Driller/game/gui/shutter.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller/game/gui/shutter.gui -------------------------------------------------------------------------------- /Driller/game/gui/tutorial.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller/game/gui/tutorial.gui -------------------------------------------------------------------------------- /Driller/game/player/player.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller/game/player/player.go -------------------------------------------------------------------------------- /Driller/main/data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller/main/data.lua -------------------------------------------------------------------------------- /Driller/main/handler.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller/main/handler.script -------------------------------------------------------------------------------- /Driller/main/main.atlas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller/main/main.atlas -------------------------------------------------------------------------------- /Driller/main/main.collection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller/main/main.collection -------------------------------------------------------------------------------- /Driller/menu/controls.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller/menu/controls.gui -------------------------------------------------------------------------------- /Driller/menu/credits.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller/menu/credits.gui -------------------------------------------------------------------------------- /Driller/menu/credits.gui_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller/menu/credits.gui_script -------------------------------------------------------------------------------- /Driller/menu/menu.collection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller/menu/menu.collection -------------------------------------------------------------------------------- /Driller/menu/menu.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller/menu/menu.gui -------------------------------------------------------------------------------- /Driller/menu/menu.gui_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller/menu/menu.gui_script -------------------------------------------------------------------------------- /Driller/render/custom.render: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Driller/render/custom.render -------------------------------------------------------------------------------- /Escape from Mars/custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Escape from Mars/custom.html -------------------------------------------------------------------------------- /Escape from Mars/game.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Escape from Mars/game.project -------------------------------------------------------------------------------- /Escape from Mars/game/fx/fan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Escape from Mars/game/fx/fan.go -------------------------------------------------------------------------------- /Escape from Mars/game/fx/fx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Escape from Mars/game/fx/fx.go -------------------------------------------------------------------------------- /Escape from Mars/game/fx/gas.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Escape from Mars/game/fx/gas.go -------------------------------------------------------------------------------- /Escape from Mars/main/data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Escape from Mars/main/data.lua -------------------------------------------------------------------------------- /Escape from Mars/menu/bg.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Escape from Mars/menu/bg.script -------------------------------------------------------------------------------- /Escape from Mars/menu/menu.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Escape from Mars/menu/menu.gui -------------------------------------------------------------------------------- /Exolon/assets/font/main.font: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/assets/font/main.font -------------------------------------------------------------------------------- /Exolon/assets/ogg/chime1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/assets/ogg/chime1.ogg -------------------------------------------------------------------------------- /Exolon/assets/ogg/chime2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/assets/ogg/chime2.ogg -------------------------------------------------------------------------------- /Exolon/assets/ogg/exp1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/assets/ogg/exp1.ogg -------------------------------------------------------------------------------- /Exolon/assets/ogg/exp2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/assets/ogg/exp2.ogg -------------------------------------------------------------------------------- /Exolon/assets/ogg/exp3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/assets/ogg/exp3.ogg -------------------------------------------------------------------------------- /Exolon/assets/ogg/exp4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/assets/ogg/exp4.ogg -------------------------------------------------------------------------------- /Exolon/assets/ogg/powerup.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/assets/ogg/powerup.ogg -------------------------------------------------------------------------------- /Exolon/assets/ogg/shot.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/assets/ogg/shot.ogg -------------------------------------------------------------------------------- /Exolon/assets/ogg/shot2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/assets/ogg/shot2.ogg -------------------------------------------------------------------------------- /Exolon/assets/ogg/teleport.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/assets/ogg/teleport.ogg -------------------------------------------------------------------------------- /Exolon/assets/ogg/theme.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/assets/ogg/theme.ogg -------------------------------------------------------------------------------- /Exolon/assets/ogg/throw.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/assets/ogg/throw.ogg -------------------------------------------------------------------------------- /Exolon/assets/ogg/tick.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/assets/ogg/tick.ogg -------------------------------------------------------------------------------- /Exolon/assets/png/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/assets/png/bg.png -------------------------------------------------------------------------------- /Exolon/assets/png/exp-tiny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/assets/png/exp-tiny.png -------------------------------------------------------------------------------- /Exolon/assets/png/exp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/assets/png/exp.png -------------------------------------------------------------------------------- /Exolon/assets/png/firetrail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/assets/png/firetrail.png -------------------------------------------------------------------------------- /Exolon/assets/png/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/assets/png/logo.png -------------------------------------------------------------------------------- /Exolon/assets/png/obj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/assets/png/obj.png -------------------------------------------------------------------------------- /Exolon/assets/png/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/assets/png/player.png -------------------------------------------------------------------------------- /Exolon/assets/png/ship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/assets/png/ship.png -------------------------------------------------------------------------------- /Exolon/assets/png/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/assets/png/splash.png -------------------------------------------------------------------------------- /Exolon/assets/png/tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/assets/png/tiles.png -------------------------------------------------------------------------------- /Exolon/game.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/game.project -------------------------------------------------------------------------------- /Exolon/game/core/core.atlas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/game/core/core.atlas -------------------------------------------------------------------------------- /Exolon/game/core/loader.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/game/core/loader.script -------------------------------------------------------------------------------- /Exolon/game/core/obj.tilesource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/game/core/obj.tilesource -------------------------------------------------------------------------------- /Exolon/game/core/screen.tilemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/game/core/screen.tilemap -------------------------------------------------------------------------------- /Exolon/game/effects/effect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/game/effects/effect.go -------------------------------------------------------------------------------- /Exolon/game/gui/clear.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/game/gui/clear.gui -------------------------------------------------------------------------------- /Exolon/game/gui/complete.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/game/gui/complete.gui -------------------------------------------------------------------------------- /Exolon/game/gui/game.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/game/gui/game.gui -------------------------------------------------------------------------------- /Exolon/game/gui/game.gui_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/game/gui/game.gui_script -------------------------------------------------------------------------------- /Exolon/game/gui/pause.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/game/gui/pause.gui -------------------------------------------------------------------------------- /Exolon/game/gui/shutter.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/game/gui/shutter.gui -------------------------------------------------------------------------------- /Exolon/game/levels/level.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/game/levels/level.script -------------------------------------------------------------------------------- /Exolon/game/object/alien.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/game/object/alien.go -------------------------------------------------------------------------------- /Exolon/game/object/alien.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/game/object/alien.script -------------------------------------------------------------------------------- /Exolon/game/object/arc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/game/object/arc.go -------------------------------------------------------------------------------- /Exolon/game/object/arc.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/game/object/arc.script -------------------------------------------------------------------------------- /Exolon/game/object/beam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/game/object/beam.go -------------------------------------------------------------------------------- /Exolon/game/object/beam.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/game/object/beam.script -------------------------------------------------------------------------------- /Exolon/game/object/bigblob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/game/object/bigblob.go -------------------------------------------------------------------------------- /Exolon/game/object/blob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/game/object/blob.go -------------------------------------------------------------------------------- /Exolon/game/object/blob.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/game/object/blob.script -------------------------------------------------------------------------------- /Exolon/game/object/cannon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/game/object/cannon.go -------------------------------------------------------------------------------- /Exolon/game/object/changer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/game/object/changer.go -------------------------------------------------------------------------------- /Exolon/game/object/flame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/game/object/flame.go -------------------------------------------------------------------------------- /Exolon/game/object/globe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/game/object/globe.go -------------------------------------------------------------------------------- /Exolon/game/object/globe.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/game/object/globe.script -------------------------------------------------------------------------------- /Exolon/game/object/jelly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/game/object/jelly.go -------------------------------------------------------------------------------- /Exolon/game/object/jelly.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/game/object/jelly.script -------------------------------------------------------------------------------- /Exolon/game/object/launcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/game/object/launcher.go -------------------------------------------------------------------------------- /Exolon/game/object/light.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/game/object/light.go -------------------------------------------------------------------------------- /Exolon/game/object/missile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/game/object/missile.go -------------------------------------------------------------------------------- /Exolon/game/object/obj.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/game/object/obj.lua -------------------------------------------------------------------------------- /Exolon/game/object/orb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/game/object/orb.go -------------------------------------------------------------------------------- /Exolon/game/object/orb.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/game/object/orb.script -------------------------------------------------------------------------------- /Exolon/game/object/plane.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/game/object/plane.go -------------------------------------------------------------------------------- /Exolon/game/object/plane.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/game/object/plane.script -------------------------------------------------------------------------------- /Exolon/game/object/rocket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/game/object/rocket.go -------------------------------------------------------------------------------- /Exolon/game/object/ship.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/game/object/ship.go -------------------------------------------------------------------------------- /Exolon/game/object/ship.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/game/object/ship.script -------------------------------------------------------------------------------- /Exolon/game/object/shot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/game/object/shot.go -------------------------------------------------------------------------------- /Exolon/game/object/shot.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/game/object/shot.script -------------------------------------------------------------------------------- /Exolon/game/object/solid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/game/object/solid.go -------------------------------------------------------------------------------- /Exolon/game/object/solid.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/game/object/solid.script -------------------------------------------------------------------------------- /Exolon/game/object/spawner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/game/object/spawner.go -------------------------------------------------------------------------------- /Exolon/game/object/tank.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/game/object/tank.go -------------------------------------------------------------------------------- /Exolon/game/object/tank.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/game/object/tank.script -------------------------------------------------------------------------------- /Exolon/game/object/tele.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/game/object/tele.go -------------------------------------------------------------------------------- /Exolon/game/object/tele.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/game/object/tele.script -------------------------------------------------------------------------------- /Exolon/game/object/trap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/game/object/trap.go -------------------------------------------------------------------------------- /Exolon/game/object/trap.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/game/object/trap.script -------------------------------------------------------------------------------- /Exolon/game/player/bomb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/game/player/bomb.go -------------------------------------------------------------------------------- /Exolon/game/player/bomb.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/game/player/bomb.script -------------------------------------------------------------------------------- /Exolon/game/player/laser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/game/player/laser.go -------------------------------------------------------------------------------- /Exolon/game/player/laser.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/game/player/laser.script -------------------------------------------------------------------------------- /Exolon/game/player/player.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/game/player/player.go -------------------------------------------------------------------------------- /Exolon/main/custom.render: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/main/custom.render -------------------------------------------------------------------------------- /Exolon/main/data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/main/data.lua -------------------------------------------------------------------------------- /Exolon/main/game.input_binding: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/main/game.input_binding -------------------------------------------------------------------------------- /Exolon/main/handler.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/main/handler.script -------------------------------------------------------------------------------- /Exolon/main/main.atlas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/main/main.atlas -------------------------------------------------------------------------------- /Exolon/main/main.collection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/main/main.collection -------------------------------------------------------------------------------- /Exolon/main/ui.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/main/ui.lua -------------------------------------------------------------------------------- /Exolon/menu/bg.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/menu/bg.script -------------------------------------------------------------------------------- /Exolon/menu/bg.tilemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/menu/bg.tilemap -------------------------------------------------------------------------------- /Exolon/menu/controls.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/menu/controls.gui -------------------------------------------------------------------------------- /Exolon/menu/controls.gui_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/menu/controls.gui_script -------------------------------------------------------------------------------- /Exolon/menu/credits.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/menu/credits.gui -------------------------------------------------------------------------------- /Exolon/menu/credits.gui_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/menu/credits.gui_script -------------------------------------------------------------------------------- /Exolon/menu/menu.atlas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/menu/menu.atlas -------------------------------------------------------------------------------- /Exolon/menu/menu.collection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/menu/menu.collection -------------------------------------------------------------------------------- /Exolon/menu/menu.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/menu/menu.gui -------------------------------------------------------------------------------- /Exolon/menu/menu.gui_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/menu/menu.gui_script -------------------------------------------------------------------------------- /Exolon/menu/test.particlefx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Exolon/menu/test.particlefx -------------------------------------------------------------------------------- /Helo Storm/assets/ogg/back.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/assets/ogg/back.ogg -------------------------------------------------------------------------------- /Helo Storm/assets/ogg/blade.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/assets/ogg/blade.ogg -------------------------------------------------------------------------------- /Helo Storm/assets/ogg/exp1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/assets/ogg/exp1.ogg -------------------------------------------------------------------------------- /Helo Storm/assets/ogg/exp2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/assets/ogg/exp2.ogg -------------------------------------------------------------------------------- /Helo Storm/assets/ogg/exp3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/assets/ogg/exp3.ogg -------------------------------------------------------------------------------- /Helo Storm/assets/ogg/shot.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/assets/ogg/shot.ogg -------------------------------------------------------------------------------- /Helo Storm/assets/ogg/tick.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/assets/ogg/tick.ogg -------------------------------------------------------------------------------- /Helo Storm/assets/png/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/assets/png/11.png -------------------------------------------------------------------------------- /Helo Storm/assets/png/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/assets/png/12.png -------------------------------------------------------------------------------- /Helo Storm/assets/png/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/assets/png/13.png -------------------------------------------------------------------------------- /Helo Storm/assets/png/16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/assets/png/16x16.png -------------------------------------------------------------------------------- /Helo Storm/assets/png/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/assets/png/21.png -------------------------------------------------------------------------------- /Helo Storm/assets/png/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/assets/png/22.png -------------------------------------------------------------------------------- /Helo Storm/assets/png/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/assets/png/23.png -------------------------------------------------------------------------------- /Helo Storm/assets/png/31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/assets/png/31.png -------------------------------------------------------------------------------- /Helo Storm/assets/png/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/assets/png/32.png -------------------------------------------------------------------------------- /Helo Storm/assets/png/32x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/assets/png/32x16.png -------------------------------------------------------------------------------- /Helo Storm/assets/png/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/assets/png/32x32.png -------------------------------------------------------------------------------- /Helo Storm/assets/png/33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/assets/png/33.png -------------------------------------------------------------------------------- /Helo Storm/assets/png/41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/assets/png/41.png -------------------------------------------------------------------------------- /Helo Storm/assets/png/42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/assets/png/42.png -------------------------------------------------------------------------------- /Helo Storm/assets/png/43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/assets/png/43.png -------------------------------------------------------------------------------- /Helo Storm/assets/png/48x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/assets/png/48x16.png -------------------------------------------------------------------------------- /Helo Storm/assets/png/80x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/assets/png/80x32.png -------------------------------------------------------------------------------- /Helo Storm/assets/png/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/assets/png/bg.png -------------------------------------------------------------------------------- /Helo Storm/assets/png/exp24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/assets/png/exp24.png -------------------------------------------------------------------------------- /Helo Storm/assets/png/exp48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/assets/png/exp48.png -------------------------------------------------------------------------------- /Helo Storm/assets/png/exp96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/assets/png/exp96.png -------------------------------------------------------------------------------- /Helo Storm/assets/png/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/assets/png/logo.png -------------------------------------------------------------------------------- /Helo Storm/assets/png/sky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/assets/png/sky.png -------------------------------------------------------------------------------- /Helo Storm/game.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/game.project -------------------------------------------------------------------------------- /Helo Storm/game/core/game.atlas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/game/core/game.atlas -------------------------------------------------------------------------------- /Helo Storm/game/enemy/1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/game/enemy/1.go -------------------------------------------------------------------------------- /Helo Storm/game/enemy/1.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/game/enemy/1.script -------------------------------------------------------------------------------- /Helo Storm/game/enemy/2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/game/enemy/2.go -------------------------------------------------------------------------------- /Helo Storm/game/enemy/2.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/game/enemy/2.script -------------------------------------------------------------------------------- /Helo Storm/game/enemy/3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/game/enemy/3.go -------------------------------------------------------------------------------- /Helo Storm/game/enemy/3.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/game/enemy/3.script -------------------------------------------------------------------------------- /Helo Storm/game/enemy/4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/game/enemy/4.go -------------------------------------------------------------------------------- /Helo Storm/game/enemy/4.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/game/enemy/4.script -------------------------------------------------------------------------------- /Helo Storm/game/enemy/5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/game/enemy/5.go -------------------------------------------------------------------------------- /Helo Storm/game/enemy/5.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/game/enemy/5.script -------------------------------------------------------------------------------- /Helo Storm/game/enemy/6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/game/enemy/6.go -------------------------------------------------------------------------------- /Helo Storm/game/enemy/6.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/game/enemy/6.script -------------------------------------------------------------------------------- /Helo Storm/game/enemy/aam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/game/enemy/aam.go -------------------------------------------------------------------------------- /Helo Storm/game/enemy/bomb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/game/enemy/bomb.go -------------------------------------------------------------------------------- /Helo Storm/game/enemy/boss.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/game/enemy/boss.go -------------------------------------------------------------------------------- /Helo Storm/game/enemy/boss2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/game/enemy/boss2.go -------------------------------------------------------------------------------- /Helo Storm/game/enemy/g1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/game/enemy/g1.go -------------------------------------------------------------------------------- /Helo Storm/game/enemy/g1.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/game/enemy/g1.script -------------------------------------------------------------------------------- /Helo Storm/game/enemy/g2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/game/enemy/g2.go -------------------------------------------------------------------------------- /Helo Storm/game/enemy/g2.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/game/enemy/g2.script -------------------------------------------------------------------------------- /Helo Storm/game/enemy/g3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/game/enemy/g3.go -------------------------------------------------------------------------------- /Helo Storm/game/enemy/g3.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/game/enemy/g3.script -------------------------------------------------------------------------------- /Helo Storm/game/enemy/g4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/game/enemy/g4.go -------------------------------------------------------------------------------- /Helo Storm/game/enemy/g4.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/game/enemy/g4.script -------------------------------------------------------------------------------- /Helo Storm/game/enemy/g5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/game/enemy/g5.go -------------------------------------------------------------------------------- /Helo Storm/game/enemy/g5.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/game/enemy/g5.script -------------------------------------------------------------------------------- /Helo Storm/game/enemy/g6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/game/enemy/g6.go -------------------------------------------------------------------------------- /Helo Storm/game/enemy/g6.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/game/enemy/g6.script -------------------------------------------------------------------------------- /Helo Storm/game/enemy/g7.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/game/enemy/g7.go -------------------------------------------------------------------------------- /Helo Storm/game/enemy/g7.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/game/enemy/g7.script -------------------------------------------------------------------------------- /Helo Storm/game/enemy/rocket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/game/enemy/rocket.go -------------------------------------------------------------------------------- /Helo Storm/game/enemy/sam.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/game/enemy/sam.go -------------------------------------------------------------------------------- /Helo Storm/game/gui/clear.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/game/gui/clear.gui -------------------------------------------------------------------------------- /Helo Storm/game/gui/game.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/game/gui/game.gui -------------------------------------------------------------------------------- /Helo Storm/game/gui/shutter.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/game/gui/shutter.gui -------------------------------------------------------------------------------- /Helo Storm/game/level/ground.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/game/level/ground.go -------------------------------------------------------------------------------- /Helo Storm/game/player/shot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/game/player/shot.go -------------------------------------------------------------------------------- /Helo Storm/main/data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/main/data.lua -------------------------------------------------------------------------------- /Helo Storm/main/handler.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/main/handler.script -------------------------------------------------------------------------------- /Helo Storm/main/main.collection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/main/main.collection -------------------------------------------------------------------------------- /Helo Storm/main/ui.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/main/ui.lua -------------------------------------------------------------------------------- /Helo Storm/menu/bg.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/menu/bg.gui -------------------------------------------------------------------------------- /Helo Storm/menu/bg.gui_script: -------------------------------------------------------------------------------- 1 | function init(self) 2 | end 3 | -------------------------------------------------------------------------------- /Helo Storm/menu/controls.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/menu/controls.gui -------------------------------------------------------------------------------- /Helo Storm/menu/credits.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/menu/credits.gui -------------------------------------------------------------------------------- /Helo Storm/menu/menu.atlas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/menu/menu.atlas -------------------------------------------------------------------------------- /Helo Storm/menu/menu.collection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/menu/menu.collection -------------------------------------------------------------------------------- /Helo Storm/menu/menu.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/menu/menu.gui -------------------------------------------------------------------------------- /Helo Storm/menu/menu.gui_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/menu/menu.gui_script -------------------------------------------------------------------------------- /Helo Storm/render/custom.render: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Helo Storm/render/custom.render -------------------------------------------------------------------------------- /Incinerator/assets/ogg/blip.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Incinerator/assets/ogg/blip.ogg -------------------------------------------------------------------------------- /Incinerator/assets/ogg/dead.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Incinerator/assets/ogg/dead.ogg -------------------------------------------------------------------------------- /Incinerator/assets/ogg/egg.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Incinerator/assets/ogg/egg.ogg -------------------------------------------------------------------------------- /Incinerator/assets/ogg/exp.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Incinerator/assets/ogg/exp.ogg -------------------------------------------------------------------------------- /Incinerator/assets/ogg/fire.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Incinerator/assets/ogg/fire.ogg -------------------------------------------------------------------------------- /Incinerator/assets/ogg/hit.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Incinerator/assets/ogg/hit.ogg -------------------------------------------------------------------------------- /Incinerator/assets/ogg/no.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Incinerator/assets/ogg/no.ogg -------------------------------------------------------------------------------- /Incinerator/assets/png/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Incinerator/assets/png/bg.png -------------------------------------------------------------------------------- /Incinerator/assets/png/fan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Incinerator/assets/png/fan.png -------------------------------------------------------------------------------- /Incinerator/assets/png/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Incinerator/assets/png/logo.png -------------------------------------------------------------------------------- /Incinerator/assets/png/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Incinerator/assets/png/map.png -------------------------------------------------------------------------------- /Incinerator/game.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Incinerator/game.project -------------------------------------------------------------------------------- /Incinerator/game/enemy/enemy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Incinerator/game/enemy/enemy.go -------------------------------------------------------------------------------- /Incinerator/game/gui/clear.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Incinerator/game/gui/clear.gui -------------------------------------------------------------------------------- /Incinerator/game/gui/game.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Incinerator/game/gui/game.gui -------------------------------------------------------------------------------- /Incinerator/game/gui/map.atlas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Incinerator/game/gui/map.atlas -------------------------------------------------------------------------------- /Incinerator/game/gui/map.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Incinerator/game/gui/map.gui -------------------------------------------------------------------------------- /Incinerator/game/gui/map.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Incinerator/game/gui/map.script -------------------------------------------------------------------------------- /Incinerator/game/gui/pause.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Incinerator/game/gui/pause.gui -------------------------------------------------------------------------------- /Incinerator/game/object/anim.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Incinerator/game/object/anim.go -------------------------------------------------------------------------------- /Incinerator/game/object/fan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Incinerator/game/object/fan.go -------------------------------------------------------------------------------- /Incinerator/main/custom.render: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Incinerator/main/custom.render -------------------------------------------------------------------------------- /Incinerator/main/data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Incinerator/main/data.lua -------------------------------------------------------------------------------- /Incinerator/main/handler.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Incinerator/main/handler.script -------------------------------------------------------------------------------- /Incinerator/main/main.atlas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Incinerator/main/main.atlas -------------------------------------------------------------------------------- /Incinerator/main/ui.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Incinerator/main/ui.lua -------------------------------------------------------------------------------- /Incinerator/menu/bg.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Incinerator/menu/bg.gui -------------------------------------------------------------------------------- /Incinerator/menu/bg.gui_script: -------------------------------------------------------------------------------- 1 | function init(self) 2 | end 3 | -------------------------------------------------------------------------------- /Incinerator/menu/controls.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Incinerator/menu/controls.gui -------------------------------------------------------------------------------- /Incinerator/menu/credits.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Incinerator/menu/credits.gui -------------------------------------------------------------------------------- /Incinerator/menu/menu.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Incinerator/menu/menu.gui -------------------------------------------------------------------------------- /Jetpack Jeopardy/game.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Jetpack Jeopardy/game.project -------------------------------------------------------------------------------- /Jetpack Jeopardy/main/data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Jetpack Jeopardy/main/data.lua -------------------------------------------------------------------------------- /Jetpack Jeopardy/menu/menu.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Jetpack Jeopardy/menu/menu.gui -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/LICENSE -------------------------------------------------------------------------------- /Mystery Mansion/game.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Mystery Mansion/game.project -------------------------------------------------------------------------------- /Mystery Mansion/main/data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Mystery Mansion/main/data.lua -------------------------------------------------------------------------------- /Mystery Mansion/main/main.atlas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Mystery Mansion/main/main.atlas -------------------------------------------------------------------------------- /Mystery Mansion/main/ui.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Mystery Mansion/main/ui.lua -------------------------------------------------------------------------------- /Mystery Mansion/menu/bg.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Mystery Mansion/menu/bg.gui -------------------------------------------------------------------------------- /Mystery Mansion/menu/bg.gui_script: -------------------------------------------------------------------------------- 1 | function init(self) 2 | end 3 | -------------------------------------------------------------------------------- /Mystery Mansion/menu/menu.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Mystery Mansion/menu/menu.gui -------------------------------------------------------------------------------- /Pathfinder/assets/ogg/door.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pathfinder/assets/ogg/door.ogg -------------------------------------------------------------------------------- /Pathfinder/assets/ogg/exp.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pathfinder/assets/ogg/exp.ogg -------------------------------------------------------------------------------- /Pathfinder/assets/ogg/jump.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pathfinder/assets/ogg/jump.ogg -------------------------------------------------------------------------------- /Pathfinder/assets/ogg/land.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pathfinder/assets/ogg/land.ogg -------------------------------------------------------------------------------- /Pathfinder/assets/ogg/laser.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pathfinder/assets/ogg/laser.ogg -------------------------------------------------------------------------------- /Pathfinder/assets/ogg/lift.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pathfinder/assets/ogg/lift.ogg -------------------------------------------------------------------------------- /Pathfinder/assets/ogg/star.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pathfinder/assets/ogg/star.ogg -------------------------------------------------------------------------------- /Pathfinder/assets/ogg/warp.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pathfinder/assets/ogg/warp.ogg -------------------------------------------------------------------------------- /Pathfinder/assets/png/bg-m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pathfinder/assets/png/bg-m.png -------------------------------------------------------------------------------- /Pathfinder/assets/png/bg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pathfinder/assets/png/bg1.png -------------------------------------------------------------------------------- /Pathfinder/assets/png/exp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pathfinder/assets/png/exp.png -------------------------------------------------------------------------------- /Pathfinder/assets/png/float.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pathfinder/assets/png/float.png -------------------------------------------------------------------------------- /Pathfinder/assets/png/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pathfinder/assets/png/logo.png -------------------------------------------------------------------------------- /Pathfinder/assets/png/tick.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pathfinder/assets/png/tick.gif -------------------------------------------------------------------------------- /Pathfinder/assets/png/tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pathfinder/assets/png/tiles.png -------------------------------------------------------------------------------- /Pathfinder/assets/png/vui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pathfinder/assets/png/vui.png -------------------------------------------------------------------------------- /Pathfinder/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pathfinder/custom.css -------------------------------------------------------------------------------- /Pathfinder/game.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pathfinder/game.project -------------------------------------------------------------------------------- /Pathfinder/game/core/core.atlas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pathfinder/game/core/core.atlas -------------------------------------------------------------------------------- /Pathfinder/game/gui/clear.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pathfinder/game/gui/clear.gui -------------------------------------------------------------------------------- /Pathfinder/game/gui/game.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pathfinder/game/gui/game.gui -------------------------------------------------------------------------------- /Pathfinder/game/gui/pause.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pathfinder/game/gui/pause.gui -------------------------------------------------------------------------------- /Pathfinder/game/gui/shutter.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pathfinder/game/gui/shutter.gui -------------------------------------------------------------------------------- /Pathfinder/game/gui/vui.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pathfinder/game/gui/vui.gui -------------------------------------------------------------------------------- /Pathfinder/game/object/crate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pathfinder/game/object/crate.go -------------------------------------------------------------------------------- /Pathfinder/game/object/door.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pathfinder/game/object/door.go -------------------------------------------------------------------------------- /Pathfinder/game/object/exit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pathfinder/game/object/exit.go -------------------------------------------------------------------------------- /Pathfinder/game/object/float.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pathfinder/game/object/float.go -------------------------------------------------------------------------------- /Pathfinder/game/object/float.script: -------------------------------------------------------------------------------- 1 | function init(self) 2 | particlefx.play("#pfx") 3 | end 4 | 5 | -------------------------------------------------------------------------------- /Pathfinder/game/object/lift.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pathfinder/game/object/lift.go -------------------------------------------------------------------------------- /Pathfinder/main/data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pathfinder/main/data.lua -------------------------------------------------------------------------------- /Pathfinder/main/handler.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pathfinder/main/handler.script -------------------------------------------------------------------------------- /Pathfinder/main/main.collection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pathfinder/main/main.collection -------------------------------------------------------------------------------- /Pathfinder/main/strings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pathfinder/main/strings.lua -------------------------------------------------------------------------------- /Pathfinder/main/ui.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pathfinder/main/ui.lua -------------------------------------------------------------------------------- /Pathfinder/menu/bg.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pathfinder/menu/bg.gui -------------------------------------------------------------------------------- /Pathfinder/menu/controls-v.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pathfinder/menu/controls-v.gui -------------------------------------------------------------------------------- /Pathfinder/menu/controls.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pathfinder/menu/controls.gui -------------------------------------------------------------------------------- /Pathfinder/menu/credits.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pathfinder/menu/credits.gui -------------------------------------------------------------------------------- /Pathfinder/menu/menu.atlas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pathfinder/menu/menu.atlas -------------------------------------------------------------------------------- /Pathfinder/menu/menu.collection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pathfinder/menu/menu.collection -------------------------------------------------------------------------------- /Pathfinder/menu/menu.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pathfinder/menu/menu.gui -------------------------------------------------------------------------------- /Pathfinder/menu/menu.gui_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pathfinder/menu/menu.gui_script -------------------------------------------------------------------------------- /Pathfinder/menu/select.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pathfinder/menu/select.gui -------------------------------------------------------------------------------- /Pathfinder/menu/world.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pathfinder/menu/world.gui -------------------------------------------------------------------------------- /Pathfinder/render/custom.render: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pathfinder/render/custom.render -------------------------------------------------------------------------------- /PicoShot/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/.gitignore -------------------------------------------------------------------------------- /PicoShot/assets/font/main.font: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/assets/font/main.font -------------------------------------------------------------------------------- /PicoShot/assets/ogg/bigbang.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/assets/ogg/bigbang.ogg -------------------------------------------------------------------------------- /PicoShot/assets/ogg/music.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/assets/ogg/music.ogg -------------------------------------------------------------------------------- /PicoShot/assets/ogg/pickup.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/assets/ogg/pickup.ogg -------------------------------------------------------------------------------- /PicoShot/assets/ogg/shot1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/assets/ogg/shot1.ogg -------------------------------------------------------------------------------- /PicoShot/assets/ogg/shot2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/assets/ogg/shot2.ogg -------------------------------------------------------------------------------- /PicoShot/assets/ogg/shot3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/assets/ogg/shot3.ogg -------------------------------------------------------------------------------- /PicoShot/assets/ogg/shot4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/assets/ogg/shot4.ogg -------------------------------------------------------------------------------- /PicoShot/assets/ogg/shot5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/assets/ogg/shot5.ogg -------------------------------------------------------------------------------- /PicoShot/assets/ogg/siren.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/assets/ogg/siren.ogg -------------------------------------------------------------------------------- /PicoShot/assets/ogg/sm_exp1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/assets/ogg/sm_exp1.ogg -------------------------------------------------------------------------------- /PicoShot/assets/ogg/sm_exp2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/assets/ogg/sm_exp2.ogg -------------------------------------------------------------------------------- /PicoShot/assets/ogg/sm_exp3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/assets/ogg/sm_exp3.ogg -------------------------------------------------------------------------------- /PicoShot/assets/ogg/special.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/assets/ogg/special.ogg -------------------------------------------------------------------------------- /PicoShot/assets/ogg/spit.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/assets/ogg/spit.ogg -------------------------------------------------------------------------------- /PicoShot/assets/png/bosses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/assets/png/bosses.png -------------------------------------------------------------------------------- /PicoShot/assets/png/caution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/assets/png/caution.png -------------------------------------------------------------------------------- /PicoShot/assets/png/enemy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/assets/png/enemy.png -------------------------------------------------------------------------------- /PicoShot/assets/png/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/assets/png/icons.png -------------------------------------------------------------------------------- /PicoShot/assets/png/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/assets/png/logo.png -------------------------------------------------------------------------------- /PicoShot/assets/png/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/assets/png/player.png -------------------------------------------------------------------------------- /PicoShot/assets/png/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/assets/png/splash.png -------------------------------------------------------------------------------- /PicoShot/assets/png/stars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/assets/png/stars.png -------------------------------------------------------------------------------- /PicoShot/assets/png/tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/assets/png/tiles.png -------------------------------------------------------------------------------- /PicoShot/assets/png/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/assets/png/x.png -------------------------------------------------------------------------------- /PicoShot/custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/custom.html -------------------------------------------------------------------------------- /PicoShot/game.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/game.project -------------------------------------------------------------------------------- /PicoShot/game/effects/effect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/game/effects/effect.go -------------------------------------------------------------------------------- /PicoShot/game/enemy/boss1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/game/enemy/boss1.go -------------------------------------------------------------------------------- /PicoShot/game/enemy/boss2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/game/enemy/boss2.go -------------------------------------------------------------------------------- /PicoShot/game/enemy/enemy1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/game/enemy/enemy1.go -------------------------------------------------------------------------------- /PicoShot/game/enemy/enemy2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/game/enemy/enemy2.go -------------------------------------------------------------------------------- /PicoShot/game/enemy/enemy3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/game/enemy/enemy3.go -------------------------------------------------------------------------------- /PicoShot/game/enemy/enemy4.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/game/enemy/enemy4.go -------------------------------------------------------------------------------- /PicoShot/game/enemy/enemy5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/game/enemy/enemy5.go -------------------------------------------------------------------------------- /PicoShot/game/enemy/enemy6.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/game/enemy/enemy6.go -------------------------------------------------------------------------------- /PicoShot/game/enemy/enemy7.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/game/enemy/enemy7.go -------------------------------------------------------------------------------- /PicoShot/game/enemy/enemy8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/game/enemy/enemy8.go -------------------------------------------------------------------------------- /PicoShot/game/enemy/fire1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/game/enemy/fire1.go -------------------------------------------------------------------------------- /PicoShot/game/enemy/fire2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/game/enemy/fire2.go -------------------------------------------------------------------------------- /PicoShot/game/gui/caution.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/game/gui/caution.gui -------------------------------------------------------------------------------- /PicoShot/game/gui/clear.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/game/gui/clear.gui -------------------------------------------------------------------------------- /PicoShot/game/gui/complete.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/game/gui/complete.gui -------------------------------------------------------------------------------- /PicoShot/game/gui/game.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/game/gui/game.gui -------------------------------------------------------------------------------- /PicoShot/game/gui/gameover.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/game/gui/gameover.gui -------------------------------------------------------------------------------- /PicoShot/game/gui/getready.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/game/gui/getready.gui -------------------------------------------------------------------------------- /PicoShot/game/gui/shutter.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/game/gui/shutter.gui -------------------------------------------------------------------------------- /PicoShot/game/levels/stars.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/game/levels/stars.go -------------------------------------------------------------------------------- /PicoShot/game/player/item.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/game/player/item.go -------------------------------------------------------------------------------- /PicoShot/game/player/player.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/game/player/player.go -------------------------------------------------------------------------------- /PicoShot/game/player/special.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/game/player/special.go -------------------------------------------------------------------------------- /PicoShot/game/player/weap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/game/player/weap.go -------------------------------------------------------------------------------- /PicoShot/main/data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/main/data.lua -------------------------------------------------------------------------------- /PicoShot/main/handler.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/main/handler.script -------------------------------------------------------------------------------- /PicoShot/main/main.atlas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/main/main.atlas -------------------------------------------------------------------------------- /PicoShot/main/main.collection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/main/main.collection -------------------------------------------------------------------------------- /PicoShot/menu/controls.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/menu/controls.gui -------------------------------------------------------------------------------- /PicoShot/menu/credits.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/menu/credits.gui -------------------------------------------------------------------------------- /PicoShot/menu/menu.collection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/menu/menu.collection -------------------------------------------------------------------------------- /PicoShot/menu/menu.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/menu/menu.gui -------------------------------------------------------------------------------- /PicoShot/menu/menu.gui_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/menu/menu.gui_script -------------------------------------------------------------------------------- /PicoShot/render/custom.render: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/PicoShot/render/custom.render -------------------------------------------------------------------------------- /Pixel Crypt/assets/ogg/beam.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pixel Crypt/assets/ogg/beam.ogg -------------------------------------------------------------------------------- /Pixel Crypt/assets/ogg/coin.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pixel Crypt/assets/ogg/coin.ogg -------------------------------------------------------------------------------- /Pixel Crypt/assets/ogg/dart.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pixel Crypt/assets/ogg/dart.ogg -------------------------------------------------------------------------------- /Pixel Crypt/assets/ogg/dead.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pixel Crypt/assets/ogg/dead.ogg -------------------------------------------------------------------------------- /Pixel Crypt/assets/ogg/hit.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pixel Crypt/assets/ogg/hit.ogg -------------------------------------------------------------------------------- /Pixel Crypt/assets/ogg/no.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pixel Crypt/assets/ogg/no.ogg -------------------------------------------------------------------------------- /Pixel Crypt/assets/png/beam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pixel Crypt/assets/png/beam.png -------------------------------------------------------------------------------- /Pixel Crypt/assets/png/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pixel Crypt/assets/png/bg.png -------------------------------------------------------------------------------- /Pixel Crypt/assets/png/elf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pixel Crypt/assets/png/elf.png -------------------------------------------------------------------------------- /Pixel Crypt/assets/png/exp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pixel Crypt/assets/png/exp.png -------------------------------------------------------------------------------- /Pixel Crypt/assets/png/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pixel Crypt/assets/png/line.png -------------------------------------------------------------------------------- /Pixel Crypt/assets/png/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pixel Crypt/assets/png/logo.png -------------------------------------------------------------------------------- /Pixel Crypt/assets/png/sky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pixel Crypt/assets/png/sky.png -------------------------------------------------------------------------------- /Pixel Crypt/assets/png/sky2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pixel Crypt/assets/png/sky2.png -------------------------------------------------------------------------------- /Pixel Crypt/assets/png/ufo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pixel Crypt/assets/png/ufo.png -------------------------------------------------------------------------------- /Pixel Crypt/assets/png/vig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pixel Crypt/assets/png/vig.png -------------------------------------------------------------------------------- /Pixel Crypt/game.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pixel Crypt/game.project -------------------------------------------------------------------------------- /Pixel Crypt/game/enemy/arrow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pixel Crypt/game/enemy/arrow.go -------------------------------------------------------------------------------- /Pixel Crypt/game/enemy/enemy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pixel Crypt/game/enemy/enemy.go -------------------------------------------------------------------------------- /Pixel Crypt/game/enemy/flame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pixel Crypt/game/enemy/flame.go -------------------------------------------------------------------------------- /Pixel Crypt/game/enemy/spike.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pixel Crypt/game/enemy/spike.go -------------------------------------------------------------------------------- /Pixel Crypt/game/gui/game.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pixel Crypt/game/gui/game.gui -------------------------------------------------------------------------------- /Pixel Crypt/game/gui/pause.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pixel Crypt/game/gui/pause.gui -------------------------------------------------------------------------------- /Pixel Crypt/game/gui/shop.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pixel Crypt/game/gui/shop.gui -------------------------------------------------------------------------------- /Pixel Crypt/game/object/ufo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pixel Crypt/game/object/ufo.go -------------------------------------------------------------------------------- /Pixel Crypt/game/player/elf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pixel Crypt/game/player/elf.go -------------------------------------------------------------------------------- /Pixel Crypt/game/player/shot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pixel Crypt/game/player/shot.go -------------------------------------------------------------------------------- /Pixel Crypt/main/data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pixel Crypt/main/data.lua -------------------------------------------------------------------------------- /Pixel Crypt/main/handler.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pixel Crypt/main/handler.script -------------------------------------------------------------------------------- /Pixel Crypt/main/main.atlas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pixel Crypt/main/main.atlas -------------------------------------------------------------------------------- /Pixel Crypt/main/ui.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pixel Crypt/main/ui.lua -------------------------------------------------------------------------------- /Pixel Crypt/menu/bg.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pixel Crypt/menu/bg.gui -------------------------------------------------------------------------------- /Pixel Crypt/menu/bg.gui_script: -------------------------------------------------------------------------------- 1 | function init(self) 2 | end 3 | -------------------------------------------------------------------------------- /Pixel Crypt/menu/char.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pixel Crypt/menu/char.gui -------------------------------------------------------------------------------- /Pixel Crypt/menu/controls.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pixel Crypt/menu/controls.gui -------------------------------------------------------------------------------- /Pixel Crypt/menu/credits.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pixel Crypt/menu/credits.gui -------------------------------------------------------------------------------- /Pixel Crypt/menu/menu.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Pixel Crypt/menu/menu.gui -------------------------------------------------------------------------------- /Planetoid/assets/font/main.font: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/assets/font/main.font -------------------------------------------------------------------------------- /Planetoid/assets/ogg/blip.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/assets/ogg/blip.ogg -------------------------------------------------------------------------------- /Planetoid/assets/ogg/bonus.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/assets/ogg/bonus.ogg -------------------------------------------------------------------------------- /Planetoid/assets/ogg/exp-2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/assets/ogg/exp-2.ogg -------------------------------------------------------------------------------- /Planetoid/assets/ogg/exp-3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/assets/ogg/exp-3.ogg -------------------------------------------------------------------------------- /Planetoid/assets/ogg/exp-4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/assets/ogg/exp-4.ogg -------------------------------------------------------------------------------- /Planetoid/assets/ogg/extra.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/assets/ogg/extra.ogg -------------------------------------------------------------------------------- /Planetoid/assets/ogg/laser.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/assets/ogg/laser.ogg -------------------------------------------------------------------------------- /Planetoid/assets/ogg/mutant.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/assets/ogg/mutant.ogg -------------------------------------------------------------------------------- /Planetoid/assets/ogg/shot.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/assets/ogg/shot.ogg -------------------------------------------------------------------------------- /Planetoid/assets/ogg/shot2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/assets/ogg/shot2.ogg -------------------------------------------------------------------------------- /Planetoid/assets/ogg/smart.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/assets/ogg/smart.ogg -------------------------------------------------------------------------------- /Planetoid/assets/ogg/start.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/assets/ogg/start.ogg -------------------------------------------------------------------------------- /Planetoid/assets/png/bg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/assets/png/bg1.png -------------------------------------------------------------------------------- /Planetoid/assets/png/bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/assets/png/bg2.png -------------------------------------------------------------------------------- /Planetoid/assets/png/laser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/assets/png/laser.png -------------------------------------------------------------------------------- /Planetoid/assets/png/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/assets/png/logo.png -------------------------------------------------------------------------------- /Planetoid/assets/png/pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/assets/png/pixel.png -------------------------------------------------------------------------------- /Planetoid/assets/png/sky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/assets/png/sky.png -------------------------------------------------------------------------------- /Planetoid/assets/png/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/assets/png/splash.png -------------------------------------------------------------------------------- /Planetoid/assets/png/stars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/assets/png/stars.png -------------------------------------------------------------------------------- /Planetoid/assets/png/tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/assets/png/tiles.png -------------------------------------------------------------------------------- /Planetoid/game.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/game.project -------------------------------------------------------------------------------- /Planetoid/game/enemy/baiter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/game/enemy/baiter.go -------------------------------------------------------------------------------- /Planetoid/game/enemy/bomb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/game/enemy/bomb.go -------------------------------------------------------------------------------- /Planetoid/game/enemy/bomber.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/game/enemy/bomber.go -------------------------------------------------------------------------------- /Planetoid/game/enemy/dynamo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/game/enemy/dynamo.go -------------------------------------------------------------------------------- /Planetoid/game/enemy/enemy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/game/enemy/enemy.lua -------------------------------------------------------------------------------- /Planetoid/game/enemy/guppy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/game/enemy/guppy.go -------------------------------------------------------------------------------- /Planetoid/game/enemy/lander.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/game/enemy/lander.go -------------------------------------------------------------------------------- /Planetoid/game/enemy/mutant.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/game/enemy/mutant.go -------------------------------------------------------------------------------- /Planetoid/game/enemy/pod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/game/enemy/pod.go -------------------------------------------------------------------------------- /Planetoid/game/enemy/pod.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/game/enemy/pod.script -------------------------------------------------------------------------------- /Planetoid/game/enemy/shot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/game/enemy/shot.go -------------------------------------------------------------------------------- /Planetoid/game/enemy/spinner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/game/enemy/spinner.go -------------------------------------------------------------------------------- /Planetoid/game/enemy/swarmer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/game/enemy/swarmer.go -------------------------------------------------------------------------------- /Planetoid/game/enemy/ufo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/game/enemy/ufo.go -------------------------------------------------------------------------------- /Planetoid/game/enemy/ufo.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/game/enemy/ufo.script -------------------------------------------------------------------------------- /Planetoid/game/gui/clear.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/game/gui/clear.gui -------------------------------------------------------------------------------- /Planetoid/game/gui/game.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/game/gui/game.gui -------------------------------------------------------------------------------- /Planetoid/game/gui/gameover.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/game/gui/gameover.gui -------------------------------------------------------------------------------- /Planetoid/game/gui/pause.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/game/gui/pause.gui -------------------------------------------------------------------------------- /Planetoid/game/gui/shutter.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/game/gui/shutter.gui -------------------------------------------------------------------------------- /Planetoid/game/levels/bg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/game/levels/bg.go -------------------------------------------------------------------------------- /Planetoid/game/levels/bg.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/game/levels/bg.script -------------------------------------------------------------------------------- /Planetoid/game/object/bonus.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/game/object/bonus.go -------------------------------------------------------------------------------- /Planetoid/game/object/man.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/game/object/man.go -------------------------------------------------------------------------------- /Planetoid/game/player/laser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/game/player/laser.go -------------------------------------------------------------------------------- /Planetoid/game/player/player.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/game/player/player.go -------------------------------------------------------------------------------- /Planetoid/main/custom.render: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/main/custom.render -------------------------------------------------------------------------------- /Planetoid/main/data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/main/data.lua -------------------------------------------------------------------------------- /Planetoid/main/handler.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/main/handler.script -------------------------------------------------------------------------------- /Planetoid/main/main.atlas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/main/main.atlas -------------------------------------------------------------------------------- /Planetoid/main/main.collection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/main/main.collection -------------------------------------------------------------------------------- /Planetoid/main/ui.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/main/ui.lua -------------------------------------------------------------------------------- /Planetoid/menu/bg.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/menu/bg.gui -------------------------------------------------------------------------------- /Planetoid/menu/bg.gui_script: -------------------------------------------------------------------------------- 1 | function init(self) 2 | gui.play_particlefx(gui.get_node("pfx")) 3 | end 4 | -------------------------------------------------------------------------------- /Planetoid/menu/bg.particlefx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/menu/bg.particlefx -------------------------------------------------------------------------------- /Planetoid/menu/controls.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/menu/controls.gui -------------------------------------------------------------------------------- /Planetoid/menu/menu.collection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/menu/menu.collection -------------------------------------------------------------------------------- /Planetoid/menu/menu.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/menu/menu.gui -------------------------------------------------------------------------------- /Planetoid/menu/menu.gui_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/menu/menu.gui_script -------------------------------------------------------------------------------- /Planetoid/menu/scoring.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Planetoid/menu/scoring.gui -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/README.md -------------------------------------------------------------------------------- /Rock Hopper/assets/ogg/back.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Rock Hopper/assets/ogg/back.ogg -------------------------------------------------------------------------------- /Rock Hopper/assets/ogg/beep.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Rock Hopper/assets/ogg/beep.ogg -------------------------------------------------------------------------------- /Rock Hopper/assets/ogg/fail.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Rock Hopper/assets/ogg/fail.ogg -------------------------------------------------------------------------------- /Rock Hopper/assets/ogg/jump.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Rock Hopper/assets/ogg/jump.ogg -------------------------------------------------------------------------------- /Rock Hopper/assets/ogg/ping.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Rock Hopper/assets/ogg/ping.ogg -------------------------------------------------------------------------------- /Rock Hopper/assets/png/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Rock Hopper/assets/png/bg.png -------------------------------------------------------------------------------- /Rock Hopper/assets/png/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Rock Hopper/assets/png/logo.png -------------------------------------------------------------------------------- /Rock Hopper/assets/png/room.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Rock Hopper/assets/png/room.png -------------------------------------------------------------------------------- /Rock Hopper/game.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Rock Hopper/game.project -------------------------------------------------------------------------------- /Rock Hopper/game/gui/game.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Rock Hopper/game/gui/game.gui -------------------------------------------------------------------------------- /Rock Hopper/game/gui/map.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Rock Hopper/game/gui/map.gui -------------------------------------------------------------------------------- /Rock Hopper/game/gui/rank.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Rock Hopper/game/gui/rank.gui -------------------------------------------------------------------------------- /Rock Hopper/game/objects/geo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Rock Hopper/game/objects/geo.go -------------------------------------------------------------------------------- /Rock Hopper/game/objects/man.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Rock Hopper/game/objects/man.go -------------------------------------------------------------------------------- /Rock Hopper/main/data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Rock Hopper/main/data.lua -------------------------------------------------------------------------------- /Rock Hopper/main/handler.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Rock Hopper/main/handler.script -------------------------------------------------------------------------------- /Rock Hopper/main/main.atlas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Rock Hopper/main/main.atlas -------------------------------------------------------------------------------- /Rock Hopper/main/ui.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Rock Hopper/main/ui.lua -------------------------------------------------------------------------------- /Rock Hopper/menu/bg.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Rock Hopper/menu/bg.gui -------------------------------------------------------------------------------- /Rock Hopper/menu/controls.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Rock Hopper/menu/controls.gui -------------------------------------------------------------------------------- /Rock Hopper/menu/credits.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Rock Hopper/menu/credits.gui -------------------------------------------------------------------------------- /Rock Hopper/menu/menu.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Rock Hopper/menu/menu.gui -------------------------------------------------------------------------------- /Snowline/assets/font/large.font: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Snowline/assets/font/large.font -------------------------------------------------------------------------------- /Snowline/assets/font/main.font: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Snowline/assets/font/main.font -------------------------------------------------------------------------------- /Snowline/assets/ogg/explode.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Snowline/assets/ogg/explode.ogg -------------------------------------------------------------------------------- /Snowline/assets/ogg/hit.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Snowline/assets/ogg/hit.ogg -------------------------------------------------------------------------------- /Snowline/assets/ogg/pickup.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Snowline/assets/ogg/pickup.ogg -------------------------------------------------------------------------------- /Snowline/assets/ogg/power.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Snowline/assets/ogg/power.ogg -------------------------------------------------------------------------------- /Snowline/assets/ogg/shot.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Snowline/assets/ogg/shot.ogg -------------------------------------------------------------------------------- /Snowline/assets/png/16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Snowline/assets/png/16x16.png -------------------------------------------------------------------------------- /Snowline/assets/png/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Snowline/assets/png/32x32.png -------------------------------------------------------------------------------- /Snowline/assets/png/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Snowline/assets/png/bg.png -------------------------------------------------------------------------------- /Snowline/assets/png/clouds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Snowline/assets/png/clouds.png -------------------------------------------------------------------------------- /Snowline/assets/png/explode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Snowline/assets/png/explode.png -------------------------------------------------------------------------------- /Snowline/assets/png/hp-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Snowline/assets/png/hp-bar.png -------------------------------------------------------------------------------- /Snowline/assets/png/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Snowline/assets/png/logo.png -------------------------------------------------------------------------------- /Snowline/assets/png/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Snowline/assets/png/splash.png -------------------------------------------------------------------------------- /Snowline/game.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Snowline/game.project -------------------------------------------------------------------------------- /Snowline/game/core/level.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Snowline/game/core/level.script -------------------------------------------------------------------------------- /Snowline/game/gui/game.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Snowline/game/gui/game.gui -------------------------------------------------------------------------------- /Snowline/game/gui/gameover.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Snowline/game/gui/gameover.gui -------------------------------------------------------------------------------- /Snowline/game/gui/pause.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Snowline/game/gui/pause.gui -------------------------------------------------------------------------------- /Snowline/game/object/cloud.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Snowline/game/object/cloud.go -------------------------------------------------------------------------------- /Snowline/game/object/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Snowline/game/object/token.go -------------------------------------------------------------------------------- /Snowline/game/player/player.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Snowline/game/player/player.go -------------------------------------------------------------------------------- /Snowline/game/player/power.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Snowline/game/player/power.go -------------------------------------------------------------------------------- /Snowline/game/player/shot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Snowline/game/player/shot.go -------------------------------------------------------------------------------- /Snowline/main/data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Snowline/main/data.lua -------------------------------------------------------------------------------- /Snowline/main/handler.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Snowline/main/handler.script -------------------------------------------------------------------------------- /Snowline/main/main.atlas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Snowline/main/main.atlas -------------------------------------------------------------------------------- /Snowline/main/main.collection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Snowline/main/main.collection -------------------------------------------------------------------------------- /Snowline/main/ui.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Snowline/main/ui.lua -------------------------------------------------------------------------------- /Snowline/menu/menu.atlas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Snowline/menu/menu.atlas -------------------------------------------------------------------------------- /Snowline/menu/menu.collection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Snowline/menu/menu.collection -------------------------------------------------------------------------------- /Snowline/menu/menu.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Snowline/menu/menu.gui -------------------------------------------------------------------------------- /Snowline/menu/menu.gui_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Snowline/menu/menu.gui_script -------------------------------------------------------------------------------- /Snowline/render/custom.render: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Snowline/render/custom.render -------------------------------------------------------------------------------- /StackPack/assets/font/main.font: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/StackPack/assets/font/main.font -------------------------------------------------------------------------------- /StackPack/assets/ogg/bip.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/StackPack/assets/ogg/bip.ogg -------------------------------------------------------------------------------- /StackPack/assets/ogg/drop.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/StackPack/assets/ogg/drop.ogg -------------------------------------------------------------------------------- /StackPack/assets/ogg/pickup.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/StackPack/assets/ogg/pickup.ogg -------------------------------------------------------------------------------- /StackPack/assets/ogg/select.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/StackPack/assets/ogg/select.ogg -------------------------------------------------------------------------------- /StackPack/assets/png/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/StackPack/assets/png/banner.png -------------------------------------------------------------------------------- /StackPack/assets/png/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/StackPack/assets/png/bg.png -------------------------------------------------------------------------------- /StackPack/assets/png/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/StackPack/assets/png/logo.png -------------------------------------------------------------------------------- /StackPack/assets/png/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/StackPack/assets/png/map.png -------------------------------------------------------------------------------- /StackPack/assets/png/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/StackPack/assets/png/splash.png -------------------------------------------------------------------------------- /StackPack/assets/png/tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/StackPack/assets/png/tiles.png -------------------------------------------------------------------------------- /StackPack/game.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/StackPack/game.project -------------------------------------------------------------------------------- /StackPack/game/core/game.camera: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/StackPack/game/core/game.camera -------------------------------------------------------------------------------- /StackPack/game/gui/complete.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/StackPack/game/gui/complete.gui -------------------------------------------------------------------------------- /StackPack/game/gui/game.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/StackPack/game/gui/game.gui -------------------------------------------------------------------------------- /StackPack/game/gui/map.atlas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/StackPack/game/gui/map.atlas -------------------------------------------------------------------------------- /StackPack/game/gui/map.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/StackPack/game/gui/map.script -------------------------------------------------------------------------------- /StackPack/game/gui/shutter.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/StackPack/game/gui/shutter.gui -------------------------------------------------------------------------------- /StackPack/game/object/box.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/StackPack/game/object/box.go -------------------------------------------------------------------------------- /StackPack/game/object/fence.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/StackPack/game/object/fence.go -------------------------------------------------------------------------------- /StackPack/game/player/player.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/StackPack/game/player/player.go -------------------------------------------------------------------------------- /StackPack/main/data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/StackPack/main/data.lua -------------------------------------------------------------------------------- /StackPack/main/handler.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/StackPack/main/handler.script -------------------------------------------------------------------------------- /StackPack/main/main.atlas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/StackPack/main/main.atlas -------------------------------------------------------------------------------- /StackPack/main/main.collection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/StackPack/main/main.collection -------------------------------------------------------------------------------- /StackPack/main/ui.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/StackPack/main/ui.lua -------------------------------------------------------------------------------- /StackPack/menu/bg.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/StackPack/menu/bg.gui -------------------------------------------------------------------------------- /StackPack/menu/controls.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/StackPack/menu/controls.gui -------------------------------------------------------------------------------- /StackPack/menu/credits.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/StackPack/menu/credits.gui -------------------------------------------------------------------------------- /StackPack/menu/menu.collection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/StackPack/menu/menu.collection -------------------------------------------------------------------------------- /StackPack/menu/menu.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/StackPack/menu/menu.gui -------------------------------------------------------------------------------- /StackPack/menu/menu.gui_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/StackPack/menu/menu.gui_script -------------------------------------------------------------------------------- /StackPack/render/custom.render: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/StackPack/render/custom.render -------------------------------------------------------------------------------- /Star Runner/assets/ogg/blip.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Star Runner/assets/ogg/blip.ogg -------------------------------------------------------------------------------- /Star Runner/assets/ogg/bong.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Star Runner/assets/ogg/bong.ogg -------------------------------------------------------------------------------- /Star Runner/assets/ogg/dink.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Star Runner/assets/ogg/dink.ogg -------------------------------------------------------------------------------- /Star Runner/assets/ogg/hit.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Star Runner/assets/ogg/hit.ogg -------------------------------------------------------------------------------- /Star Runner/assets/ogg/jump.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Star Runner/assets/ogg/jump.ogg -------------------------------------------------------------------------------- /Star Runner/assets/ogg/land.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Star Runner/assets/ogg/land.ogg -------------------------------------------------------------------------------- /Star Runner/assets/ogg/pew.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Star Runner/assets/ogg/pew.ogg -------------------------------------------------------------------------------- /Star Runner/assets/png/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Star Runner/assets/png/bg.png -------------------------------------------------------------------------------- /Star Runner/assets/png/door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Star Runner/assets/png/door.png -------------------------------------------------------------------------------- /Star Runner/assets/png/inv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Star Runner/assets/png/inv.png -------------------------------------------------------------------------------- /Star Runner/assets/png/lift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Star Runner/assets/png/lift.png -------------------------------------------------------------------------------- /Star Runner/assets/png/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Star Runner/assets/png/logo.png -------------------------------------------------------------------------------- /Star Runner/assets/png/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Star Runner/assets/png/map.png -------------------------------------------------------------------------------- /Star Runner/game.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Star Runner/game.project -------------------------------------------------------------------------------- /Star Runner/game/enemy/mine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Star Runner/game/enemy/mine.go -------------------------------------------------------------------------------- /Star Runner/game/enemy/robot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Star Runner/game/enemy/robot.go -------------------------------------------------------------------------------- /Star Runner/game/gui/game.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Star Runner/game/gui/game.gui -------------------------------------------------------------------------------- /Star Runner/game/gui/map.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Star Runner/game/gui/map.gui -------------------------------------------------------------------------------- /Star Runner/game/objects/lift.script: -------------------------------------------------------------------------------- 1 | function init(self) 2 | particlefx.play("#pfx") 3 | end 4 | 5 | -------------------------------------------------------------------------------- /Star Runner/main/data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Star Runner/main/data.lua -------------------------------------------------------------------------------- /Star Runner/main/handler.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Star Runner/main/handler.script -------------------------------------------------------------------------------- /Star Runner/main/main.atlas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Star Runner/main/main.atlas -------------------------------------------------------------------------------- /Star Runner/menu/bg.tilemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Star Runner/menu/bg.tilemap -------------------------------------------------------------------------------- /Star Runner/menu/controls.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Star Runner/menu/controls.gui -------------------------------------------------------------------------------- /Star Runner/menu/credits.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Star Runner/menu/credits.gui -------------------------------------------------------------------------------- /Star Runner/menu/menu.camera: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Star Runner/menu/menu.camera -------------------------------------------------------------------------------- /Star Runner/menu/menu.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Star Runner/menu/menu.gui -------------------------------------------------------------------------------- /Star Runner/menu/menu.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Star Runner/menu/menu.script -------------------------------------------------------------------------------- /Station Master/custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Station Master/custom.html -------------------------------------------------------------------------------- /Station Master/game.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Station Master/game.project -------------------------------------------------------------------------------- /Station Master/game/gui/end.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Station Master/game/gui/end.gui -------------------------------------------------------------------------------- /Station Master/input/game.input_binding: -------------------------------------------------------------------------------- 1 | mouse_trigger { 2 | input: MOUSE_BUTTON_LEFT 3 | action: "click" 4 | } 5 | -------------------------------------------------------------------------------- /Station Master/main/data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Station Master/main/data.lua -------------------------------------------------------------------------------- /Station Master/main/main.atlas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Station Master/main/main.atlas -------------------------------------------------------------------------------- /Sub Strike/assets/ogg/exp1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Sub Strike/assets/ogg/exp1.ogg -------------------------------------------------------------------------------- /Sub Strike/assets/ogg/exp2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Sub Strike/assets/ogg/exp2.ogg -------------------------------------------------------------------------------- /Sub Strike/assets/ogg/exp3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Sub Strike/assets/ogg/exp3.ogg -------------------------------------------------------------------------------- /Sub Strike/assets/ogg/fire.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Sub Strike/assets/ogg/fire.ogg -------------------------------------------------------------------------------- /Sub Strike/assets/ogg/siren.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Sub Strike/assets/ogg/siren.ogg -------------------------------------------------------------------------------- /Sub Strike/assets/ogg/sonar.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Sub Strike/assets/ogg/sonar.ogg -------------------------------------------------------------------------------- /Sub Strike/assets/png/bed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Sub Strike/assets/png/bed.png -------------------------------------------------------------------------------- /Sub Strike/assets/png/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Sub Strike/assets/png/logo.png -------------------------------------------------------------------------------- /Sub Strike/assets/png/tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Sub Strike/assets/png/tiles.png -------------------------------------------------------------------------------- /Sub Strike/assets/png/vig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Sub Strike/assets/png/vig.png -------------------------------------------------------------------------------- /Sub Strike/game.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Sub Strike/game.project -------------------------------------------------------------------------------- /Sub Strike/game/enemy/enemy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Sub Strike/game/enemy/enemy.go -------------------------------------------------------------------------------- /Sub Strike/game/enemy/mine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Sub Strike/game/enemy/mine.go -------------------------------------------------------------------------------- /Sub Strike/game/gui/game.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Sub Strike/game/gui/game.gui -------------------------------------------------------------------------------- /Sub Strike/game/gui/shutter.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Sub Strike/game/gui/shutter.gui -------------------------------------------------------------------------------- /Sub Strike/game/player/bomb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Sub Strike/game/player/bomb.go -------------------------------------------------------------------------------- /Sub Strike/main/data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Sub Strike/main/data.lua -------------------------------------------------------------------------------- /Sub Strike/main/handler.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Sub Strike/main/handler.script -------------------------------------------------------------------------------- /Sub Strike/main/main.atlas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Sub Strike/main/main.atlas -------------------------------------------------------------------------------- /Sub Strike/main/main.collection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Sub Strike/main/main.collection -------------------------------------------------------------------------------- /Sub Strike/menu/bed.script: -------------------------------------------------------------------------------- 1 | function init(self) 2 | particlefx.play("#pfx") 3 | end 4 | 5 | -------------------------------------------------------------------------------- /Sub Strike/menu/bg.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Sub Strike/menu/bg.gui -------------------------------------------------------------------------------- /Sub Strike/menu/controls.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Sub Strike/menu/controls.gui -------------------------------------------------------------------------------- /Sub Strike/menu/credits.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Sub Strike/menu/credits.gui -------------------------------------------------------------------------------- /Sub Strike/menu/menu.collection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Sub Strike/menu/menu.collection -------------------------------------------------------------------------------- /Sub Strike/menu/menu.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Sub Strike/menu/menu.gui -------------------------------------------------------------------------------- /Sub Strike/menu/menu.gui_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Sub Strike/menu/menu.gui_script -------------------------------------------------------------------------------- /Sub Strike/render/custom.render: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Sub Strike/render/custom.render -------------------------------------------------------------------------------- /Timelooper/assets/ogg/chime.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Timelooper/assets/ogg/chime.ogg -------------------------------------------------------------------------------- /Timelooper/assets/ogg/clear.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Timelooper/assets/ogg/clear.ogg -------------------------------------------------------------------------------- /Timelooper/assets/ogg/door.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Timelooper/assets/ogg/door.ogg -------------------------------------------------------------------------------- /Timelooper/assets/ogg/jump.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Timelooper/assets/ogg/jump.ogg -------------------------------------------------------------------------------- /Timelooper/assets/ogg/tele.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Timelooper/assets/ogg/tele.ogg -------------------------------------------------------------------------------- /Timelooper/assets/ogg/tick.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Timelooper/assets/ogg/tick.ogg -------------------------------------------------------------------------------- /Timelooper/assets/png/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Timelooper/assets/png/bg.png -------------------------------------------------------------------------------- /Timelooper/assets/png/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Timelooper/assets/png/clock.png -------------------------------------------------------------------------------- /Timelooper/assets/png/col.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Timelooper/assets/png/col.png -------------------------------------------------------------------------------- /Timelooper/assets/png/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Timelooper/assets/png/logo.png -------------------------------------------------------------------------------- /Timelooper/assets/png/smoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Timelooper/assets/png/smoke.png -------------------------------------------------------------------------------- /Timelooper/assets/png/tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Timelooper/assets/png/tiles.png -------------------------------------------------------------------------------- /Timelooper/game.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Timelooper/game.project -------------------------------------------------------------------------------- /Timelooper/game/gui/game.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Timelooper/game/gui/game.gui -------------------------------------------------------------------------------- /Timelooper/game/gui/pause.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Timelooper/game/gui/pause.gui -------------------------------------------------------------------------------- /Timelooper/game/gui/shutter.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Timelooper/game/gui/shutter.gui -------------------------------------------------------------------------------- /Timelooper/game/object/door.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Timelooper/game/object/door.go -------------------------------------------------------------------------------- /Timelooper/game/object/exit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Timelooper/game/object/exit.go -------------------------------------------------------------------------------- /Timelooper/game/object/gem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Timelooper/game/object/gem.go -------------------------------------------------------------------------------- /Timelooper/game/object/rsj.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Timelooper/game/object/rsj.go -------------------------------------------------------------------------------- /Timelooper/main/data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Timelooper/main/data.lua -------------------------------------------------------------------------------- /Timelooper/main/main.atlas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Timelooper/main/main.atlas -------------------------------------------------------------------------------- /Timelooper/main/ui.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Timelooper/main/ui.lua -------------------------------------------------------------------------------- /Timelooper/menu/bg.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Timelooper/menu/bg.gui -------------------------------------------------------------------------------- /Timelooper/menu/controls.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Timelooper/menu/controls.gui -------------------------------------------------------------------------------- /Timelooper/menu/credits.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Timelooper/menu/credits.gui -------------------------------------------------------------------------------- /Timelooper/menu/menu.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Timelooper/menu/menu.gui -------------------------------------------------------------------------------- /Typhoon Ballooon/main/ui.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Typhoon Ballooon/main/ui.lua -------------------------------------------------------------------------------- /Typhoon Ballooon/menu/bg.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Typhoon Ballooon/menu/bg.gui -------------------------------------------------------------------------------- /Unit 4/assets/font/main.font: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Unit 4/assets/font/main.font -------------------------------------------------------------------------------- /Unit 4/assets/ogg/beep.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Unit 4/assets/ogg/beep.ogg -------------------------------------------------------------------------------- /Unit 4/assets/ogg/bomb.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Unit 4/assets/ogg/bomb.ogg -------------------------------------------------------------------------------- /Unit 4/assets/ogg/chirp.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Unit 4/assets/ogg/chirp.ogg -------------------------------------------------------------------------------- /Unit 4/assets/ogg/freeze.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Unit 4/assets/ogg/freeze.ogg -------------------------------------------------------------------------------- /Unit 4/assets/ogg/heal.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Unit 4/assets/ogg/heal.ogg -------------------------------------------------------------------------------- /Unit 4/assets/ogg/hit1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Unit 4/assets/ogg/hit1.ogg -------------------------------------------------------------------------------- /Unit 4/assets/ogg/hit2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Unit 4/assets/ogg/hit2.ogg -------------------------------------------------------------------------------- /Unit 4/assets/ogg/hit3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Unit 4/assets/ogg/hit3.ogg -------------------------------------------------------------------------------- /Unit 4/assets/ogg/music.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Unit 4/assets/ogg/music.ogg -------------------------------------------------------------------------------- /Unit 4/assets/ogg/pickup.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Unit 4/assets/ogg/pickup.ogg -------------------------------------------------------------------------------- /Unit 4/assets/ogg/step.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Unit 4/assets/ogg/step.ogg -------------------------------------------------------------------------------- /Unit 4/assets/ogg/strong.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Unit 4/assets/ogg/strong.ogg -------------------------------------------------------------------------------- /Unit 4/assets/png/dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Unit 4/assets/png/dialog.png -------------------------------------------------------------------------------- /Unit 4/assets/png/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Unit 4/assets/png/logo.png -------------------------------------------------------------------------------- /Unit 4/assets/png/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Unit 4/assets/png/menu.png -------------------------------------------------------------------------------- /Unit 4/assets/png/panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Unit 4/assets/png/panel.png -------------------------------------------------------------------------------- /Unit 4/assets/png/pixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Unit 4/assets/png/pixel.png -------------------------------------------------------------------------------- /Unit 4/assets/png/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Unit 4/assets/png/splash.png -------------------------------------------------------------------------------- /Unit 4/assets/png/tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Unit 4/assets/png/tiles.png -------------------------------------------------------------------------------- /Unit 4/custom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Unit 4/custom.html -------------------------------------------------------------------------------- /Unit 4/game.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Unit 4/game.project -------------------------------------------------------------------------------- /Unit 4/game/enemy/enemy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Unit 4/game/enemy/enemy.go -------------------------------------------------------------------------------- /Unit 4/game/enemy/enemy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Unit 4/game/enemy/enemy.lua -------------------------------------------------------------------------------- /Unit 4/game/fx/exit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Unit 4/game/fx/exit.go -------------------------------------------------------------------------------- /Unit 4/game/fx/exit.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Unit 4/game/fx/exit.script -------------------------------------------------------------------------------- /Unit 4/game/fx/fx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Unit 4/game/fx/fx.go -------------------------------------------------------------------------------- /Unit 4/game/fx/fx.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Unit 4/game/fx/fx.script -------------------------------------------------------------------------------- /Unit 4/game/gui/complete.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Unit 4/game/gui/complete.gui -------------------------------------------------------------------------------- /Unit 4/game/gui/game.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Unit 4/game/gui/game.gui -------------------------------------------------------------------------------- /Unit 4/game/gui/gameover.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Unit 4/game/gui/gameover.gui -------------------------------------------------------------------------------- /Unit 4/game/gui/shutter.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Unit 4/game/gui/shutter.gui -------------------------------------------------------------------------------- /Unit 4/game/player/player.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Unit 4/game/player/player.go -------------------------------------------------------------------------------- /Unit 4/main/data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Unit 4/main/data.lua -------------------------------------------------------------------------------- /Unit 4/main/handler.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Unit 4/main/handler.script -------------------------------------------------------------------------------- /Unit 4/main/main.atlas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Unit 4/main/main.atlas -------------------------------------------------------------------------------- /Unit 4/main/main.collection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Unit 4/main/main.collection -------------------------------------------------------------------------------- /Unit 4/menu/bg.tilemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Unit 4/menu/bg.tilemap -------------------------------------------------------------------------------- /Unit 4/menu/controls.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Unit 4/menu/controls.gui -------------------------------------------------------------------------------- /Unit 4/menu/credits.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Unit 4/menu/credits.gui -------------------------------------------------------------------------------- /Unit 4/menu/intro.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Unit 4/menu/intro.gui -------------------------------------------------------------------------------- /Unit 4/menu/intro.gui_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Unit 4/menu/intro.gui_script -------------------------------------------------------------------------------- /Unit 4/menu/menu.collection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Unit 4/menu/menu.collection -------------------------------------------------------------------------------- /Unit 4/menu/menu.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Unit 4/menu/menu.gui -------------------------------------------------------------------------------- /Unit 4/menu/menu.gui_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Unit 4/menu/menu.gui_script -------------------------------------------------------------------------------- /Unit 4/render/custom.render: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Unit 4/render/custom.render -------------------------------------------------------------------------------- /Urban Climber/game.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Urban Climber/game.project -------------------------------------------------------------------------------- /Urban Climber/main/data.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Urban Climber/main/data.lua -------------------------------------------------------------------------------- /Urban Climber/main/ui.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Urban Climber/main/ui.lua -------------------------------------------------------------------------------- /Urban Climber/menu/bg.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Urban Climber/menu/bg.gui -------------------------------------------------------------------------------- /Urban Climber/menu/menu.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjames-171/defold-games/HEAD/Urban Climber/menu/menu.gui --------------------------------------------------------------------------------