kiki/coffee/levels/start.coffee
monsterkodi 789cc334e3 levels
2016-08-08 19:35:56 +02:00

31 lines
954 B
CoffeeScript

module.exports =
name: "start"
scheme: "default_scheme"
size: [7,7,11]
intro: "start"
help: """
$scale(1.5)mission:
get to the exit!
to get to the exit,
jump on the stone
to jump,
press "$key(jump)"
while movin
to move, press "$key(move forward)" or "$key(move backward)"
to turn, press "$key(turn left)" or "$key(turn right)"
"""
player:
coordinates: [3,0,3]
nostatus: 0
exits: [
name: "exit"
active: 1
position: [0,0,3]
]
create: ->
world.addObjectAtPos(KikiWall(), world.decenter(0,0,-2))
world.addObjectAtPos(KikiWall(), world.decenter(0,0,-4))
world.addObjectAtPos(KikiWall(), world.decenter(0,0,1))