| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- {
- "type" : "object",
- "$schema" : "http://json-schema.org/draft-04/schema",
- "title" : "VCMI bonus type format",
- "description" : "Definition of bonus types",
- "required" : [],
- "additionalProperties" : false,
- "properties" : {
- "hidden" : {
- "type" : "boolean",
- "description" : "If set to true, all instances of this bonus will be hidden in UI"
- },
- "creatureNature" : {
- "type" : "boolean",
- "description" : "If set to true, this bonus will be considered 'creature nature' bonus, and such creature won't be automatically granted LIVING bonus"
- },
-
- "blockDescriptionPropagation" : {
- "type" : "boolean",
- "description" : "If set to true, this ability description will not be displayed if a creature receives it by propagation"
- },
- "description" : {
- "type" : "string"
- },
- "subtypeDescriptions" : {
- "type" : "object",
- "description" : "Custom description string for bonus subtype",
- "additionalProperties" : {
- "type" : "string"
- }
- },
- "valueDescriptions" : {
- "type" : "object",
- "description" : "Custom description string for bonus value",
- "additionalProperties" : {
- "type" : "string"
- }
- },
- "graphics" : {
- "type" : "object",
- "additionalProperties" : false,
- "properties" : {
- "icon" : {
- "type" : "string",
- "description" : "Resourse path of generic icon for this bonus",
- "format" : "imageFile"
- },
-
- "subtypeIcons" : {
- "type" : "object",
- "description" : "Resourse path of icon for this bonus subtype",
- "additionalProperties" : {
- "type" : "string",
- "format" : "imageFile"
- }
- },
-
- "valueIcons" : {
- "type" : "object",
- "description" : "Resourse path of icon for this bonus value",
- "additionalProperties" : {
- "type" : "string",
- "format" : "imageFile"
- }
- }
- }
- }
- }
- }
|