kiki/coffee/levels/jump.coffee
monsterkodi 8ec96ec4f0 help
2016-08-31 22:19:39 +02:00

41 lines
1.3 KiB
CoffeeScript

# 000 000 000 00 00 00000000
# 000 000 000 000 000 000 000
# 000 000 000 000000000 00000000
# 000 000 000 000 000 0 000 000
# 0000000 0000000 000 000 000
module.exports =
name: "jump"
scheme: "red"
size: [7,7,13]
help: """
jump on the stones
to reach the exit.
you can attach
to a stone
when falling
if you move
into its direction.
"""
player:
coordinates: [3,6,4]
orientation: minusZdownY
exits: [
name: "exit"
active: 1
position: [0,0,3]
]
create: ->
s = world.size
world.addObjectAtPos 'Wall', world.decenter 0,0,1 - s.z/2
world.addObjectAtPos 'Wall', world.decenter 0,0,3 - s.z/2
world.addObjectAtPos 'Wall', world.decenter 0,0,6 - s.z/2
world.addObjectAtPos 'Wall', world.decenter 0,1,10 - s.z/2
world.addObjectAtPos 'Wall', world.decenter 1,0,10 - s.z/2
world.addObjectAtPos 'Wall', world.decenter -1,0,10 - s.z/2
world.addObjectAtPos 'Wall', world.decenter 0,-1,10 - s.z/2