
Minimalist game. Few pixels. Few words.
Download.
Windows, run executable. Ignore errors. They claim fatality. They lie.
Others, need python, pygame. Run python main.py
Tags: final
This entry was posted
on Sunday, April 20th, 2008 at 6:25 am and is filed under LD11 - Minimalist.
You can follow any responses to this entry through the RSS 2.0 feed.
You can leave a response, or trackback from your own site.
April 21st, 2008 at 12:42 am
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)
April 21st, 2008 at 1:49 am
You… you… just haxx0red my game mechanics.
… Genius.
April 21st, 2008 at 3:21 am
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)
April 21st, 2008 at 4:02 am
Think quick!
stacks = [
[wall()],
[],
[wall(), ],
[wall(), ],
[wall(), ],
[wall(), ],
[wall(), ],
[wall(), playerEnt, wall(), monster_horizontal_only(1)],
[wall(), block() ],
[wall(), monster(-1)],
]
exit = (0, 2)
April 21st, 2008 at 5:19 pm
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.