-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimport_schema.json
More file actions
173 lines (173 loc) · 7.11 KB
/
import_schema.json
File metadata and controls
173 lines (173 loc) · 7.11 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
{
"type": "object",
"properties": {
"name": {"type": ["string", "null"]},
"ship_class": {"type": "string"},
"size": {"type": "string"},
"TAM": {"type": "number"},
"mass": {"type": "number"},
"armor_roll": {"type": "string"},
"MDPA": {"type": "number"},
"crew_quality": {"type": "string"},
"base_pv": {"type": "number"},
"final_pv": {"type": "number"},
"max_stress": {"type": "number"},
"armor": {
"type": "object",
"properties": {
"outer_hull": {
"type": "object",
"properties": {
"strength": {"type": "string"},
"mass": {"type": "number"},
"pv": {"type": "number"}
},
"required": ["strength", "mass", "pv"]
},
"inner_hull": {
"type": "object",
"properties": {
"strength": {"type": "string"},
"mass": {"type": "number"},
"pv": {"type": "number"}
},
"required": ["strength", "mass", "pv"]
},
"critical_threshold": {"type": "number"}
},
"required": ["outer_hull", "inner_hull", "critical_threshold"]
},
"propulsion": {
"type": "object",
"properties": {
"thrust_points": {"type": "number"},
"max_thrust": {"type": "number"},
"propulsion_mass": {"type": "number"},
"propulsion_pv": {"type": "number"}
},
"required": ["thrust_points", "max_thrust", "propulsion_mass", "propulsion_pv"]
},
"equipment": {
"type": "object",
"properties": {
"equipment_items": {
"type": "array",
"minItems": 0,
"items": {
"type": "object",
"properties": {
"name": {"type": "string"},
"description": {"type": "string"},
"mass": {"type": "integer"},
"pv": {"type": "integer"}
},
"required": ["name", "description", "mass", "pv"]
}
},
"total_equipment_mass": {"type": "number"},
"total_equipment_pv": {"type": "number"}
},
"required": ["equipment_items"]
},
"weapons": {
"type": "object",
"properties": {
"front_arc_weapons": {
"type": "array",
"minItems": 0,
"items": {
"type": "object",
"properties": {
"id": {"type": "integer"},
"name": {"type": ["string", "null"]},
"max_dmg": {"type": "integer"},
"mass": {"type": "integer"},
"pv": {"type": "integer"},
"attack": {"type": "integer"},
"damage": {"type": "integer"},
"range": {"type": "string"},
"special": {"type": ["string", "null"]}
},
"required": ["id", "name", "max_dmg", "mass", "pv", "attack", "damage", "range", "special"]
}
},
"total_front_arc_mass": {"type": "number"},
"total_front_arc_pv": {"type": "number"},
"total_front_arc_max_dmg": {"type": "number"},
"rear_arc_weapons": {
"type": "array",
"minItems": 0,
"items": {
"type": "object",
"properties": {
"id": {"type": "integer"},
"name": {"type": ["string", "null"]},
"max_dmg": {"type": "integer"},
"mass": {"type": "integer"},
"pv": {"type": "integer"},
"attack": {"type": "integer"},
"damage": {"type": "integer"},
"range": {"type": "string"},
"special": {"type": ["string", "null"]}
},
"required": ["id", "name", "max_dmg", "mass", "pv", "attack", "damage", "range", "special"]
}
},
"total_rear_arc_mass": {"type": "number"},
"total_rear_arc_pv": {"type": "number"},
"total_rear_arc_max_dmg": {"type": "number"},
"right_arc_weapons": {
"type": "array",
"minItems": 0,
"items": {
"type": "object",
"properties": {
"id": {"type": "integer"},
"name": {"type": ["string", "null"]},
"max_dmg": {"type": "integer"},
"mass": {"type": "integer"},
"pv": {"type": "integer"},
"attack": {"type": "integer"},
"damage": {"type": "integer"},
"range": {"type": "string"},
"special": {"type": ["string", "null"]}
},
"required": ["id", "name", "max_dmg", "mass", "pv", "attack", "damage", "range", "special"]
}
},
"total_right_arc_mass": {"type": "number"},
"total_right_arc_pv": {"type": "number"},
"total_right_arc_max_dmg": {"type": "number"},
"left_arc_weapons": {
"type": "array",
"minItems": 0,
"items": {
"type": "object",
"properties": {
"id": {"type": "integer"},
"name": {"type": ["string", "null"]},
"max_dmg": {"type": "integer"},
"mass": {"type": "integer"},
"pv": {"type": "integer"},
"attack": {"type": "integer"},
"damage": {"type": "integer"},
"range": {"type": "string"},
"special": {"type": ["string", "null"]}
},
"required": ["id", "name", "max_dmg", "mass", "pv", "attack", "damage", "range", "special"]
}
},
"total_left_arc_mass": {"type": "number"},
"total_left_arc_pv": {"type": "number"},
"total_left_arc_max_dmg": {"type": "number"}
},
"required": ["front_arc_weapons", "total_front_arc_mass", "total_front_arc_pv", "total_front_arc_max_dmg",
"rear_arc_weapons", "total_rear_arc_mass", "total_rear_arc_pv", "total_rear_arc_max_dmg",
"right_arc_weapons", "total_right_arc_mass", "total_right_arc_pv", "total_right_arc_max_dmg",
"left_arc_weapons", "total_left_arc_mass", "total_left_arc_pv", "total_left_arc_max_dmg"]
}
},
"required": ["name", "ship_class", "size", "TAM", "mass", "armor_roll",
"MDPA", "crew_quality", "base_pv", "final_pv", "max_stress",
"armor", "propulsion", "equipment", "weapons"]
}