├── README.md └── game ├── 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.bmp ├── 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 ├── dlc_a_portal_tribute │ ├── 1-1.txt │ ├── 1-2.txt │ ├── 1-3.txt │ ├── 1-4.txt │ ├── icon.png │ ├── settings.txt │ ├── tiles.png │ └── version.txt ├── dlc_acid_trip │ ├── 1-1.txt │ ├── 2-1.txt │ ├── 2-1_1.txt │ ├── 2-1_1background1.png │ ├── 2-1_1background2.png │ ├── 2-1background1.png │ ├── 2-1background2.png │ ├── 2-1background3.png │ ├── 2-1background4.png │ ├── 3-1.txt │ ├── 3-1background1.png │ ├── 3-1background2.png │ ├── 3-1background3.png │ ├── 3-1background4.png │ ├── 5-1.txt │ ├── 5-1background1.png │ ├── 5-1background2.png │ ├── 5-1background3.png │ ├── 5-1background4.png │ ├── 6-1.txt │ ├── 6-1_1.txt │ ├── 6-1_1background1.png │ ├── 6-1_1background2.png │ ├── 6-1_1background3.png │ ├── 6-1_1background4.png │ ├── 8-1.txt │ ├── 8-1_1.txt │ ├── 8-1background1.png │ ├── 8-1background2.png │ ├── background1.png │ ├── background2.png │ ├── background3.png │ ├── background4.png │ ├── icon.png │ ├── settings.txt │ ├── tiles.png │ └── version.txt ├── dlc_escape_the_lab │ ├── 1-1.txt │ ├── 1-2.txt │ ├── 1-3.txt │ ├── 1-4.txt │ ├── icon.png │ ├── settings.txt │ └── version.txt ├── dlc_scienceandstuff │ ├── 1-1.txt │ ├── 1-2.txt │ ├── 1-3.txt │ ├── 1-4.txt │ ├── icon.png │ ├── settings.txt │ └── version.txt ├── dlc_smb2J │ ├── 1-1.txt │ ├── 1-1_1.txt │ ├── 1-2.txt │ ├── 1-2_1.txt │ ├── 1-2_2.txt │ ├── 1-2_3.txt │ ├── 1-2_4.txt │ ├── 1-2_5.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-3.txt │ ├── 2-4.txt │ ├── 3-1.txt │ ├── 3-1_1.txt │ ├── 3-1_2.txt │ ├── 3-1_3.txt │ ├── 3-1_4.txt │ ├── 3-2.txt │ ├── 3-2_1.txt │ ├── 3-2_2.txt │ ├── 3-3.txt │ ├── 3-4.txt │ ├── 4-1.txt │ ├── 4-1_1.txt │ ├── 4-1_2.txt │ ├── 4-2.txt │ ├── 4-2_1.txt │ ├── 4-3.txt │ ├── 4-4.txt │ ├── 5-1.txt │ ├── 5-1_1.txt │ ├── 5-1_2.txt │ ├── 5-1_3.txt │ ├── 5-2.txt │ ├── 5-2_1.txt │ ├── 5-2_2.txt │ ├── 5-2_3.txt │ ├── 5-3.txt │ ├── 5-3_1.txt │ ├── 5-3_2.txt │ ├── 5-4.txt │ ├── 6-1.txt │ ├── 6-1_1.txt │ ├── 6-2.txt │ ├── 6-2_1.txt │ ├── 6-2_2.txt │ ├── 6-3.txt │ ├── 6-4.txt │ ├── 7-1.txt │ ├── 7-1_1.txt │ ├── 7-1_2.txt │ ├── 7-1_3.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-1_2.txt │ ├── 8-2.txt │ ├── 8-2_1.txt │ ├── 8-2_2.txt │ ├── 8-3.txt │ ├── 8-3_1.txt │ ├── 8-4.txt │ ├── 8-4_1.txt │ ├── 8-4_2.txt │ ├── 8-4_3.txt │ ├── 8-4_4.txt │ ├── icon.png │ ├── settings.txt │ ├── tiles.png │ └── version.txt ├── dlc_the_untitled_game │ ├── 1-1.txt │ ├── 1-1_1.txt │ ├── 1-1_2.txt │ ├── 1-1_3.txt │ ├── 1-1_4.txt │ ├── 1-2.txt │ ├── 1-2_1.txt │ ├── 1-2_2.txt │ ├── 1-2_3.txt │ ├── 1-2_4.txt │ ├── 1-3.txt │ ├── 1-3_1.txt │ ├── 1-3_2.txt │ ├── 1-3_3.txt │ ├── 1-4.txt │ ├── 1-4_1.txt │ ├── 2-1.txt │ ├── 2-1_1.txt │ ├── 2-1_2.txt │ ├── 2-2.txt │ ├── 2-2_1.txt │ ├── 2-2_2.txt │ ├── 2-2_3.txt │ ├── 2-3.txt │ ├── 2-3_1.txt │ ├── 2-3_2.txt │ ├── 2-3_3.txt │ ├── 2-4.txt │ ├── 3-1.txt │ ├── 3-1_1.txt │ ├── 3-2.txt │ ├── 3-2_1.txt │ ├── 3-2_2.txt │ ├── 3-2_3.txt │ ├── 3-2_4.txt │ ├── 3-3.txt │ ├── 3-4.txt │ ├── 4-1.txt │ ├── 4-1_1.txt │ ├── 4-1_2.txt │ ├── 4-2.txt │ ├── 4-2_1.txt │ ├── 4-2_2.txt │ ├── 4-2_3.txt │ ├── 4-3.txt │ ├── 4-3_1.txt │ ├── 4-4.txt │ ├── 5-1.txt │ ├── 5-1_1.txt │ ├── 5-2.txt │ ├── 5-3.txt │ ├── 5-4.txt │ ├── 6-1.txt │ ├── 6-2.txt │ ├── 6-2_1.txt │ ├── 6-3.txt │ ├── 6-3_1.txt │ ├── 6-3_2.txt │ ├── 6-4.txt │ ├── 7-1.txt │ ├── 7-1_1.txt │ ├── 7-2.txt │ ├── 7-2_1.txt │ ├── 7-3.txt │ ├── 7-3_1.txt │ ├── 7-3_2.txt │ ├── 7-4.txt │ ├── 7-4_1.txt │ ├── 8-1.txt │ ├── 8-2.txt │ ├── 8-3.txt │ ├── 8-3_1.txt │ ├── 8-3_2.txt │ ├── 8-4.txt │ ├── 8-4_1.txt │ ├── 8-4_2.txt │ ├── 8-4_3.txt │ ├── 8-4_4.txt │ ├── 8-4_5.txt │ ├── icon.png │ ├── settings.txt │ ├── tiles.png │ └── version.txt ├── 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 /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/README.md -------------------------------------------------------------------------------- /game/bighatconfigs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/bighatconfigs.lua -------------------------------------------------------------------------------- /game/blockdebris.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/blockdebris.lua -------------------------------------------------------------------------------- /game/bowser.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/bowser.lua -------------------------------------------------------------------------------- /game/box.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/box.lua -------------------------------------------------------------------------------- /game/bubble.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/bubble.lua -------------------------------------------------------------------------------- /game/bulletbill.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/bulletbill.lua -------------------------------------------------------------------------------- /game/button.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/button.lua -------------------------------------------------------------------------------- /game/castlefire.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/castlefire.lua -------------------------------------------------------------------------------- /game/cheepcheep.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/cheepcheep.lua -------------------------------------------------------------------------------- /game/class.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/class.lua -------------------------------------------------------------------------------- /game/client.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/client.lua -------------------------------------------------------------------------------- /game/coinblockanimation.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/coinblockanimation.lua -------------------------------------------------------------------------------- /game/conf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/conf.lua -------------------------------------------------------------------------------- /game/cubedispenser.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/cubedispenser.lua -------------------------------------------------------------------------------- /game/door.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/door.lua -------------------------------------------------------------------------------- /game/editor.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/editor.lua -------------------------------------------------------------------------------- /game/emancipationgrill.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/emancipationgrill.lua -------------------------------------------------------------------------------- /game/entity.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/entity.lua -------------------------------------------------------------------------------- /game/faithplate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/faithplate.lua -------------------------------------------------------------------------------- /game/fire.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/fire.lua -------------------------------------------------------------------------------- /game/fireball.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/fireball.lua -------------------------------------------------------------------------------- /game/firework.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/firework.lua -------------------------------------------------------------------------------- /game/flower.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/flower.lua -------------------------------------------------------------------------------- /game/flyingfish.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/flyingfish.lua -------------------------------------------------------------------------------- /game/game.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/game.lua -------------------------------------------------------------------------------- /game/gel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/gel.lua -------------------------------------------------------------------------------- /game/geldispenser.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/geldispenser.lua -------------------------------------------------------------------------------- /game/goomba.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/goomba.lua -------------------------------------------------------------------------------- /game/graphics/GUI/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/GUI/checkbox.png -------------------------------------------------------------------------------- /game/graphics/GUI/dropdownarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/GUI/dropdownarrow.png -------------------------------------------------------------------------------- /game/graphics/Minecraft/bigmarioanimations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/Minecraft/bigmarioanimations.png -------------------------------------------------------------------------------- /game/graphics/Minecraft/bigmarioanimations0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/Minecraft/bigmarioanimations0.png -------------------------------------------------------------------------------- /game/graphics/Minecraft/bigmarioanimations1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/Minecraft/bigmarioanimations1.png -------------------------------------------------------------------------------- /game/graphics/Minecraft/bigmarioanimations2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/Minecraft/bigmarioanimations2.png -------------------------------------------------------------------------------- /game/graphics/Minecraft/bigmarioanimations3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/Minecraft/bigmarioanimations3.png -------------------------------------------------------------------------------- /game/graphics/Minecraft/blockbreak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/Minecraft/blockbreak.png -------------------------------------------------------------------------------- /game/graphics/Minecraft/gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/Minecraft/gui.png -------------------------------------------------------------------------------- /game/graphics/Minecraft/marioanimations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/Minecraft/marioanimations.png -------------------------------------------------------------------------------- /game/graphics/Minecraft/marioanimations0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/Minecraft/marioanimations0.png -------------------------------------------------------------------------------- /game/graphics/Minecraft/marioanimations1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/Minecraft/marioanimations1.png -------------------------------------------------------------------------------- /game/graphics/Minecraft/marioanimations2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/Minecraft/marioanimations2.png -------------------------------------------------------------------------------- /game/graphics/Minecraft/marioanimations3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/Minecraft/marioanimations3.png -------------------------------------------------------------------------------- /game/graphics/Minecraft/selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/Minecraft/selected.png -------------------------------------------------------------------------------- /game/graphics/SMB/axe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/axe.png -------------------------------------------------------------------------------- /game/graphics/SMB/beetle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/beetle.png -------------------------------------------------------------------------------- /game/graphics/SMB/bighats/bakerboy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/bighats/bakerboy.png -------------------------------------------------------------------------------- /game/graphics/SMB/bighats/banana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/bighats/banana.png -------------------------------------------------------------------------------- /game/graphics/SMB/bighats/batter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/bighats/batter.png -------------------------------------------------------------------------------- /game/graphics/SMB/bighats/beanie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/bighats/beanie.png -------------------------------------------------------------------------------- /game/graphics/SMB/bighats/bestpony.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/bighats/bestpony.png -------------------------------------------------------------------------------- /game/graphics/SMB/bighats/bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/bighats/bird.png -------------------------------------------------------------------------------- /game/graphics/SMB/bighats/blooper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/bighats/blooper.png -------------------------------------------------------------------------------- /game/graphics/SMB/bighats/bombingrun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/bighats/bombingrun.png -------------------------------------------------------------------------------- /game/graphics/SMB/bighats/bonk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/bighats/bonk.png -------------------------------------------------------------------------------- /game/graphics/SMB/bighats/bonkboy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/bighats/bonkboy.png -------------------------------------------------------------------------------- /game/graphics/SMB/bighats/crown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/bighats/crown.png -------------------------------------------------------------------------------- /game/graphics/SMB/bighats/drseuss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/bighats/drseuss.png -------------------------------------------------------------------------------- /game/graphics/SMB/bighats/familiarfez.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/bighats/familiarfez.png -------------------------------------------------------------------------------- /game/graphics/SMB/bighats/flippedtrilby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/bighats/flippedtrilby.png -------------------------------------------------------------------------------- /game/graphics/SMB/bighats/goodnewseverybody.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/bighats/goodnewseverybody.png -------------------------------------------------------------------------------- /game/graphics/SMB/bighats/indian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/bighats/indian.png -------------------------------------------------------------------------------- /game/graphics/SMB/bighats/jetset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/bighats/jetset.png -------------------------------------------------------------------------------- /game/graphics/SMB/bighats/koopa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/bighats/koopa.png -------------------------------------------------------------------------------- /game/graphics/SMB/bighats/milkman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/bighats/milkman.png -------------------------------------------------------------------------------- /game/graphics/SMB/bighats/officerhat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/bighats/officerhat.png -------------------------------------------------------------------------------- /game/graphics/SMB/bighats/sailor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/bighats/sailor.png -------------------------------------------------------------------------------- /game/graphics/SMB/bighats/santahat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/bighats/santahat.png -------------------------------------------------------------------------------- /game/graphics/SMB/bighats/shyguy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/bighats/shyguy.png -------------------------------------------------------------------------------- /game/graphics/SMB/bighats/standard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/bighats/standard.png -------------------------------------------------------------------------------- /game/graphics/SMB/bighats/superfan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/bighats/superfan.png -------------------------------------------------------------------------------- /game/graphics/SMB/bighats/toilet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/bighats/toilet.png -------------------------------------------------------------------------------- /game/graphics/SMB/bighats/tophat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/bighats/tophat.png -------------------------------------------------------------------------------- /game/graphics/SMB/bighats/towering1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/bighats/towering1.png -------------------------------------------------------------------------------- /game/graphics/SMB/bighats/towering2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/bighats/towering2.png -------------------------------------------------------------------------------- /game/graphics/SMB/bighats/towering3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/bighats/towering3.png -------------------------------------------------------------------------------- /game/graphics/SMB/bighats/troublemaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/bighats/troublemaker.png -------------------------------------------------------------------------------- /game/graphics/SMB/bighats/tyrolean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/bighats/tyrolean.png -------------------------------------------------------------------------------- /game/graphics/SMB/bighats/whoopee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/bighats/whoopee.png -------------------------------------------------------------------------------- /game/graphics/SMB/blockdebris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/blockdebris.png -------------------------------------------------------------------------------- /game/graphics/SMB/bowser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/bowser.png -------------------------------------------------------------------------------- /game/graphics/SMB/box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/box.png -------------------------------------------------------------------------------- /game/graphics/SMB/bubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/bubble.png -------------------------------------------------------------------------------- /game/graphics/SMB/bulletbill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/bulletbill.png -------------------------------------------------------------------------------- /game/graphics/SMB/buttonbase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/buttonbase.png -------------------------------------------------------------------------------- /game/graphics/SMB/buttonbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/buttonbutton.png -------------------------------------------------------------------------------- /game/graphics/SMB/castleflag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/castleflag.png -------------------------------------------------------------------------------- /game/graphics/SMB/cheepcheep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/cheepcheep.png -------------------------------------------------------------------------------- /game/graphics/SMB/coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/coin.png -------------------------------------------------------------------------------- /game/graphics/SMB/coinanimation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/coinanimation.png -------------------------------------------------------------------------------- /game/graphics/SMB/coinblock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/coinblock.png -------------------------------------------------------------------------------- /game/graphics/SMB/coinblockanimation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/coinblockanimation.png -------------------------------------------------------------------------------- /game/graphics/SMB/cubedispenser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/cubedispenser.png -------------------------------------------------------------------------------- /game/graphics/SMB/decoys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/decoys.png -------------------------------------------------------------------------------- /game/graphics/SMB/doorcenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/doorcenter.png -------------------------------------------------------------------------------- /game/graphics/SMB/doorpiece.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/doorpiece.png -------------------------------------------------------------------------------- /game/graphics/SMB/emanceparticle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/emanceparticle.png -------------------------------------------------------------------------------- /game/graphics/SMB/emanceside.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/emanceside.png -------------------------------------------------------------------------------- /game/graphics/SMB/entities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/entities.png -------------------------------------------------------------------------------- /game/graphics/SMB/faithplateplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/faithplateplate.png -------------------------------------------------------------------------------- /game/graphics/SMB/fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/fire.png -------------------------------------------------------------------------------- /game/graphics/SMB/fireball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/fireball.png -------------------------------------------------------------------------------- /game/graphics/SMB/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/flag.png -------------------------------------------------------------------------------- /game/graphics/SMB/flower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/flower.png -------------------------------------------------------------------------------- /game/graphics/SMB/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/font.png -------------------------------------------------------------------------------- /game/graphics/SMB/gel1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/gel1.png -------------------------------------------------------------------------------- /game/graphics/SMB/gel1ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/gel1ground.png -------------------------------------------------------------------------------- /game/graphics/SMB/gel2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/gel2.png -------------------------------------------------------------------------------- /game/graphics/SMB/gel2ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/gel2ground.png -------------------------------------------------------------------------------- /game/graphics/SMB/gel3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/gel3.png -------------------------------------------------------------------------------- /game/graphics/SMB/gel3ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/gel3ground.png -------------------------------------------------------------------------------- /game/graphics/SMB/geldispenser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/geldispenser.png -------------------------------------------------------------------------------- /game/graphics/SMB/goomba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/goomba.png -------------------------------------------------------------------------------- /game/graphics/SMB/hammer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/hammer.png -------------------------------------------------------------------------------- /game/graphics/SMB/hammerbros.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/hammerbros.png -------------------------------------------------------------------------------- /game/graphics/SMB/hats/bakerboy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/hats/bakerboy.png -------------------------------------------------------------------------------- /game/graphics/SMB/hats/banana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/hats/banana.png -------------------------------------------------------------------------------- /game/graphics/SMB/hats/batter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/hats/batter.png -------------------------------------------------------------------------------- /game/graphics/SMB/hats/beanie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/hats/beanie.png -------------------------------------------------------------------------------- /game/graphics/SMB/hats/bestpony.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/hats/bestpony.png -------------------------------------------------------------------------------- /game/graphics/SMB/hats/bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/hats/bird.png -------------------------------------------------------------------------------- /game/graphics/SMB/hats/blooper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/hats/blooper.png -------------------------------------------------------------------------------- /game/graphics/SMB/hats/bombingrun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/hats/bombingrun.png -------------------------------------------------------------------------------- /game/graphics/SMB/hats/bonk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/hats/bonk.png -------------------------------------------------------------------------------- /game/graphics/SMB/hats/bonkboy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/hats/bonkboy.png -------------------------------------------------------------------------------- /game/graphics/SMB/hats/crown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/hats/crown.png -------------------------------------------------------------------------------- /game/graphics/SMB/hats/drseuss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/hats/drseuss.png -------------------------------------------------------------------------------- /game/graphics/SMB/hats/familiarfez.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/hats/familiarfez.png -------------------------------------------------------------------------------- /game/graphics/SMB/hats/flippedtrilby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/hats/flippedtrilby.png -------------------------------------------------------------------------------- /game/graphics/SMB/hats/goodnewseverybody.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/hats/goodnewseverybody.png -------------------------------------------------------------------------------- /game/graphics/SMB/hats/indian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/hats/indian.png -------------------------------------------------------------------------------- /game/graphics/SMB/hats/jetset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/hats/jetset.png -------------------------------------------------------------------------------- /game/graphics/SMB/hats/koopa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/hats/koopa.png -------------------------------------------------------------------------------- /game/graphics/SMB/hats/milkman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/hats/milkman.png -------------------------------------------------------------------------------- /game/graphics/SMB/hats/officerhat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/hats/officerhat.png -------------------------------------------------------------------------------- /game/graphics/SMB/hats/sailor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/hats/sailor.png -------------------------------------------------------------------------------- /game/graphics/SMB/hats/santahat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/hats/santahat.png -------------------------------------------------------------------------------- /game/graphics/SMB/hats/shyguy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/hats/shyguy.png -------------------------------------------------------------------------------- /game/graphics/SMB/hats/standard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/hats/standard.png -------------------------------------------------------------------------------- /game/graphics/SMB/hats/superfan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/hats/superfan.png -------------------------------------------------------------------------------- /game/graphics/SMB/hats/toilet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/hats/toilet.png -------------------------------------------------------------------------------- /game/graphics/SMB/hats/tophat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/hats/tophat.png -------------------------------------------------------------------------------- /game/graphics/SMB/hats/towering1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/hats/towering1.png -------------------------------------------------------------------------------- /game/graphics/SMB/hats/towering2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/hats/towering2.png -------------------------------------------------------------------------------- /game/graphics/SMB/hats/towering3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/hats/towering3.png -------------------------------------------------------------------------------- /game/graphics/SMB/hats/troublemaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/hats/troublemaker.png -------------------------------------------------------------------------------- /game/graphics/SMB/hats/tyrolean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/hats/tyrolean.png -------------------------------------------------------------------------------- /game/graphics/SMB/hats/whoopee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/hats/whoopee.png -------------------------------------------------------------------------------- /game/graphics/SMB/huebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/huebar.png -------------------------------------------------------------------------------- /game/graphics/SMB/huebarmarker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/huebarmarker.png -------------------------------------------------------------------------------- /game/graphics/SMB/koopa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/koopa.png -------------------------------------------------------------------------------- /game/graphics/SMB/koopared.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/koopared.png -------------------------------------------------------------------------------- /game/graphics/SMB/lakito.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/lakito.png -------------------------------------------------------------------------------- /game/graphics/SMB/laser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/laser.png -------------------------------------------------------------------------------- /game/graphics/SMB/laserdetector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/laserdetector.png -------------------------------------------------------------------------------- /game/graphics/SMB/laserside.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/laserside.png -------------------------------------------------------------------------------- /game/graphics/SMB/lightbridge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/lightbridge.png -------------------------------------------------------------------------------- /game/graphics/SMB/lightbridgeside.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/lightbridgeside.png -------------------------------------------------------------------------------- /game/graphics/SMB/littlebigmario.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/littlebigmario.png -------------------------------------------------------------------------------- /game/graphics/SMB/mappackback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/mappackback.png -------------------------------------------------------------------------------- /game/graphics/SMB/mappackhighlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/mappackhighlight.png -------------------------------------------------------------------------------- /game/graphics/SMB/mappacknoicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/mappacknoicon.png -------------------------------------------------------------------------------- /game/graphics/SMB/mappackoverlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/mappackoverlay.png -------------------------------------------------------------------------------- /game/graphics/SMB/mappackscrollbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/mappackscrollbar.png -------------------------------------------------------------------------------- /game/graphics/SMB/menuselect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/menuselect.png -------------------------------------------------------------------------------- /game/graphics/SMB/oneuptext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/oneuptext.png -------------------------------------------------------------------------------- /game/graphics/SMB/options/secondskin0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/options/secondskin0.png -------------------------------------------------------------------------------- /game/graphics/SMB/options/secondskin1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/options/secondskin1.png -------------------------------------------------------------------------------- /game/graphics/SMB/options/secondskin2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/options/secondskin2.png -------------------------------------------------------------------------------- /game/graphics/SMB/options/secondskin3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/options/secondskin3.png -------------------------------------------------------------------------------- /game/graphics/SMB/options/skin0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/options/skin0.png -------------------------------------------------------------------------------- /game/graphics/SMB/options/skin1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/options/skin1.png -------------------------------------------------------------------------------- /game/graphics/SMB/options/skin2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/options/skin2.png -------------------------------------------------------------------------------- /game/graphics/SMB/options/skin3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/options/skin3.png -------------------------------------------------------------------------------- /game/graphics/SMB/peach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/peach.png -------------------------------------------------------------------------------- /game/graphics/SMB/plant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/plant.png -------------------------------------------------------------------------------- /game/graphics/SMB/platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/platform.png -------------------------------------------------------------------------------- /game/graphics/SMB/platformbonus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/platformbonus.png -------------------------------------------------------------------------------- /game/graphics/SMB/player/bigmarioanimations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/player/bigmarioanimations.png -------------------------------------------------------------------------------- /game/graphics/SMB/player/bigmarioanimations0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/player/bigmarioanimations0.png -------------------------------------------------------------------------------- /game/graphics/SMB/player/bigmarioanimations1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/player/bigmarioanimations1.png -------------------------------------------------------------------------------- /game/graphics/SMB/player/bigmarioanimations2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/player/bigmarioanimations2.png -------------------------------------------------------------------------------- /game/graphics/SMB/player/bigmarioanimations3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/player/bigmarioanimations3.png -------------------------------------------------------------------------------- /game/graphics/SMB/player/bigmarioanimationsold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/player/bigmarioanimationsold.png -------------------------------------------------------------------------------- /game/graphics/SMB/player/marioanimations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/player/marioanimations.png -------------------------------------------------------------------------------- /game/graphics/SMB/player/marioanimations0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/player/marioanimations0.png -------------------------------------------------------------------------------- /game/graphics/SMB/player/marioanimations1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/player/marioanimations1.png -------------------------------------------------------------------------------- /game/graphics/SMB/player/marioanimations2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/player/marioanimations2.png -------------------------------------------------------------------------------- /game/graphics/SMB/player/marioanimations3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/player/marioanimations3.png -------------------------------------------------------------------------------- /game/graphics/SMB/playerselectarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/playerselectarrow.png -------------------------------------------------------------------------------- /game/graphics/SMB/portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/portal.png -------------------------------------------------------------------------------- /game/graphics/SMB/portalbackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/portalbackground.png -------------------------------------------------------------------------------- /game/graphics/SMB/portalcrosshair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/portalcrosshair.png -------------------------------------------------------------------------------- /game/graphics/SMB/portaldot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/portaldot.png -------------------------------------------------------------------------------- /game/graphics/SMB/portalglow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/portalglow.png -------------------------------------------------------------------------------- /game/graphics/SMB/portalparticle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/portalparticle.png -------------------------------------------------------------------------------- /game/graphics/SMB/portalprojectile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/portalprojectile.png -------------------------------------------------------------------------------- /game/graphics/SMB/portalprojectileparticle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/portalprojectileparticle.png -------------------------------------------------------------------------------- /game/graphics/SMB/portaltiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/portaltiles.png -------------------------------------------------------------------------------- /game/graphics/SMB/pushbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/pushbutton.png -------------------------------------------------------------------------------- /game/graphics/SMB/seesaw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/seesaw.png -------------------------------------------------------------------------------- /game/graphics/SMB/smallfont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/smallfont.png -------------------------------------------------------------------------------- /game/graphics/SMB/smbtiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/smbtiles.png -------------------------------------------------------------------------------- /game/graphics/SMB/spikey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/spikey.png -------------------------------------------------------------------------------- /game/graphics/SMB/spring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/spring.png -------------------------------------------------------------------------------- /game/graphics/SMB/squid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/squid.png -------------------------------------------------------------------------------- /game/graphics/SMB/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/star.png -------------------------------------------------------------------------------- /game/graphics/SMB/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/title.png -------------------------------------------------------------------------------- /game/graphics/SMB/toad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/toad.png -------------------------------------------------------------------------------- /game/graphics/SMB/upfire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/upfire.png -------------------------------------------------------------------------------- /game/graphics/SMB/vine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/vine.png -------------------------------------------------------------------------------- /game/graphics/SMB/volumeslider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/volumeslider.png -------------------------------------------------------------------------------- /game/graphics/SMB/wallindicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/wallindicator.png -------------------------------------------------------------------------------- /game/graphics/SMB/walltimer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/SMB/walltimer.png -------------------------------------------------------------------------------- /game/graphics/gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/gradient.png -------------------------------------------------------------------------------- /game/graphics/icon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/icon.bmp -------------------------------------------------------------------------------- /game/graphics/icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/icon.gif -------------------------------------------------------------------------------- /game/graphics/portaltiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/portaltiles.png -------------------------------------------------------------------------------- /game/graphics/rainboom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/rainboom.png -------------------------------------------------------------------------------- /game/graphics/stabyourself.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/stabyourself.png -------------------------------------------------------------------------------- /game/graphics/stabyourselfblood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/graphics/stabyourselfblood.png -------------------------------------------------------------------------------- /game/groundlight.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/groundlight.lua -------------------------------------------------------------------------------- /game/gui.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/gui.lua -------------------------------------------------------------------------------- /game/hammerbro.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/hammerbro.lua -------------------------------------------------------------------------------- /game/hatconfigs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/hatconfigs.lua -------------------------------------------------------------------------------- /game/intro.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/intro.lua -------------------------------------------------------------------------------- /game/koopa.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/koopa.lua -------------------------------------------------------------------------------- /game/lakito.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/lakito.lua -------------------------------------------------------------------------------- /game/laser.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/laser.lua -------------------------------------------------------------------------------- /game/laserdetector.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/laserdetector.lua -------------------------------------------------------------------------------- /game/levelscreen.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/levelscreen.lua -------------------------------------------------------------------------------- /game/lightbridge.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/lightbridge.lua -------------------------------------------------------------------------------- /game/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/main.lua -------------------------------------------------------------------------------- /game/mappacks/dlc_a_portal_tribute/1-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_a_portal_tribute/1-1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_a_portal_tribute/1-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_a_portal_tribute/1-2.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_a_portal_tribute/1-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_a_portal_tribute/1-3.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_a_portal_tribute/1-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_a_portal_tribute/1-4.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_a_portal_tribute/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_a_portal_tribute/icon.png -------------------------------------------------------------------------------- /game/mappacks/dlc_a_portal_tribute/settings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_a_portal_tribute/settings.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_a_portal_tribute/tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_a_portal_tribute/tiles.png -------------------------------------------------------------------------------- /game/mappacks/dlc_a_portal_tribute/version.txt: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /game/mappacks/dlc_acid_trip/1-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_acid_trip/1-1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_acid_trip/2-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_acid_trip/2-1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_acid_trip/2-1_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_acid_trip/2-1_1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_acid_trip/2-1_1background1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_acid_trip/2-1_1background1.png -------------------------------------------------------------------------------- /game/mappacks/dlc_acid_trip/2-1_1background2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_acid_trip/2-1_1background2.png -------------------------------------------------------------------------------- /game/mappacks/dlc_acid_trip/2-1background1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_acid_trip/2-1background1.png -------------------------------------------------------------------------------- /game/mappacks/dlc_acid_trip/2-1background2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_acid_trip/2-1background2.png -------------------------------------------------------------------------------- /game/mappacks/dlc_acid_trip/2-1background3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_acid_trip/2-1background3.png -------------------------------------------------------------------------------- /game/mappacks/dlc_acid_trip/2-1background4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_acid_trip/2-1background4.png -------------------------------------------------------------------------------- /game/mappacks/dlc_acid_trip/3-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_acid_trip/3-1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_acid_trip/3-1background1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_acid_trip/3-1background1.png -------------------------------------------------------------------------------- /game/mappacks/dlc_acid_trip/3-1background2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_acid_trip/3-1background2.png -------------------------------------------------------------------------------- /game/mappacks/dlc_acid_trip/3-1background3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_acid_trip/3-1background3.png -------------------------------------------------------------------------------- /game/mappacks/dlc_acid_trip/3-1background4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_acid_trip/3-1background4.png -------------------------------------------------------------------------------- /game/mappacks/dlc_acid_trip/5-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_acid_trip/5-1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_acid_trip/5-1background1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_acid_trip/5-1background1.png -------------------------------------------------------------------------------- /game/mappacks/dlc_acid_trip/5-1background2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_acid_trip/5-1background2.png -------------------------------------------------------------------------------- /game/mappacks/dlc_acid_trip/5-1background3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_acid_trip/5-1background3.png -------------------------------------------------------------------------------- /game/mappacks/dlc_acid_trip/5-1background4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_acid_trip/5-1background4.png -------------------------------------------------------------------------------- /game/mappacks/dlc_acid_trip/6-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_acid_trip/6-1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_acid_trip/6-1_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_acid_trip/6-1_1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_acid_trip/6-1_1background1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_acid_trip/6-1_1background1.png -------------------------------------------------------------------------------- /game/mappacks/dlc_acid_trip/6-1_1background2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_acid_trip/6-1_1background2.png -------------------------------------------------------------------------------- /game/mappacks/dlc_acid_trip/6-1_1background3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_acid_trip/6-1_1background3.png -------------------------------------------------------------------------------- /game/mappacks/dlc_acid_trip/6-1_1background4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_acid_trip/6-1_1background4.png -------------------------------------------------------------------------------- /game/mappacks/dlc_acid_trip/8-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_acid_trip/8-1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_acid_trip/8-1_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_acid_trip/8-1_1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_acid_trip/8-1background1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_acid_trip/8-1background1.png -------------------------------------------------------------------------------- /game/mappacks/dlc_acid_trip/8-1background2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_acid_trip/8-1background2.png -------------------------------------------------------------------------------- /game/mappacks/dlc_acid_trip/background1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_acid_trip/background1.png -------------------------------------------------------------------------------- /game/mappacks/dlc_acid_trip/background2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_acid_trip/background2.png -------------------------------------------------------------------------------- /game/mappacks/dlc_acid_trip/background3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_acid_trip/background3.png -------------------------------------------------------------------------------- /game/mappacks/dlc_acid_trip/background4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_acid_trip/background4.png -------------------------------------------------------------------------------- /game/mappacks/dlc_acid_trip/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_acid_trip/icon.png -------------------------------------------------------------------------------- /game/mappacks/dlc_acid_trip/settings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_acid_trip/settings.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_acid_trip/tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_acid_trip/tiles.png -------------------------------------------------------------------------------- /game/mappacks/dlc_acid_trip/version.txt: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /game/mappacks/dlc_escape_the_lab/1-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_escape_the_lab/1-1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_escape_the_lab/1-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_escape_the_lab/1-2.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_escape_the_lab/1-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_escape_the_lab/1-3.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_escape_the_lab/1-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_escape_the_lab/1-4.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_escape_the_lab/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_escape_the_lab/icon.png -------------------------------------------------------------------------------- /game/mappacks/dlc_escape_the_lab/settings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_escape_the_lab/settings.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_escape_the_lab/version.txt: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /game/mappacks/dlc_scienceandstuff/1-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_scienceandstuff/1-1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_scienceandstuff/1-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_scienceandstuff/1-2.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_scienceandstuff/1-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_scienceandstuff/1-3.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_scienceandstuff/1-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_scienceandstuff/1-4.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_scienceandstuff/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_scienceandstuff/icon.png -------------------------------------------------------------------------------- /game/mappacks/dlc_scienceandstuff/settings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_scienceandstuff/settings.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_scienceandstuff/version.txt: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/1-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/1-1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/1-1_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/1-1_1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/1-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/1-2.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/1-2_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/1-2_1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/1-2_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/1-2_2.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/1-2_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/1-2_3.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/1-2_4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/1-2_4.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/1-2_5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/1-2_5.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/1-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/1-3.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/1-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/1-4.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/2-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/2-1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/2-1_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/2-1_1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/2-1_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/2-1_2.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/2-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/2-2.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/2-2_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/2-2_1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/2-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/2-3.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/2-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/2-4.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/3-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/3-1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/3-1_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/3-1_1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/3-1_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/3-1_2.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/3-1_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/3-1_3.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/3-1_4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/3-1_4.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/3-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/3-2.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/3-2_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/3-2_1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/3-2_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/3-2_2.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/3-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/3-3.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/3-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/3-4.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/4-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/4-1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/4-1_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/4-1_1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/4-1_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/4-1_2.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/4-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/4-2.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/4-2_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/4-2_1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/4-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/4-3.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/4-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/4-4.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/5-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/5-1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/5-1_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/5-1_1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/5-1_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/5-1_2.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/5-1_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/5-1_3.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/5-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/5-2.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/5-2_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/5-2_1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/5-2_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/5-2_2.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/5-2_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/5-2_3.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/5-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/5-3.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/5-3_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/5-3_1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/5-3_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/5-3_2.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/5-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/5-4.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/6-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/6-1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/6-1_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/6-1_1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/6-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/6-2.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/6-2_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/6-2_1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/6-2_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/6-2_2.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/6-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/6-3.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/6-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/6-4.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/7-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/7-1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/7-1_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/7-1_1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/7-1_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/7-1_2.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/7-1_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/7-1_3.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/7-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/7-2.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/7-2_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/7-2_1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/7-2_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/7-2_2.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/7-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/7-3.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/7-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/7-4.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/8-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/8-1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/8-1_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/8-1_1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/8-1_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/8-1_2.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/8-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/8-2.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/8-2_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/8-2_1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/8-2_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/8-2_2.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/8-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/8-3.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/8-3_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/8-3_1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/8-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/8-4.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/8-4_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/8-4_1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/8-4_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/8-4_2.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/8-4_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/8-4_3.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/8-4_4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/8-4_4.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/icon.png -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/settings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/settings.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_smb2J/tiles.png -------------------------------------------------------------------------------- /game/mappacks/dlc_smb2J/version.txt: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/1-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/1-1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/1-1_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/1-1_1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/1-1_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/1-1_2.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/1-1_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/1-1_3.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/1-1_4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/1-1_4.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/1-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/1-2.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/1-2_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/1-2_1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/1-2_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/1-2_2.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/1-2_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/1-2_3.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/1-2_4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/1-2_4.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/1-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/1-3.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/1-3_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/1-3_1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/1-3_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/1-3_2.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/1-3_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/1-3_3.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/1-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/1-4.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/1-4_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/1-4_1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/2-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/2-1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/2-1_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/2-1_1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/2-1_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/2-1_2.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/2-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/2-2.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/2-2_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/2-2_1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/2-2_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/2-2_2.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/2-2_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/2-2_3.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/2-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/2-3.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/2-3_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/2-3_1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/2-3_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/2-3_2.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/2-3_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/2-3_3.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/2-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/2-4.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/3-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/3-1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/3-1_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/3-1_1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/3-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/3-2.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/3-2_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/3-2_1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/3-2_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/3-2_2.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/3-2_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/3-2_3.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/3-2_4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/3-2_4.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/3-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/3-3.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/3-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/3-4.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/4-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/4-1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/4-1_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/4-1_1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/4-1_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/4-1_2.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/4-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/4-2.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/4-2_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/4-2_1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/4-2_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/4-2_2.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/4-2_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/4-2_3.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/4-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/4-3.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/4-3_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/4-3_1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/4-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/4-4.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/5-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/5-1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/5-1_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/5-1_1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/5-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/5-2.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/5-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/5-3.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/5-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/5-4.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/6-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/6-1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/6-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/6-2.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/6-2_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/6-2_1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/6-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/6-3.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/6-3_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/6-3_1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/6-3_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/6-3_2.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/6-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/6-4.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/7-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/7-1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/7-1_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/7-1_1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/7-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/7-2.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/7-2_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/7-2_1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/7-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/7-3.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/7-3_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/7-3_1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/7-3_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/7-3_2.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/7-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/7-4.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/7-4_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/7-4_1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/8-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/8-1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/8-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/8-2.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/8-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/8-3.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/8-3_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/8-3_1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/8-3_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/8-3_2.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/8-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/8-4.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/8-4_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/8-4_1.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/8-4_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/8-4_2.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/8-4_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/8-4_3.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/8-4_4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/8-4_4.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/8-4_5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/8-4_5.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/icon.png -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/settings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/settings.txt -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/dlc_the_untitled_game/tiles.png -------------------------------------------------------------------------------- /game/mappacks/dlc_the_untitled_game/version.txt: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /game/mappacks/portal/1-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/portal/1-1.txt -------------------------------------------------------------------------------- /game/mappacks/portal/1-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/portal/1-2.txt -------------------------------------------------------------------------------- /game/mappacks/portal/1-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/portal/1-3.txt -------------------------------------------------------------------------------- /game/mappacks/portal/1-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/portal/1-4.txt -------------------------------------------------------------------------------- /game/mappacks/portal/2-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/portal/2-1.txt -------------------------------------------------------------------------------- /game/mappacks/portal/2-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/portal/2-2.txt -------------------------------------------------------------------------------- /game/mappacks/portal/2-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/portal/2-3.txt -------------------------------------------------------------------------------- /game/mappacks/portal/2-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/portal/2-4.txt -------------------------------------------------------------------------------- /game/mappacks/portal/3-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/portal/3-1.txt -------------------------------------------------------------------------------- /game/mappacks/portal/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/portal/icon.png -------------------------------------------------------------------------------- /game/mappacks/portal/settings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/portal/settings.txt -------------------------------------------------------------------------------- /game/mappacks/smb/1-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/1-1.txt -------------------------------------------------------------------------------- /game/mappacks/smb/1-1_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/1-1_1.txt -------------------------------------------------------------------------------- /game/mappacks/smb/1-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/1-2.txt -------------------------------------------------------------------------------- /game/mappacks/smb/1-2_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/1-2_1.txt -------------------------------------------------------------------------------- /game/mappacks/smb/1-2_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/1-2_2.txt -------------------------------------------------------------------------------- /game/mappacks/smb/1-2_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/1-2_3.txt -------------------------------------------------------------------------------- /game/mappacks/smb/1-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/1-3.txt -------------------------------------------------------------------------------- /game/mappacks/smb/1-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/1-4.txt -------------------------------------------------------------------------------- /game/mappacks/smb/2-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/2-1.txt -------------------------------------------------------------------------------- /game/mappacks/smb/2-1_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/2-1_1.txt -------------------------------------------------------------------------------- /game/mappacks/smb/2-1_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/2-1_2.txt -------------------------------------------------------------------------------- /game/mappacks/smb/2-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/2-2.txt -------------------------------------------------------------------------------- /game/mappacks/smb/2-2_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/2-2_1.txt -------------------------------------------------------------------------------- /game/mappacks/smb/2-2_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/2-2_2.txt -------------------------------------------------------------------------------- /game/mappacks/smb/2-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/2-3.txt -------------------------------------------------------------------------------- /game/mappacks/smb/2-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/2-4.txt -------------------------------------------------------------------------------- /game/mappacks/smb/3-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/3-1.txt -------------------------------------------------------------------------------- /game/mappacks/smb/3-1_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/3-1_1.txt -------------------------------------------------------------------------------- /game/mappacks/smb/3-1_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/3-1_2.txt -------------------------------------------------------------------------------- /game/mappacks/smb/3-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/3-2.txt -------------------------------------------------------------------------------- /game/mappacks/smb/3-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/3-3.txt -------------------------------------------------------------------------------- /game/mappacks/smb/3-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/3-4.txt -------------------------------------------------------------------------------- /game/mappacks/smb/4-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/4-1.txt -------------------------------------------------------------------------------- /game/mappacks/smb/4-1_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/4-1_1.txt -------------------------------------------------------------------------------- /game/mappacks/smb/4-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/4-2.txt -------------------------------------------------------------------------------- /game/mappacks/smb/4-2_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/4-2_1.txt -------------------------------------------------------------------------------- /game/mappacks/smb/4-2_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/4-2_2.txt -------------------------------------------------------------------------------- /game/mappacks/smb/4-2_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/4-2_3.txt -------------------------------------------------------------------------------- /game/mappacks/smb/4-2_4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/4-2_4.txt -------------------------------------------------------------------------------- /game/mappacks/smb/4-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/4-3.txt -------------------------------------------------------------------------------- /game/mappacks/smb/4-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/4-4.txt -------------------------------------------------------------------------------- /game/mappacks/smb/5-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/5-1.txt -------------------------------------------------------------------------------- /game/mappacks/smb/5-1_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/5-1_1.txt -------------------------------------------------------------------------------- /game/mappacks/smb/5-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/5-2.txt -------------------------------------------------------------------------------- /game/mappacks/smb/5-2_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/5-2_1.txt -------------------------------------------------------------------------------- /game/mappacks/smb/5-2_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/5-2_2.txt -------------------------------------------------------------------------------- /game/mappacks/smb/5-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/5-3.txt -------------------------------------------------------------------------------- /game/mappacks/smb/5-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/5-4.txt -------------------------------------------------------------------------------- /game/mappacks/smb/6-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/6-1.txt -------------------------------------------------------------------------------- /game/mappacks/smb/6-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/6-2.txt -------------------------------------------------------------------------------- /game/mappacks/smb/6-2_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/6-2_1.txt -------------------------------------------------------------------------------- /game/mappacks/smb/6-2_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/6-2_2.txt -------------------------------------------------------------------------------- /game/mappacks/smb/6-2_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/6-2_3.txt -------------------------------------------------------------------------------- /game/mappacks/smb/6-2_4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/6-2_4.txt -------------------------------------------------------------------------------- /game/mappacks/smb/6-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/6-3.txt -------------------------------------------------------------------------------- /game/mappacks/smb/6-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/6-4.txt -------------------------------------------------------------------------------- /game/mappacks/smb/7-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/7-1.txt -------------------------------------------------------------------------------- /game/mappacks/smb/7-1_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/7-1_1.txt -------------------------------------------------------------------------------- /game/mappacks/smb/7-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/7-2.txt -------------------------------------------------------------------------------- /game/mappacks/smb/7-2_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/7-2_1.txt -------------------------------------------------------------------------------- /game/mappacks/smb/7-2_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/7-2_2.txt -------------------------------------------------------------------------------- /game/mappacks/smb/7-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/7-3.txt -------------------------------------------------------------------------------- /game/mappacks/smb/7-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/7-4.txt -------------------------------------------------------------------------------- /game/mappacks/smb/8-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/8-1.txt -------------------------------------------------------------------------------- /game/mappacks/smb/8-1_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/8-1_1.txt -------------------------------------------------------------------------------- /game/mappacks/smb/8-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/8-2.txt -------------------------------------------------------------------------------- /game/mappacks/smb/8-2_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/8-2_1.txt -------------------------------------------------------------------------------- /game/mappacks/smb/8-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/8-3.txt -------------------------------------------------------------------------------- /game/mappacks/smb/8-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/8-4.txt -------------------------------------------------------------------------------- /game/mappacks/smb/8-4_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/8-4_1.txt -------------------------------------------------------------------------------- /game/mappacks/smb/8-4_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/8-4_2.txt -------------------------------------------------------------------------------- /game/mappacks/smb/8-4_3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/8-4_3.txt -------------------------------------------------------------------------------- /game/mappacks/smb/8-4_4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/8-4_4.txt -------------------------------------------------------------------------------- /game/mappacks/smb/M-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/M-1.txt -------------------------------------------------------------------------------- /game/mappacks/smb/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/icon.png -------------------------------------------------------------------------------- /game/mappacks/smb/settings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mappacks/smb/settings.txt -------------------------------------------------------------------------------- /game/mario.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mario.lua -------------------------------------------------------------------------------- /game/menu.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/menu.lua -------------------------------------------------------------------------------- /game/miniblock.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/miniblock.lua -------------------------------------------------------------------------------- /game/mushroom.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/mushroom.lua -------------------------------------------------------------------------------- /game/musicloader.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/musicloader.lua -------------------------------------------------------------------------------- /game/musicloader_thread.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/musicloader_thread.lua -------------------------------------------------------------------------------- /game/netplay.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/netplay.lua -------------------------------------------------------------------------------- /game/netplayinc/LUBE.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/netplayinc/LUBE.lua -------------------------------------------------------------------------------- /game/netplayinc/MiddleClass.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/netplayinc/MiddleClass.lua -------------------------------------------------------------------------------- /game/netplayinc/umsg.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/netplayinc/umsg.lua -------------------------------------------------------------------------------- /game/notgate.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/notgate.lua -------------------------------------------------------------------------------- /game/oneup.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/oneup.lua -------------------------------------------------------------------------------- /game/physics.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/physics.lua -------------------------------------------------------------------------------- /game/plant.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/plant.lua -------------------------------------------------------------------------------- /game/platform.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/platform.lua -------------------------------------------------------------------------------- /game/platformspawner.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/platformspawner.lua -------------------------------------------------------------------------------- /game/portalparticle.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/portalparticle.lua -------------------------------------------------------------------------------- /game/portalprojectile.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/portalprojectile.lua -------------------------------------------------------------------------------- /game/portalwall.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/portalwall.lua -------------------------------------------------------------------------------- /game/pushbutton.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/pushbutton.lua -------------------------------------------------------------------------------- /game/quad.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/quad.lua -------------------------------------------------------------------------------- /game/rainboom.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/rainboom.lua -------------------------------------------------------------------------------- /game/rgblist.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/rgblist.lua -------------------------------------------------------------------------------- /game/screenboundary.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/screenboundary.lua -------------------------------------------------------------------------------- /game/scrollingscore.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/scrollingscore.lua -------------------------------------------------------------------------------- /game/seesaw.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/seesaw.lua -------------------------------------------------------------------------------- /game/seesawplatform.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/seesawplatform.lua -------------------------------------------------------------------------------- /game/server.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/server.lua -------------------------------------------------------------------------------- /game/sha1.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/sha1.lua -------------------------------------------------------------------------------- /game/shaders/4xBR.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/shaders/4xBR.frag -------------------------------------------------------------------------------- /game/shaders/CRT-Simple.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/shaders/CRT-Simple.frag -------------------------------------------------------------------------------- /game/shaders/CRT.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/shaders/CRT.frag -------------------------------------------------------------------------------- /game/shaders/HDR-TV.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/shaders/HDR-TV.frag -------------------------------------------------------------------------------- /game/shaders/blcknwht.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/shaders/blcknwht.frag -------------------------------------------------------------------------------- /game/shaders/curvature.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/shaders/curvature.frag -------------------------------------------------------------------------------- /game/shaders/dotnbloom.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/shaders/dotnbloom.frag -------------------------------------------------------------------------------- /game/shaders/edges.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/shaders/edges.frag -------------------------------------------------------------------------------- /game/shaders/heavybloom.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/shaders/heavybloom.frag -------------------------------------------------------------------------------- /game/shaders/hq2x.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/shaders/hq2x.frag -------------------------------------------------------------------------------- /game/shaders/hq4x.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/shaders/hq4x.frag -------------------------------------------------------------------------------- /game/shaders/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/shaders/init.lua -------------------------------------------------------------------------------- /game/shaders/phosphor.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/shaders/phosphor.frag -------------------------------------------------------------------------------- /game/shaders/phosphorish.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/shaders/phosphorish.frag -------------------------------------------------------------------------------- /game/shaders/pip.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/shaders/pip.frag -------------------------------------------------------------------------------- /game/shaders/pixellate.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/shaders/pixellate.frag -------------------------------------------------------------------------------- /game/shaders/pixellate2.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/shaders/pixellate2.frag -------------------------------------------------------------------------------- /game/shaders/radialblur.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/shaders/radialblur.frag -------------------------------------------------------------------------------- /game/shaders/scale4xhq.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/shaders/scale4xhq.frag -------------------------------------------------------------------------------- /game/shaders/scanline-3x.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/shaders/scanline-3x.frag -------------------------------------------------------------------------------- /game/shaders/scanline-4x.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/shaders/scanline-4x.frag -------------------------------------------------------------------------------- /game/shaders/scanlines2.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/shaders/scanlines2.frag -------------------------------------------------------------------------------- /game/shaders/seperator.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/shaders/seperator.frag -------------------------------------------------------------------------------- /game/shaders/simplebloom.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/shaders/simplebloom.frag -------------------------------------------------------------------------------- /game/shaders/technicolor1.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/shaders/technicolor1.frag -------------------------------------------------------------------------------- /game/shaders/technicolor2.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/shaders/technicolor2.frag -------------------------------------------------------------------------------- /game/shaders/waterpaint.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/shaders/waterpaint.frag -------------------------------------------------------------------------------- /game/sounds/blockbreak.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/sounds/blockbreak.ogg -------------------------------------------------------------------------------- /game/sounds/blockhit.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/sounds/blockhit.ogg -------------------------------------------------------------------------------- /game/sounds/boom.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/sounds/boom.ogg -------------------------------------------------------------------------------- /game/sounds/bowserfall.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/sounds/bowserfall.ogg -------------------------------------------------------------------------------- /game/sounds/bridgebreak.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/sounds/bridgebreak.ogg -------------------------------------------------------------------------------- /game/sounds/bulletbill.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/sounds/bulletbill.ogg -------------------------------------------------------------------------------- /game/sounds/castle-fast.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/sounds/castle-fast.ogg -------------------------------------------------------------------------------- /game/sounds/castle.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/sounds/castle.ogg -------------------------------------------------------------------------------- /game/sounds/castleend.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/sounds/castleend.ogg -------------------------------------------------------------------------------- /game/sounds/coin.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/sounds/coin.ogg -------------------------------------------------------------------------------- /game/sounds/death.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/sounds/death.ogg -------------------------------------------------------------------------------- /game/sounds/fire.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/sounds/fire.ogg -------------------------------------------------------------------------------- /game/sounds/fireball.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/sounds/fireball.ogg -------------------------------------------------------------------------------- /game/sounds/gameover.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/sounds/gameover.ogg -------------------------------------------------------------------------------- /game/sounds/intermission.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/sounds/intermission.ogg -------------------------------------------------------------------------------- /game/sounds/jump.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/sounds/jump.ogg -------------------------------------------------------------------------------- /game/sounds/jumpbig.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/sounds/jumpbig.ogg -------------------------------------------------------------------------------- /game/sounds/konami.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/sounds/konami.ogg -------------------------------------------------------------------------------- /game/sounds/levelend.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/sounds/levelend.ogg -------------------------------------------------------------------------------- /game/sounds/lowtime.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/sounds/lowtime.ogg -------------------------------------------------------------------------------- /game/sounds/mushroomappear.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/sounds/mushroomappear.ogg -------------------------------------------------------------------------------- /game/sounds/mushroomeat.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/sounds/mushroomeat.ogg -------------------------------------------------------------------------------- /game/sounds/oneup.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/sounds/oneup.ogg -------------------------------------------------------------------------------- /game/sounds/overworld-fast.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/sounds/overworld-fast.ogg -------------------------------------------------------------------------------- /game/sounds/overworld.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/sounds/overworld.ogg -------------------------------------------------------------------------------- /game/sounds/pause.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/sounds/pause.ogg -------------------------------------------------------------------------------- /game/sounds/pipe.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/sounds/pipe.ogg -------------------------------------------------------------------------------- /game/sounds/portal1open.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/sounds/portal1open.ogg -------------------------------------------------------------------------------- /game/sounds/portal2open.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/sounds/portal2open.ogg -------------------------------------------------------------------------------- /game/sounds/portalenter.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/sounds/portalenter.ogg -------------------------------------------------------------------------------- /game/sounds/portalfizzle.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/sounds/portalfizzle.ogg -------------------------------------------------------------------------------- /game/sounds/princessmusic.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/sounds/princessmusic.ogg -------------------------------------------------------------------------------- /game/sounds/rainboom.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/sounds/rainboom.ogg -------------------------------------------------------------------------------- /game/sounds/scorering.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/sounds/scorering.ogg -------------------------------------------------------------------------------- /game/sounds/shot.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/sounds/shot.ogg -------------------------------------------------------------------------------- /game/sounds/shrink.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/sounds/shrink.ogg -------------------------------------------------------------------------------- /game/sounds/stab.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/sounds/stab.ogg -------------------------------------------------------------------------------- /game/sounds/starmusic-fast.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/sounds/starmusic-fast.ogg -------------------------------------------------------------------------------- /game/sounds/starmusic.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/sounds/starmusic.ogg -------------------------------------------------------------------------------- /game/sounds/stomp.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/sounds/stomp.ogg -------------------------------------------------------------------------------- /game/sounds/swim.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/sounds/swim.ogg -------------------------------------------------------------------------------- /game/sounds/underground-fast.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/sounds/underground-fast.ogg -------------------------------------------------------------------------------- /game/sounds/underground.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/sounds/underground.ogg -------------------------------------------------------------------------------- /game/sounds/underwater-fast.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/sounds/underwater-fast.ogg -------------------------------------------------------------------------------- /game/sounds/underwater.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/sounds/underwater.ogg -------------------------------------------------------------------------------- /game/sounds/vine.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/sounds/vine.ogg -------------------------------------------------------------------------------- /game/spring.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/spring.lua -------------------------------------------------------------------------------- /game/squid.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/squid.lua -------------------------------------------------------------------------------- /game/star.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/star.lua -------------------------------------------------------------------------------- /game/tile.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/tile.lua -------------------------------------------------------------------------------- /game/upfire.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/upfire.lua -------------------------------------------------------------------------------- /game/variables.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/variables.lua -------------------------------------------------------------------------------- /game/vine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/vine.lua -------------------------------------------------------------------------------- /game/wallindicator.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/wallindicator.lua -------------------------------------------------------------------------------- /game/walltimer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radgeRayden/future-mari0/HEAD/game/walltimer.lua --------------------------------------------------------------------------------