mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-25 00:28:31 -05:00
32 lines
991 B
CoffeeScript
32 lines
991 B
CoffeeScript
c = require 'schemas/schemas'
|
|
|
|
module.exports =
|
|
'world:won': c.object {},
|
|
replacedNoteChain: {type: 'array'}
|
|
|
|
'world:thang-died': c.object {required: ['thang', 'killer']},
|
|
replacedNoteChain: {type: 'array'}
|
|
thang: {type: 'object'}
|
|
killer: {type: 'object'}
|
|
|
|
'world:thang-touched-goal': c.object {required: ['actor', 'touched']},
|
|
replacedNoteChain: {type: 'array'}
|
|
thang: {type: 'object'}
|
|
actor: {type: 'object'}
|
|
touched: {type: 'object'}
|
|
|
|
'world:thang-collected-item': c.object {required: ['actor', 'item']},
|
|
replacedNoteChain: {type: 'array'}
|
|
thang: {type: 'object'}
|
|
actor: {type: 'object'}
|
|
item: {type: 'object'}
|
|
|
|
'world:thang-finished-plans': c.object {required: ['thang']},
|
|
replacedNoteChain: {type: 'array'}
|
|
thang: {type: 'object'}
|
|
|
|
'world:attacked-when-out-of-range': c.object {required: ['thang']},
|
|
replacedNoteChain: {type: 'array'}
|
|
thang: {type: 'object'}
|
|
|
|
'world:custom-script-trigger': {type: 'object'}
|