Revision of Small adventure for the Master Climber from Mon, 06/10/2019 - 07:27

wibi's picture
climber.png

Ok so to play this game, what you are going to want to do is copy the text below:


##################
#%              %#
#%              %#
##              ##
##              ##
##              ##
##              ##
#P               #
####          ####
#  #          #  #
#  #          ####
####   !  !   #  #
#  #          ####
#  #          #  #
#  #   !  !   #  #
#  #          ####
####          #  #
#  #   !  !   ####
#  #   #  #   #  #
##################

P = Player
# = Brick
% = Box
! = Spring
. = JumpingSpring

// List syntax
ThingsThatFall = [ Player JumpingSpring ]

Sproingy = [ Spring JumpingSpring ]

// Accelerate down, like gravity. On everything in the list
{ ThingsThatFall } -> { DOWN ThingsThatFall }

// Move sideways with <LEFT> and <RIGHT> arrow keys
{ <HORIZONTAL> Player } -> { HORIZONTAL Player }

// Move up while pressing against a wall
HORIZONTAL { Player | Wall } -> { UP Player | Wall }

// Springs are Sproingy
DOWN { DOWN ThingsThatFall | Sproingy } -> { JUMP ThingsThatFall | JUMP JumpingSpring }
DOWN { DOWN JumpingSpring | Wall } -> { JUMP JumpingSpring | Wall }

// Win if touch box
{ Player | Box } -> { WIN Player | Box }

And paste it into here: https://waynetron.github.io/micro-gg/

And then click the "play" button on the top-right.

micro gg is the work of @WaynePetzler. Here's the tweet that made me find out about it.

Made For: 
An event