Things on Top of Other Things
Posted by chrisp
April 20th, 2008 6:25 am
Ludum Dare 22 :: December 16th-19th, 2011 :: Theme: Alone
[ Results: Top 50 Compo, Jam | Top 25 Categories | View My Entry ]
All posts, images, and comments are owned by their creators.
Try this level:
stacks = [
[wall(), block(), block(), monster_horizontal_only(1)],
[wall()],
[wall()],
[wall()],
[wall(), block()],
[wall(), playerEnt],
[wall(), block() ],
[wall()],
[wall()],
[wall(), block()],
]
exit = (0, 3)
You… you… just haxx0red my game mechanics.
… Genius.
Here’s another one:
(If you’re stuck on my previous level try this one, it might give you a hint.)
stacks = [
[monster(0) ],
[block(), monster(0)],
[block(), block(), monster(0), ],
[block(), block(), wall() ],
[block(), block() ],
[block(), playerEnt],
[block(), ],
[block(), block(), block(), monster_horizontal_only(1)],
]
exit = (0, 1)
Think quick!
stacks = [
[wall()],
[],
[wall(), ],
[wall(), ],
[wall(), ],
[wall(), ],
[wall(), ],
[wall(), playerEnt, wall(), monster_horizontal_only(1)],
[wall(), block() ],
[wall(), monster(-1)],
]
exit = (0, 2)
I really like that custom level with the monster on top of the exit. I wish more games went outside of the box like that.