1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-03-21 21:17:49 +02:00

Fix broken skill schema

This commit is contained in:
krs 2023-09-15 22:03:23 +03:00
parent 2d6ef9049a
commit ffaf4c5b01

View File

@ -63,19 +63,18 @@
}, },
"gainChance" : { "gainChance" : {
"description" : "Chance for the skill to be offered on level-up (heroClass may override)", "description" : "Chance for the skill to be offered on level-up (heroClass may override)",
"type" : "object", "type" : "object",
"required" : ["might", "magic"], "required" : ["might", "magic"],
"properties" : { "properties" : {
"might" : { "might" : {
"type" : "number", "type" : "number",
"description" : "Chance for hero classes with might affinity" "description" : "Chance for hero classes with might affinity"
}, },
"magic" : { "magic" : {
"type" : "number", "type" : "number",
"description" : "Chance for hero classes with magic affinity" "description" : "Chance for hero classes with magic affinity"
}
} }
] }
}, },
"base" : { "base" : {
"type" : "object", "type" : "object",