-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
Copy pathnations.json
68 lines (62 loc) · 2.53 KB
/
nations.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"$schema": "http://json-schema.org/draft-07/schema",
"type": "array",
"items": {
"type": "object",
"properties": {
"name": { "type": "string" },
"leaderName": { "type": "string" },
"adjective": {
"type": "array",
"items": { "type": "string" },
"uniqueItems": true,
"description": "Currently not in use"
},
"style": { "type": "string" },
"cityStateType": { "type": "string" },
"outerColor": { "$ref": "https://raw.githubusercontent.com/yairm210/Unciv/master/docs/Modders/schemas/color.json" },
"innerColor": { "$ref": "https://raw.githubusercontent.com/yairm210/Unciv/master/docs/Modders/schemas/color.json" },
"preferredVictoryType": { "type": "string" },
"startBias": {
"type": "array",
"items": { "type": "string" },
"uniqueItems": true,
"description": "Types of tiles where the civ will be more likely to start"
},
"uniques": { "$ref": "https://raw.githubusercontent.com/yairm210/Unciv/master/docs/Modders/schemas/uniques.json" },
// All of these are cosmetic
"introduction": { "type": "string" },
"tradeRequest": { "type": "string" },
"neutralHello": { "type": "string" },
"hateHello": { "type": "string" },
"declaringWar": { "type": "string" },
"attacked": { "type": "string" },
"defeated": { "type": "string" },
"startIntroPart1": { "type": "string" },
"startIntroPart2": { "type": "string" },
"goldenAgeName": { "type": "string" },
"enteredGoldenAge": { "type": "string" },
"cities": {
"type": "array",
"items": { "type": "string" },
"uniqueItems": true,
},
"spyNames": {
"type": "array",
"items": { "type": "string" },
"uniqueItems": true,
},
"favoredReligion": { "type": "string" },
"uniqueName": { "type": "string" },
"uniqueText": {
"type": "string",
"description": "Freeform text that will be shown to users, overriding the list of uniques."
},
"civilopediaText": { "$ref": "https://raw.githubusercontent.com/yairm210/Unciv/master/docs/Modders/schemas/civilopediaText.json" }
},
"required": [
"name", "outerColor", "cities"
],
"additionalProperties": false
}
}