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

57 lines
1.2 KiB
JSON

{
"type" : "object",
"$schema" : "http://json-schema.org/draft-04/schema",
"title" : "VCMI map object type format",
"description" : "Description of map object type, used only as sub-schema of object",
"required" : [ ],
"additionalProperties" : true, // may have type-dependant properties
"properties" : {
"index" : {
"type" : "number"
},
"aiValue" : {
"type" : "number"
},
"base" : {
"type" : "object"
},
"templates" : {
"type" : "object",
"additionalProperties" : {
"$ref" : "objectTemplate.json"
}
},
"sounds" : {
"type" : "object",
"additionalProperties" : false,
"description" : "Sounds used by this object",
"properties" : {
"ambient" : {
"type" : "array",
"description" : "Background sound of an object",
"items" : {
"type" : "string",
"format" : "soundFile"
}
},
"visit" : {
"type" : "array",
"description" : "Sound that played on object visit",
"items" : {
"type" : "string",
"format" : "soundFile"
}
},
"removal" : {
"type" : "array",
"description" : "Sound that played on object removal",
"items" : {
"type" : "string",
"format" : "soundFile"
}
}
}
}
}
}