start renamed

This commit is contained in:
monsterkodi 2016-09-01 10:45:21 +02:00
parent a2cd885c7f
commit 233ab81967
4 changed files with 58 additions and 56 deletions

View File

@ -12,11 +12,11 @@ class Levels
# "test", # "test",
# --- introduction # --- introduction
"steps", # ok "steps", # ok
"start", # ok "jump", # ok
"move", # ok "move", # ok
"electro", # ok "electro", # ok
"elevate", # ok "elevate", # ok
"jump", # ok "fall", # ok
# # --- easy # # --- easy
"blocks", # ok "blocks", # ok
"throw", "throw",

40
coffee/levels/fall.coffee Normal file
View File

@ -0,0 +1,40 @@
# 00000000 0000000 000 000
# 000 000 000 000 000
# 000000 000000000 000 000
# 000 000 000 000 000
# 000 000 000 0000000 0000000
module.exports =
name: "fall"
scheme: "red"
size: [7,7,13]
help: """
$scale(1.5)mission:
get to the exit!
jump on the stones to reach it
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

View File

@ -7,21 +7,22 @@
module.exports = module.exports =
name: "jump" name: "jump"
scheme: "red" scheme: "default"
size: [7,7,13] size: [7,5,11]
help: """ help: """
jump on the stones $scale(1.5)mission:
to reach the exit. get to the exit!
you can attach to get to the exit,
to a stone jump on the stone
when falling to jump,
if you move press "$key(jump)" while moving
into its direction. to move, press "$key(move forward)" or "$key(move backward)"
to turn, press "$key(turn left)" or "$key(turn right)"
""" """
player: player:
coordinates: [3,6,4] coordinates: [1,0,4]
orientation: minusZdownY orientation: minusXupY
exits: [ exits: [
name: "exit" name: "exit"
active: 1 active: 1
@ -29,13 +30,7 @@ module.exports =
] ]
create: -> create: ->
s = world.size world.addObjectAtPos 'Wall', world.decenter 0,0,-2
world.addObjectAtPos 'Wall', world.decenter 0,0,-4
world.addObjectAtPos 'Wall', world.decenter 0,0,1 - s.z/2 world.addObjectAtPos 'Wall', world.decenter 0,0, 1
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

View File

@ -1,33 +0,0 @@
# 0000000 000000000 0000000 00000000 000000000
# 000 000 000 000 000 000 000
# 0000000 000 000000000 0000000 000
# 000 000 000 000 000 000 000
# 0000000 000 000 000 000 000 000
module.exports =
name: "start"
scheme: "default"
size: [7,5,11]
help: """
to get to the exit,
jump on the stones.
"w" or "d" to move.
"a" or "s" to turn.
"space" to jump.
"""
player:
coordinates: [1,0,4]
orientation: minusXupY
exits: [
name: "exit"
active: 1
position: [0,0,3]
]
create: ->
world.addObjectAtPos 'Wall', world.decenter 0,0,-2
world.addObjectAtPos 'Wall', world.decenter 0,0,-4
world.addObjectAtPos 'Wall', world.decenter 0,0, 1