mirror of
https://github.com/yairm210/Unciv.git
synced 2025-01-09 14:56:47 +07:00
33 lines
1.0 KiB
JSON
33 lines
1.0 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema",
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"properties": {
|
|
"name": { "type": "string" },
|
|
"text": { "type": "string" },
|
|
"choices": {
|
|
"type": "array",
|
|
"items": {
|
|
"properties": {
|
|
"text": { "type": "string" },
|
|
"triggeredUniques": {
|
|
"$ref": "https://raw.githubusercontent.com/yairm210/Unciv/master/docs/Modders/schemas/uniques.json",
|
|
"minItems": 1
|
|
},
|
|
"conditions": {
|
|
"$ref": "https://raw.githubusercontent.com/yairm210/Unciv/master/docs/Modders/schemas/uniques.json"
|
|
}
|
|
},
|
|
"required": ["text", "triggeredUniques"],
|
|
"additionalProperties": false
|
|
}
|
|
}
|
|
},
|
|
"required": [
|
|
"name"
|
|
],
|
|
"additionalProperties": false
|
|
}
|
|
}
|