mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-24 08:32:34 +02:00
19 lines
448 B
JSON
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" : ""
|
|
}
|
|
}
|
|
}
|