Ready for action, sir!
This commit is contained in:
parent
f9e0bf948e
commit
6009df26de
669 changed files with 95073 additions and 2 deletions
app/lib/scripts
36
app/lib/scripts/defaultScripts.coffee
Normal file
36
app/lib/scripts/defaultScripts.coffee
Normal file
|
@ -0,0 +1,36 @@
|
|||
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.
|
Reference in a new issue