1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-11-24 08:32:34 +02:00
vcmi/config/schemas/river.json
2023-05-19 21:14:01 +03:00

37 lines
850 B
JSON

{
"type" : "object",
"$schema" : "http://json-schema.org/draft-04/schema",
"title" : "VCMI river format",
"description" : "Format used to define new rivers in VCMI",
"required" : [ "shortIdentifier", "text", "tilesFilename", "delta" ],
"additionalProperties" : false,
"properties" : {
"shortIdentifier" :
{
"type" : "string",
"description" : "Two-letters unique indentifier for this road. Used in map format"
},
"text" :
{
"type" : "string",
"description" : "Human-readable name of the river"
},
"tilesFilename" :
{
"type" : "string",
"description" : "Name of file with river graphics",
"format" : "defFile"
},
"delta" :
{
"type" : "string",
"description" : "Name of file with river delta graphics"
},
"index" :
{
"type" : "number",
"description" : "Internal, do not use"
}
}
}