1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-11-28 08:48:48 +02:00
vcmi/config/creatures/special.json
Ivan Savenko 0cf969d508 - console logger by default uses same format as previously (no extra data)
- a lot of changes in configs;
- - update to creature format - abilities are now json structure
- - multiple bugfixes revealed by validation
- made schemas a bit more strict
- creatures data can be replaced via mods
- it is possible to validate vcmi configs using schemas (disabled)
2013-04-11 19:24:14 +00:00

123 lines
1.8 KiB
JSON

{
// Several unused in H3 creatures
// TODO: better way to disable them
"unused122" :
{
"faction": "neutral",
"disabled" : true,
"graphics" : null,
"id" : 122
},
"unused124" :
{
"faction": "neutral",
"disabled" : true,
"graphics" : null,
"id" : 124
},
"unused126" :
{
"faction": "neutral",
"disabled" : true,
"graphics" : null,
"id" : 126
},
"unused128" :
{
"faction": "neutral",
"disabled" : true,
"graphics" : null,
"id" : 128
},
"catapult" :
{
"special" : true,
"id": 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,
"id": 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,
"id": 147,
"level": 0,
"faction": "neutral",
"abilities": { "heals" : { "type" : "HEALER" } },
"graphics" :
{
"animation": "SMTENT.DEF"
},
"sound" :
{
"killed": "FAIDKILL.wav",
"wince": "FAIDWNCE.wav"
}
},
"ammoCart" :
{
"special" : true,
"id": 148,
"level": 0,
"faction": "neutral",
"abilities": { "inactive" : { "type" : "NOT_ACTIVE" } },
"graphics" :
{
"animation": "SMCART.DEF"
},
"sound" :
{
"killed": "CARTKILL.wav",
"wince": "CARTWNCE.wav"
}
},
"arrowTower" :
{
"special" : true,
"id": 149,
"level": 0,
"faction": "neutral",
"abilities": { "shooter" : { "type" : "SHOOTER" } },
"graphics" :
{
"animation" : "This should never be used"
},
"sound": {}
}
}