mirror of
https://github.com/vcmi/vcmi.git
synced 2025-07-15 01:24:45 +02:00
changed indentation from spaces to tabs
This commit is contained in:
@ -1,24 +1,24 @@
|
|||||||
{
|
{
|
||||||
|
|
||||||
"type":"object",
|
"type" : "object",
|
||||||
"$schema": "http://json-schema.org/draft-04/schema",
|
"$schema" : "http://json-schema.org/draft-04/schema",
|
||||||
|
|
||||||
"title" : "VCMI skill format",
|
"title" : "VCMI skill format",
|
||||||
"description" : "Format used to replace bonuses provided by secondary skills in VCMI",
|
"description" : "Format used to replace bonuses provided by secondary skills in VCMI",
|
||||||
|
|
||||||
"definitions" : {
|
"definitions" : {
|
||||||
|
|
||||||
"skillBonus":{
|
"skillBonus" : {
|
||||||
"type": "object",
|
"type" : "object",
|
||||||
"description": "Set of bonuses provided by skill at given level",
|
"description" : "Set of bonuses provided by skill at given level",
|
||||||
"required" : ["effects"],
|
"required" : ["effects"],
|
||||||
"properties": {
|
"properties" : {
|
||||||
"description": {
|
"description" : {
|
||||||
"type": "string",
|
"type" : "string",
|
||||||
"description": "localizable description"
|
"description" : "localizable description"
|
||||||
},
|
},
|
||||||
"effects": {
|
"effects" : {
|
||||||
"type": "object",
|
"type" : "object",
|
||||||
"additionalProperties" : {
|
"additionalProperties" : {
|
||||||
"$ref" : "vcmi:bonus"
|
"$ref" : "vcmi:bonus"
|
||||||
}
|
}
|
||||||
@ -28,19 +28,19 @@
|
|||||||
|
|
||||||
"required" : ["basic", "advanced", "expert"],
|
"required" : ["basic", "advanced", "expert"],
|
||||||
|
|
||||||
"properties": {
|
"properties" : {
|
||||||
"base":{
|
"base" : {
|
||||||
"type": "object",
|
"type" : "object",
|
||||||
"description": "will be merged with all levels",
|
"description" : "will be merged with all levels",
|
||||||
"additionalProperties": true
|
"additionalProperties" : true
|
||||||
},
|
},
|
||||||
"basic":{
|
"basic" : {
|
||||||
"$ref" : "#/definitions/skillBonus"
|
"$ref" : "#/definitions/skillBonus"
|
||||||
},
|
},
|
||||||
"advanced":{
|
"advanced" : {
|
||||||
"$ref" : "#/definitions/skillBonus"
|
"$ref" : "#/definitions/skillBonus"
|
||||||
},
|
},
|
||||||
"expert":{
|
"expert" : {
|
||||||
"$ref" : "#/definitions/skillBonus"
|
"$ref" : "#/definitions/skillBonus"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user