Adds validation for evolutions
This commit is contained in:
parent
ea3e869d3e
commit
5ec731fd5f
|
@ -256,17 +256,87 @@
|
||||||
"type": "array",
|
"type": "array",
|
||||||
"items": {
|
"items": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
|
"required": ["species", "method", "data"],
|
||||||
"properties": {
|
"properties": {
|
||||||
"species": {
|
"species": {
|
||||||
"type": "string"
|
"type": "string"
|
||||||
},
|
},
|
||||||
"method": {
|
"method": {
|
||||||
"type": "string"
|
"type": "string",
|
||||||
},
|
"enum": [
|
||||||
"data": {
|
"level",
|
||||||
"type": "string"
|
"item",
|
||||||
|
"itemmale",
|
||||||
|
"itemfemale",
|
||||||
|
"holditem",
|
||||||
|
"dayholditem",
|
||||||
|
"nightholditem",
|
||||||
|
"hasmove",
|
||||||
|
"happiness",
|
||||||
|
"happinessday",
|
||||||
|
"happinessnight",
|
||||||
|
"levelfemale",
|
||||||
|
"levelmale",
|
||||||
|
"trade",
|
||||||
|
"tradespecies",
|
||||||
|
"tradeitem",
|
||||||
|
"location",
|
||||||
|
"custom"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
"anyOf": [
|
||||||
|
{
|
||||||
|
"properties": {
|
||||||
|
"method": {
|
||||||
|
"enum": [
|
||||||
|
"level",
|
||||||
|
"levelfemale",
|
||||||
|
"levelmale",
|
||||||
|
"happiness",
|
||||||
|
"happinessday",
|
||||||
|
"happinessnight"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"data": {
|
||||||
|
"type": "integer"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"properties": {
|
||||||
|
"method": {
|
||||||
|
"enum": [
|
||||||
|
"item",
|
||||||
|
"itemmale",
|
||||||
|
"itemfemale",
|
||||||
|
"holditem",
|
||||||
|
"dayholditem",
|
||||||
|
"nightholditem",
|
||||||
|
"hasmove",
|
||||||
|
"trade",
|
||||||
|
"tradespecies",
|
||||||
|
"tradeitem",
|
||||||
|
"location"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"data": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"properties": {
|
||||||
|
"method": { "enum": ["custom"] },
|
||||||
|
"data": {
|
||||||
|
"type": "array",
|
||||||
|
"items": [
|
||||||
|
{"type": "string", "description": "Method identifier"}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue