4 hours in: working prototype

I’m now four hours into LD, and I have a prototype. This is farther than I got last time (at this point, I had quit :P)

 

The prototype has a level-loading capability so I can easily make levels using ascii art…

var levels = {
 '0' : [
 '                ',
 '   _            ',
 '                ',
 '__S_____________',
 ],
 '1' : [
 '     _          ',
 '                ',
 '   _ST___       ',
 '                ',
 '__S____S________',
 ],
 }

You can kind of make oue the ground (underscores). S is a springboard, T is a trap door. The result (level ‘1’) is on github, where there is also a link to run the prototype. Use left and right arrows to move.

Going to sleep now (well, going to bed with my notepad, but you know..). Goals tomorrow:

1.) Eat and Shower

2.) Start putting together actual levels using the prototype, including additional types of items.

3.) Once I feel comfortable with a few levels, build some graphics (including animations).