Made a few new levels available for advance early playtesting.

This commit is contained in:
Nick Winter 2014-11-16 20:38:15 -08:00
parent dbad4d232d
commit 5927b36402
2 changed files with 12 additions and 17 deletions

View file

@ -697,8 +697,7 @@ forest = [
name: 'Copper Meadows'
type: 'hero'
id: 'copper-meadows'
description: 'grab the coins'
disabled: not me.isAdmin()
description: 'This level exercises: if/else, object members, variables, flag placement, and collection.'
nextLevels:
continue: 'drop-the-flag'
x: 77.54
@ -708,43 +707,39 @@ forest = [
name: 'Drop the Flag'
type: 'hero'
id: 'drop-the-flag'
description: 'it is hot'
disabled: not me.isAdmin()
description: 'This level exercises: flag position, object members.'
nextLevels:
continue: 'deadly-pursuit'
x: 77.54
y: 50.94
y: 45.94
}
{
name: 'Deadly Pursuit'
type: 'hero'
id: 'deadly-pursuit'
description: 'what is a dirt nap? it is death.'
disabled: not me.isAdmin()
description: 'This level exercises: if/else, flag placement and timing, item collection.'
nextLevels:
continue: 'rich-forager'
x: 77.54
y: 40.94
y: 35.94
}
{
name: 'Rich Forager'
type: 'hero'
id: 'rich-forager'
description: 'if i were a rich man'
disabled: not me.isAdmin()
description: 'This level exercises: if/else if, collection, combat.'
nextLevels:
continue: 'multiplayer-treasure-grove'
x: 77.54
y: 45.94
y: 25.94
}
{
name: 'Multiplayer Treasure Grove'
type: 'hero'
type: 'hero-ladder'
id: 'multiplayer-treasure-grove'
description: 'show em who is the professional boss'
disabled: not me.isAdmin()
x: 77.54
y: 35.94
description: 'Mix collection, flags, and combat in this multiplayer coin-gathering arena.'
x: 67.54
y: 25.94
}
{
name: 'Dueling Grounds'

View file

@ -594,7 +594,7 @@ module.exports = class PlayLevelView extends RootView
players = new RealTimeCollection('multiplayer_players/' + @levelID)
players.create
id: me.id
name: session.get('creatorName')
name: me.get('name')
state: 'playing'
created: new Date().toISOString()
heartbeat: new Date().toISOString()