This commit is contained in:
DaanV2
2021-06-08 17:06:03 +02:00
parent ff3344cff0
commit cf2fa6212a
38 changed files with 27447 additions and 44 deletions

View File

@@ -26,7 +26,7 @@
"big_wave_speed": {
"type": "number",
"default": 10,
"description": "Multiplier for the speed to make a big wave. Triggered depending on `big_wave_probability'.",
"description": "Multiplier for the speed to make a big wave. Triggered depending on `big_wave_probability`.",
"title": "Big Wave Speed"
},
"drag_down_on_buoyancy_removed": {

View File

@@ -26,7 +26,7 @@
"big_wave_speed": {
"type": "number",
"default": 10,
"description": "Multiplier for the speed to make a big wave. Triggered depending on `big_wave_probability'.",
"description": "Multiplier for the speed to make a big wave. Triggered depending on `big_wave_probability`.",
"title": "Big Wave Speed"
},
"drag_down_on_buoyancy_removed": {

View File

@@ -12,7 +12,7 @@
},
"operator": {
"$ref": "./types/operator.json",
"description": "(Optional) The comparison to apply with `value'.",
"description": "(Optional) The comparison to apply with `value`.",
"default": "equals",
"title": "Operator"
},

View File

@@ -6,7 +6,7 @@
"required": ["value"],
"properties": {
"test": { "type": "string", "title": "Test Property", "description": "Compares the distance to the nearest Player with a float value." },
"operator": { "$ref": "./types/operator.json", "description": "(Optional) The comparison to apply with `value'.", "title": "Operator" },
"operator": { "$ref": "./types/operator.json", "description": "(Optional) The comparison to apply with `value`.", "title": "Operator" },
"subject": { "$ref": "./types/subject.json", "description": "(Optional) The subject of this filter test.", "title": "Subject" },
"value": { "type": "number", "description": "(Required) A floating point value.", "title": "Value" }
}

View File

@@ -11,7 +11,7 @@
},
"operator": {
"$ref": "./types/operator.json",
"description": "(Optional) The comparison to apply with `value'.",
"description": "(Optional) The comparison to apply with `value`.",
"default": "equals",
"title": "Operator"
},

View File

@@ -2,7 +2,7 @@
"$id": "blockception.minecraft.behavior.entities.filters.operator",
"title": "Filters Operator",
"type": "string",
"description": "The comparison to apply with `value'.",
"description": "The comparison to apply with `value`.",
"default": "equals",
"enum": ["!=", "<", "<=", "<>", "=", "==", ">", ">=", "equals", "not"]
}