Difference between revisions of "User:AVS/Secondary skill format"
From VCMI Project Wiki
< User:AVS
(→Format) |
|||
Line 1: | Line 1: | ||
+ | = Questions = | ||
+ | |||
+ | * How skill disabling ("skillName": null) should be handled, especially in case of starting hero skill? | ||
+ | |||
+ | * Should default values (with no skill level) be configured too? | ||
+ | |||
= Format = | = Format = | ||
<syntaxhighlight lang="javascript"> | <syntaxhighlight lang="javascript"> |
Revision as of 16:37, 7 January 2014
Questions
- How skill disabling ("skillName": null) should be handled, especially in case of starting hero skill?
- Should default values (with no skill level) be configured too?
Format
{
"skillName":
{
//required | object
"levels":{
"basic":
{
//required at least one(???), any name | bonus format | allows overriding by name
"firstBonus":{[bonus format]},
"secondBonus":{[bonus format]}
},
"advanced":
{
},
"expert":
{
}
}
}
}