| 123456789101112131415161718192021222324252627282930313233343536373839 |
- {
- "allOf": [
- {"$ref": "file:enchantable.json#"},
- {
- "dependencies":{
- "secondaryCriticalDamage": ["secondaryDamage"]
- },
- "properties": {
- "damage": {"type": "string"},
- "secondaryDamage": {"type": "string"},
- "criticalThreat": {"type": "integer", "maximum": 20},
- "criticalDamage": {"type": "integer", "minimum": 2},
- "secondaryCriticalDamage": {"type": "integer", "minimum": 2},
- "range": {
- "oneOf": [
- {"type": "string", "const":"Melee"},
- {"$ref": "file:common.json#/definitions/distance"}
- ]
- },
- "type": {
- "type": "string",
- "enum": [
- "Slashing",
- "Piercing",
- "Bludgeoning"
- ]
- }
- },
- "required": [
- "damage",
- "type",
- "range",
- "criticalThreat",
- "criticalDamage"
- ],
- "type": "object"
- }
- ]
- }
|