mirror of
https://github.com/yairm210/Unciv.git
synced 2025-01-09 23:07:35 +07:00
39 lines
1.2 KiB
JSON
39 lines
1.2 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema",
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"properties": {
|
|
"name": { "type": "string" },
|
|
"terrainsCanBeBuiltOn": {
|
|
"type": "array",
|
|
"items": { "type": "string" },
|
|
"uniqueItems": true
|
|
},
|
|
"turnsToBuild": { "type": "integer" },
|
|
"techRequired": { "type": "string" },
|
|
"uniqueTo": { "type": "string" },
|
|
"shortcutKey": {
|
|
"type": "string",
|
|
"maxLength": 1
|
|
},
|
|
|
|
"production": { "type": "number" },
|
|
"food": { "type": "number" },
|
|
"gold": { "type": "number" },
|
|
"science": { "type": "number" },
|
|
"culture": { "type": "number" },
|
|
"happiness": { "type": "number" },
|
|
"faith": { "type": "number" },
|
|
|
|
"uniques": { "$ref": "https://raw.githubusercontent.com/yairm210/Unciv/master/docs/Modders/schemas/uniques.json" },
|
|
|
|
"civilopediaText": { "$ref": "https://raw.githubusercontent.com/yairm210/Unciv/master/docs/Modders/schemas/civilopediaText.json" }
|
|
},
|
|
"required": [
|
|
"name",
|
|
],
|
|
"additionalProperties": false
|
|
}
|
|
}
|