mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-04 09:42:40 +02:00
2e6cae80a9
Artifact Schema rearranged Battlefield schema rearanged Bonus schema rearranged Faction Schema rearanged Hero Schema rearranged HeroClass schema rearranged MapHeader schema updated, something fishy in events Mod schema updated. Settings not complete Object schema rearranged Object schema rearranged object type schema rearranged obstacles schema rearranged Rivers schema updated roads schema updated script schema updated skill schema updated spell schema updated template schema update terrain schemas updated town buildings schema update town siege schema updated town structure schema updated
19 lines
442 B
JSON
19 lines
442 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": ""
|
|
}
|
|
}
|
|
}
|