forked from liza/Questionable
60 lines
1.2 KiB
JSON
60 lines
1.2 KiB
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "/liza/Questionable/raw/branch/master/Questionable.Model/common-completionflags.json",
|
|
"type": "array",
|
|
"description": "Quest Variables that dictate whether or not this step is skipped: null is don't check, positive values need to be set, negative values need to be unset",
|
|
"items": {
|
|
"oneOf": [
|
|
{
|
|
"type": "object",
|
|
"properties": {
|
|
"High": {
|
|
"type": [
|
|
"number",
|
|
"null"
|
|
],
|
|
"minimum": 0,
|
|
"maximum": 15
|
|
},
|
|
"Low": {
|
|
"type": [
|
|
"number",
|
|
"null"
|
|
],
|
|
"minimum": 0,
|
|
"maximum": 15
|
|
},
|
|
"Negative": {
|
|
"type": "boolean"
|
|
},
|
|
"Mode": {
|
|
"type": "string",
|
|
"enum": [
|
|
"Bitwise",
|
|
"Exact"
|
|
]
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"type": "number",
|
|
"enum": [
|
|
1,
|
|
2,
|
|
4,
|
|
8,
|
|
16,
|
|
32,
|
|
64,
|
|
128
|
|
]
|
|
},
|
|
{
|
|
"type": "null"
|
|
}
|
|
]
|
|
},
|
|
"minItems": 6,
|
|
"maxItems": 6
|
|
}
|