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

37 lines
1.2 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: """
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()