I have 2 questions regarding my new mod. First: here are the first 3 artifacts i modified:
"core:centaurAxe":
{
"text" : {
"description" : "This item increases your attack by 2 and the attack of all centaurs and centaur captains by 5"
},
"bonuses" : [
{
"subtype" : "primSkill.attack",
"type" : "PRIMARY_SKILL",
"val" : 2,
"valueType" : "BASE_NUMBER"
},
{
"type" : "PRIMARY_SKILL",
"subtype" : "primSkill.attack",
"val" : 3,
"valueType" : "ADDITIVE_VALUE",
"limiters" : [
{
"type" : "CREATURE_TYPE_LIMITER",
"parameters" : [ "core:centaur", true ]
},
]
}
],
},
"core:blackshardOfTheDeadKnight":
{
"text" : {
"description" : "The blackshard of the dead knight increases your attack by 3, the attack of all undead by 6, but decreases morale of all living by -1"
},
"bonuses" : [
{
"subtype" : "primSkill.attack",
"type" : "PRIMARY_SKILL",
"val" : 3,
"valueType" : "BASE_NUMBER"
},
{
"type" : "PRIMARY_SKILL",
"subtype" : "primSkill.attack",
"val" : 3,
"valueType" : "ADDITIVE_VALUE",
"limiters" : [
{ "IS_UNDEAD" }
]
},
{
"type" : "MORALE",
"val" : -1,
"limiters" : [
"noneOf",
"IS_UNDEAD",
{
"type" : "HAS_ANOTHER_BONUS_LIMITER",
"parameters" : [ "NON_LIVING" ]
},
{
"type" : "HAS_ANOTHER_BONUS_LIMITER",
"parameters" : [ "GARGOYLE" ]
}
]
}
],
},
"core:greaterGnollsFlail":
{
"text" : {
"description" : "This great flail increases your attack by 4, and the attack of all gnolls in your army by 8"
},
"bonuses" : [
{
"subtype" : "primSkill.attack",
"type" : "PRIMARY_SKILL",
"val" : 4,
"valueType" : "BASE_NUMBER"
},
{
"type" : "PRIMARY_SKILL",
"subtype" : "primSkill.attack",
"val" : 4,
"valueType" : "ADDITIVE_VALUE",
"limiters" : [
{
"type" : "CREATURE_TYPE_LIMITER",
"parameters" : [ "core:gnoll", true ]
},
]
}
],
},
The first 2 apparently work, the third does not work. The description does not show up. And none of the artifacts after that. Any idea why? The syntax seems to be correct. So what did i wrong?
Second: I copied at first the original bonus, and then added the additional limited bonus. Is it necessary to copy the original?
Edit: I disabled all mods except WoG and my new one. Same result.