codecombat/app/lib/scripts/defaultScripts.coffee

37 lines
823 B
CoffeeScript
Raw Normal View History

2014-01-03 13:32:13 -05:00
module.exports = [
{
"id": "Add Default Goals",
"channel": "god:new-world-created",
"noteChain": [
{
"goals": {
"add": [
{
"name": "Humans Survive",
"id": "humans-survive",
"saveThangs": [
"humans"
],
"worldEndsAfter": 3,
"howMany": 1,
"hiddenGoal": true
},
{
"name": "Ogres Die",
"id": "ogres-die",
"killThangs": [
"ogres"
],
"worldEndsAfter": 3,
"hiddenGoal": true
}
]
}
}
]
}
]
# Could add other default scripts, like not having to redo Victory Playback sequence from scratch every time.