diff --git a/config/gameConfig.json b/config/gameConfig.json index de2091fdb..b96d7f028 100644 --- a/config/gameConfig.json +++ b/config/gameConfig.json @@ -78,7 +78,8 @@ "config/spells/offensive.json", "config/spells/other.json", "config/spells/timed.json", - "config/spells/ability.json" + "config/spells/ability.json", + "config/spells/vcmiAbility.json" ], "skills" : [ diff --git a/config/spells/ability.json b/config/spells/ability.json index 5a1af9d90..abb661bff 100644 --- a/config/spells/ability.json +++ b/config/spells/ability.json @@ -428,52 +428,5 @@ "bonus.DIRECT_DAMAGE_IMMUNITY" : "normal" } } - }, - "summonDemons" : { - "type": "ability", - "targetType" : "CREATURE", - "name": "Summon Demons", - "school" : {}, - "level": 2, - "power": 50, - "defaultGainChance": 0, - "gainChance": {}, - "animation":{ - }, - "sounds": { - "cast": "RESURECT" - }, - "levels" : { - "base": { - "description" : "", - "aiValue" : 0, - "power" : 40, - "cost" : 1, - "range" : "0", - "battleEffects":{ - "demonSummon":{ - "id":"demon", - "permanent":true, - "type":"core:demonSummon" - } - } - }, - "none" :{}, - "basic" :{}, - "advanced" :{}, - "expert" :{} - }, - "flags" : { - "rising": true, - "positive": true - }, - "targetCondition" : { - "noneOf" : { - "bonus.NON_LIVING" : "absolute", - "bonus.SIEGE_WEAPON" : "absolute", - "bonus.UNDEAD" : "absolute", - "bonus.GARGOYLE" : "absolute" - } - } - }, + } } diff --git a/config/spells/vcmiAbility.json b/config/spells/vcmiAbility.json new file mode 100644 index 000000000..36edf1d25 --- /dev/null +++ b/config/spells/vcmiAbility.json @@ -0,0 +1,49 @@ +{ + "summonDemons" : { + "type": "ability", + "targetType" : "CREATURE", + "name": "Summon Demons", + "school" : {}, + "level": 2, + "power": 50, + "defaultGainChance": 0, + "gainChance": {}, + "animation":{ + }, + "sounds": { + "cast": "RESURECT" + }, + "levels" : { + "base": { + "description" : "", + "aiValue" : 0, + "power" : 40, + "cost" : 1, + "range" : "0", + "battleEffects":{ + "demonSummon":{ + "id":"demon", + "permanent":true, + "type":"core:demonSummon" + } + } + }, + "none" :{}, + "basic" :{}, + "advanced" :{}, + "expert" :{} + }, + "flags" : { + "rising": true, + "positive": true + }, + "targetCondition" : { + "noneOf" : { + "bonus.NON_LIVING" : "absolute", + "bonus.SIEGE_WEAPON" : "absolute", + "bonus.UNDEAD" : "absolute", + "bonus.GARGOYLE" : "absolute" + } + } + } +}