2013-04-02 20:06:43 +03:00
|
|
|
{
|
|
|
|
"type":"object",
|
|
|
|
"$schema": "http://json-schema.org/draft-04/schema",
|
|
|
|
"title" : "VCMI town structures format",
|
|
|
|
"description" : "Format used to define structures visible on town screen in VCMI",
|
|
|
|
"required": [ "animation", "x", "y"],
|
2013-04-11 22:24:14 +03:00
|
|
|
"additionalProperties" : false,
|
2013-04-02 20:06:43 +03:00
|
|
|
"properties":{
|
|
|
|
"animation": {
|
|
|
|
"type":"string",
|
2013-10-26 22:33:34 +03:00
|
|
|
"description" : "Main animation file for this building",
|
|
|
|
"format" : "animationFile"
|
2013-04-02 20:06:43 +03:00
|
|
|
},
|
|
|
|
"area": {
|
|
|
|
"type":"string",
|
2013-10-26 22:33:34 +03:00
|
|
|
"description" : "Area that indicate when building is selected. Must be 8-bit image",
|
|
|
|
"format" : "imageFile"
|
2013-04-02 20:06:43 +03:00
|
|
|
},
|
|
|
|
"border": {
|
|
|
|
"type":"string",
|
2013-10-26 22:33:34 +03:00
|
|
|
"description" : "Golden border around building, displayed when building is selected",
|
|
|
|
"format" : "imageFile"
|
2013-04-02 20:06:43 +03:00
|
|
|
},
|
|
|
|
"builds": {
|
2013-12-04 13:36:39 +03:00
|
|
|
"type" : "string",
|
2013-04-02 20:06:43 +03:00
|
|
|
"description" : ""
|
|
|
|
},
|
|
|
|
"hidden": {
|
|
|
|
"type":"boolean",
|
|
|
|
"description" : "If upgrade, this building will replace parent animation but will not alter its behaviour"
|
|
|
|
},
|
|
|
|
"x": {
|
|
|
|
"type":"number",
|
|
|
|
"description" : "Position on screen"
|
|
|
|
},
|
|
|
|
"y": {
|
|
|
|
"type":"number",
|
|
|
|
"description" : "Position on screen"
|
|
|
|
},
|
|
|
|
"z": {
|
|
|
|
"type":"number",
|
|
|
|
"description" : "Position on screen. Buildings with higher value will be drawn on top of other buildings"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|