kiki/coffee/levels/columns.coffee
monsterkodi f0a7fd7ded levels
2016-08-24 22:19:43 +02:00

40 lines
1.3 KiB
CoffeeScript

# 0000000 0000000 000 000 000 00 00 000 000 0000000
# 000 000 000 000 000 000 000 000 0000 000 000
# 000 000 000 000 000 000 000000000 000 0 000 0000000
# 000 000 000 000 000 000 000 0 000 000 0000 000
# 0000000 0000000 0000000 0000000 000 000 000 000 0000000
module.exports =
name: "columns"
scheme: "green"
size: [7,9,7]
help: """
$scale(1.5)mission:
get to the exit!
to get to the exit,
use the stones
"""
player:
coordinates: [3,7,0]
orientation: YupZ
exits: [
name: "exit"
active: 1
position: [0,0,0]
]
create: ->
s = world.size
for y in [-4...5]
for x in [-3, -1, 1, 3]
for z in [-3, -1, 1, 3 ]
world.addObjectAtPos 'Stone', world.decenter x, y, z
world.getOccupantAtPos(world.decenter -1, 0, 1).del()
world.getOccupantAtPos(world.decenter 1, 0,-1).del()
world.getOccupantAtPos(world.decenter 1, 0, 1).del()
world.getOccupantAtPos(world.decenter -1, 0,-1).del()