mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-24 08:32:34 +02:00
4203d69525
1) spell handler refactored to support modding in general way 2) imunnity icons moved to WoG as they depends on wog`s graphics 3) introduced new class template for handlers (todo: use this in other handlers) 4) save format changed 5) introduced "absolute immunity" - unaffected by "the Orb" etc. (todo: use it in config) 6) new format documented on wiki, added json schema. * more split of registertypes - fixes 32 mingw build
33 lines
705 B
JSON
33 lines
705 B
JSON
// default configuration for mod system loaded at launch
|
|
|
|
{
|
|
"textData" :
|
|
{
|
|
"heroClass" : 18,
|
|
"artifact" : 144,
|
|
"creature" : 150,
|
|
"faction" : 9,
|
|
"hero" : 156,
|
|
"spell" : 81,
|
|
"mapVersion" : 28 // max supported version, SoD
|
|
},
|
|
|
|
"hardcodedFeatures" :
|
|
{
|
|
"CREEP_SIZE": 4000,
|
|
"WEEKLY_GROWTH_PERCENT" : 10,
|
|
"NEUTRAL_STACK_EXP_DAILY" : 500,
|
|
"MAX_BUILDING_PER_TURN" : 1,
|
|
"DWELLINGS_ACCUMULATE_CREATURES" : true,
|
|
"ALL_CREATURES_GET_DOUBLE_MONTHS" : false,
|
|
"NEGATIVE_LUCK" : false
|
|
},
|
|
"modules":
|
|
{
|
|
"STACK_EXPERIENCE": false,
|
|
"STACK_ARTIFACTS": false,
|
|
"COMMANDERS": false,
|
|
"MITHRIL": false //so far unused
|
|
}
|
|
}
|