script.json 448 B

123456789101112131415161718
  1. {
  2. "type" : "object",
  3. "$schema" : "http://json-schema.org/draft-04/schema",
  4. "title" : "VCMI script format",
  5. "description" : "Format used to configure script environment",
  6. "required" : ["source"],
  7. "properties" : {
  8. "source" : {
  9. "type" : "string",
  10. "description" : "Full VFS path to script source (extension required)"
  11. },
  12. "implements" : {
  13. "type" : "string",
  14. "enum" : ["ANYTHING", "BATTLE_EFFECT"],
  15. "description" : ""
  16. }
  17. }
  18. }