Flattened 1.16.0

This commit is contained in:
DaanV2
2021-10-08 12:54:09 +02:00
parent 1358630537
commit 1dfd97d95d
185 changed files with 1275 additions and 5992 deletions

View File

@@ -1,16 +1,17 @@
{
"$id": "blockception.minecraft.behavior.entities.1.13.0.minecraft.environment_sensor",
"title": "Environment Sensor 1.13.0",
"$id": "blockception.minecraft.behavior.entities.1.16.0.minecraft.environment_sensor",
"title": "Environment Sensor",
"description": "Creates a trigger based on environment conditions.",
"type": "object",
"additionalProperties": false,
"definitions": { "trigger": { "$ref": "../types/trigger.json" } },
"properties": {
"triggers": {
"description": "The list of triggers that fire when the environment conditions match the given filter criteria.",
"title": "Triggers",
"anyOf": [
{ "type": "array", "items": { "$ref": "../types/trigger.json" } },
{ "type": "object", "$ref": "../types/trigger.json" }
"oneOf": [
{ "type": "array", "items": { "$ref": "#/definitions/trigger" } },
{ "type": "object", "$ref": "#/definitions/trigger" }
]
}
}