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

19 lines
448 B
JSON

{
"type" : "object",
"$schema" : "http://json-schema.org/draft-04/schema",
"title" : "VCMI script format",
"description" : "Format used to configure script environment",
"required" : ["source"],
"properties" : {
"source" : {
"type" : "string",
"description" : "Full VFS path to script source (extension required)"
},
"implements" : {
"type" : "string",
"enum" : ["ANYTHING", "BATTLE_EFFECT"],
"description" : ""
}
}
}