1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-11-06 09:09:40 +02:00

made artillery bonus-based; supports multiple bonus shots

This commit is contained in:
Henning Koehler
2017-08-27 21:05:17 +12:00
parent 8bdb8f01ca
commit 7e5c1ec7f8
3 changed files with 92 additions and 14 deletions

View File

@@ -666,5 +666,81 @@
}
]
}
},
"tactics" : {
"basic" : {
"description" : "",
"effects" : [
{
"subtype" : "skill.tactics",
"type" : "SECONDARY_SKILL_PREMY",
"val" : 3,
"valueType" : "BASE_NUMBER"
}
]
},
"advanced" : {
"description" : "",
"effects" : [
{
"subtype" : "skill.tactics",
"type" : "SECONDARY_SKILL_PREMY",
"val" : 5,
"valueType" : "BASE_NUMBER"
}
]
},
"expert" : {
"description" : "",
"effects" : [
{
"subtype" : "skill.tactics",
"type" : "SECONDARY_SKILL_PREMY",
"val" : 7,
"valueType" : "BASE_NUMBER"
}
]
}
},
"artillery" : {
"basic" : {
"description" : "",
"effects" : [
{
"subtype" : "skill.artillery",
"type" : "SECONDARY_SKILL_PREMY",
"val" : 50,
"valueType" : "BASE_NUMBER"
}
]
},
"advanced" : {
"description" : "",
"effects" : [
{
"subtype" : "skill.artillery",
"type" : "SECONDARY_SKILL_PREMY",
"val" : 75,
"valueType" : "BASE_NUMBER"
},
{
"subtype" : "skill.artillery",
"type" : "SECONDARY_SKILL_VAL2",
"val" : 1,
"valueType" : "BASE_NUMBER"
}
]
},
"expert" : {
"description" : "",
"effects" : [
{
"subtype" : "skill.artillery",
"type" : "SECONDARY_SKILL_PREMY",
"val" : 100,
"valueType" : "BASE_NUMBER"
}
]
}
}
}