codecombat/app/lib/DefaultScripts.coffee
2014-08-27 12:24:11 -07:00

25 lines
489 B
CoffeeScript

module.exports = [
{
channel: "god:new-world-created"
noteChain: []
id: "Introduction"
}
{
channel: "world:won"
noteChain: []
id: "Victory Playback"
scriptPrereqs: ["Introduction"]
}
{
channel: "level:set-playing"
noteChain: []
scriptPrereqs: ["Victory Playback"]
id: "Victory Playback Started"
}
{
channel: "surface:frame-changed"
noteChain: []
scriptPrereqs: ["Victory Playback Started"]
id: "Show Victory"
}
]