| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- {
- "type" : "object",
- "$schema" : "http://json-schema.org/draft-04/schema",
- "title" : "VCMI map header format",
- "description" : "Part of map in json format, defines core settings of the map",
- "required" : [ "victoryIconIndex", "victoryString", "defeatIconIndex", "defeatString" ],
- "additionalProperties" : false,
- "properties" : {
- "victoryIconIndex" : {
- "type" : "number"
- },
- "victoryString" : {
- "type" : "string"
- },
- "defeatIconIndex" : {
- "type" : "number"
- },
- "defeatString" : {
- "type" : "string"
- },
- "triggeredEvents" : {
- "type" : "object",
- "additionalProperties" : {
- "type" : "object",
- "additionalProperties" : false,
- "properties" : {
- "required" : [ "condition", "message", "effect" ],
- "condition" : { "type" : "array" },
- "description" : { "type" : "string" },
- "message" : { "type" : "string" },
- "effect" : {
- "type" : "object",
- "additionalProperties" : false,
- "required" : [ "type", "messageToSend" ],
- "properties" : {
- "type" : { "type" : "string" },
- "messageToSend" : { "type" : "string" }
- }
- }
- }
- }
- }
- }
- }
|