1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-11-24 08:32:34 +02:00
vcmi/config/creatures/special.json
Ivan Savenko 9237e6d97d Improved json validation
- split JsonNode.cpp into JsonNode and JsonDetail files
- validation should be notably faster (at least 10% faster loading)
- support for "format" field, allows checking existance of files.
- minor fixes in schemas
- msk/msg files are now optional
2013-10-26 19:33:34 +00:00

123 lines
1.9 KiB
JSON

{
// Several unused in H3 creatures
// TODO: better way to disable them
"unused122" :
{
"faction": "neutral",
"disabled" : true,
"graphics" : null,
"index" : 122
},
"unused124" :
{
"faction": "neutral",
"disabled" : true,
"graphics" : null,
"index" : 124
},
"unused126" :
{
"faction": "neutral",
"disabled" : true,
"graphics" : null,
"index" : 126
},
"unused128" :
{
"faction": "neutral",
"disabled" : true,
"graphics" : null,
"index" : 128
},
"catapult" :
{
"special" : true,
"index": 145,
"level": 0,
"faction": "neutral",
"graphics" :
{
"animation": "SMCATA.DEF",
"missile" :
{
"projectile": "SMCATX.DEF"
}
},
"sound" :
{
"killed": "CATAKILL.wav",
"shoot": "CATASHOT.wav",
"wince": "CATAWNCE.wav"
}
},
"ballista" :
{
"special" : true,
"index": 146,
"level": 0,
"faction": "neutral",
"graphics" :
{
"animation": "SMBAL.DEF",
"missile" :
{
"projectile": "SMBALX.DEF"
}
},
"sound" :
{
"killed": "BALLKILL.wav",
"shoot": "BALLSHOT.wav",
"wince": "BALLWNCE.wav"
}
},
"firstAidTent" :
{
"special" : true,
"index": 147,
"level": 0,
"faction": "neutral",
"abilities": { "heals" : { "type" : "HEALER" } },
"graphics" :
{
"animation": "SMTENT.DEF"
},
"sound" :
{
"killed": "FAIDKILL.wav",
"wince": "FAIDWNCE.wav"
}
},
"ammoCart" :
{
"special" : true,
"index": 148,
"level": 0,
"faction": "neutral",
"abilities": { "inactive" : { "type" : "NOT_ACTIVE" } },
"graphics" :
{
"animation": "SMCART.DEF"
},
"sound" :
{
"killed": "CARTKILL.wav",
"wince": "CARTWNCE.wav"
}
},
"arrowTower" :
{
"special" : true,
"index": 149,
"level": 0,
"faction": "neutral",
"abilities": { "shooter" : { "type" : "SHOOTER" } },
"graphics" :
{
"animation": "CLCBOW.DEF" // needed to pass validation, never used
},
"sound": {}
}
}