mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-04-14 05:55:00 -04:00
Merge branch 'master' of git://github.com/p-buse/codecombat into p-buse-master
This commit is contained in:
commit
69a6070e02
2 changed files with 0 additions and 87 deletions
app/lib/scripts
|
@ -13,7 +13,6 @@ GoalScriptsModule = require './GoalsScriptModule'
|
|||
allScriptModules.push(GoalScriptsModule)
|
||||
allScriptModules.push(require './SoundScriptModule')
|
||||
|
||||
commonScripts = require './commonScripts'
|
||||
|
||||
DEFAULT_BOT_MOVE_DURATION = 500
|
||||
DEFAULT_SCRUB_DURATION = 1000
|
||||
|
@ -66,7 +65,6 @@ module.exports = ScriptManager = class ScriptManager extends CocoClass
|
|||
@ended = []
|
||||
@noteGroupQueue = []
|
||||
@scripts = _.cloneDeep(@originalScripts)
|
||||
@scripts = @scripts.concat(_.cloneDeep(commonScripts))
|
||||
|
||||
addScriptSubscriptions: ->
|
||||
idNum = 0
|
||||
|
|
|
@ -1,85 +0,0 @@
|
|||
module.exports = [
|
||||
{
|
||||
"channel": "surface:sprite-selected",
|
||||
"noteChain": [
|
||||
{
|
||||
"sprites": [
|
||||
{
|
||||
"id": "Captain Anya",
|
||||
"say": {
|
||||
"text": "What do you need help with, boss?",
|
||||
"responses": [
|
||||
{
|
||||
"text": "What do I do next?",
|
||||
"channel": "help-next"
|
||||
},
|
||||
{
|
||||
"text": "I'm lost",
|
||||
"channel": "help-overview"
|
||||
},
|
||||
{
|
||||
"text": "Never mind.",
|
||||
"channel": "end-current-script"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"eventPrereqs": [
|
||||
{
|
||||
"eventProps": [
|
||||
"sprite",
|
||||
"thang",
|
||||
"id"
|
||||
],
|
||||
"equalTo": "Captain Anya"
|
||||
}
|
||||
],
|
||||
"id": "Anya Clicked Guide"
|
||||
"repeats": true
|
||||
},
|
||||
{
|
||||
"channel": "help-next",
|
||||
"noteChain": [
|
||||
{
|
||||
"sprites": [
|
||||
{
|
||||
"id": "Captain Anya",
|
||||
"say": {
|
||||
"text": "Look for a list of objectives on the upper left. They tell you what to focus on."
|
||||
}
|
||||
}
|
||||
],
|
||||
"dom": {
|
||||
"highlight": {
|
||||
"target": "#primary-goals-list"
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"id": "Clicked Help Next"
|
||||
},
|
||||
{
|
||||
"channel": "help-overview",
|
||||
"noteChain": [
|
||||
{
|
||||
"sprites": [
|
||||
{
|
||||
"id": "Captain Anya",
|
||||
"say": {
|
||||
"text": "Click the 'Guide' button on the upper right for an overview of the level and some hints."
|
||||
}
|
||||
}
|
||||
],
|
||||
"dom": {
|
||||
"highlight": {
|
||||
"target": "#docs-button"
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"id": "Clicked I'm Lost"
|
||||
}
|
||||
]
|
Loading…
Add table
Reference in a new issue