kiki/coffee/levels/throw.coffee
monsterkodi d4c28ee1d6 levels
2016-08-23 18:35:44 +02:00

38 lines
1.1 KiB
CoffeeScript

# 000000000 000 000 00000000 0000000 000 000
# 000 000 000 000 000 000 000 000 0 000
# 000 000000000 0000000 000 000 000000000
# 000 000 000 000 000 000 000 000 000
# 000 000 000 000 000 0000000 00 00
module.exports =
name: "throw"
design: 'Michael Abel'
scheme: "tron"
size: [5,7,7]
help: """
"$scale(1.5)mission:
get to the exit!
use the stones to reach it
push a stone and it will fall down
if nothing is below it
but remember:
you decide where down and below is!
"""
player:
position: [0,1,2]
orientation: rotx90.mul rotx180.mul roty270
exits: [
name: "exit"
active: 1
position: [0,0,0]
]
create: ->
world.addObjectAtPos 'Wall', world.decenter -2,0,2
world.addObjectAtPos 'Stone', world.decenter 0,1,3
world.addObjectAtPos 'Stone', world.decenter 0,-1,3