├── 00.pull.rb ├── 1gam-feb2013 ├── .gitignore ├── CREDITS ├── LICENSE ├── README.md ├── TODO ├── asteroid.lua ├── build.sh ├── building.lua ├── conf.lua ├── fnt │ └── visitor1.ttf ├── gameoverview.lua ├── img │ ├── apartment01.png │ ├── apartment02.png │ ├── apartment03.png │ ├── apartment04.png │ ├── club01.png │ ├── crosshair.png │ ├── icon.png │ ├── park01.png │ ├── play-button.png │ ├── policestation01.png │ ├── quit-button.png │ ├── restaurant01.png │ ├── sky-dawn.png │ ├── sky-day.png │ ├── sky-dusk.png │ ├── sky-night.png │ ├── smoke.png │ ├── title-screen.png │ ├── verticalroad01.png │ ├── verticalroad01b.png │ ├── verticalroad01c.png │ └── verticalroad01d.png ├── main.lua ├── particles.lua ├── pauseview.lua ├── playview.lua ├── pointer.lua ├── snd │ ├── explosion.ogg │ └── music.mp3 ├── startview.lua ├── swarm.lua ├── vector.lua ├── vfx │ ├── bloom.shader │ ├── blur_horiz.shader │ ├── blur_vert.shader │ └── combine.shader └── zoetrope │ ├── core │ ├── .promise.lua.swp │ ├── .tween.lua.swp │ ├── app.lua │ ├── cached.lua │ ├── class.lua │ ├── gamepad.lua │ ├── globals.lua │ ├── group.lua │ ├── keys.lua │ ├── mouse.lua │ ├── promise.lua │ ├── sprite.lua │ ├── timer.lua │ ├── tween.lua │ └── view.lua │ ├── init.lua │ ├── sprites │ ├── animation.lua │ ├── emitter.lua │ ├── fill.lua │ ├── map.lua │ ├── text.lua │ └── tile.lua │ ├── ui │ ├── button.lua │ ├── cursor.lua │ └── textinput.lua │ └── utils │ ├── debug.lua │ ├── factory.lua │ ├── recorder.lua │ ├── storage.lua │ └── subview.lua ├── 1gam-jan2013 ├── .gitignore ├── CREDITS ├── LICENSE ├── README.md ├── arena.lua ├── build.sh ├── conf.lua ├── enemy.lua ├── fnt │ ├── 8thcargo.ttf │ └── jupiter.ttf ├── fuel.lua ├── hud.lua ├── img │ ├── hud.png │ ├── icon.png │ ├── source.krt │ └── start.png ├── levels.lua ├── main.lua ├── particles.lua ├── player.lua ├── score.lua ├── snd │ ├── beep.ogg │ ├── bounce.ogg │ ├── detected.ogg │ ├── ding.ogg │ ├── explosion.ogg │ ├── homing.ogg │ ├── levelup.ogg │ ├── out_of_fuel.ogg │ ├── scanning.ogg │ ├── self_destruct.ogg │ ├── song1.ogg │ ├── song2.ogg │ ├── song3.ogg │ ├── thrust.ogg │ └── tractor_beam.ogg ├── starfield.lua ├── vfx │ ├── bloom.shader │ ├── blur_horiz.shader │ ├── blur_vert.shader │ └── combine.shader └── zoetrope │ ├── core │ ├── .promise.lua.swp │ ├── .tween.lua.swp │ ├── app.lua │ ├── cached.lua │ ├── class.lua │ ├── gamepad.lua │ ├── globals.lua │ ├── group.lua │ ├── keys.lua │ ├── mouse.lua │ ├── promise.lua │ ├── sprite.lua │ ├── timer.lua │ ├── tween.lua │ └── view.lua │ ├── init.lua │ ├── sprites │ ├── animation.lua │ ├── emitter.lua │ ├── fill.lua │ ├── map.lua │ ├── text.lua │ └── tile.lua │ ├── ui │ ├── button.lua │ ├── cursor.lua │ └── textinput.lua │ └── utils │ ├── debug.lua │ ├── factory.lua │ ├── recorder.lua │ ├── storage.lua │ └── subview.lua ├── BarcampRDU-2011-LuaLove ├── 1-helloworld │ ├── .DS_Store │ └── main.lua ├── HUMP Lib ├── README.mdown ├── links.mdown ├── loveapp │ ├── .DS_Store │ ├── finished.lua │ ├── images │ │ ├── barcamp-logo.png │ │ └── barcamp.png │ ├── logo.lua │ ├── main.lua │ ├── middleclass.lua │ └── vector.lua └── outline.mdown ├── CubeR ├── conf.lua ├── main.lua ├── matrix.lua ├── threed.lua └── vector.lua ├── Four-Languages ├── README.md ├── conf.lua ├── content │ └── Averia-Bold.ttf ├── main.lua ├── mouse.lua ├── questions │ └── questions.lua ├── ui.lua └── utils.lua ├── Gspot ├── Gspot.lua ├── README ├── conf.lua ├── img.png └── main.lua ├── LoveFrames ├── changelog.txt ├── debug.lua ├── init.lua ├── license.txt ├── objects │ ├── base.lua │ ├── button.lua │ ├── checkbox.lua │ ├── collapsiblecategory.lua │ ├── columnlist.lua │ ├── frame.lua │ ├── image.lua │ ├── imagebutton.lua │ ├── internal │ │ ├── closebutton.lua │ │ ├── columnlist │ │ │ ├── columnlistarea.lua │ │ │ ├── columnlistrow.lua │ │ │ └── coulmnlistheader.lua │ │ ├── linenumberspanel.lua │ │ ├── modalbackground.lua │ │ ├── multichoice │ │ │ ├── multichoicelist.lua │ │ │ └── multichoicerow.lua │ │ ├── scrollable │ │ │ ├── scrollarea.lua │ │ │ ├── scrollbar.lua │ │ │ ├── scrollbody.lua │ │ │ └── scrollbutton.lua │ │ ├── sliderbutton.lua │ │ ├── tabbutton.lua │ │ └── tooltip.lua │ ├── list.lua │ ├── multichoice.lua │ ├── numberbox.lua │ ├── panel.lua │ ├── progressbar.lua │ ├── slider.lua │ ├── tabs.lua │ ├── text.lua │ └── textinput.lua ├── readme.md ├── skins.lua ├── skins │ ├── Blue │ │ ├── images │ │ │ ├── arrow-down.png │ │ │ ├── arrow-left.png │ │ │ ├── arrow-right.png │ │ │ ├── arrow-up.png │ │ │ ├── close.png │ │ │ ├── gradients │ │ │ │ ├── button-down.png │ │ │ │ ├── button-hover.png │ │ │ │ ├── button-nohover.png │ │ │ │ ├── button-unclickable.png │ │ │ │ ├── frame-topbar.png │ │ │ │ └── progressbar.png │ │ │ └── multichoice-arrow.png │ │ └── skin.lua │ └── Orange │ │ ├── images │ │ ├── arrow-down.png │ │ ├── arrow-left.png │ │ ├── arrow-right.png │ │ ├── arrow-up.png │ │ ├── close.png │ │ ├── gradients │ │ │ ├── button-down.png │ │ │ ├── button-hover.png │ │ │ ├── button-nohover.png │ │ │ ├── button-unclickable.png │ │ │ ├── frame-topbar.png │ │ │ └── progressbar.png │ │ └── multichoice-arrow.png │ │ └── skin.lua ├── templates.lua ├── templates │ └── base.lua ├── third-party │ └── middleclass.lua └── util.lua ├── RasMoon ├── README.md ├── img │ └── rasmoon_logo.png ├── love2D │ ├── index.lua │ ├── main.lua │ └── sampleState.lua ├── rasLove ├── src │ ├── index.lua │ ├── ras_data.lua │ ├── ras_function.lua │ └── ras_string.lua └── utils │ └── LuaSrcDiet │ ├── COPYRIGHT │ └── LuaSrcDiet.lua ├── Readme.md ├── Snakey ├── README.md ├── conf.lua ├── gfx │ ├── bg.png │ ├── bgDisplay.png │ └── bgFade.png ├── license.txt ├── main.lua └── sfx │ └── spawn.ogg ├── ammo ├── .gitignore ├── .gitmodules ├── LICENSE.txt ├── README.md ├── core │ ├── Camera.lua │ ├── Entity.lua │ ├── LinkedList.lua │ ├── Sound.lua │ ├── Vector.lua │ ├── World.lua │ ├── extensions.lua │ └── init.lua └── init.lua ├── game-on ├── beamerouterthemeshortinfoline.sty ├── code │ ├── 0-hello │ │ └── main.lua │ ├── 1-hamster │ │ ├── conf.lua │ │ ├── hamster.png │ │ └── main.lua │ ├── 2-whack │ │ ├── AnAL.lua │ │ ├── conf.lua │ │ ├── hammer.png │ │ ├── hammer.svg │ │ ├── hump │ │ │ ├── camera.lua │ │ │ ├── class.lua │ │ │ ├── gamestate.lua │ │ │ ├── ringbuffer.lua │ │ │ ├── timer.lua │ │ │ └── vector.lua │ │ ├── knoll.png │ │ ├── knoll.svg │ │ ├── knoll_anim.png │ │ └── main.lua │ └── 3-pong │ │ ├── hardoncollider │ │ ├── class.lua │ │ ├── init.lua │ │ ├── polygon.lua │ │ ├── shapes.lua │ │ ├── spatialhash.lua │ │ └── vector.lua │ │ └── main.lua ├── gameloop.dia ├── gameloop.png ├── love.png ├── love_logo.png ├── love_logo2.png ├── lua-logo-nolabel.png └── vortrag.tex ├── gamera ├── MIT-LICENSE.txt ├── README.md └── gamera.lua ├── gravitonik ├── AnAL.lua ├── README ├── conf.lua ├── functions.lua ├── gameplay.lua ├── gfx │ ├── Prototype.ttf │ ├── Prototype.txt │ ├── arrow.png │ ├── cc-by-nc-sa80x15.png │ ├── flame.png │ ├── fuelbottle.png │ ├── glow.png │ ├── gravitonik-title.png │ ├── love-logo-128x64.png │ ├── lovelogo.png │ ├── part1.png │ ├── part2.png │ ├── part3.png │ ├── particle.png │ ├── particon.png │ ├── planet0001.png │ ├── planet0002.png │ ├── planet0003.png │ ├── planet0004.png │ ├── planet0005.png │ ├── planet0006.png │ ├── planet0007.png │ ├── planet0008.png │ ├── planet0009.png │ ├── planet0010.png │ ├── planet0011.png │ ├── planet0012.png │ ├── planet0013.png │ ├── planet0014.png │ ├── planet0015.png │ ├── planet0016.png │ ├── planet0017.png │ ├── planet0018.png │ ├── planet0019.png │ ├── planet0020.png │ ├── planet0021.png │ ├── planet0022.png │ ├── planet0023.png │ ├── planet0024.png │ ├── spaceman-jump.png │ ├── spaceman-run.png │ ├── spaceman-stand.png │ ├── starbg.png │ └── window-icon.png ├── levels │ ├── Level_1.lua │ ├── Level_10.lua │ ├── Level_11.lua │ ├── Level_12.lua │ ├── Level_13.lua │ ├── Level_14.lua │ ├── Level_15.lua │ ├── Level_16.lua │ ├── Level_2.lua │ ├── Level_3.lua │ ├── Level_4.lua │ ├── Level_5.lua │ ├── Level_6.lua │ ├── Level_7.lua │ ├── Level_8.lua │ ├── Level_9.lua │ └── Level_template.lua ├── main.lua ├── menus.lua └── openall ├── gunstar ├── BlockDudeObject.lua ├── DebugUtils.lua ├── FallingSceneController.lua ├── HeartObject.lua ├── HelloWorldSceneController.lua ├── PhysicalObject.lua ├── PhysicalSceneController.lua ├── SceneController.lua ├── Snap.mp3 ├── UmbrellaObject.lua ├── heart.png ├── main.lua ├── middleclass.lua ├── trollface.png └── umbrella.png ├── hatred-skeleton ├── .gitignore ├── .gitmodules ├── Makefile ├── README.md ├── fonts │ └── DroidSansMono.ttf ├── graphics │ └── .gitkeep ├── main.lua ├── sounds │ └── .gitkeep ├── spec │ └── GameEngine_spec.lua └── src │ └── GameEngine.lua ├── hump ├── README.md ├── camera.lua ├── class.lua ├── gamestate.lua ├── signal.lua ├── timer.lua ├── vector-light.lua └── vector.lua ├── invader.love ├── .gitignore ├── .gitmodules ├── bullet.lua ├── consts.lua ├── invader.lua ├── main.lua ├── player.lua ├── swarm.lua ├── underscore.lua └── world.lua ├── ld25 ├── .gitignore ├── LICENSE ├── README.md ├── art │ ├── fonts │ │ └── 04b03.ttf │ ├── images │ │ ├── bat.png │ │ ├── centhra.pdn │ │ ├── centhra.png │ │ ├── ghost.png │ │ ├── hero_knight.png │ │ ├── hero_templar.png │ │ ├── map.png │ │ ├── portrait_bat.png │ │ ├── portrait_ghost.png │ │ ├── portrait_hero_knight.png │ │ ├── portrait_hero_templar.png │ │ ├── portrait_skeleton.png │ │ ├── portrait_slime.png │ │ ├── portrait_spider.png │ │ ├── progress.png │ │ ├── progress_sep.png │ │ ├── skeleton.png │ │ ├── skull.png │ │ ├── slime.png │ │ ├── spider.png │ │ ├── spiderold.png │ │ ├── status.png │ │ └── tiles.png │ └── sounds │ │ ├── derpybgm.ogg │ │ ├── die.wav │ │ ├── easy_quicksong.ogg │ │ ├── hitsound.wav │ │ └── pop.wav ├── deps │ ├── 7z.dll │ ├── 7za.exe │ ├── DevIL.dll │ ├── OpenAL32.dll │ ├── SDL.dll │ └── love.exe ├── src │ ├── audio.lua │ ├── classes.lua │ ├── collision.lua │ ├── conf.lua │ ├── control.lua │ ├── enemy.lua │ ├── entity.lua │ ├── friendly.lua │ ├── gui.lua │ ├── hardoncollider │ │ ├── class.lua │ │ ├── gjk.lua │ │ ├── init.lua │ │ ├── polygon.lua │ │ ├── shapes.lua │ │ ├── spatialhash.lua │ │ └── vector-light.lua │ ├── lcg.lua │ ├── main.lua │ ├── navigation.lua │ ├── waves.lua │ └── world.lua └── util │ ├── dist.bat │ └── dist.sh ├── leaf ├── .gitignore ├── README.md ├── camera.lua ├── color.lua ├── console.lua ├── containers.lua ├── context.lua ├── fs.lua ├── functional.lua ├── init.lua ├── layout.lua ├── object.lua ├── polygon.lua ├── rect.lua ├── screen.lua ├── time.lua ├── utils.lua └── vector.lua ├── love-builder ├── README.md ├── love_builder.rb ├── love_builder_win.rb └── templates │ └── default │ ├── conf.lua │ └── main.lua ├── lovesui ├── LICENSE ├── Makefile ├── conf.lua ├── main.moon └── sui.moon ├── mari0 ├── _DO NOT INCLUDE │ ├── bigmarionoportal.png │ ├── icon.ico │ └── icon.png ├── bighatconfigs.lua ├── blockdebris.lua ├── bowser.lua ├── box.lua ├── bubble.lua ├── bulletbill.lua ├── button.lua ├── castlefire.lua ├── cheepcheep.lua ├── class.lua ├── client.lua ├── coinblockanimation.lua ├── conf.lua ├── cubedispenser.lua ├── door.lua ├── editor.lua ├── emancipationgrill.lua ├── entity.lua ├── faithplate.lua ├── fire.lua ├── fireball.lua ├── firework.lua ├── flower.lua ├── flyingfish.lua ├── game.lua ├── gel.lua ├── geldispenser.lua ├── goomba.lua ├── graphics │ ├── GUI │ │ ├── checkbox.png │ │ └── dropdownarrow.png │ ├── Minecraft │ │ ├── bigmarioanimations.png │ │ ├── bigmarioanimations0.png │ │ ├── bigmarioanimations1.png │ │ ├── bigmarioanimations2.png │ │ ├── bigmarioanimations3.png │ │ ├── blockbreak.png │ │ ├── gui.png │ │ ├── marioanimations.png │ │ ├── marioanimations0.png │ │ ├── marioanimations1.png │ │ ├── marioanimations2.png │ │ ├── marioanimations3.png │ │ └── selected.png │ ├── SMB │ │ ├── axe.png │ │ ├── beetle.png │ │ ├── bighats │ │ │ ├── bakerboy.png │ │ │ ├── banana.png │ │ │ ├── batter.png │ │ │ ├── beanie.png │ │ │ ├── bestpony.png │ │ │ ├── bird.png │ │ │ ├── blooper.png │ │ │ ├── bombingrun.png │ │ │ ├── bonk.png │ │ │ ├── bonkboy.png │ │ │ ├── crown.png │ │ │ ├── drseuss.png │ │ │ ├── familiarfez.png │ │ │ ├── flippedtrilby.png │ │ │ ├── goodnewseverybody.png │ │ │ ├── indian.png │ │ │ ├── jetset.png │ │ │ ├── koopa.png │ │ │ ├── milkman.png │ │ │ ├── officerhat.png │ │ │ ├── sailor.png │ │ │ ├── santahat.png │ │ │ ├── shyguy.png │ │ │ ├── standard.png │ │ │ ├── superfan.png │ │ │ ├── toilet.png │ │ │ ├── tophat.png │ │ │ ├── towering1.png │ │ │ ├── towering2.png │ │ │ ├── towering3.png │ │ │ ├── troublemaker.png │ │ │ ├── tyrolean.png │ │ │ └── whoopee.png │ │ ├── blockdebris.png │ │ ├── bowser.png │ │ ├── box.png │ │ ├── bubble.png │ │ ├── bulletbill.png │ │ ├── buttonbase.png │ │ ├── buttonbutton.png │ │ ├── castleflag.png │ │ ├── cheepcheep.png │ │ ├── coin.png │ │ ├── coinanimation.png │ │ ├── coinblock.png │ │ ├── coinblockanimation.png │ │ ├── cubedispenser.png │ │ ├── decoys.png │ │ ├── doorcenter.png │ │ ├── doorpiece.png │ │ ├── emanceparticle.png │ │ ├── emanceside.png │ │ ├── entities.png │ │ ├── faithplateplate.png │ │ ├── fire.png │ │ ├── fireball.png │ │ ├── flag.png │ │ ├── flower.png │ │ ├── font.png │ │ ├── gel1.png │ │ ├── gel1ground.png │ │ ├── gel2.png │ │ ├── gel2ground.png │ │ ├── gel3.png │ │ ├── gel3ground.png │ │ ├── geldispenser.png │ │ ├── goomba.png │ │ ├── hammer.png │ │ ├── hammerbros.png │ │ ├── hats │ │ │ ├── bakerboy.png │ │ │ ├── banana.png │ │ │ ├── batter.png │ │ │ ├── beanie.png │ │ │ ├── bestpony.png │ │ │ ├── bird.png │ │ │ ├── blooper.png │ │ │ ├── bombingrun.png │ │ │ ├── bonk.png │ │ │ ├── bonkboy.png │ │ │ ├── crown.png │ │ │ ├── drseuss.png │ │ │ ├── familiarfez.png │ │ │ ├── flippedtrilby.png │ │ │ ├── goodnewseverybody.png │ │ │ ├── indian.png │ │ │ ├── jetset.png │ │ │ ├── koopa.png │ │ │ ├── milkman.png │ │ │ ├── officerhat.png │ │ │ ├── sailor.png │ │ │ ├── santahat.png │ │ │ ├── shyguy.png │ │ │ ├── standard.png │ │ │ ├── superfan.png │ │ │ ├── toilet.png │ │ │ ├── tophat.png │ │ │ ├── towering1.png │ │ │ ├── towering2.png │ │ │ ├── towering3.png │ │ │ ├── troublemaker.png │ │ │ ├── tyrolean.png │ │ │ └── whoopee.png │ │ ├── huebar.png │ │ ├── huebarmarker.png │ │ ├── koopa.png │ │ ├── koopared.png │ │ ├── lakito.png │ │ ├── laser.png │ │ ├── laserdetector.png │ │ ├── laserside.png │ │ ├── lightbridge.png │ │ ├── lightbridgeside.png │ │ ├── littlebigmario.png │ │ ├── mappackback.png │ │ ├── mappackhighlight.png │ │ ├── mappacknoicon.png │ │ ├── mappackoverlay.png │ │ ├── mappackscrollbar.png │ │ ├── menuselect.png │ │ ├── oneuptext.png │ │ ├── options │ │ │ ├── secondskin0.png │ │ │ ├── secondskin1.png │ │ │ ├── secondskin2.png │ │ │ ├── secondskin3.png │ │ │ ├── skin0.png │ │ │ ├── skin1.png │ │ │ ├── skin2.png │ │ │ └── skin3.png │ │ ├── peach.png │ │ ├── plant.png │ │ ├── platform.png │ │ ├── platformbonus.png │ │ ├── player │ │ │ ├── bigmarioanimations.png │ │ │ ├── bigmarioanimations0.png │ │ │ ├── bigmarioanimations1.png │ │ │ ├── bigmarioanimations2.png │ │ │ ├── bigmarioanimations3.png │ │ │ ├── bigmarioanimationsold.png │ │ │ ├── marioanimations.png │ │ │ ├── marioanimations0.png │ │ │ ├── marioanimations1.png │ │ │ ├── marioanimations2.png │ │ │ └── marioanimations3.png │ │ ├── playerselectarrow.png │ │ ├── portal.png │ │ ├── portalbackground.png │ │ ├── portalcrosshair.png │ │ ├── portaldot.png │ │ ├── portalglow.png │ │ ├── portalparticle.png │ │ ├── portalprojectile.png │ │ ├── portalprojectileparticle.png │ │ ├── portaltiles.png │ │ ├── pushbutton.png │ │ ├── seesaw.png │ │ ├── smallfont.png │ │ ├── smbtiles.png │ │ ├── spikey.png │ │ ├── spring.png │ │ ├── squid.png │ │ ├── star.png │ │ ├── title.png │ │ ├── toad.png │ │ ├── upfire.png │ │ ├── vine.png │ │ ├── volumeslider.png │ │ ├── wallindicator.png │ │ └── walltimer.png │ ├── gradient.png │ ├── icon.gif │ ├── portaltiles.png │ ├── rainboom.png │ ├── stabyourself.png │ └── stabyourselfblood.png ├── groundlight.lua ├── gui.lua ├── hammerbro.lua ├── hatconfigs.lua ├── intro.lua ├── koopa.lua ├── lakito.lua ├── laser.lua ├── laserdetector.lua ├── levelscreen.lua ├── lightbridge.lua ├── main.lua ├── mappacks │ ├── portal │ │ ├── 1-1.txt │ │ ├── 1-2.txt │ │ ├── 1-3.txt │ │ ├── 1-4.txt │ │ ├── 2-1.txt │ │ ├── 2-2.txt │ │ ├── 2-3.txt │ │ ├── 2-4.txt │ │ ├── 3-1.txt │ │ ├── icon.png │ │ └── settings.txt │ └── smb │ │ ├── 1-1.txt │ │ ├── 1-1_1.txt │ │ ├── 1-2.txt │ │ ├── 1-2_1.txt │ │ ├── 1-2_2.txt │ │ ├── 1-2_3.txt │ │ ├── 1-3.txt │ │ ├── 1-4.txt │ │ ├── 2-1.txt │ │ ├── 2-1_1.txt │ │ ├── 2-1_2.txt │ │ ├── 2-2.txt │ │ ├── 2-2_1.txt │ │ ├── 2-2_2.txt │ │ ├── 2-3.txt │ │ ├── 2-4.txt │ │ ├── 3-1.txt │ │ ├── 3-1_1.txt │ │ ├── 3-1_2.txt │ │ ├── 3-2.txt │ │ ├── 3-3.txt │ │ ├── 3-4.txt │ │ ├── 4-1.txt │ │ ├── 4-1_1.txt │ │ ├── 4-2.txt │ │ ├── 4-2_1.txt │ │ ├── 4-2_2.txt │ │ ├── 4-2_3.txt │ │ ├── 4-2_4.txt │ │ ├── 4-3.txt │ │ ├── 4-4.txt │ │ ├── 5-1.txt │ │ ├── 5-1_1.txt │ │ ├── 5-2.txt │ │ ├── 5-2_1.txt │ │ ├── 5-2_2.txt │ │ ├── 5-3.txt │ │ ├── 5-4.txt │ │ ├── 6-1.txt │ │ ├── 6-2.txt │ │ ├── 6-2_1.txt │ │ ├── 6-2_2.txt │ │ ├── 6-2_3.txt │ │ ├── 6-2_4.txt │ │ ├── 6-3.txt │ │ ├── 6-4.txt │ │ ├── 7-1.txt │ │ ├── 7-1_1.txt │ │ ├── 7-2.txt │ │ ├── 7-2_1.txt │ │ ├── 7-2_2.txt │ │ ├── 7-3.txt │ │ ├── 7-4.txt │ │ ├── 8-1.txt │ │ ├── 8-1_1.txt │ │ ├── 8-2.txt │ │ ├── 8-2_1.txt │ │ ├── 8-3.txt │ │ ├── 8-4.txt │ │ ├── 8-4_1.txt │ │ ├── 8-4_2.txt │ │ ├── 8-4_3.txt │ │ ├── 8-4_4.txt │ │ ├── M-1.txt │ │ ├── icon.png │ │ └── settings.txt ├── mario.lua ├── menu.lua ├── miniblock.lua ├── mushroom.lua ├── musicloader.lua ├── musicloader_thread.lua ├── netplay.lua ├── netplayinc │ ├── LUBE.lua │ ├── MiddleClass.lua │ └── umsg.lua ├── notgate.lua ├── oneup.lua ├── physics.lua ├── plant.lua ├── platform.lua ├── platformspawner.lua ├── portalparticle.lua ├── portalprojectile.lua ├── portalwall.lua ├── pushbutton.lua ├── quad.lua ├── rainboom.lua ├── rgblist.lua ├── screenboundary.lua ├── scrollingscore.lua ├── seesaw.lua ├── seesawplatform.lua ├── server.lua ├── sha1.lua ├── shaders │ ├── 4xBR.frag │ ├── CRT-Simple.frag │ ├── CRT.frag │ ├── HDR-TV.frag │ ├── blcknwht.frag │ ├── curvature.frag │ ├── dotnbloom.frag │ ├── edges.frag │ ├── heavybloom.frag │ ├── hq2x.frag │ ├── hq4x.frag │ ├── init.lua │ ├── phosphor.frag │ ├── phosphorish.frag │ ├── pip.frag │ ├── pixellate.frag │ ├── pixellate2.frag │ ├── radialblur.frag │ ├── scale4xhq.frag │ ├── scanline-3x.frag │ ├── scanline-4x.frag │ ├── scanlines2.frag │ ├── seperator.frag │ ├── simplebloom.frag │ ├── technicolor1.frag │ ├── technicolor2.frag │ └── waterpaint.frag ├── sounds │ ├── blockbreak.ogg │ ├── blockhit.ogg │ ├── boom.ogg │ ├── bowserfall.ogg │ ├── bridgebreak.ogg │ ├── bulletbill.ogg │ ├── castle-fast.ogg │ ├── castle.ogg │ ├── castleend.ogg │ ├── coin.ogg │ ├── death.ogg │ ├── fire.ogg │ ├── fireball.ogg │ ├── gameover.ogg │ ├── intermission.ogg │ ├── jump.ogg │ ├── jumpbig.ogg │ ├── konami.ogg │ ├── levelend.ogg │ ├── lowtime.ogg │ ├── mushroomappear.ogg │ ├── mushroomeat.ogg │ ├── oneup.ogg │ ├── overworld-fast.ogg │ ├── overworld.ogg │ ├── pause.ogg │ ├── pipe.ogg │ ├── portal1open.ogg │ ├── portal2open.ogg │ ├── portalenter.ogg │ ├── portalfizzle.ogg │ ├── princessmusic.ogg │ ├── rainboom.ogg │ ├── scorering.ogg │ ├── shot.ogg │ ├── shrink.ogg │ ├── stab.ogg │ ├── starmusic-fast.ogg │ ├── starmusic.ogg │ ├── stomp.ogg │ ├── swim.ogg │ ├── underground-fast.ogg │ ├── underground.ogg │ ├── underwater-fast.ogg │ ├── underwater.ogg │ └── vine.ogg ├── spring.lua ├── squid.lua ├── star.lua ├── tile.lua ├── upfire.lua ├── variables.lua ├── vine.lua ├── wallindicator.lua └── walltimer.lua ├── mrrescue ├── AnAL.lua ├── TSerial.lua ├── boss.lua ├── conf.lua ├── config.lua ├── data │ ├── ashes.png │ ├── backgrounds │ │ ├── mountains.png │ │ └── night.png │ ├── black_smoke.png │ ├── black_smoke_small.png │ ├── boldfont.png │ ├── boss_health.png │ ├── captain_dialog.png │ ├── circles.png │ ├── door.png │ ├── enemy_angryjumper_hit.png │ ├── enemy_angryjumper_jump.png │ ├── enemy_angrynormal_hit.png │ ├── enemy_angrynormal_recover.png │ ├── enemy_angrynormal_run.png │ ├── enemy_angryvolcano_hit.png │ ├── enemy_angryvolcano_run.png │ ├── enemy_angryvolcano_shoot.png │ ├── enemy_fireball.png │ ├── enemy_jumper_hit.png │ ├── enemy_jumper_jump.png │ ├── enemy_jumper_recover.png │ ├── enemy_normal_hit.png │ ├── enemy_normal_recover.png │ ├── enemy_normal_run.png │ ├── enemy_thief_hit.png │ ├── enemy_thief_recover.png │ ├── enemy_thief_run.png │ ├── enemy_volcano_hit.png │ ├── enemy_volcano_run.png │ ├── enemy_volcano_shoot.png │ ├── fire_floor.png │ ├── fire_wall.png │ ├── fire_wall_small.png │ ├── gasghost.png │ ├── gasghost_hit.png │ ├── gasleak_angry_idle_shot.png │ ├── gasleak_hit.png │ ├── gasleak_idle.png │ ├── gasleak_idle_shot.png │ ├── gasleak_portrait.png │ ├── gasleak_rage_idle.png │ ├── gasleak_rage_idle_shot.png │ ├── gasleak_rage_shot_walk.png │ ├── gasleak_rage_walk.png │ ├── gasleak_shot_walk.png │ ├── gasleak_transition.png │ ├── gasleak_walk.png │ ├── highscore_panes.png │ ├── howto.png │ ├── hud.png │ ├── hud2.png │ ├── hud_people.png │ ├── human_1_burn.png │ ├── human_1_carry_left.png │ ├── human_1_carry_right.png │ ├── human_1_fly.png │ ├── human_1_panic.png │ ├── human_1_run.png │ ├── human_2_burn.png │ ├── human_2_carry_left.png │ ├── human_2_carry_right.png │ ├── human_2_fly.png │ ├── human_2_panic.png │ ├── human_2_run.png │ ├── human_3_burn.png │ ├── human_3_carry_left.png │ ├── human_3_carry_right.png │ ├── human_3_fly.png │ ├── human_3_panic.png │ ├── human_3_run.png │ ├── human_4_burn.png │ ├── human_4_carry_left.png │ ├── human_4_carry_right.png │ ├── human_4_fly.png │ ├── human_4_panic.png │ ├── human_4_run.png │ ├── item_coolant.png │ ├── item_regen.png │ ├── item_reserve.png │ ├── item_slots.png │ ├── item_suit.png │ ├── item_tank.png │ ├── level_buildings.png │ ├── light_fire.png │ ├── light_fireball.png │ ├── light_player.png │ ├── lovesplash.png │ ├── lovesplashpixel.png │ ├── magmahulk_jump.png │ ├── magmahulk_jump_hit.png │ ├── magmahulk_land.png │ ├── magmahulk_land_hit.png │ ├── magmahulk_portrait.png │ ├── magmahulk_rage_jump.png │ ├── magmahulk_rage_land.png │ ├── menu_box.png │ ├── overloaded_bar.png │ ├── player_climb_down.png │ ├── player_climb_up.png │ ├── player_death.png │ ├── player_gun.png │ ├── player_running.png │ ├── player_throw.png │ ├── popup_text.png │ ├── red_screen.png │ ├── reserve_bar.png │ ├── sfx │ │ ├── blip.wav │ │ ├── bundesliga.ogg │ │ ├── confirm.wav │ │ ├── door.wav │ │ ├── empty.wav │ │ ├── endexplosion.wav │ │ ├── happyfeerings.ogg │ │ ├── menujazz.ogg │ │ ├── opening.ogg │ │ ├── powerup.wav │ │ ├── rockerronni.ogg │ │ └── scooterfest.ogg │ ├── shards.png │ ├── shockwave.png │ ├── sparkles.png │ ├── splash.png │ ├── stream.png │ ├── tangram.png │ ├── temperature_bar.png │ ├── tiles.png │ ├── warning_icons.png │ ├── water.png │ └── water_bar.png ├── door.lua ├── enemy.lua ├── fire.lua ├── gasghost.lua ├── gasleak.lua ├── highscore_entry.lua ├── highscore_list.lua ├── howto.lua ├── human.lua ├── ingame.lua ├── item.lua ├── joystick.lua ├── keyboard.lua ├── levelselection.lua ├── magmahulk.lua ├── main.lua ├── mainmenu.lua ├── map.lua ├── maps │ ├── base.lua │ ├── base.tmx │ ├── floors │ │ ├── 1-1-1.lua │ │ ├── 1-1-1.tmx │ │ ├── 1-2.lua │ │ ├── 1-2.tmx │ │ ├── 2-1.lua │ │ ├── 2-1.tmx │ │ ├── 2-2.lua │ │ └── 2-2.tmx │ ├── room │ │ ├── 10 │ │ │ ├── 1.lua │ │ │ ├── 1.tmx │ │ │ ├── 2.lua │ │ │ ├── 2.tmx │ │ │ ├── 3.lua │ │ │ ├── 3.tmx │ │ │ ├── 4.lua │ │ │ ├── 4.tmx │ │ │ ├── 5.lua │ │ │ ├── 5.tmx │ │ │ ├── 6.lua │ │ │ └── 6.tmx │ │ ├── 11 │ │ │ ├── 1.lua │ │ │ ├── 1.tmx │ │ │ ├── 2.lua │ │ │ ├── 2.tmx │ │ │ ├── 3.lua │ │ │ ├── 3.tmx │ │ │ ├── 4.lua │ │ │ ├── 4.tmx │ │ │ ├── 5.lua │ │ │ ├── 5.tmx │ │ │ ├── 6.lua │ │ │ └── 6.tmx │ │ ├── 17 │ │ │ ├── 1.lua │ │ │ ├── 1.tmx │ │ │ ├── 2.lua │ │ │ ├── 2.tmx │ │ │ ├── 3.lua │ │ │ ├── 3.tmx │ │ │ ├── 4.lua │ │ │ ├── 4.tmx │ │ │ ├── 5.lua │ │ │ ├── 5.tmx │ │ │ ├── 6.lua │ │ │ └── 6.tmx │ │ └── 24 │ │ │ ├── 1.lua │ │ │ ├── 1.tmx │ │ │ ├── 2.lua │ │ │ ├── 2.tmx │ │ │ ├── 3.lua │ │ │ ├── 3.tmx │ │ │ ├── 4.lua │ │ │ ├── 4.tmx │ │ │ ├── 5.lua │ │ │ ├── 5.tmx │ │ │ ├── 6.lua │ │ │ └── 6.tmx │ ├── top_base.lua │ └── top_base.tmx ├── options.lua ├── particles.lua ├── player.lua ├── resources.lua ├── slam.lua ├── splash.lua └── util.lua ├── pew-pew-boom ├── Game.lua ├── Game_MainMenu.lua ├── Game_Play.lua ├── README.png ├── actors │ ├── AI.lua │ ├── AutoCamera.lua │ ├── Field.lua │ ├── FollowField.lua │ ├── Module.lua │ ├── PlayerAI.lua │ ├── Projectile.lua │ ├── Slot.lua │ ├── Vehicle.lua │ ├── Weapon.lua │ └── space │ │ ├── modules │ │ ├── Gyroscopes.lua │ │ ├── PlasmaCannons.lua │ │ └── Thrusters.lua │ │ ├── other │ │ ├── Asteroids.lua │ │ └── PlasmaProjectiles.lua │ │ └── vehicles │ │ ├── LensCulinaris.lua │ │ ├── Razor.lua │ │ └── Ship.lua ├── conf.lua ├── fonts │ └── SVBasicManual.ttf ├── images │ └── image.png ├── license.txt ├── main.lua ├── mixins │ ├── AutoCamerable.lua │ ├── BodyBuilder.lua │ ├── DebugDraw.lua │ ├── HasGroupIndex.lua │ ├── PacManLike.lua │ └── SlotBuilder.lua ├── resources │ └── template.xcf └── sfx │ ├── boom.mp3 │ ├── impact-hulk.mp3 │ ├── pew.mp3 │ └── shield.mp3 ├── roguelove ├── .gitignore ├── README.md ├── RLMap.lua ├── arc45.lua ├── circles.lua ├── conf.lua ├── demo.lua ├── drawing.txt ├── fonts │ └── Perfect DOS VGA 437.ttf ├── images │ └── Codepage-437.png ├── main.lua ├── shadowcasting.lua └── spritebatchtest.lua ├── sienna ├── AdvTiledLoader │ ├── Base64.lua │ ├── Grid.lua │ ├── Loader.lua │ ├── Map.lua │ ├── Object.lua │ ├── ObjectLayer.lua │ ├── Tile.lua │ ├── TileLayer.lua │ ├── TileSet.lua │ ├── external │ │ ├── crc32lua.lua │ │ ├── deflatelua.lua │ │ ├── gunziplua.lua │ │ ├── numberlua.lua │ │ ├── optparse.lua │ │ └── xml.lua │ └── init.lua ├── LICENCE.txt ├── README.md ├── TSerial.lua ├── art │ ├── bgtiles.png │ ├── enemies.png │ ├── fgtiles.png │ ├── font_bold.png │ ├── font_medium.png │ ├── font_small.png │ ├── hud.png │ ├── levelscreen.png │ ├── objects.png │ ├── player.png │ ├── player2.png │ ├── player_white.png │ └── titlescreen.png ├── checkpoint.lua ├── coin.lua ├── conf.lua ├── data.lua ├── enemies.lua ├── jumppad.lua ├── levelselection.lua ├── main.lua ├── map.lua ├── maps │ ├── boxes.tmx │ ├── cave.tmx │ ├── mine1.tmx │ ├── mine2.tmx │ ├── mine3.tmx │ ├── mine4.tmx │ ├── template.tmx │ ├── temple1.tmx │ ├── temple2.tmx │ ├── temple3.tmx │ ├── temple4.tmx │ ├── temple5.tmx │ ├── test.tmx │ └── test2.tmx ├── menu.lua ├── orb.lua ├── particles.lua ├── player.lua ├── resources.lua ├── sfx │ ├── blip.wav │ ├── blip2.wav │ ├── burn.wav │ ├── checkpoint.wav │ ├── coin.wav │ ├── fireball.wav │ ├── fireball2.wav │ ├── hurt.wav │ ├── jump.wav │ ├── jumppad.wav │ ├── rockgone.wav │ ├── rockrelease.wav │ ├── rugar-a_scent_of_europe.ogg │ ├── turret.wav │ └── water.wav ├── slam.lua └── spike.lua └── stable-fluids-lua ├── README.md ├── conf.lua ├── main.lua └── solver.lua /1gam-feb2013/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | version.lua 3 | -------------------------------------------------------------------------------- /1gam-feb2013/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/1gam-feb2013/TODO -------------------------------------------------------------------------------- /1gam-feb2013/fnt/visitor1.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/1gam-feb2013/fnt/visitor1.ttf -------------------------------------------------------------------------------- /1gam-feb2013/img/apartment01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/1gam-feb2013/img/apartment01.png -------------------------------------------------------------------------------- /1gam-feb2013/img/apartment02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/1gam-feb2013/img/apartment02.png -------------------------------------------------------------------------------- /1gam-feb2013/img/apartment03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/1gam-feb2013/img/apartment03.png -------------------------------------------------------------------------------- /1gam-feb2013/img/apartment04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/1gam-feb2013/img/apartment04.png -------------------------------------------------------------------------------- /1gam-feb2013/img/club01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/1gam-feb2013/img/club01.png -------------------------------------------------------------------------------- /1gam-feb2013/img/crosshair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/1gam-feb2013/img/crosshair.png -------------------------------------------------------------------------------- /1gam-feb2013/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/1gam-feb2013/img/icon.png -------------------------------------------------------------------------------- /1gam-feb2013/img/park01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/1gam-feb2013/img/park01.png -------------------------------------------------------------------------------- /1gam-feb2013/img/play-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/1gam-feb2013/img/play-button.png -------------------------------------------------------------------------------- /1gam-feb2013/img/policestation01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/1gam-feb2013/img/policestation01.png -------------------------------------------------------------------------------- /1gam-feb2013/img/quit-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/1gam-feb2013/img/quit-button.png -------------------------------------------------------------------------------- /1gam-feb2013/img/restaurant01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/1gam-feb2013/img/restaurant01.png -------------------------------------------------------------------------------- /1gam-feb2013/img/sky-dawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/1gam-feb2013/img/sky-dawn.png -------------------------------------------------------------------------------- /1gam-feb2013/img/sky-day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/1gam-feb2013/img/sky-day.png -------------------------------------------------------------------------------- /1gam-feb2013/img/sky-dusk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/1gam-feb2013/img/sky-dusk.png -------------------------------------------------------------------------------- /1gam-feb2013/img/sky-night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/1gam-feb2013/img/sky-night.png -------------------------------------------------------------------------------- /1gam-feb2013/img/smoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/1gam-feb2013/img/smoke.png -------------------------------------------------------------------------------- /1gam-feb2013/img/title-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/1gam-feb2013/img/title-screen.png -------------------------------------------------------------------------------- /1gam-feb2013/img/verticalroad01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/1gam-feb2013/img/verticalroad01.png -------------------------------------------------------------------------------- /1gam-feb2013/img/verticalroad01b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/1gam-feb2013/img/verticalroad01b.png -------------------------------------------------------------------------------- /1gam-feb2013/img/verticalroad01c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/1gam-feb2013/img/verticalroad01c.png -------------------------------------------------------------------------------- /1gam-feb2013/img/verticalroad01d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/1gam-feb2013/img/verticalroad01d.png -------------------------------------------------------------------------------- /1gam-feb2013/snd/explosion.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/1gam-feb2013/snd/explosion.ogg -------------------------------------------------------------------------------- /1gam-feb2013/snd/music.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/1gam-feb2013/snd/music.mp3 -------------------------------------------------------------------------------- /1gam-feb2013/zoetrope/core/.promise.lua.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/1gam-feb2013/zoetrope/core/.promise.lua.swp -------------------------------------------------------------------------------- /1gam-feb2013/zoetrope/core/.tween.lua.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/1gam-feb2013/zoetrope/core/.tween.lua.swp -------------------------------------------------------------------------------- /1gam-jan2013/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | version.lua 3 | -------------------------------------------------------------------------------- /1gam-jan2013/fnt/8thcargo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/1gam-jan2013/fnt/8thcargo.ttf -------------------------------------------------------------------------------- /1gam-jan2013/fnt/jupiter.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/1gam-jan2013/fnt/jupiter.ttf -------------------------------------------------------------------------------- /1gam-jan2013/img/hud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/1gam-jan2013/img/hud.png -------------------------------------------------------------------------------- /1gam-jan2013/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/1gam-jan2013/img/icon.png -------------------------------------------------------------------------------- /1gam-jan2013/img/source.krt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/1gam-jan2013/img/source.krt -------------------------------------------------------------------------------- /1gam-jan2013/img/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/1gam-jan2013/img/start.png -------------------------------------------------------------------------------- /1gam-jan2013/levels.lua: -------------------------------------------------------------------------------- 1 | levels = { 2 | { enemies = 0, fuel = 100 }, 3 | { enemies = 1, fuel = 200 }, 4 | { enemies = 2, fuel = 250 }, 5 | { enemies = 3, fuel = 300 }, 6 | { enemies = 4, fuel = 350 }, 7 | { enemies = 5, fuel = 350 }, 8 | { enemies = 6, fuel = 350 }, 9 | { enemies = 7, fuel = 350 }, 10 | { enemies = 8, fuel = 350 }, 11 | { enemies = 9, fuel = 350 }, 12 | { enemies = 10, fuel = 500 }, 13 | { enemies = 11, fuel = 500 }, 14 | { enemies = 12, fuel = 500 }, 15 | { enemies = 13, fuel = 500 }, 16 | { enemies = 14, fuel = 500 }, 17 | { enemies = 15, fuel = 500 }, 18 | } -------------------------------------------------------------------------------- /1gam-jan2013/snd/beep.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/1gam-jan2013/snd/beep.ogg -------------------------------------------------------------------------------- /1gam-jan2013/snd/bounce.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/1gam-jan2013/snd/bounce.ogg -------------------------------------------------------------------------------- /1gam-jan2013/snd/detected.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/1gam-jan2013/snd/detected.ogg -------------------------------------------------------------------------------- /1gam-jan2013/snd/ding.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/1gam-jan2013/snd/ding.ogg -------------------------------------------------------------------------------- /1gam-jan2013/snd/explosion.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/1gam-jan2013/snd/explosion.ogg -------------------------------------------------------------------------------- /1gam-jan2013/snd/homing.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/1gam-jan2013/snd/homing.ogg -------------------------------------------------------------------------------- /1gam-jan2013/snd/levelup.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/1gam-jan2013/snd/levelup.ogg -------------------------------------------------------------------------------- /1gam-jan2013/snd/out_of_fuel.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/1gam-jan2013/snd/out_of_fuel.ogg -------------------------------------------------------------------------------- /1gam-jan2013/snd/scanning.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/1gam-jan2013/snd/scanning.ogg -------------------------------------------------------------------------------- /1gam-jan2013/snd/self_destruct.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/1gam-jan2013/snd/self_destruct.ogg -------------------------------------------------------------------------------- /1gam-jan2013/snd/song1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/1gam-jan2013/snd/song1.ogg -------------------------------------------------------------------------------- /1gam-jan2013/snd/song2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/1gam-jan2013/snd/song2.ogg -------------------------------------------------------------------------------- /1gam-jan2013/snd/song3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/1gam-jan2013/snd/song3.ogg -------------------------------------------------------------------------------- /1gam-jan2013/snd/thrust.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/1gam-jan2013/snd/thrust.ogg -------------------------------------------------------------------------------- /1gam-jan2013/snd/tractor_beam.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/1gam-jan2013/snd/tractor_beam.ogg -------------------------------------------------------------------------------- /1gam-jan2013/zoetrope/core/.promise.lua.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/1gam-jan2013/zoetrope/core/.promise.lua.swp -------------------------------------------------------------------------------- /1gam-jan2013/zoetrope/core/.tween.lua.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/1gam-jan2013/zoetrope/core/.tween.lua.swp -------------------------------------------------------------------------------- /BarcampRDU-2011-LuaLove/1-helloworld/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/BarcampRDU-2011-LuaLove/1-helloworld/.DS_Store -------------------------------------------------------------------------------- /BarcampRDU-2011-LuaLove/1-helloworld/main.lua: -------------------------------------------------------------------------------- 1 | -- main.lua 2 | -- This is where the magic happens people. 3 | 4 | 5 | function love.draw() 6 | 7 | love.graphics.print('Hello World', 10, 10) 8 | 9 | end -------------------------------------------------------------------------------- /BarcampRDU-2011-LuaLove/HUMP Lib: -------------------------------------------------------------------------------- 1 | # Links 2 | 3 | 4 | ## [http://love2d.org/]() 5 | 6 | The main LÖVE website. 7 | 8 | 9 | ## [http://love2d.org/wiki/love]() 10 | 11 | The LÖVE API documentation. 12 | 13 | 14 | ## [http://www.lua.org/manual/5.1/]() 15 | 16 | The Lua documentation. 17 | 18 | ## [HUMP Library](https://github.com/vrld/hump) 19 | 20 | Useful classes and tools for making games. -------------------------------------------------------------------------------- /BarcampRDU-2011-LuaLove/README.mdown: -------------------------------------------------------------------------------- 1 | # Making Games with Lua and LÖVE 2 | 3 | This is for a presentation for BarCamp RDU 2011 called "Making Games with Lua and LÖVE". The goal is to show how easy it is to get started programming computer games using the Lua programming language along with the LÖVE library. 4 | 5 | Time permitting, we'll go through the whole process of creating a small click-em-up game and pause at various points to talk about useful times, gotchas, and other points of interest. 6 | 7 | After the session, attendees should be able to go and start creating their own games and know where to go for more information. 8 | -------------------------------------------------------------------------------- /BarcampRDU-2011-LuaLove/loveapp/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/BarcampRDU-2011-LuaLove/loveapp/.DS_Store -------------------------------------------------------------------------------- /BarcampRDU-2011-LuaLove/loveapp/images/barcamp-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/BarcampRDU-2011-LuaLove/loveapp/images/barcamp-logo.png -------------------------------------------------------------------------------- /BarcampRDU-2011-LuaLove/loveapp/images/barcamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/BarcampRDU-2011-LuaLove/loveapp/images/barcamp.png -------------------------------------------------------------------------------- /BarcampRDU-2011-LuaLove/loveapp/main.lua: -------------------------------------------------------------------------------- 1 | -- main.lua 2 | -- This is where the magic happens people. 3 | 4 | -------------------------------------------------------------------------------- /CubeR/conf.lua: -------------------------------------------------------------------------------- 1 | function love.conf(t) 2 | t.version="0.8.0" 3 | end 4 | -------------------------------------------------------------------------------- /Four-Languages/conf.lua: -------------------------------------------------------------------------------- 1 | function love.conf(t) 2 | t.version="0.8.0" 3 | end 4 | -------------------------------------------------------------------------------- /Four-Languages/content/Averia-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/Four-Languages/content/Averia-Bold.ttf -------------------------------------------------------------------------------- /Four-Languages/mouse.lua: -------------------------------------------------------------------------------- 1 | -- Four Languages quiz game (c) Rachel J. Morris 2013, Moosader.com - zlib license 2 | 3 | mouse = {} 4 | 5 | function mouse:isMouseOverTable( tbl ) 6 | return mouse:isMouseOver( tbl.x, tbl.y, tbl.w, tbl.h ) 7 | end 8 | 9 | function mouse:isMouseOver( x, y, w, h ) 10 | return ( love.mouse.getX() >= x and love.mouse.getX() <= x + w and 11 | love.mouse.getY() >= y and love.mouse.getY() <= y + h ) 12 | end 13 | -------------------------------------------------------------------------------- /Gspot/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/Gspot/README -------------------------------------------------------------------------------- /Gspot/conf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/Gspot/conf.lua -------------------------------------------------------------------------------- /Gspot/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/Gspot/img.png -------------------------------------------------------------------------------- /LoveFrames/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/LoveFrames/license.txt -------------------------------------------------------------------------------- /LoveFrames/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/LoveFrames/readme.md -------------------------------------------------------------------------------- /LoveFrames/skins/Blue/images/arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/LoveFrames/skins/Blue/images/arrow-down.png -------------------------------------------------------------------------------- /LoveFrames/skins/Blue/images/arrow-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/LoveFrames/skins/Blue/images/arrow-left.png -------------------------------------------------------------------------------- /LoveFrames/skins/Blue/images/arrow-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/LoveFrames/skins/Blue/images/arrow-right.png -------------------------------------------------------------------------------- /LoveFrames/skins/Blue/images/arrow-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/LoveFrames/skins/Blue/images/arrow-up.png -------------------------------------------------------------------------------- /LoveFrames/skins/Blue/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/LoveFrames/skins/Blue/images/close.png -------------------------------------------------------------------------------- /LoveFrames/skins/Blue/images/gradients/button-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/LoveFrames/skins/Blue/images/gradients/button-down.png -------------------------------------------------------------------------------- /LoveFrames/skins/Blue/images/gradients/button-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/LoveFrames/skins/Blue/images/gradients/button-hover.png -------------------------------------------------------------------------------- /LoveFrames/skins/Blue/images/gradients/button-nohover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/LoveFrames/skins/Blue/images/gradients/button-nohover.png -------------------------------------------------------------------------------- /LoveFrames/skins/Blue/images/gradients/button-unclickable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/LoveFrames/skins/Blue/images/gradients/button-unclickable.png -------------------------------------------------------------------------------- /LoveFrames/skins/Blue/images/gradients/frame-topbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/LoveFrames/skins/Blue/images/gradients/frame-topbar.png -------------------------------------------------------------------------------- /LoveFrames/skins/Blue/images/gradients/progressbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/LoveFrames/skins/Blue/images/gradients/progressbar.png -------------------------------------------------------------------------------- /LoveFrames/skins/Blue/images/multichoice-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/LoveFrames/skins/Blue/images/multichoice-arrow.png -------------------------------------------------------------------------------- /LoveFrames/skins/Orange/images/arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/LoveFrames/skins/Orange/images/arrow-down.png -------------------------------------------------------------------------------- /LoveFrames/skins/Orange/images/arrow-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/LoveFrames/skins/Orange/images/arrow-left.png -------------------------------------------------------------------------------- /LoveFrames/skins/Orange/images/arrow-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/LoveFrames/skins/Orange/images/arrow-right.png -------------------------------------------------------------------------------- /LoveFrames/skins/Orange/images/arrow-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/LoveFrames/skins/Orange/images/arrow-up.png -------------------------------------------------------------------------------- /LoveFrames/skins/Orange/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/LoveFrames/skins/Orange/images/close.png -------------------------------------------------------------------------------- /LoveFrames/skins/Orange/images/gradients/button-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/LoveFrames/skins/Orange/images/gradients/button-down.png -------------------------------------------------------------------------------- /LoveFrames/skins/Orange/images/gradients/button-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/LoveFrames/skins/Orange/images/gradients/button-hover.png -------------------------------------------------------------------------------- /LoveFrames/skins/Orange/images/gradients/button-nohover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/LoveFrames/skins/Orange/images/gradients/button-nohover.png -------------------------------------------------------------------------------- /LoveFrames/skins/Orange/images/gradients/button-unclickable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/LoveFrames/skins/Orange/images/gradients/button-unclickable.png -------------------------------------------------------------------------------- /LoveFrames/skins/Orange/images/gradients/frame-topbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/LoveFrames/skins/Orange/images/gradients/frame-topbar.png -------------------------------------------------------------------------------- /LoveFrames/skins/Orange/images/gradients/progressbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/LoveFrames/skins/Orange/images/gradients/progressbar.png -------------------------------------------------------------------------------- /LoveFrames/skins/Orange/images/multichoice-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/LoveFrames/skins/Orange/images/multichoice-arrow.png -------------------------------------------------------------------------------- /LoveFrames/third-party/middleclass.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/LoveFrames/third-party/middleclass.lua -------------------------------------------------------------------------------- /RasMoon/README.md: -------------------------------------------------------------------------------- 1 |

