From 233ab819678fa99b1eef351417e0a712354cdda9 Mon Sep 17 00:00:00 2001 From: monsterkodi Date: Thu, 1 Sep 2016 10:45:21 +0200 Subject: [PATCH] start renamed --- coffee/levels.coffee | 4 ++-- coffee/levels/fall.coffee | 40 ++++++++++++++++++++++++++++++++++++++ coffee/levels/jump.coffee | 37 +++++++++++++++-------------------- coffee/levels/start.coffee | 33 ------------------------------- 4 files changed, 58 insertions(+), 56 deletions(-) create mode 100644 coffee/levels/fall.coffee delete mode 100644 coffee/levels/start.coffee diff --git a/coffee/levels.coffee b/coffee/levels.coffee index b46e107..f69edbd 100644 --- a/coffee/levels.coffee +++ b/coffee/levels.coffee @@ -12,11 +12,11 @@ class Levels # "test", # --- introduction "steps", # ok - "start", # ok + "jump", # ok "move", # ok "electro", # ok "elevate", # ok - "jump", # ok + "fall", # ok # # --- easy "blocks", # ok "throw", diff --git a/coffee/levels/fall.coffee b/coffee/levels/fall.coffee new file mode 100644 index 0000000..003b98d --- /dev/null +++ b/coffee/levels/fall.coffee @@ -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 + \ No newline at end of file diff --git a/coffee/levels/jump.coffee b/coffee/levels/jump.coffee index f0f4ba7..db1504f 100644 --- a/coffee/levels/jump.coffee +++ b/coffee/levels/jump.coffee @@ -7,21 +7,22 @@ module.exports = name: "jump" - scheme: "red" - size: [7,7,13] - help: """ - jump on the stones - to reach the exit. + scheme: "default" + size: [7,5,11] + help: """ + $scale(1.5)mission: + get to the exit! - you can attach - to a stone - when falling - if you move - into its direction. + to get to the exit, + jump on the stone + to jump, + press "$key(jump)" while moving + to move, press "$key(move forward)" or "$key(move backward)" + to turn, press "$key(turn left)" or "$key(turn right)" """ player: - coordinates: [3,6,4] - orientation: minusZdownY + coordinates: [1,0,4] + orientation: minusXupY exits: [ name: "exit" active: 1 @@ -29,13 +30,7 @@ module.exports = ] 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 + world.addObjectAtPos 'Wall', world.decenter 0,0,-2 + world.addObjectAtPos 'Wall', world.decenter 0,0,-4 + world.addObjectAtPos 'Wall', world.decenter 0,0, 1 \ No newline at end of file diff --git a/coffee/levels/start.coffee b/coffee/levels/start.coffee deleted file mode 100644 index ad50739..0000000 --- a/coffee/levels/start.coffee +++ /dev/null @@ -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 - \ No newline at end of file