1
0
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:
Henning Koehler
2017-08-30 16:23:03 +12:00
parent aadb5d93f7
commit 36d671b093
4 changed files with 925 additions and 925 deletions

View File

@ -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"
} }
} }