2 | 3 |

4 | 5 | RasMoon is a Lua framework, it's free, open and fast. RasMoon may also be used for [Love2D games](https://love2d.org/). 6 | 7 | > RasMoon is licensed under the liberal [zlib/libpng license](http://opensource.org/licenses/zlib-license.php). That means you can use it freely for any purpose including commercial ones. 8 | 9 | # Documentation 10 | 11 | Find the [official documentation](https://github.com/jdourlens/RasMoon/wiki) or the [RasLove documentation](https://github.com/jdourlens/RasMoon/wiki/RasLove). 12 | 13 | # Bugs 14 | 15 | Feel free to report any bug. -------------------------------------------------------------------------------- /RasMoon/img/rasmoon_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/RasMoon/img/rasmoon_logo.png -------------------------------------------------------------------------------- /RasMoon/love2D/index.lua: -------------------------------------------------------------------------------- 1 | local s = New.State("index") 2 | 3 | s.update = function(dt) 4 | print('this is working!!!') 5 | end 6 | 7 | s.draw = function() 8 | end 9 | 10 | s.onEnter = function() 11 | --Load your ressources here 12 | end 13 | 14 | s.onLeave = function() 15 | end 16 | 17 | s.mousepressed = function(x, y, button) 18 | end 19 | 20 | s.mousereleased = function(x, y, button) 21 | end 22 | 23 | s.keypressed = function(key, unicode) 24 | end 25 | 26 | s.keyreleased = function(key, unicode) 27 | end 28 | 29 | s.focus = function(f) 30 | end 31 | -------------------------------------------------------------------------------- /RasMoon/love2D/sampleState.lua: -------------------------------------------------------------------------------- 1 | local s = New.State("sampleState") 2 | 3 | s.update = function(dt) 4 | end 5 | 6 | s.draw = function() 7 | end 8 | 9 | s.onEnter = function() 10 | end 11 | 12 | s.onLeave = function() 13 | end 14 | 15 | s.mousepressed = function(x, y, button) 16 | end 17 | 18 | s.mousereleased = function(x, y, button) 19 | end 20 | 21 | s.keypressed = function(key, unicode) 22 | end 23 | 24 | s.keyreleased = function(key, unicode) 25 | end 26 | 27 | s.focus = function(f) 28 | end 29 | -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- 1 | # Löve2d: a cross-platform, simple and fun game-engine in Lua. 2 | 3 | 4 | Some links: 5 | - http://www.headchant.com/2013/03/20/love-2d-tutorials/ -------------------------------------------------------------------------------- /Snakey/README.md: -------------------------------------------------------------------------------- 1 | Snakey 2 | ====== 3 | 4 | A simple snake clone powered by LÖVE. -------------------------------------------------------------------------------- /Snakey/gfx/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/Snakey/gfx/bg.png -------------------------------------------------------------------------------- /Snakey/gfx/bgDisplay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/Snakey/gfx/bgDisplay.png -------------------------------------------------------------------------------- /Snakey/gfx/bgFade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/Snakey/gfx/bgFade.png -------------------------------------------------------------------------------- /Snakey/sfx/spawn.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/Snakey/sfx/spawn.ogg -------------------------------------------------------------------------------- /ammo/.gitignore: -------------------------------------------------------------------------------- 1 | _* 2 | .DS_STORE 3 | .DS_Store 4 | assets/ 5 | tweens/ 6 | physics/ 7 | input/ 8 | debug/ 9 | -------------------------------------------------------------------------------- /ammo/.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "lib/middleclass"] 2 | path = lib/middleclass 3 | url = git://github.com/kikito/middleclass.git 4 | -------------------------------------------------------------------------------- /ammo/README.md: -------------------------------------------------------------------------------- 1 | Ammo is a library for the [LÖVE](http://love2d.org) (or, Love2D) game engine. It's purpose is to provide a simple, flexible organisational structure for your games. 2 | 3 | For more information and documentation please refer to the [wiki](https://github.com/BlackBulletIV/ammo/wiki). 4 | -------------------------------------------------------------------------------- /ammo/init.lua: -------------------------------------------------------------------------------- 1 | ammo = {} 2 | ammo.path = ({...})[1]:gsub("%.init", "") 3 | 4 | require(ammo.path .. ".lib.middleclass.middleclass") 5 | require(ammo.path .. ".core.init") 6 | -------------------------------------------------------------------------------- /game-on/code/0-hello/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/game-on/code/0-hello/main.lua -------------------------------------------------------------------------------- /game-on/code/1-hamster/conf.lua: -------------------------------------------------------------------------------- 1 | function love.conf(t) 2 | t.version = "0.8.0" 3 | end 4 | -------------------------------------------------------------------------------- /game-on/code/1-hamster/hamster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/game-on/code/1-hamster/hamster.png -------------------------------------------------------------------------------- /game-on/code/2-whack/conf.lua: -------------------------------------------------------------------------------- 1 | function love.conf(t) 2 | t.version = "0.7.2" 3 | end 4 | -------------------------------------------------------------------------------- /game-on/code/2-whack/hammer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/game-on/code/2-whack/hammer.png -------------------------------------------------------------------------------- /game-on/code/2-whack/knoll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/game-on/code/2-whack/knoll.png -------------------------------------------------------------------------------- /game-on/code/2-whack/knoll_anim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/game-on/code/2-whack/knoll_anim.png -------------------------------------------------------------------------------- /game-on/gameloop.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/game-on/gameloop.dia -------------------------------------------------------------------------------- /game-on/gameloop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/game-on/gameloop.png -------------------------------------------------------------------------------- /game-on/love.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/game-on/love.png -------------------------------------------------------------------------------- /game-on/love_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/game-on/love_logo.png -------------------------------------------------------------------------------- /game-on/love_logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/game-on/love_logo2.png -------------------------------------------------------------------------------- /game-on/lua-logo-nolabel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/game-on/lua-logo-nolabel.png -------------------------------------------------------------------------------- /game-on/vortrag.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/game-on/vortrag.tex -------------------------------------------------------------------------------- /gravitonik/conf.lua: -------------------------------------------------------------------------------- 1 | function love.conf(t) 2 | t.title = "Gravitonik" 3 | t.author = "Middlerun" 4 | t.screen.height = 768 5 | t.screen.width = 1024 6 | t.version = "0.8.0" 7 | t.modules.joystick = false 8 | t.modules.physics = false 9 | t.modules.mouse = false 10 | end 11 | -------------------------------------------------------------------------------- /gravitonik/gfx/Prototype.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/gravitonik/gfx/Prototype.ttf -------------------------------------------------------------------------------- /gravitonik/gfx/Prototype.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/gravitonik/gfx/Prototype.txt -------------------------------------------------------------------------------- /gravitonik/gfx/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/gravitonik/gfx/arrow.png -------------------------------------------------------------------------------- /gravitonik/gfx/cc-by-nc-sa80x15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/gravitonik/gfx/cc-by-nc-sa80x15.png -------------------------------------------------------------------------------- /gravitonik/gfx/flame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/gravitonik/gfx/flame.png -------------------------------------------------------------------------------- /gravitonik/gfx/fuelbottle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/gravitonik/gfx/fuelbottle.png -------------------------------------------------------------------------------- /gravitonik/gfx/glow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/gravitonik/gfx/glow.png -------------------------------------------------------------------------------- /gravitonik/gfx/gravitonik-title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/gravitonik/gfx/gravitonik-title.png -------------------------------------------------------------------------------- /gravitonik/gfx/love-logo-128x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/gravitonik/gfx/love-logo-128x64.png -------------------------------------------------------------------------------- /gravitonik/gfx/lovelogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/gravitonik/gfx/lovelogo.png -------------------------------------------------------------------------------- /gravitonik/gfx/part1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/gravitonik/gfx/part1.png -------------------------------------------------------------------------------- /gravitonik/gfx/part2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/gravitonik/gfx/part2.png -------------------------------------------------------------------------------- /gravitonik/gfx/part3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/gravitonik/gfx/part3.png -------------------------------------------------------------------------------- /gravitonik/gfx/particle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/gravitonik/gfx/particle.png -------------------------------------------------------------------------------- /gravitonik/gfx/particon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/gravitonik/gfx/particon.png -------------------------------------------------------------------------------- /gravitonik/gfx/planet0001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/gravitonik/gfx/planet0001.png -------------------------------------------------------------------------------- /gravitonik/gfx/planet0002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/gravitonik/gfx/planet0002.png -------------------------------------------------------------------------------- /gravitonik/gfx/planet0003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/gravitonik/gfx/planet0003.png -------------------------------------------------------------------------------- /gravitonik/gfx/planet0004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/gravitonik/gfx/planet0004.png -------------------------------------------------------------------------------- /gravitonik/gfx/planet0005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/gravitonik/gfx/planet0005.png -------------------------------------------------------------------------------- /gravitonik/gfx/planet0006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/gravitonik/gfx/planet0006.png -------------------------------------------------------------------------------- /gravitonik/gfx/planet0007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/gravitonik/gfx/planet0007.png -------------------------------------------------------------------------------- /gravitonik/gfx/planet0008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/gravitonik/gfx/planet0008.png -------------------------------------------------------------------------------- /gravitonik/gfx/planet0009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/gravitonik/gfx/planet0009.png -------------------------------------------------------------------------------- /gravitonik/gfx/planet0010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/gravitonik/gfx/planet0010.png -------------------------------------------------------------------------------- /gravitonik/gfx/planet0011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/gravitonik/gfx/planet0011.png -------------------------------------------------------------------------------- /gravitonik/gfx/planet0012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/gravitonik/gfx/planet0012.png -------------------------------------------------------------------------------- /gravitonik/gfx/planet0013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/gravitonik/gfx/planet0013.png -------------------------------------------------------------------------------- /gravitonik/gfx/planet0014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/gravitonik/gfx/planet0014.png -------------------------------------------------------------------------------- /gravitonik/gfx/planet0015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/gravitonik/gfx/planet0015.png -------------------------------------------------------------------------------- /gravitonik/gfx/planet0016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/gravitonik/gfx/planet0016.png -------------------------------------------------------------------------------- /gravitonik/gfx/planet0017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/gravitonik/gfx/planet0017.png -------------------------------------------------------------------------------- /gravitonik/gfx/planet0018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/gravitonik/gfx/planet0018.png -------------------------------------------------------------------------------- /gravitonik/gfx/planet0019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/gravitonik/gfx/planet0019.png -------------------------------------------------------------------------------- /gravitonik/gfx/planet0020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/gravitonik/gfx/planet0020.png -------------------------------------------------------------------------------- /gravitonik/gfx/planet0021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/gravitonik/gfx/planet0021.png -------------------------------------------------------------------------------- /gravitonik/gfx/planet0022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/gravitonik/gfx/planet0022.png -------------------------------------------------------------------------------- /gravitonik/gfx/planet0023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/gravitonik/gfx/planet0023.png -------------------------------------------------------------------------------- /gravitonik/gfx/planet0024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/gravitonik/gfx/planet0024.png -------------------------------------------------------------------------------- /gravitonik/gfx/spaceman-jump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/gravitonik/gfx/spaceman-jump.png -------------------------------------------------------------------------------- /gravitonik/gfx/spaceman-run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/gravitonik/gfx/spaceman-run.png -------------------------------------------------------------------------------- /gravitonik/gfx/spaceman-stand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/gravitonik/gfx/spaceman-stand.png -------------------------------------------------------------------------------- /gravitonik/gfx/starbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/gravitonik/gfx/starbg.png -------------------------------------------------------------------------------- /gravitonik/gfx/window-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/gravitonik/gfx/window-icon.png -------------------------------------------------------------------------------- /gravitonik/levels/Level_16.lua: -------------------------------------------------------------------------------- 1 | function init_level() 2 | cam_x = 0 3 | cam_y = 0 4 | 5 | thisplanet = 0 6 | rel_lat = 0 7 | sm_pos_x = 512 8 | sm_pos_y = 0 9 | sm_v_x = 0 10 | sm_v_y = 0 11 | sm_acc_x = 0 12 | sm_acc_y = 0 13 | sm_ang = 0 14 | sm_angv = 0 15 | sm_orient = 1 16 | 17 | numplanets = 1 18 | p_pos_x[1] = 512 19 | p_pos_y[1] = 384 20 | p_rad[1] = 100 21 | p_density[1] = 1 22 | p_ang[1] = 0 23 | p_angv[1] = 0 24 | p_style[1] = 1 25 | 26 | numparts = 1 27 | part_planet[1] = 1 28 | part_rel_lat[1] = 0 29 | 30 | fuel = 0 31 | fuel_bottles = 0 32 | end 33 | 34 | function update_level(dt) 35 | end 36 | -------------------------------------------------------------------------------- /gravitonik/levels/Level_7.lua: -------------------------------------------------------------------------------- 1 | function init_level() 2 | cam_x = 0 3 | cam_y = 0 4 | 5 | thisplanet = 0 6 | rel_lat = 0 7 | sm_pos_x = 512 8 | sm_pos_y = 0 9 | sm_v_x = 0 10 | sm_v_y = 0 11 | sm_acc_x = 0 12 | sm_acc_y = 0 13 | sm_ang = 0 14 | sm_angv = 0 15 | sm_orient = 1 16 | 17 | numplanets = 1 18 | p_pos_x[1] = 512 19 | p_pos_y[1] = 384 20 | p_rad[1] = 100 21 | p_density[1] = 1 22 | p_ang[1] = 0 23 | p_angv[1] = 0 24 | p_style[1] = 1 25 | 26 | numparts = 1 27 | part_planet[1] = 1 28 | part_rel_lat[1] = 0 29 | 30 | fuel = 0 31 | fuel_bottles = 0 32 | end 33 | 34 | function update_level(dt) 35 | end 36 | -------------------------------------------------------------------------------- /gravitonik/levels/Level_9.lua: -------------------------------------------------------------------------------- 1 | function init_level() 2 | cam_x = 0 3 | cam_y = 0 4 | 5 | thisplanet = 0 6 | rel_lat = 0 7 | sm_pos_x = 512 8 | sm_pos_y = 0 9 | sm_v_x = 0 10 | sm_v_y = 0 11 | sm_acc_x = 0 12 | sm_acc_y = 0 13 | sm_ang = 0 14 | sm_angv = 0 15 | sm_orient = 1 16 | 17 | numplanets = 1 18 | p_pos_x[1] = 512 19 | p_pos_y[1] = 384 20 | p_rad[1] = 100 21 | p_density[1] = 1 22 | p_ang[1] = 0 23 | p_angv[1] = 0 24 | p_style[1] = 1 25 | 26 | numparts = 1 27 | part_planet[1] = 1 28 | part_rel_lat[1] = 0 29 | 30 | fuel = 0 31 | fuel_bottles = 0 32 | end 33 | 34 | function update_level(dt) 35 | end 36 | -------------------------------------------------------------------------------- /gravitonik/levels/Level_template.lua: -------------------------------------------------------------------------------- 1 | function init_level() 2 | cam_x = 0 3 | cam_y = 0 4 | 5 | thisplanet = 0 6 | rel_lat = 0 7 | sm_pos_x = 512 8 | sm_pos_y = 0 9 | sm_v_x = 0 10 | sm_v_y = 0 11 | sm_acc_x = 0 12 | sm_acc_y = 0 13 | sm_ang = 0 14 | sm_angv = 0 15 | sm_orient = 1 16 | 17 | numplanets = 1 18 | p_pos_x[1] = 512 19 | p_pos_y[1] = 384 20 | p_rad[1] = 100 21 | p_density[1] = 1 22 | p_ang[1] = 0 23 | p_angv[1] = 0 24 | p_style[1] = 1 25 | 26 | numparts = 1 27 | part_planet[1] = 1 28 | part_rel_lat[1] = 0 29 | 30 | fuel = 0 31 | fuel_bottles = 0 32 | end 33 | 34 | function update_level(dt) 35 | end 36 | -------------------------------------------------------------------------------- /gravitonik/openall: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gedit main.lua & 4 | gedit gameplay.lua & 5 | gedit functions.lua & 6 | gedit menus.lua 7 | -------------------------------------------------------------------------------- /gunstar/Snap.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/gunstar/Snap.mp3 -------------------------------------------------------------------------------- /gunstar/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/gunstar/heart.png -------------------------------------------------------------------------------- /gunstar/trollface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/gunstar/trollface.png -------------------------------------------------------------------------------- /gunstar/umbrella.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/gunstar/umbrella.png -------------------------------------------------------------------------------- /hatred-skeleton/.gitignore: -------------------------------------------------------------------------------- 1 | luacov.stats.out 2 | -------------------------------------------------------------------------------- /hatred-skeleton/.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "libs/middleclass"] 2 | path = libs/middleclass 3 | url = https://github.com/kikito/middleclass.git 4 | [submodule "libs/stateful"] 5 | path = libs/stateful 6 | url = https://github.com/kikito/stateful.lua.git 7 | [submodule "libs/beholder"] 8 | path = libs/beholder 9 | url = https://github.com/kikito/beholder.lua.git 10 | [submodule "libs/tween"] 11 | path = libs/tween 12 | url = https://github.com/kikito/tween.lua.git 13 | -------------------------------------------------------------------------------- /hatred-skeleton/Makefile: -------------------------------------------------------------------------------- 1 | .PHONY : run spec coverage clean 2 | 3 | run: 4 | ${LOVEPATH} ./ 5 | 6 | spec: 7 | busted `find spec -name \*spec.lua -print` 8 | 9 | coverage: 10 | luacov luacov.stats.out && cat luacov.report.out | less 11 | 12 | clean: 13 | rm -f luacov* 14 | 15 | -------------------------------------------------------------------------------- /hatred-skeleton/fonts/DroidSansMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/hatred-skeleton/fonts/DroidSansMono.ttf -------------------------------------------------------------------------------- /hatred-skeleton/graphics/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/hatred-skeleton/graphics/.gitkeep -------------------------------------------------------------------------------- /hatred-skeleton/main.lua: -------------------------------------------------------------------------------- 1 | DEBUG = false 2 | if DEBUG then 3 | require 'luarocks.loader' 4 | require 'luacov' 5 | end 6 | 7 | GameEngine = require 'src.GameEngine' 8 | 9 | function love.run() 10 | -- initialize and hand off to GameEngine:run() 11 | engine = GameEngine.GameEngine:new() 12 | engine:run() 13 | end 14 | 15 | -------------------------------------------------------------------------------- /hatred-skeleton/sounds/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/hatred-skeleton/sounds/.gitkeep -------------------------------------------------------------------------------- /hatred-skeleton/spec/GameEngine_spec.lua: -------------------------------------------------------------------------------- 1 | 2 | GameEngine = require('src.GameEngine') 3 | 4 | describe("GameEngine", function() 5 | 6 | local engine 7 | 8 | before_each(function() 9 | engine = GameEngine.GameEngine:new() 10 | end) 11 | 12 | end) 13 | -------------------------------------------------------------------------------- /invader.love/.gitignore: -------------------------------------------------------------------------------- 1 | .*.swp 2 | -------------------------------------------------------------------------------- /invader.love/.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "luagravity"] 2 | path = luagravity 3 | url = https://github.com/fsantanna/luagravity 4 | -------------------------------------------------------------------------------- /ld25/.gitignore: -------------------------------------------------------------------------------- 1 | *.love 2 | dist 3 | Thumbs.db 4 | 5 | -------------------------------------------------------------------------------- /ld25/art/fonts/04b03.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/ld25/art/fonts/04b03.ttf -------------------------------------------------------------------------------- /ld25/art/images/bat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/ld25/art/images/bat.png -------------------------------------------------------------------------------- /ld25/art/images/centhra.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/ld25/art/images/centhra.pdn -------------------------------------------------------------------------------- /ld25/art/images/centhra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/ld25/art/images/centhra.png -------------------------------------------------------------------------------- /ld25/art/images/ghost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/ld25/art/images/ghost.png -------------------------------------------------------------------------------- /ld25/art/images/hero_knight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/ld25/art/images/hero_knight.png -------------------------------------------------------------------------------- /ld25/art/images/hero_templar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/ld25/art/images/hero_templar.png -------------------------------------------------------------------------------- /ld25/art/images/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/ld25/art/images/map.png -------------------------------------------------------------------------------- /ld25/art/images/portrait_bat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/ld25/art/images/portrait_bat.png -------------------------------------------------------------------------------- /ld25/art/images/portrait_ghost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/ld25/art/images/portrait_ghost.png -------------------------------------------------------------------------------- /ld25/art/images/portrait_hero_knight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/ld25/art/images/portrait_hero_knight.png -------------------------------------------------------------------------------- /ld25/art/images/portrait_hero_templar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/ld25/art/images/portrait_hero_templar.png -------------------------------------------------------------------------------- /ld25/art/images/portrait_skeleton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/ld25/art/images/portrait_skeleton.png -------------------------------------------------------------------------------- /ld25/art/images/portrait_slime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/ld25/art/images/portrait_slime.png -------------------------------------------------------------------------------- /ld25/art/images/portrait_spider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/ld25/art/images/portrait_spider.png -------------------------------------------------------------------------------- /ld25/art/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/ld25/art/images/progress.png -------------------------------------------------------------------------------- /ld25/art/images/progress_sep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/ld25/art/images/progress_sep.png -------------------------------------------------------------------------------- /ld25/art/images/skeleton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/ld25/art/images/skeleton.png -------------------------------------------------------------------------------- /ld25/art/images/skull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/ld25/art/images/skull.png -------------------------------------------------------------------------------- /ld25/art/images/slime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/ld25/art/images/slime.png -------------------------------------------------------------------------------- /ld25/art/images/spider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/ld25/art/images/spider.png -------------------------------------------------------------------------------- /ld25/art/images/spiderold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/ld25/art/images/spiderold.png -------------------------------------------------------------------------------- /ld25/art/images/status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/ld25/art/images/status.png -------------------------------------------------------------------------------- /ld25/art/images/tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/ld25/art/images/tiles.png -------------------------------------------------------------------------------- /ld25/art/sounds/derpybgm.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/ld25/art/sounds/derpybgm.ogg -------------------------------------------------------------------------------- /ld25/art/sounds/die.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/ld25/art/sounds/die.wav -------------------------------------------------------------------------------- /ld25/art/sounds/easy_quicksong.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/ld25/art/sounds/easy_quicksong.ogg -------------------------------------------------------------------------------- /ld25/art/sounds/hitsound.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/ld25/art/sounds/hitsound.wav -------------------------------------------------------------------------------- /ld25/art/sounds/pop.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/ld25/art/sounds/pop.wav -------------------------------------------------------------------------------- /ld25/deps/7z.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/ld25/deps/7z.dll -------------------------------------------------------------------------------- /ld25/deps/7za.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/ld25/deps/7za.exe -------------------------------------------------------------------------------- /ld25/deps/DevIL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/ld25/deps/DevIL.dll -------------------------------------------------------------------------------- /ld25/deps/OpenAL32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/ld25/deps/OpenAL32.dll -------------------------------------------------------------------------------- /ld25/deps/SDL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/ld25/deps/SDL.dll -------------------------------------------------------------------------------- /ld25/deps/love.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/ld25/deps/love.exe -------------------------------------------------------------------------------- /ld25/src/conf.lua: -------------------------------------------------------------------------------- 1 | function love.conf(t) 2 | t.title = "Phaedra" 3 | t.author = "Centhra" 4 | t.url = "http://github.com/centhra/ld25" 5 | t.identity = nil 6 | t.version = "0.8.0" 7 | t.console = false 8 | t.release = false 9 | t.screen.width = 800 10 | t.screen.height = 600 11 | t.screen.fullscreen = false 12 | t.screen.vsync = true 13 | t.screen.fsaa = 0 14 | t.modules.joystick = false 15 | end 16 | -------------------------------------------------------------------------------- /ld25/src/lcg.lua: -------------------------------------------------------------------------------- 1 | LCG = {} 2 | LCG.__index = LCG 3 | 4 | function LCG.new(seed) 5 | local inst = {} 6 | 7 | setmetatable(inst, LCG) 8 | 9 | inst.seed = seed 10 | inst.series = {seed} 11 | 12 | return inst 13 | end 14 | 15 | function LCG:seed(seed) 16 | self.seed = seed 17 | self.series = {seed} 18 | end 19 | 20 | function LCG:random() 21 | local len = table.getn(self.series) 22 | local xn = self.series[len] 23 | 24 | table.insert(self.series, (25214903917 * xn + 11) % 281474976710656) 25 | 26 | return self.series[len] / 281474976710656 27 | end 28 | 29 | return LCG 30 | -------------------------------------------------------------------------------- /ld25/util/dist.bat: -------------------------------------------------------------------------------- 1 | mkdir ..\dist 2 | cd ..\src 3 | ..\deps\7za a -tzip ..\dist\phaedra.love * ..\art 4 | cd .. 5 | cd deps 6 | copy /b love.exe+..\dist\phaedra.love ..\dist\phaedra.exe 7 | copy /b *.dll ..\dist\ 8 | cd ..\util 9 | -------------------------------------------------------------------------------- /ld25/util/dist.sh: -------------------------------------------------------------------------------- 1 | mkdir -p dist 2 | cd src && zip -r9 ../dist/phaedra.love * && cd .. 3 | zip -r9 dist/phaedra.love art 4 | cat `which love` dist/phaedra.love > dist/phaedra && chmod +x dist/phaedra 5 | 6 | -------------------------------------------------------------------------------- /leaf/.gitignore: -------------------------------------------------------------------------------- 1 | # OSX 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /love-builder/templates/default/main.lua: -------------------------------------------------------------------------------- 1 | function love.load(...) 2 | 3 | end 4 | 5 | function love.update(dt) 6 | 7 | end 8 | 9 | function love.draw() 10 | 11 | end 12 | 13 | function love.keypressed() 14 | 15 | end 16 | 17 | function love.keyreleased() 18 | 19 | end 20 | 21 | function love.mousepressed() 22 | 23 | end 24 | 25 | function love.mousereleased() 26 | 27 | end 28 | 29 | function love.joystickpressed() 30 | 31 | end 32 | 33 | function love.joystickreleased() 34 | 35 | end -------------------------------------------------------------------------------- /lovesui/Makefile: -------------------------------------------------------------------------------- 1 | archive_files := \ 2 | conf.lua main.lua \ 3 | sui.lua \ 4 | $(wildcard *.txt) $(wildcard *.ttf) $(wildcard *.png) 5 | love_file := lovesui.love 6 | love_exec := /usr/bin/love 7 | executable := lovesui 8 | 9 | all: build 10 | build: $(love_file) 11 | clean: 12 | -rm -f $(patsubst %.moon,%.lua,$(wildcard *.moon)) 13 | -rm -f $(love_file) $(executable) 14 | release: $(executable) 15 | run: build 16 | $(love_exec) $(love_file) 17 | .PHONY: all build clean release run 18 | 19 | $(love_file): $(archive_files) 20 | -rm -f $@ 21 | zip -9 $@ $(archive_files) 22 | 23 | $(executable): $(love_file) 24 | cat $(love_exec) $< > $@ 25 | chmod +x $@ 26 | 27 | %.lua: %.moon 28 | moonc $< 29 | -------------------------------------------------------------------------------- /lovesui/conf.lua: -------------------------------------------------------------------------------- 1 | function love.conf(t) 2 | t.title = "SUI User Interface" 3 | t.author = "Ryusei Yamaguchi" 4 | t.url = "https://github.com/mandel59/lovesui" 5 | t.identity = "m59_sui_001" 6 | t.version = "0.8.0" 7 | t.screen.width = 800 8 | t.screen.height = 600 9 | end 10 | -------------------------------------------------------------------------------- /mari0/_DO NOT INCLUDE/bigmarionoportal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/_DO NOT INCLUDE/bigmarionoportal.png -------------------------------------------------------------------------------- /mari0/_DO NOT INCLUDE/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/_DO NOT INCLUDE/icon.ico -------------------------------------------------------------------------------- /mari0/_DO NOT INCLUDE/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/_DO NOT INCLUDE/icon.png -------------------------------------------------------------------------------- /mari0/coinblockanimation.lua: -------------------------------------------------------------------------------- 1 | coinblockanimation = class:new() 2 | 3 | function coinblockanimation:init(x, y) 4 | self.x = x 5 | self.y = y 6 | 7 | self.timer = 0 8 | self.frame = 1 9 | end 10 | 11 | function coinblockanimation:update(dt) 12 | self.timer = self.timer + dt 13 | while self.timer > coinblockdelay do 14 | self.frame = self.frame + 1 15 | self.timer = self.timer - coinblockdelay 16 | end 17 | 18 | if self.frame >= 31 then 19 | addpoints(-200, self.x, self.y) 20 | return true 21 | end 22 | 23 | return false 24 | end -------------------------------------------------------------------------------- /mari0/conf.lua: -------------------------------------------------------------------------------- 1 | function love.conf(t) 2 | t.author = "Maurice" 3 | t.identity = "mari0" 4 | t.console = false 5 | --t.screen = false 6 | t.modules.physics = false 7 | t.version = "0.8.0" 8 | end -------------------------------------------------------------------------------- /mari0/graphics/GUI/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/GUI/checkbox.png -------------------------------------------------------------------------------- /mari0/graphics/GUI/dropdownarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/GUI/dropdownarrow.png -------------------------------------------------------------------------------- /mari0/graphics/Minecraft/bigmarioanimations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/Minecraft/bigmarioanimations.png -------------------------------------------------------------------------------- /mari0/graphics/Minecraft/bigmarioanimations0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/Minecraft/bigmarioanimations0.png -------------------------------------------------------------------------------- /mari0/graphics/Minecraft/bigmarioanimations1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/Minecraft/bigmarioanimations1.png -------------------------------------------------------------------------------- /mari0/graphics/Minecraft/bigmarioanimations2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/Minecraft/bigmarioanimations2.png -------------------------------------------------------------------------------- /mari0/graphics/Minecraft/bigmarioanimations3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/Minecraft/bigmarioanimations3.png -------------------------------------------------------------------------------- /mari0/graphics/Minecraft/blockbreak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/Minecraft/blockbreak.png -------------------------------------------------------------------------------- /mari0/graphics/Minecraft/gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/Minecraft/gui.png -------------------------------------------------------------------------------- /mari0/graphics/Minecraft/marioanimations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/Minecraft/marioanimations.png -------------------------------------------------------------------------------- /mari0/graphics/Minecraft/marioanimations0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/Minecraft/marioanimations0.png -------------------------------------------------------------------------------- /mari0/graphics/Minecraft/marioanimations1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/Minecraft/marioanimations1.png -------------------------------------------------------------------------------- /mari0/graphics/Minecraft/marioanimations2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/Minecraft/marioanimations2.png -------------------------------------------------------------------------------- /mari0/graphics/Minecraft/marioanimations3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/Minecraft/marioanimations3.png -------------------------------------------------------------------------------- /mari0/graphics/Minecraft/selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/Minecraft/selected.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/axe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/axe.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/beetle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/beetle.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/bighats/bakerboy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/bighats/bakerboy.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/bighats/banana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/bighats/banana.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/bighats/batter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/bighats/batter.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/bighats/beanie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/bighats/beanie.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/bighats/bestpony.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/bighats/bestpony.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/bighats/bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/bighats/bird.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/bighats/blooper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/bighats/blooper.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/bighats/bombingrun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/bighats/bombingrun.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/bighats/bonk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/bighats/bonk.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/bighats/bonkboy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/bighats/bonkboy.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/bighats/crown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/bighats/crown.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/bighats/drseuss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/bighats/drseuss.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/bighats/familiarfez.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/bighats/familiarfez.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/bighats/flippedtrilby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/bighats/flippedtrilby.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/bighats/goodnewseverybody.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/bighats/goodnewseverybody.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/bighats/indian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/bighats/indian.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/bighats/jetset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/bighats/jetset.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/bighats/koopa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/bighats/koopa.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/bighats/milkman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/bighats/milkman.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/bighats/officerhat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/bighats/officerhat.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/bighats/sailor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/bighats/sailor.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/bighats/santahat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/bighats/santahat.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/bighats/shyguy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/bighats/shyguy.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/bighats/standard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/bighats/standard.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/bighats/superfan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/bighats/superfan.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/bighats/toilet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/bighats/toilet.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/bighats/tophat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/bighats/tophat.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/bighats/towering1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/bighats/towering1.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/bighats/towering2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/bighats/towering2.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/bighats/towering3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/bighats/towering3.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/bighats/troublemaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/bighats/troublemaker.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/bighats/tyrolean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/bighats/tyrolean.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/bighats/whoopee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/bighats/whoopee.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/blockdebris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/blockdebris.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/bowser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/bowser.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/box.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/bubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/bubble.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/bulletbill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/bulletbill.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/buttonbase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/buttonbase.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/buttonbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/buttonbutton.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/castleflag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/castleflag.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/cheepcheep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/cheepcheep.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/coin.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/coinanimation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/coinanimation.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/coinblock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/coinblock.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/coinblockanimation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/coinblockanimation.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/cubedispenser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/cubedispenser.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/decoys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/decoys.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/doorcenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/doorcenter.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/doorpiece.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/doorpiece.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/emanceparticle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/emanceparticle.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/emanceside.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/emanceside.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/entities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/entities.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/faithplateplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/faithplateplate.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/fire.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/fireball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/fireball.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/flag.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/flower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/flower.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/font.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/gel1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/gel1.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/gel1ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/gel1ground.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/gel2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/gel2.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/gel2ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/gel2ground.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/gel3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/gel3.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/gel3ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/gel3ground.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/geldispenser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/geldispenser.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/goomba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/goomba.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/hammer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/hammer.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/hammerbros.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/hammerbros.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/hats/bakerboy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/hats/bakerboy.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/hats/banana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/hats/banana.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/hats/batter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/hats/batter.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/hats/beanie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/hats/beanie.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/hats/bestpony.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/hats/bestpony.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/hats/bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/hats/bird.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/hats/blooper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/hats/blooper.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/hats/bombingrun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/hats/bombingrun.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/hats/bonk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/hats/bonk.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/hats/bonkboy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/hats/bonkboy.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/hats/crown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/hats/crown.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/hats/drseuss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/hats/drseuss.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/hats/familiarfez.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/hats/familiarfez.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/hats/flippedtrilby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/hats/flippedtrilby.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/hats/goodnewseverybody.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/hats/goodnewseverybody.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/hats/indian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/hats/indian.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/hats/jetset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/hats/jetset.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/hats/koopa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/hats/koopa.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/hats/milkman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/hats/milkman.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/hats/officerhat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/hats/officerhat.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/hats/sailor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/hats/sailor.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/hats/santahat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/hats/santahat.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/hats/shyguy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/hats/shyguy.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/hats/standard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/hats/standard.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/hats/superfan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/hats/superfan.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/hats/toilet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/hats/toilet.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/hats/tophat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/hats/tophat.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/hats/towering1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/hats/towering1.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/hats/towering2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/hats/towering2.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/hats/towering3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/hats/towering3.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/hats/troublemaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/hats/troublemaker.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/hats/tyrolean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/hats/tyrolean.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/hats/whoopee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/hats/whoopee.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/huebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/huebar.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/huebarmarker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/huebarmarker.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/koopa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/koopa.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/koopared.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/koopared.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/lakito.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/lakito.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/laser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/laser.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/laserdetector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/laserdetector.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/laserside.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/laserside.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/lightbridge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/lightbridge.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/lightbridgeside.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/lightbridgeside.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/littlebigmario.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/littlebigmario.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/mappackback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/mappackback.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/mappackhighlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/mappackhighlight.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/mappacknoicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/mappacknoicon.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/mappackoverlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/mappackoverlay.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/mappackscrollbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/mappackscrollbar.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/menuselect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/menuselect.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/oneuptext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/oneuptext.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/options/secondskin0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/options/secondskin0.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/options/secondskin1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/options/secondskin1.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/options/secondskin2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/options/secondskin2.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/options/secondskin3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/options/secondskin3.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/options/skin0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/options/skin0.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/options/skin1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/options/skin1.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/options/skin2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/options/skin2.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/options/skin3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/options/skin3.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/peach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/peach.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/plant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/plant.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/platform.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/platformbonus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/platformbonus.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/player/bigmarioanimations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/player/bigmarioanimations.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/player/bigmarioanimations0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/player/bigmarioanimations0.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/player/bigmarioanimations1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/player/bigmarioanimations1.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/player/bigmarioanimations2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/player/bigmarioanimations2.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/player/bigmarioanimations3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/player/bigmarioanimations3.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/player/bigmarioanimationsold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/player/bigmarioanimationsold.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/player/marioanimations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/player/marioanimations.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/player/marioanimations0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/player/marioanimations0.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/player/marioanimations1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/player/marioanimations1.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/player/marioanimations2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/player/marioanimations2.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/player/marioanimations3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/player/marioanimations3.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/playerselectarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/playerselectarrow.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/portal.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/portalbackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/portalbackground.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/portalcrosshair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/portalcrosshair.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/portaldot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/portaldot.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/portalglow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/portalglow.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/portalparticle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/portalparticle.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/portalprojectile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/portalprojectile.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/portalprojectileparticle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/portalprojectileparticle.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/portaltiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/portaltiles.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/pushbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/pushbutton.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/seesaw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/seesaw.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/smallfont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/smallfont.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/smbtiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/smbtiles.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/spikey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/spikey.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/spring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/spring.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/squid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/squid.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/star.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/title.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/toad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/toad.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/upfire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/upfire.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/vine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/vine.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/volumeslider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/volumeslider.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/wallindicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/wallindicator.png -------------------------------------------------------------------------------- /mari0/graphics/SMB/walltimer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/SMB/walltimer.png -------------------------------------------------------------------------------- /mari0/graphics/gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/gradient.png -------------------------------------------------------------------------------- /mari0/graphics/icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/icon.gif -------------------------------------------------------------------------------- /mari0/graphics/portaltiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/portaltiles.png -------------------------------------------------------------------------------- /mari0/graphics/rainboom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/rainboom.png -------------------------------------------------------------------------------- /mari0/graphics/stabyourself.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/stabyourself.png -------------------------------------------------------------------------------- /mari0/graphics/stabyourselfblood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/graphics/stabyourselfblood.png -------------------------------------------------------------------------------- /mari0/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/main.lua -------------------------------------------------------------------------------- /mari0/mappacks/portal/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/mappacks/portal/icon.png -------------------------------------------------------------------------------- /mari0/mappacks/portal/settings.txt: -------------------------------------------------------------------------------- 1 | name=portal 2 | author=stabyourself 3 | description=cake and mushrooms will be served at the conclusion of the test. 4 | -------------------------------------------------------------------------------- /mari0/mappacks/smb/1-1_1.txt: -------------------------------------------------------------------------------- 1 | 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,49,1-8,1,1,49,49,49,49,49,49,49,1,1,1,1,38,39,49,1,1,1,1,1,1,1,1,1,1,1,1,1,1,38,39,49,1,1,1,1,1,1,1,1,1,1,1,1,1,1,38,39,49,1,1,1,1,116,116,116,116,116,1,1,1,1,1,38,39,49,1,1,1,1,1,1,1,1,1,1,1,1,1,1,38,39,49,1,1,1,116,116,116,116,116,116,116,1,1,1,1,38,39,49,1,1,1,1,1,1,1,1,1,1,1,1,1,1,38,39,49,1,1,1,116,116,116,116,116,116,116,1,1,1,1,38,39,49,1,1,1,49,49,49,49,49,49,49,1,1,1,1,38,39,49,1,1,1,49,49,49,49,49,49,49,1,1,58,59,60,39,49,1,1,1,49,49,49,49,49,49,49,1,1,80-21-0,81,82,39,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50;background=2;spriteset=2;music=3 -------------------------------------------------------------------------------- /mari0/mappacks/smb/2-1_2.txt: -------------------------------------------------------------------------------- 1 | 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,49,1-8,1,1,49,49,49,49,49,49,49,1,1,1,1,38,39,49,1,1,1,1,1,1,1,1,1,1,1,1,1,1,38,39,49,1,1,1,1,1,1,1,1,1,1,1,1,1,1,38,39,49,1,1,1,1,116,116,116,116,116,1,1,1,1,1,38,39,49,1,1,1,1,1,1,1,1,1,1,1,1,1,1,38,39,49,1,1,1,116,116,116,116,116,116,116,1,1,1,1,38,39,49,1,1,1,1,1,1,1,1,1,1,1,1,1,1,38,39,49,1,1,1,116,116,116,116,116,116,116,1,1,1,1,38,39,49,1,1,1,49,49,49,49,49,49,49,1,1,1,1,38,39,49,1,1,1,49,49,49,49,49,49,49,1,1,58,59,60,39,49,1,1,1,49,49,49,49,49,49,49,1,1,80-21-0,81,82,39,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50;background=2;spriteset=2;music=3;timelimit=400 -------------------------------------------------------------------------------- /mari0/mappacks/smb/3-1_2.txt: -------------------------------------------------------------------------------- 1 | 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,49,1-8,1,1,1,1,1,1,1,1,1,1,1,1,1,38,39,49,1,1,1,1,1,1,116,116,1,1,1,1,1,1,38,39,49,1,1,1,1,1,116,116,116,116,1,1,1,1,1,38,39,49,1,1,49,49,49-2,1,49,49,1,49,49,49,1,1,38,39,49,1,1,49,49,1,116,49,49,116,1,49,49,1,1,38,39,49,1,1,49,1,116,49,1,1,49,116,1,49,1,1,38,39,49,1,1,49,116,49,1,1,1,1,49,116,49,1,1,38,39,49,1,1,1,49,1,1,1,1,1,1,49,1,1,1,38,39,49,1,1,1,1,1,1,1,1,1,1,1,1,1,1,38,39,49,1,1,1,1,1,1,1,1,1,1,1,1,58,59,60,39,49,1,1,1,1,1,1,1,1,1,1,1,1,80-21-0,81,82,39,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50;background=2;spriteset=2;music=3 -------------------------------------------------------------------------------- /mari0/mappacks/smb/4-1_1.txt: -------------------------------------------------------------------------------- 1 | 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,49,1-8,1,49,49,49,49,49,49,49,49,49,49,49,49,38,39,49,1,1,1,1,1,1,1,1,1,1,1,1,1,1,38,39,49,1,1,1,1,1,1,1,1,1,1,1,1,1,1,38,39,49,1,1,1,1,1,1,1,1,1,1,1,1,1,1,38,39,49,1,1,1,1,1,1,1,1,1,1,1,1,1,1,38,39,49,1,1,1,1,1,1,1,1,1,1,1,1,1,1,38,39,49,1,1,116,116,116,116,116,116,116,116,1,1,1,1,38,39,49,1,1,49,49,49,49,49,49,49,49,1,1,8-2,1,38,39,49,1,1,49,1,1,1,1,1,1,49,1,1,1,1,38,39,49,1,1,49,1,1,1,1,1,1,49,1,1,58,59,60,39,49,1,1,116,116,116,116,116,116,116,116,116,116,80-21-0,81,82,39,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50;background=2;spriteset=2;music=3 -------------------------------------------------------------------------------- /mari0/mappacks/smb/4-2_3.txt: -------------------------------------------------------------------------------- 1 | 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,49,1-8,1,1,49,49,49,49,49,49,49,1,1,1,1,38,39,49,1,1,1,1,1,1,1,1,1,49,1,1,1,1,38,39,49,1,1,1,1,1,1,1,1,1,49,1,1,1,1,38,39,49,1,1,1,1,116,116,116,116,116,49,1,1,1,1,38,39,49,1,1,1,49,116,116,116,116,116,49,49,49,1,1,38,39,49,1,1,1,49,49,49,49,49,49,49,1,1,1,49-5,38,39,49,1,1,1,1,1,1,1,1,1,1,1,1,1,1,38,39,49,1,1,1,1,1,1,1,1,1,1,1,1,1,1,38,39,49,1,1,1,1,1,1,1,1,1,1,1,1,1,1,38,39,49,1,1,1,1,1,1,1,1,1,1,1,1,58,59,60,39,49,1,1,1,1,1,1,1,1,1,1,1,1,80-21-1,81,82,39,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50;background=2;spriteset=2;music=3 -------------------------------------------------------------------------------- /mari0/mappacks/smb/5-1_1.txt: -------------------------------------------------------------------------------- 1 | 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,49,1-8,1,1,49,49,49,49,49,49,49,1,1,1,1,38,39,49,1,1,1,1,1,1,1,1,1,49,1,1,1,1,38,39,49,1,1,1,1,1,1,1,1,1,49,1,1,1,1,38,39,49,1,1,1,1,116,116,116,116,116,49,1,1,1,1,38,39,49,1,1,1,49,116,116,116,116,116,49,49,49,1,1,38,39,49,1,1,1,49,49,49,49,49,49,49,1,1,1,49-5,38,39,49,1,1,1,1,1,1,1,1,1,1,1,1,1,1,38,39,49,1,1,1,1,1,1,1,1,1,1,1,1,1,1,38,39,49,1,1,1,1,1,1,1,1,1,1,1,1,1,1,38,39,49,1,1,1,1,1,1,1,1,1,1,1,1,58,59,60,39,49,1,1,1,1,1,1,1,1,1,1,1,1,80-21-0,81,82,39,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50;background=2;spriteset=2;music=3 -------------------------------------------------------------------------------- /mari0/mappacks/smb/6-2_1.txt: -------------------------------------------------------------------------------- 1 | 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,49,1-8,1,1,49,49,49,49,49,49,49,1,1,1,1,38,39,49,1,1,1,1,1,1,1,1,1,49,1,1,1,1,38,39,49,1,1,1,1,1,1,1,1,1,49,1,1,1,1,38,39,49,1,1,1,1,116,116,116,116,116,49,1,1,1,1,38,39,49,1,1,1,49,116,116,116,116,116,49,49,49,1,1,38,39,49,1,1,1,49,49,49,49,49,49,49,1,1,1,49-5,38,39,49,1,1,1,1,1,1,1,1,1,1,1,1,1,1,38,39,49,1,1,1,1,1,1,1,1,1,1,1,1,1,1,38,39,49,1,1,1,1,1,1,1,1,1,1,1,1,1,1,38,39,49,1,1,1,1,1,1,1,1,1,1,1,1,58,59,60,39,49,1,1,1,1,1,1,1,1,1,1,1,1,80-21-0,81,82,39,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50;background=2;spriteset=2;music=3 -------------------------------------------------------------------------------- /mari0/mappacks/smb/6-2_4.txt: -------------------------------------------------------------------------------- 1 | 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,49,1-8,1,49,49,49,49,49,49,49,49,49,49,49,49,38,39,49,1,1,1,1,1,1,1,1,1,1,1,1,1,1,38,39,49,1,1,1,1,1,1,1,1,1,1,1,1,1,1,38,39,49,1,1,1,1,1,1,1,1,1,1,1,1,1,1,38,39,49,1,1,1,1,1,1,1,1,1,1,1,1,1,1,38,39,49,1,1,1,1,1,1,1,1,1,1,1,1,1,1,38,39,49,1,1,116,116,116,116,116,116,116,116,1,1,1,1,38,39,49,1,1,49,49,49,49,49,49,49,49,1,1,49-2,1,38,39,49,1,1,49,1,1,1,1,1,1,49,1,1,1,1,38,39,49,1,1,49,1,1,1,1,1,1,49,1,1,58,59,60,39,49,1,1,116,116,116,116,116,116,116,116,116,116,80-21-0,81,82,39,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50;background=2;spriteset=2;music=3 -------------------------------------------------------------------------------- /mari0/mappacks/smb/7-1_1.txt: -------------------------------------------------------------------------------- 1 | 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,49,1-8,1,1,49,49,49,49,49,49,49,1,1,1,1,38,39,49,1,1,1,1,1,1,1,1,1,1,1,1,1,1,38,39,49,1,1,1,1,1,1,1,1,1,1,1,1,1,1,38,39,49,1,1,1,1,116,116,116,116,116,1,1,1,1,1,38,39,49,1,1,1,1,1,1,1,1,1,1,1,1,1,1,38,39,49,1,1,1,116,116,116,116,116,116,116,1,1,1,1,38,39,49,1,1,1,1,1,1,1,1,1,1,1,1,1,1,38,39,49,1,1,1,116,116,116,116,116,116,116,1,1,1,1,38,39,49,1,1,1,49,49,49,49,49,49,49,1,1,1,1,38,39,49,1,1,1,49,49,49,49,49,49,49,1,1,58,59,60,39,49,1,1,1,49,49,49,49,49,49,49,1,1,80-21-0,81,82,39,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50;background=2;spriteset=2;music=3 -------------------------------------------------------------------------------- /mari0/mappacks/smb/8-1_1.txt: -------------------------------------------------------------------------------- 1 | 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,49,1-8,1,49,49,49,49,49,49,49,49,49,49,49,49,38,39,49,1,1,49,49,49,49,49,49,49,49,49,49,49,49,38,39,49,1,1,49,49,49,49,49,49,49,49,49,49,49,49,38,39,49,1,1,49,49,49,49,49,49,49,49,49,49,49,49,38,39,49,1,1,1,1,1,1,1,1,1,1,1,1,49,49,38,39,49,1,1,1,1,1,1,1,1,1,1,1,1,49,49,38,39,49,1,1,1,116,116,116,116,116,116,116,116,1,49,49,38,39,49,1,1,49,49,49,49,49,49,49,49,49,49-5,49,49,38,39,49,1,1,1,1,1,1,1,1,1,1,1,1,49,49,38,39,49,1,1,1,1,1,1,1,1,1,1,1,1,58,59,60,39,49,1,1,116,116,116,116,116,116,116,116,116,1,80-21-0,81,82,39,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50;background=2;spriteset=2;music=3 -------------------------------------------------------------------------------- /mari0/mappacks/smb/8-2_1.txt: -------------------------------------------------------------------------------- 1 | 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,49,1,1,1,49,49,49,49,49,49,49,1,1,1,1,38,39,49,1,1,1,1,1,1,1,1,1,49,1,1,1,1,38,39,49,1,1,1,1,1,1,1,1,1,49,1,1,1,1,38,39,49,1,1,1,1,116,116,116,116,116,49,1,1,1,1,38,39,49,1,1,1,49,116,116,116,116,116,49,49,49,1,1,38,39,49,1,1,1,49,49,49,49,49,49,49,1,1,1,49-5,38,39,49,1,1,1,1,1,1,1,1,1,1,1,1,1,1,38,39,49,1,1,1,1,1,1,1,1,1,1,1,1,1,1,38,39,49,1,1,1,1,1,1,1,1,1,1,1,1,1,1,38,39,49,1,1,1,1,1,1,1,1,1,1,1,1,58,59,60,39,49,1,1,1,1,1,1,1,1,1,1,1,1,80-21-0,81,82,39,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50,50;background=2;spriteset=2;music=3;timelimit=400 -------------------------------------------------------------------------------- /mari0/mappacks/smb/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/mappacks/smb/icon.png -------------------------------------------------------------------------------- /mari0/mappacks/smb/settings.txt: -------------------------------------------------------------------------------- 1 | name=super mario bros. 2 | author=nintendo 3 | description=classic levels 4 | -------------------------------------------------------------------------------- /mari0/mario.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/mario.lua -------------------------------------------------------------------------------- /mari0/netplayinc/MiddleClass.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/netplayinc/MiddleClass.lua -------------------------------------------------------------------------------- /mari0/physics.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/physics.lua -------------------------------------------------------------------------------- /mari0/portalwall.lua: -------------------------------------------------------------------------------- 1 | portalwall = class:new() 2 | 3 | function portalwall:init(x, y, width, height) 4 | self.x = x 5 | self.y = y 6 | self.width = width 7 | self.height = height 8 | self.static = true 9 | self.active = true 10 | self.category = 12 11 | self.mask = {true} 12 | end -------------------------------------------------------------------------------- /mari0/screenboundary.lua: -------------------------------------------------------------------------------- 1 | screenboundary = class:new() 2 | 3 | function screenboundary:init(x) 4 | self.x = x 5 | self.y = -1000 6 | self.width = 0 7 | self.height = 1020 8 | self.static = true 9 | self.active = true 10 | self.category = 10 11 | self.mask = {true} 12 | end -------------------------------------------------------------------------------- /mari0/scrollingscore.lua: -------------------------------------------------------------------------------- 1 | scrollingscore = class:new() function scrollingscore:init(i, x, y) self.x = x-xscroll self.y = y self.i = i self.timer = 0 end function scrollingscore:update(dt) self.timer = self.timer + dt if self.timer > scrollingscoretime then return true end return false end -------------------------------------------------------------------------------- /mari0/shaders/HDR-TV.frag: -------------------------------------------------------------------------------- 1 | vec4 effect(vec4 color, Image texture, vec2 texture_coords, vec2 pixel_coords) 2 | { 3 | vec4 rgb = Texel(texture, texture_coords); 4 | vec4 intens = smoothstep(0.2,0.8,rgb) + normalize(vec4(rgb.xyz, 1.0)); 5 | 6 | if (fract(pixel_coords.y * 0.5) > 0.5) intens = rgb * 0.8; 7 | intens.a = 1.0; 8 | return intens; 9 | } 10 | -------------------------------------------------------------------------------- /mari0/shaders/pixellate2.frag: -------------------------------------------------------------------------------- 1 | 2 | extern vec2 textureSize; 3 | 4 | const float pixel_w = 2.0; 5 | const float pixel_h = 2.0; 6 | 7 | vec4 effect(vec4 vcolor, Image texture, vec2 uv, vec2 pixel_coords) 8 | { 9 | float dx = pixel_w*(1.0/textureSize.x); 10 | float dy = pixel_h*(1.0/textureSize.y); 11 | vec2 coord = vec2(dx*floor(uv.x/dx), dy*floor(uv.y/dy)); 12 | return Texel(texture, coord); 13 | } 14 | -------------------------------------------------------------------------------- /mari0/shaders/radialblur.frag: -------------------------------------------------------------------------------- 1 | #define nsamples 5 2 | 3 | extern number blurstart = 1.0; // 0 to 1 4 | extern number blurwidth = -0.02; // -1 to 1 5 | 6 | 7 | vec4 effect(vec4 vcolor, Image texture, vec2 texture_coords, vec2 pixel_coords) 8 | { 9 | vec4 c = vec4(0.0, 0.0, 0.0, 1.0); 10 | 11 | int i; 12 | for (i = 0; i < nsamples; i++) 13 | { 14 | number scale = blurstart + blurwidth * (i / float(nsamples-1)); 15 | c.rgb += Texel(texture, texture_coords * scale).rgb; 16 | } 17 | 18 | c.rgb /= nsamples; 19 | 20 | return c; 21 | } 22 | -------------------------------------------------------------------------------- /mari0/sounds/blockbreak.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/sounds/blockbreak.ogg -------------------------------------------------------------------------------- /mari0/sounds/blockhit.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/sounds/blockhit.ogg -------------------------------------------------------------------------------- /mari0/sounds/boom.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/sounds/boom.ogg -------------------------------------------------------------------------------- /mari0/sounds/bowserfall.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/sounds/bowserfall.ogg -------------------------------------------------------------------------------- /mari0/sounds/bridgebreak.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/sounds/bridgebreak.ogg -------------------------------------------------------------------------------- /mari0/sounds/bulletbill.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/sounds/bulletbill.ogg -------------------------------------------------------------------------------- /mari0/sounds/castle-fast.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/sounds/castle-fast.ogg -------------------------------------------------------------------------------- /mari0/sounds/castle.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/sounds/castle.ogg -------------------------------------------------------------------------------- /mari0/sounds/castleend.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/sounds/castleend.ogg -------------------------------------------------------------------------------- /mari0/sounds/coin.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/sounds/coin.ogg -------------------------------------------------------------------------------- /mari0/sounds/death.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/sounds/death.ogg -------------------------------------------------------------------------------- /mari0/sounds/fire.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/sounds/fire.ogg -------------------------------------------------------------------------------- /mari0/sounds/fireball.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/sounds/fireball.ogg -------------------------------------------------------------------------------- /mari0/sounds/gameover.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/sounds/gameover.ogg -------------------------------------------------------------------------------- /mari0/sounds/intermission.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/sounds/intermission.ogg -------------------------------------------------------------------------------- /mari0/sounds/jump.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/sounds/jump.ogg -------------------------------------------------------------------------------- /mari0/sounds/jumpbig.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/sounds/jumpbig.ogg -------------------------------------------------------------------------------- /mari0/sounds/konami.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/sounds/konami.ogg -------------------------------------------------------------------------------- /mari0/sounds/levelend.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/sounds/levelend.ogg -------------------------------------------------------------------------------- /mari0/sounds/lowtime.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/sounds/lowtime.ogg -------------------------------------------------------------------------------- /mari0/sounds/mushroomappear.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/sounds/mushroomappear.ogg -------------------------------------------------------------------------------- /mari0/sounds/mushroomeat.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/sounds/mushroomeat.ogg -------------------------------------------------------------------------------- /mari0/sounds/oneup.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/sounds/oneup.ogg -------------------------------------------------------------------------------- /mari0/sounds/overworld-fast.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/sounds/overworld-fast.ogg -------------------------------------------------------------------------------- /mari0/sounds/overworld.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/sounds/overworld.ogg -------------------------------------------------------------------------------- /mari0/sounds/pause.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/sounds/pause.ogg -------------------------------------------------------------------------------- /mari0/sounds/pipe.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/sounds/pipe.ogg -------------------------------------------------------------------------------- /mari0/sounds/portal1open.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/sounds/portal1open.ogg -------------------------------------------------------------------------------- /mari0/sounds/portal2open.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/sounds/portal2open.ogg -------------------------------------------------------------------------------- /mari0/sounds/portalenter.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/sounds/portalenter.ogg -------------------------------------------------------------------------------- /mari0/sounds/portalfizzle.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/sounds/portalfizzle.ogg -------------------------------------------------------------------------------- /mari0/sounds/princessmusic.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/sounds/princessmusic.ogg -------------------------------------------------------------------------------- /mari0/sounds/rainboom.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/sounds/rainboom.ogg -------------------------------------------------------------------------------- /mari0/sounds/scorering.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/sounds/scorering.ogg -------------------------------------------------------------------------------- /mari0/sounds/shot.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/sounds/shot.ogg -------------------------------------------------------------------------------- /mari0/sounds/shrink.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/sounds/shrink.ogg -------------------------------------------------------------------------------- /mari0/sounds/stab.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/sounds/stab.ogg -------------------------------------------------------------------------------- /mari0/sounds/starmusic-fast.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/sounds/starmusic-fast.ogg -------------------------------------------------------------------------------- /mari0/sounds/starmusic.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/sounds/starmusic.ogg -------------------------------------------------------------------------------- /mari0/sounds/stomp.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/sounds/stomp.ogg -------------------------------------------------------------------------------- /mari0/sounds/swim.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/sounds/swim.ogg -------------------------------------------------------------------------------- /mari0/sounds/underground-fast.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/sounds/underground-fast.ogg -------------------------------------------------------------------------------- /mari0/sounds/underground.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/sounds/underground.ogg -------------------------------------------------------------------------------- /mari0/sounds/underwater-fast.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/sounds/underwater-fast.ogg -------------------------------------------------------------------------------- /mari0/sounds/underwater.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/sounds/underwater.ogg -------------------------------------------------------------------------------- /mari0/sounds/vine.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mari0/sounds/vine.ogg -------------------------------------------------------------------------------- /mari0/tile.lua: -------------------------------------------------------------------------------- 1 | tile = class:new() 2 | 3 | function tile:init(x, y) 4 | self.cox = x+1 5 | self.coy = y+1 6 | self.x = x 7 | self.y = y 8 | self.speedx = 0 9 | self.speedy = 0 10 | self.width = 1 11 | self.height = 1 12 | self.active = true 13 | self.static = true 14 | self.category = 2 15 | self.mask = {true} 16 | end -------------------------------------------------------------------------------- /mrrescue/boss.lua: -------------------------------------------------------------------------------- 1 | Boss = { DEAD_TIME = 5, DEAD_SMOKE_INTERVAL = 0.5 } 2 | Boss.__index = Boss 3 | -- Boss states 4 | BS_IDLE, 5 | BS_JUMP, 6 | BS_FLY, 7 | BS_LAND, 8 | BS_TRANSITION, 9 | BS_DEAD, 10 | BS_WALK, 11 | BS_PUSHED, 12 | BS_SHOOT 13 | = 0,1,2,3,4,5,6,7,8 14 | -------------------------------------------------------------------------------- /mrrescue/conf.lua: -------------------------------------------------------------------------------- 1 | function love.conf(t) 2 | t.title = "Mr. Rescue" 3 | t.author = "Tangram games" 4 | t.url = "http://simonlarsen.github.com/mrrescue" 5 | t.identity = "mrrescue" 6 | t.version = "0.8.0" 7 | t.console = false 8 | t.release = false 9 | t.screen.width = 256*3 10 | t.screen.height = 200*3 11 | t.screen.fullscreen = false 12 | t.screen.vsync = true 13 | t.screen.fsaa = 0 14 | t.modules.mouse = false 15 | t.modules.physics = false 16 | end 17 | -------------------------------------------------------------------------------- /mrrescue/data/ashes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/ashes.png -------------------------------------------------------------------------------- /mrrescue/data/backgrounds/mountains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/backgrounds/mountains.png -------------------------------------------------------------------------------- /mrrescue/data/backgrounds/night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/backgrounds/night.png -------------------------------------------------------------------------------- /mrrescue/data/black_smoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/black_smoke.png -------------------------------------------------------------------------------- /mrrescue/data/black_smoke_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/black_smoke_small.png -------------------------------------------------------------------------------- /mrrescue/data/boldfont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/boldfont.png -------------------------------------------------------------------------------- /mrrescue/data/boss_health.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/boss_health.png -------------------------------------------------------------------------------- /mrrescue/data/captain_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/captain_dialog.png -------------------------------------------------------------------------------- /mrrescue/data/circles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/circles.png -------------------------------------------------------------------------------- /mrrescue/data/door.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/door.png -------------------------------------------------------------------------------- /mrrescue/data/enemy_angryjumper_hit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/enemy_angryjumper_hit.png -------------------------------------------------------------------------------- /mrrescue/data/enemy_angryjumper_jump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/enemy_angryjumper_jump.png -------------------------------------------------------------------------------- /mrrescue/data/enemy_angrynormal_hit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/enemy_angrynormal_hit.png -------------------------------------------------------------------------------- /mrrescue/data/enemy_angrynormal_recover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/enemy_angrynormal_recover.png -------------------------------------------------------------------------------- /mrrescue/data/enemy_angrynormal_run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/enemy_angrynormal_run.png -------------------------------------------------------------------------------- /mrrescue/data/enemy_angryvolcano_hit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/enemy_angryvolcano_hit.png -------------------------------------------------------------------------------- /mrrescue/data/enemy_angryvolcano_run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/enemy_angryvolcano_run.png -------------------------------------------------------------------------------- /mrrescue/data/enemy_angryvolcano_shoot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/enemy_angryvolcano_shoot.png -------------------------------------------------------------------------------- /mrrescue/data/enemy_fireball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/enemy_fireball.png -------------------------------------------------------------------------------- /mrrescue/data/enemy_jumper_hit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/enemy_jumper_hit.png -------------------------------------------------------------------------------- /mrrescue/data/enemy_jumper_jump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/enemy_jumper_jump.png -------------------------------------------------------------------------------- /mrrescue/data/enemy_jumper_recover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/enemy_jumper_recover.png -------------------------------------------------------------------------------- /mrrescue/data/enemy_normal_hit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/enemy_normal_hit.png -------------------------------------------------------------------------------- /mrrescue/data/enemy_normal_recover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/enemy_normal_recover.png -------------------------------------------------------------------------------- /mrrescue/data/enemy_normal_run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/enemy_normal_run.png -------------------------------------------------------------------------------- /mrrescue/data/enemy_thief_hit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/enemy_thief_hit.png -------------------------------------------------------------------------------- /mrrescue/data/enemy_thief_recover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/enemy_thief_recover.png -------------------------------------------------------------------------------- /mrrescue/data/enemy_thief_run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/enemy_thief_run.png -------------------------------------------------------------------------------- /mrrescue/data/enemy_volcano_hit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/enemy_volcano_hit.png -------------------------------------------------------------------------------- /mrrescue/data/enemy_volcano_run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/enemy_volcano_run.png -------------------------------------------------------------------------------- /mrrescue/data/enemy_volcano_shoot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/enemy_volcano_shoot.png -------------------------------------------------------------------------------- /mrrescue/data/fire_floor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/fire_floor.png -------------------------------------------------------------------------------- /mrrescue/data/fire_wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/fire_wall.png -------------------------------------------------------------------------------- /mrrescue/data/fire_wall_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/fire_wall_small.png -------------------------------------------------------------------------------- /mrrescue/data/gasghost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/gasghost.png -------------------------------------------------------------------------------- /mrrescue/data/gasghost_hit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/gasghost_hit.png -------------------------------------------------------------------------------- /mrrescue/data/gasleak_angry_idle_shot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/gasleak_angry_idle_shot.png -------------------------------------------------------------------------------- /mrrescue/data/gasleak_hit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/gasleak_hit.png -------------------------------------------------------------------------------- /mrrescue/data/gasleak_idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/gasleak_idle.png -------------------------------------------------------------------------------- /mrrescue/data/gasleak_idle_shot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/gasleak_idle_shot.png -------------------------------------------------------------------------------- /mrrescue/data/gasleak_portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/gasleak_portrait.png -------------------------------------------------------------------------------- /mrrescue/data/gasleak_rage_idle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/gasleak_rage_idle.png -------------------------------------------------------------------------------- /mrrescue/data/gasleak_rage_idle_shot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/gasleak_rage_idle_shot.png -------------------------------------------------------------------------------- /mrrescue/data/gasleak_rage_shot_walk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/gasleak_rage_shot_walk.png -------------------------------------------------------------------------------- /mrrescue/data/gasleak_rage_walk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/gasleak_rage_walk.png -------------------------------------------------------------------------------- /mrrescue/data/gasleak_shot_walk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/gasleak_shot_walk.png -------------------------------------------------------------------------------- /mrrescue/data/gasleak_transition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/gasleak_transition.png -------------------------------------------------------------------------------- /mrrescue/data/gasleak_walk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/gasleak_walk.png -------------------------------------------------------------------------------- /mrrescue/data/highscore_panes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/highscore_panes.png -------------------------------------------------------------------------------- /mrrescue/data/howto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/howto.png -------------------------------------------------------------------------------- /mrrescue/data/hud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/hud.png -------------------------------------------------------------------------------- /mrrescue/data/hud2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/hud2.png -------------------------------------------------------------------------------- /mrrescue/data/hud_people.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/hud_people.png -------------------------------------------------------------------------------- /mrrescue/data/human_1_burn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/human_1_burn.png -------------------------------------------------------------------------------- /mrrescue/data/human_1_carry_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/human_1_carry_left.png -------------------------------------------------------------------------------- /mrrescue/data/human_1_carry_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/human_1_carry_right.png -------------------------------------------------------------------------------- /mrrescue/data/human_1_fly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/human_1_fly.png -------------------------------------------------------------------------------- /mrrescue/data/human_1_panic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/human_1_panic.png -------------------------------------------------------------------------------- /mrrescue/data/human_1_run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/human_1_run.png -------------------------------------------------------------------------------- /mrrescue/data/human_2_burn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/human_2_burn.png -------------------------------------------------------------------------------- /mrrescue/data/human_2_carry_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/human_2_carry_left.png -------------------------------------------------------------------------------- /mrrescue/data/human_2_carry_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/human_2_carry_right.png -------------------------------------------------------------------------------- /mrrescue/data/human_2_fly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/human_2_fly.png -------------------------------------------------------------------------------- /mrrescue/data/human_2_panic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/human_2_panic.png -------------------------------------------------------------------------------- /mrrescue/data/human_2_run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/human_2_run.png -------------------------------------------------------------------------------- /mrrescue/data/human_3_burn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/human_3_burn.png -------------------------------------------------------------------------------- /mrrescue/data/human_3_carry_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/human_3_carry_left.png -------------------------------------------------------------------------------- /mrrescue/data/human_3_carry_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/human_3_carry_right.png -------------------------------------------------------------------------------- /mrrescue/data/human_3_fly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/human_3_fly.png -------------------------------------------------------------------------------- /mrrescue/data/human_3_panic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/human_3_panic.png -------------------------------------------------------------------------------- /mrrescue/data/human_3_run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/human_3_run.png -------------------------------------------------------------------------------- /mrrescue/data/human_4_burn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/human_4_burn.png -------------------------------------------------------------------------------- /mrrescue/data/human_4_carry_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/human_4_carry_left.png -------------------------------------------------------------------------------- /mrrescue/data/human_4_carry_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/human_4_carry_right.png -------------------------------------------------------------------------------- /mrrescue/data/human_4_fly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/human_4_fly.png -------------------------------------------------------------------------------- /mrrescue/data/human_4_panic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/human_4_panic.png -------------------------------------------------------------------------------- /mrrescue/data/human_4_run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/human_4_run.png -------------------------------------------------------------------------------- /mrrescue/data/item_coolant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/item_coolant.png -------------------------------------------------------------------------------- /mrrescue/data/item_regen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/item_regen.png -------------------------------------------------------------------------------- /mrrescue/data/item_reserve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/item_reserve.png -------------------------------------------------------------------------------- /mrrescue/data/item_slots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/item_slots.png -------------------------------------------------------------------------------- /mrrescue/data/item_suit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/item_suit.png -------------------------------------------------------------------------------- /mrrescue/data/item_tank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/item_tank.png -------------------------------------------------------------------------------- /mrrescue/data/level_buildings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/level_buildings.png -------------------------------------------------------------------------------- /mrrescue/data/light_fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/light_fire.png -------------------------------------------------------------------------------- /mrrescue/data/light_fireball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/light_fireball.png -------------------------------------------------------------------------------- /mrrescue/data/light_player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/light_player.png -------------------------------------------------------------------------------- /mrrescue/data/lovesplash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/lovesplash.png -------------------------------------------------------------------------------- /mrrescue/data/lovesplashpixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/lovesplashpixel.png -------------------------------------------------------------------------------- /mrrescue/data/magmahulk_jump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/magmahulk_jump.png -------------------------------------------------------------------------------- /mrrescue/data/magmahulk_jump_hit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/magmahulk_jump_hit.png -------------------------------------------------------------------------------- /mrrescue/data/magmahulk_land.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/magmahulk_land.png -------------------------------------------------------------------------------- /mrrescue/data/magmahulk_land_hit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/magmahulk_land_hit.png -------------------------------------------------------------------------------- /mrrescue/data/magmahulk_portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/magmahulk_portrait.png -------------------------------------------------------------------------------- /mrrescue/data/magmahulk_rage_jump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/magmahulk_rage_jump.png -------------------------------------------------------------------------------- /mrrescue/data/magmahulk_rage_land.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/magmahulk_rage_land.png -------------------------------------------------------------------------------- /mrrescue/data/menu_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/menu_box.png -------------------------------------------------------------------------------- /mrrescue/data/overloaded_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/overloaded_bar.png -------------------------------------------------------------------------------- /mrrescue/data/player_climb_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/player_climb_down.png -------------------------------------------------------------------------------- /mrrescue/data/player_climb_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/player_climb_up.png -------------------------------------------------------------------------------- /mrrescue/data/player_death.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/player_death.png -------------------------------------------------------------------------------- /mrrescue/data/player_gun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/player_gun.png -------------------------------------------------------------------------------- /mrrescue/data/player_running.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/player_running.png -------------------------------------------------------------------------------- /mrrescue/data/player_throw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/player_throw.png -------------------------------------------------------------------------------- /mrrescue/data/popup_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/popup_text.png -------------------------------------------------------------------------------- /mrrescue/data/red_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/red_screen.png -------------------------------------------------------------------------------- /mrrescue/data/reserve_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/reserve_bar.png -------------------------------------------------------------------------------- /mrrescue/data/sfx/blip.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/sfx/blip.wav -------------------------------------------------------------------------------- /mrrescue/data/sfx/bundesliga.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/sfx/bundesliga.ogg -------------------------------------------------------------------------------- /mrrescue/data/sfx/confirm.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/sfx/confirm.wav -------------------------------------------------------------------------------- /mrrescue/data/sfx/door.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/sfx/door.wav -------------------------------------------------------------------------------- /mrrescue/data/sfx/empty.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/sfx/empty.wav -------------------------------------------------------------------------------- /mrrescue/data/sfx/endexplosion.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/sfx/endexplosion.wav -------------------------------------------------------------------------------- /mrrescue/data/sfx/happyfeerings.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/sfx/happyfeerings.ogg -------------------------------------------------------------------------------- /mrrescue/data/sfx/menujazz.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/sfx/menujazz.ogg -------------------------------------------------------------------------------- /mrrescue/data/sfx/opening.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/sfx/opening.ogg -------------------------------------------------------------------------------- /mrrescue/data/sfx/powerup.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/sfx/powerup.wav -------------------------------------------------------------------------------- /mrrescue/data/sfx/rockerronni.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/sfx/rockerronni.ogg -------------------------------------------------------------------------------- /mrrescue/data/sfx/scooterfest.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/sfx/scooterfest.ogg -------------------------------------------------------------------------------- /mrrescue/data/shards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/shards.png -------------------------------------------------------------------------------- /mrrescue/data/shockwave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/shockwave.png -------------------------------------------------------------------------------- /mrrescue/data/sparkles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/sparkles.png -------------------------------------------------------------------------------- /mrrescue/data/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/splash.png -------------------------------------------------------------------------------- /mrrescue/data/stream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/stream.png -------------------------------------------------------------------------------- /mrrescue/data/tangram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/tangram.png -------------------------------------------------------------------------------- /mrrescue/data/temperature_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/temperature_bar.png -------------------------------------------------------------------------------- /mrrescue/data/tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/tiles.png -------------------------------------------------------------------------------- /mrrescue/data/warning_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/warning_icons.png -------------------------------------------------------------------------------- /mrrescue/data/water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/water.png -------------------------------------------------------------------------------- /mrrescue/data/water_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/data/water_bar.png -------------------------------------------------------------------------------- /mrrescue/slam.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/mrrescue/slam.lua -------------------------------------------------------------------------------- /pew-pew-boom/Game.lua: -------------------------------------------------------------------------------- 1 | showDebugInfo = false 2 | 3 | Game = class('Game', StatefulObject) 4 | Game:includes(Beholder) 5 | 6 | function Game:initialize() 7 | super.initialize(self) 8 | 9 | self:gotoState('MainMenu') 10 | self:observe('keypressed_tab', 'toggleDebug') 11 | end 12 | 13 | function Game:toggleDebug() 14 | showDebugInfo = not showDebugInfo 15 | end 16 | 17 | function Game:draw() 18 | end 19 | 20 | function Game:update() 21 | end 22 | -------------------------------------------------------------------------------- /pew-pew-boom/README.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/pew-pew-boom/README.png -------------------------------------------------------------------------------- /pew-pew-boom/actors/space/vehicles/Razor.lua: -------------------------------------------------------------------------------- 1 | require('actors/space/vehicles/Ship') 2 | 3 | local image = passion.graphics.getImage('images/image.png') 4 | 5 | Razor = class('Razor', Ship) 6 | 7 | function Razor:initialize(ai, x, y, quadTree) 8 | super.initialize(self, ai, x,y, 16,16, 9 | -- Shapes 10 | { circle={0,0,16} }, 11 | -- Slots 12 | { frontLeft= { x=6,y=-10 }, 13 | frontRight={ x=6,y=10 }, 14 | back={ x=-13, y=0 } 15 | }, 16 | -- Quad 17 | passion.graphics.newQuad(image, 32,0, 32,32), 18 | -- QuadTree 19 | quadTree, 20 | -- Other stuff 21 | { baseThrust=0.05, baseStrafeThrust=0.03, baseRotation=1.2 } 22 | ) 23 | end 24 | -------------------------------------------------------------------------------- /pew-pew-boom/conf.lua: -------------------------------------------------------------------------------- 1 | function love.conf(t) 2 | t.title = "pew pew BOOM!" 3 | t.author = "kikito" 4 | t.love_version = "0.6.0" 5 | --t.console = true 6 | end 7 | -------------------------------------------------------------------------------- /pew-pew-boom/fonts/SVBasicManual.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/pew-pew-boom/fonts/SVBasicManual.ttf -------------------------------------------------------------------------------- /pew-pew-boom/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/pew-pew-boom/images/image.png -------------------------------------------------------------------------------- /pew-pew-boom/main.lua: -------------------------------------------------------------------------------- 1 | -- Example: Stateful game 2 | 3 | require('passion.init') 4 | require('Game') 5 | require('Game_MainMenu.lua') 6 | require('Game_Play.lua') 7 | 8 | function love.load() 9 | math.randomseed( os.time() ) 10 | game = Game:new() 11 | end 12 | 13 | function love.draw() 14 | passion.draw() 15 | game:draw() 16 | end 17 | 18 | function love.update(dt) 19 | passion.update(dt) 20 | game:update(dt) 21 | end 22 | -------------------------------------------------------------------------------- /pew-pew-boom/mixins/AutoCamerable.lua: -------------------------------------------------------------------------------- 1 | AutoCamerable = { 2 | getCameras = function() 3 | if(autoCamera~=nil) then return {autoCamera} end 4 | return {passion.graphics.defaultCamera} 5 | end 6 | } 7 | -------------------------------------------------------------------------------- /pew-pew-boom/mixins/BodyBuilder.lua: -------------------------------------------------------------------------------- 1 | 2 | BodyBuilder = {} 3 | 4 | -- An passion.physics.Actor that can create shapes dynamically depending on a list of shape specs 5 | function BodyBuilder:buildBody(shapes) 6 | self:newBody() 7 | for shapeType,shapeData in pairs(shapes) do 8 | if(shapeType=='circle') then 9 | self:newCircleShape(unpack(shapeData)) 10 | elseif(shapeType=='polygon') then 11 | self:newPolygonShape(unpack(shapeData)) 12 | elseif(shapeType=='rectangle') then 13 | self:newRectangleShape(unpack(shapeData)) 14 | else 15 | error('Unknown shape type: ' .. shapeType) 16 | end 17 | end 18 | self:setMassFromShapes() 19 | end 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /pew-pew-boom/mixins/DebugDraw.lua: -------------------------------------------------------------------------------- 1 | DebugDraw = {} 2 | 3 | 4 | -- An passion.physics.Actor with center and 'quad' defined. 5 | -- Draws the actor's quad, shape and bbox if the global variable 'debug' is defined 6 | function DebugDraw:draw() 7 | love.graphics.setColor(unpack(self.color or passion.colors.white)) 8 | local x, y = self:getPosition() 9 | local cx, cy = self:getCenter() 10 | passion.graphics.drawq(self.quad, x, y, self:getAngle(), 1, 1, cx, cy) 11 | if(showDebugInfo==true) then 12 | love.graphics.setColor(unpack(passion.colors.lightGreen)) 13 | self:drawShapes() 14 | love.graphics.rectangle('line', self:getBoundingBox()) 15 | end 16 | end 17 | -------------------------------------------------------------------------------- /pew-pew-boom/mixins/PacManLike.lua: -------------------------------------------------------------------------------- 1 | 2 | PacManLike = {} 3 | 4 | function PacManLike:pacManCheck() 5 | local x,y = self:getPosition() 6 | 7 | if(x < -16) then x = 3000 end 8 | if(x > 3016) then x = 0 end 9 | if(y < -16) then y = 3000 end 10 | if(y > 3016) then y = 0 end 11 | 12 | self:setPosition(x,y) 13 | 14 | end 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /pew-pew-boom/mixins/SlotBuilder.lua: -------------------------------------------------------------------------------- 1 | require('actors/Slot.lua') 2 | 3 | SlotBuilder = {} 4 | 5 | -- An object that can create slots dynamically given a list of specifications 6 | function SlotBuilder:buildSlots(slots) 7 | 8 | self.slots = {} 9 | for slotName,slotData in pairs(slots) do 10 | self.slots[slotName] = Slot:new(self, slotName, slotData) 11 | end 12 | end 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /pew-pew-boom/resources/template.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/pew-pew-boom/resources/template.xcf -------------------------------------------------------------------------------- /pew-pew-boom/sfx/boom.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/pew-pew-boom/sfx/boom.mp3 -------------------------------------------------------------------------------- /pew-pew-boom/sfx/impact-hulk.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/pew-pew-boom/sfx/impact-hulk.mp3 -------------------------------------------------------------------------------- /pew-pew-boom/sfx/pew.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/pew-pew-boom/sfx/pew.mp3 -------------------------------------------------------------------------------- /pew-pew-boom/sfx/shield.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/pew-pew-boom/sfx/shield.mp3 -------------------------------------------------------------------------------- /roguelove/.gitignore: -------------------------------------------------------------------------------- 1 | .#* 2 | -------------------------------------------------------------------------------- /roguelove/README.md: -------------------------------------------------------------------------------- 1 | roguelove 2 | ========= 3 | 4 | Roguelike explorations using LÖVE and Lua. -------------------------------------------------------------------------------- /roguelove/conf.lua: -------------------------------------------------------------------------------- 1 | function love.conf(t) 2 | t.version = "0.8.0" 3 | end 4 | -------------------------------------------------------------------------------- /roguelove/drawing.txt: -------------------------------------------------------------------------------- 1 | ─ ━ │ ┃ ┄ ┅ ┆ ┇ ┈ ┉ ┊ ┋ ┌ ┍ ┎ ┏ ┐ ┑ ┒ ┓ └ ┕ ┖ ┗ ┘ ┙ ┚ ┛ 2 | ├ ┝ ┞ ┟ ┠ ┡ ┢ ┣ ┤ ┥ ┦ ┧ ┨ ┩ ┪ ┫ ┬ ┭ ┮ ┯ ┰ ┱ ┲ ┳ ┴ ┵ ┶ ┷ ┸ ┹ ┺ ┻ 3 | ┼ ┽ ┾ ┿ ╀ ╁ ╂ ╃ ╄ ╅ ╆ ╇ ╈ ╉ ╊ ╋ ╌ ╍ ╎ ╏ ═ ║ ╒ ╓ ╔ ╕ ╖ ╗ ╘ ╙ ╚ ╛ ╜ ╝ 4 | ╞ ╟ ╠ ╡ ╢ ╣ ╤ ╥ ╦ ╧ ╨ ╩ ╪ ╫ ╬ ╭ ╮ ╯ ╰ ╱ ╲ ╳ ╴ ╵ ╶ ╷ ╸ ╹ ╺ ╻ ╼ ╽ ╾ 5 | ▁ ▂ ▃ ▄ ▅ ▆ ▇ █ ▉ ▊ ▋ ▌ ▍ ▎ ▏ ▐ ░ ▒ ▓ 6 | ▔ ▕ ▖ ▗ ▘ ▙ ▚ ▛ ▜ ▝ ▞ 7 | -------------------------------------------------------------------------------- /roguelove/fonts/Perfect DOS VGA 437.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/roguelove/fonts/Perfect DOS VGA 437.ttf -------------------------------------------------------------------------------- /roguelove/images/Codepage-437.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/roguelove/images/Codepage-437.png -------------------------------------------------------------------------------- /sienna/README.md: -------------------------------------------------------------------------------- 1 | # Sienna # 2 | 3 | Sienna is a simple, fast-paced one-button platformer. 4 | 5 | ## Controls ## 6 | 7 | * Press 'space' to jump or wall jump when touching a wall. 8 | The longer you hold the button the higher you jump. 9 | This is crucial to the gameplay and it will often be necessary 10 | to press the button for only a splitsecond. 11 | * Press 'R' to restart from last checkpoint. 12 | * Press 'return' to restart from the beginning of the level. 13 | 14 | ## Screenshots ## 15 | ![Walljumping](http://i.imgur.com/e5BDO.png) 16 | ![Snake](http://i.imgur.com/cJHCW.png) 17 | ![Temple](http://i.imgur.com/jf6ib.png) 18 | -------------------------------------------------------------------------------- /sienna/art/bgtiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/sienna/art/bgtiles.png -------------------------------------------------------------------------------- /sienna/art/enemies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/sienna/art/enemies.png -------------------------------------------------------------------------------- /sienna/art/fgtiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/sienna/art/fgtiles.png -------------------------------------------------------------------------------- /sienna/art/font_bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/sienna/art/font_bold.png -------------------------------------------------------------------------------- /sienna/art/font_medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/sienna/art/font_medium.png -------------------------------------------------------------------------------- /sienna/art/font_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/sienna/art/font_small.png -------------------------------------------------------------------------------- /sienna/art/hud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/sienna/art/hud.png -------------------------------------------------------------------------------- /sienna/art/levelscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/sienna/art/levelscreen.png -------------------------------------------------------------------------------- /sienna/art/objects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/sienna/art/objects.png -------------------------------------------------------------------------------- /sienna/art/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/sienna/art/player.png -------------------------------------------------------------------------------- /sienna/art/player2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/sienna/art/player2.png -------------------------------------------------------------------------------- /sienna/art/player_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/sienna/art/player_white.png -------------------------------------------------------------------------------- /sienna/art/titlescreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/sienna/art/titlescreen.png -------------------------------------------------------------------------------- /sienna/conf.lua: -------------------------------------------------------------------------------- 1 | function love.conf(t) 2 | t.title = "Sienna" 3 | t.author = "Simon Larsen" 4 | t.url = "simonlarsen.blogspot.dk" 5 | t.identity = "sienna" 6 | t.version = "0.8.0" 7 | t.console = false 8 | t.release = false 9 | t.screen.width = 900 10 | t.screen.height = 600 11 | t.screen.fullscreen = false 12 | t.screen.vsync = true 13 | t.screen.fsaa = 0 14 | t.modules.physics = false 15 | end 16 | -------------------------------------------------------------------------------- /sienna/sfx/blip.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/sienna/sfx/blip.wav -------------------------------------------------------------------------------- /sienna/sfx/blip2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/sienna/sfx/blip2.wav -------------------------------------------------------------------------------- /sienna/sfx/burn.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/sienna/sfx/burn.wav -------------------------------------------------------------------------------- /sienna/sfx/checkpoint.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/sienna/sfx/checkpoint.wav -------------------------------------------------------------------------------- /sienna/sfx/coin.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/sienna/sfx/coin.wav -------------------------------------------------------------------------------- /sienna/sfx/fireball.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/sienna/sfx/fireball.wav -------------------------------------------------------------------------------- /sienna/sfx/fireball2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/sienna/sfx/fireball2.wav -------------------------------------------------------------------------------- /sienna/sfx/hurt.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/sienna/sfx/hurt.wav -------------------------------------------------------------------------------- /sienna/sfx/jump.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/sienna/sfx/jump.wav -------------------------------------------------------------------------------- /sienna/sfx/jumppad.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/sienna/sfx/jumppad.wav -------------------------------------------------------------------------------- /sienna/sfx/rockgone.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/sienna/sfx/rockgone.wav -------------------------------------------------------------------------------- /sienna/sfx/rockrelease.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/sienna/sfx/rockrelease.wav -------------------------------------------------------------------------------- /sienna/sfx/rugar-a_scent_of_europe.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/sienna/sfx/rugar-a_scent_of_europe.ogg -------------------------------------------------------------------------------- /sienna/sfx/turret.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/sienna/sfx/turret.wav -------------------------------------------------------------------------------- /sienna/sfx/water.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/sienna/sfx/water.wav -------------------------------------------------------------------------------- /sienna/slam.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mindreframer/love2d-games/c331108b76ab3826e5e60ffa5146736f970ce581/sienna/slam.lua -------------------------------------------------------------------------------- /stable-fluids-lua/README.md: -------------------------------------------------------------------------------- 1 | Stable Fluids in lua 2 | ================= 3 | 4 | I needed a simple fluid solver written in lua for a game jam, so I converted the solver from 'Real-Time Fluid Dynamics for Games' by Jos Stam. 5 | 6 | The original paper that I got it from is here: 7 | http://www.dgp.toronto.edu/people/stam/reality/Research/pdf/GDC03.pdf 8 | 9 | Included in this repo is an example of how to use it in Love2D, just run love from the folder to try it out. -------------------------------------------------------------------------------- /stable-fluids-lua/conf.lua: -------------------------------------------------------------------------------- 1 | function love.conf(t) 2 | version = "0.8.0" 3 | t.screen.width = 512 4 | t.screen.height = 512 5 | end 6 | --------------------------------------------------------------------------------