mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-12-01 19:36:57 -05:00
25 lines
488 B
CoffeeScript
25 lines
488 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"
|
||
|
}
|
||
|
]
|