1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-24 22:14:36 +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",
"$schema": "http://json-schema.org/draft-04/schema",
"type" : "object",
"$schema" : "http://json-schema.org/draft-04/schema",
"title" : "VCMI skill format",
"description" : "Format used to replace bonuses provided by secondary skills in VCMI",
"definitions" : {
"skillBonus":{
"type": "object",
"description": "Set of bonuses provided by skill at given level",
"skillBonus" : {
"type" : "object",
"description" : "Set of bonuses provided by skill at given level",
"required" : ["effects"],
"properties": {
"description": {
"type": "string",
"description": "localizable description"
"properties" : {
"description" : {
"type" : "string",
"description" : "localizable description"
},
"effects": {
"type": "object",
"effects" : {
"type" : "object",
"additionalProperties" : {
"$ref" : "vcmi:bonus"
}
@ -28,19 +28,19 @@
"required" : ["basic", "advanced", "expert"],
"properties": {
"base":{
"type": "object",
"description": "will be merged with all levels",
"additionalProperties": true
"properties" : {
"base" : {
"type" : "object",
"description" : "will be merged with all levels",
"additionalProperties" : true
},
"basic":{
"basic" : {
"$ref" : "#/definitions/skillBonus"
},
"advanced":{
"advanced" : {
"$ref" : "#/definitions/skillBonus"
},
"expert":{
"expert" : {
"$ref" : "#/definitions/skillBonus"
}
}