Filled in descriptions
This commit is contained in:
File diff suppressed because one or more lines are too long
@@ -2,7 +2,8 @@
|
|||||||
"$schema": "http://json-schema.org/draft-07/schema",
|
"$schema": "http://json-schema.org/draft-07/schema",
|
||||||
"$id": "blockception.minecraft.behavior.entities.events1.10.0",
|
"$id": "blockception.minecraft.behavior.entities.events1.10.0",
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"title": "Entity 1.10.0",
|
"title": "Events 1.10.0",
|
||||||
|
"description": "Events for entities 1.10.0",
|
||||||
"definitions": {
|
"definitions": {
|
||||||
"addremove": {
|
"addremove": {
|
||||||
"additionalProperties": false,
|
"additionalProperties": false,
|
||||||
@@ -14,7 +15,7 @@
|
|||||||
"title": "Component Groups Schema",
|
"title": "Component Groups Schema",
|
||||||
"description": "The components groups to add or remove",
|
"description": "The components groups to add or remove",
|
||||||
"type": "array",
|
"type": "array",
|
||||||
"items": { "type": "string", "description": "TODO description: component groups", "title": "Component Groups" }
|
"items": { "type": "string", "description": "A reference to a component group", "title": "Component Groups" }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -22,15 +23,15 @@
|
|||||||
"additionalProperties": false,
|
"additionalProperties": false,
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
"add": { "$ref": "#/definitions/addremove", "description": "TODO description: add", "title": "Add" },
|
"add": { "$ref": "#/definitions/addremove", "description": "What gets added when the event gets triggered", "title": "Add" },
|
||||||
"remove": { "$ref": "#/definitions/addremove", "description": "TODO description: remove", "title": "Remove" },
|
"remove": { "$ref": "#/definitions/addremove", "description": "What gets removed when the event gets triggered", "title": "Remove" },
|
||||||
"randomize": {
|
"randomize": {
|
||||||
"type": "array",
|
"type": "array",
|
||||||
"items": {
|
"items": {
|
||||||
"required": ["weight"],
|
"required": ["weight"],
|
||||||
"properties": {
|
"properties": {
|
||||||
"add": { "$ref": "#/definitions/addremove", "description": "TODO description: add", "title": "Add" },
|
"add": { "$ref": "#/definitions/addremove", "description": "What gets added when the event gets triggered", "title": "Add" },
|
||||||
"remove": { "$ref": "#/definitions/addremove", "description": "TODO description: remove", "title": "Remove" },
|
"remove": { "$ref": "#/definitions/addremove", "description": "What gets removed when the event gets triggered", "title": "Remove" },
|
||||||
"trigger": { "type": "string", "description": "UNDOCUMENTATED", "title": "UNDOCUMENTATED" },
|
"trigger": { "type": "string", "description": "UNDOCUMENTATED", "title": "UNDOCUMENTATED" },
|
||||||
"weight": { "type": "number", "description": "TODO description: weight", "title": "Weight" }
|
"weight": { "type": "number", "description": "TODO description: weight", "title": "Weight" }
|
||||||
},
|
},
|
||||||
@@ -47,8 +48,8 @@
|
|||||||
"title": "Sequence",
|
"title": "Sequence",
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
"add": { "$ref": "#/definitions/addremove", "description": "TODO description: add", "title": "Add" },
|
"add": { "$ref": "#/definitions/addremove", "description": "What gets added when the event gets triggered", "title": "Add" },
|
||||||
"remove": { "$ref": "#/definitions/addremove", "description": "TODO description: remove", "title": "Remove" },
|
"remove": { "$ref": "#/definitions/addremove", "description": "What gets removed when the event gets triggered", "title": "Remove" },
|
||||||
"filters": { "$ref": "./filters.json" }
|
"filters": { "$ref": "./filters.json" }
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -74,6 +75,5 @@
|
|||||||
"minecraft:entity_spawned": { "description": "Event called on an entity that is placed in the level.", "$ref": "#/definitions/event_base", "title": "Entity Spawned" },
|
"minecraft:entity_spawned": { "description": "Event called on an entity that is placed in the level.", "$ref": "#/definitions/event_base", "title": "Entity Spawned" },
|
||||||
"minecraft:on_prime": { "description": "Event called on an entity whose fuse is lit and is ready to explode.", "$ref": "#/definitions/event_base", "title": "On Prime" }
|
"minecraft:on_prime": { "description": "Event called on an entity whose fuse is lit and is ready to explode.", "$ref": "#/definitions/event_base", "title": "On Prime" }
|
||||||
},
|
},
|
||||||
"additionalProperties": { "$ref": "#/definitions/event_base" },
|
"additionalProperties": { "$ref": "#/definitions/event_base" }
|
||||||
"description": "TODO description: "
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -62,20 +62,20 @@
|
|||||||
"$ref": "./components.json",
|
"$ref": "./components.json",
|
||||||
"uniqueItems": true,
|
"uniqueItems": true,
|
||||||
"description": "The components that are added as the foundation of the entity",
|
"description": "The components that are added as the foundation of the entity",
|
||||||
"title": "Component Schema"
|
"title": "Component"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"components": {
|
"components": {
|
||||||
"$ref": "./components.json",
|
"$ref": "./components.json",
|
||||||
"uniqueItems": true,
|
"uniqueItems": true,
|
||||||
"description": "The components that are added as the foundation of the entity",
|
"description": "The components that are added as the foundation of the entity",
|
||||||
"title": "Component Schema"
|
"title": "Component"
|
||||||
},
|
},
|
||||||
"events": {
|
"events": {
|
||||||
"$ref": "./events.json",
|
"$ref": "./events.json",
|
||||||
"uniqueItems": true,
|
"uniqueItems": true,
|
||||||
"description": "The events that the entity can run, these add or remove components_groups",
|
"description": "The events that the entity can run, these add or remove components_groups",
|
||||||
"title": "Events Schema"
|
"title": "Events"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,7 +2,9 @@
|
|||||||
"$schema": "http://json-schema.org/draft-07/schema",
|
"$schema": "http://json-schema.org/draft-07/schema",
|
||||||
"$id": "blockception.minecraft.behavior.entities.events1.11.0",
|
"$id": "blockception.minecraft.behavior.entities.events1.11.0",
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"title": "Entity 1.11.0",
|
"title": "Events 1.11.0",
|
||||||
|
"description": "Events for entities 1.11.0",
|
||||||
|
|
||||||
"definitions": {
|
"definitions": {
|
||||||
"addremove": {
|
"addremove": {
|
||||||
"additionalProperties": false,
|
"additionalProperties": false,
|
||||||
@@ -14,7 +16,7 @@
|
|||||||
"title": "Component Groups Schema",
|
"title": "Component Groups Schema",
|
||||||
"description": "The components groups to add or remove",
|
"description": "The components groups to add or remove",
|
||||||
"type": "array",
|
"type": "array",
|
||||||
"items": { "type": "string", "description": "TODO description: component groups", "title": "Component Groups" }
|
"items": { "type": "string", "description": "A reference to a component group", "title": "Component Groups" }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -22,15 +24,15 @@
|
|||||||
"additionalProperties": false,
|
"additionalProperties": false,
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
"add": { "$ref": "#/definitions/addremove", "description": "TODO description: add", "title": "Add" },
|
"add": { "$ref": "#/definitions/addremove", "description": "What gets added when the event gets triggered", "title": "Add" },
|
||||||
"remove": { "$ref": "#/definitions/addremove", "description": "TODO description: remove", "title": "Remove" },
|
"remove": { "$ref": "#/definitions/addremove", "description": "What gets removed when the event gets triggered", "title": "Remove" },
|
||||||
"randomize": {
|
"randomize": {
|
||||||
"type": "array",
|
"type": "array",
|
||||||
"items": {
|
"items": {
|
||||||
"required": ["weight"],
|
"required": ["weight"],
|
||||||
"properties": {
|
"properties": {
|
||||||
"add": { "$ref": "#/definitions/addremove", "description": "TODO description: add", "title": "Add" },
|
"add": { "$ref": "#/definitions/addremove", "description": "What gets added when the event gets triggered", "title": "Add" },
|
||||||
"remove": { "$ref": "#/definitions/addremove", "description": "TODO description: remove", "title": "Remove" },
|
"remove": { "$ref": "#/definitions/addremove", "description": "What gets removed when the event gets triggered", "title": "Remove" },
|
||||||
"trigger": { "type": "string", "description": "UNDOCUMENTATED", "title": "UNDOCUMENTATED" },
|
"trigger": { "type": "string", "description": "UNDOCUMENTATED", "title": "UNDOCUMENTATED" },
|
||||||
"weight": { "type": "number", "description": "TODO description: weight", "title": "Weight" }
|
"weight": { "type": "number", "description": "TODO description: weight", "title": "Weight" }
|
||||||
},
|
},
|
||||||
@@ -47,8 +49,8 @@
|
|||||||
"title": "Sequence",
|
"title": "Sequence",
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
"add": { "$ref": "#/definitions/addremove", "description": "TODO description: add", "title": "Add" },
|
"add": { "$ref": "#/definitions/addremove", "description": "What gets added when the event gets triggered", "title": "Add" },
|
||||||
"remove": { "$ref": "#/definitions/addremove", "description": "TODO description: remove", "title": "Remove" },
|
"remove": { "$ref": "#/definitions/addremove", "description": "What gets removed when the event gets triggered", "title": "Remove" },
|
||||||
"filters": { "$ref": "./filters.json" }
|
"filters": { "$ref": "./filters.json" }
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -74,6 +76,5 @@
|
|||||||
"minecraft:entity_spawned": { "description": "Event called on an entity that is placed in the level.", "$ref": "#/definitions/event_base", "title": "Entity Spawned" },
|
"minecraft:entity_spawned": { "description": "Event called on an entity that is placed in the level.", "$ref": "#/definitions/event_base", "title": "Entity Spawned" },
|
||||||
"minecraft:on_prime": { "description": "Event called on an entity whose fuse is lit and is ready to explode.", "$ref": "#/definitions/event_base", "title": "On Prime" }
|
"minecraft:on_prime": { "description": "Event called on an entity whose fuse is lit and is ready to explode.", "$ref": "#/definitions/event_base", "title": "On Prime" }
|
||||||
},
|
},
|
||||||
"additionalProperties": { "$ref": "#/definitions/event_base" },
|
"additionalProperties": { "$ref": "#/definitions/event_base" }
|
||||||
"description": "TODO description: "
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -62,20 +62,20 @@
|
|||||||
"$ref": "./components.json",
|
"$ref": "./components.json",
|
||||||
"uniqueItems": true,
|
"uniqueItems": true,
|
||||||
"description": "The components that are added as the foundation of the entity",
|
"description": "The components that are added as the foundation of the entity",
|
||||||
"title": "Component Schema"
|
"title": "Component"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"components": {
|
"components": {
|
||||||
"$ref": "./components.json",
|
"$ref": "./components.json",
|
||||||
"uniqueItems": true,
|
"uniqueItems": true,
|
||||||
"description": "The components that are added as the foundation of the entity",
|
"description": "The components that are added as the foundation of the entity",
|
||||||
"title": "Component Schema"
|
"title": "Component"
|
||||||
},
|
},
|
||||||
"events": {
|
"events": {
|
||||||
"$ref": "./events.json",
|
"$ref": "./events.json",
|
||||||
"uniqueItems": true,
|
"uniqueItems": true,
|
||||||
"description": "The events that the entity can run, these add or remove components_groups",
|
"description": "The events that the entity can run, these add or remove components_groups",
|
||||||
"title": "Events Schema"
|
"title": "Events"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,7 +2,8 @@
|
|||||||
"$schema": "http://json-schema.org/draft-07/schema",
|
"$schema": "http://json-schema.org/draft-07/schema",
|
||||||
"$id": "blockception.minecraft.behavior.entities.events1.12.0",
|
"$id": "blockception.minecraft.behavior.entities.events1.12.0",
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"title": "Entity 1.12.0",
|
"title": "Events 1.12.0",
|
||||||
|
"description": "Events for entities 1.12.0",
|
||||||
"definitions": {
|
"definitions": {
|
||||||
"addremove": {
|
"addremove": {
|
||||||
"additionalProperties": false,
|
"additionalProperties": false,
|
||||||
@@ -14,7 +15,7 @@
|
|||||||
"title": "Component Groups Schema",
|
"title": "Component Groups Schema",
|
||||||
"description": "The components groups to add or remove",
|
"description": "The components groups to add or remove",
|
||||||
"type": "array",
|
"type": "array",
|
||||||
"items": { "type": "string", "description": "TODO description: component groups", "title": "Component Groups" }
|
"items": { "type": "string", "description": "A reference to a component group", "title": "Component Groups" }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -22,15 +23,15 @@
|
|||||||
"additionalProperties": false,
|
"additionalProperties": false,
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
"add": { "$ref": "#/definitions/addremove", "description": "TODO description: add", "title": "Add" },
|
"add": { "$ref": "#/definitions/addremove", "description": "What gets added when the event gets triggered", "title": "Add" },
|
||||||
"remove": { "$ref": "#/definitions/addremove", "description": "TODO description: remove", "title": "Remove" },
|
"remove": { "$ref": "#/definitions/addremove", "description": "What gets removed when the event gets triggered", "title": "Remove" },
|
||||||
"randomize": {
|
"randomize": {
|
||||||
"type": "array",
|
"type": "array",
|
||||||
"items": {
|
"items": {
|
||||||
"required": ["weight"],
|
"required": ["weight"],
|
||||||
"properties": {
|
"properties": {
|
||||||
"add": { "$ref": "#/definitions/addremove", "description": "TODO description: add", "title": "Add" },
|
"add": { "$ref": "#/definitions/addremove", "description": "What gets added when the event gets triggered", "title": "Add" },
|
||||||
"remove": { "$ref": "#/definitions/addremove", "description": "TODO description: remove", "title": "Remove" },
|
"remove": { "$ref": "#/definitions/addremove", "description": "What gets removed when the event gets triggered", "title": "Remove" },
|
||||||
"trigger": { "type": "string", "description": "UNDOCUMENTATED", "title": "UNDOCUMENTATED" },
|
"trigger": { "type": "string", "description": "UNDOCUMENTATED", "title": "UNDOCUMENTATED" },
|
||||||
"weight": { "type": "number", "description": "TODO description: weight", "title": "Weight" }
|
"weight": { "type": "number", "description": "TODO description: weight", "title": "Weight" }
|
||||||
},
|
},
|
||||||
@@ -47,8 +48,8 @@
|
|||||||
"title": "Sequence",
|
"title": "Sequence",
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
"add": { "$ref": "#/definitions/addremove", "description": "TODO description: add", "title": "Add" },
|
"add": { "$ref": "#/definitions/addremove", "description": "What gets added when the event gets triggered", "title": "Add" },
|
||||||
"remove": { "$ref": "#/definitions/addremove", "description": "TODO description: remove", "title": "Remove" },
|
"remove": { "$ref": "#/definitions/addremove", "description": "What gets removed when the event gets triggered", "title": "Remove" },
|
||||||
"filters": { "$ref": "./filters.json" }
|
"filters": { "$ref": "./filters.json" }
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -74,6 +75,5 @@
|
|||||||
"minecraft:entity_spawned": { "description": "Event called on an entity that is placed in the level.", "$ref": "#/definitions/event_base", "title": "Entity Spawned" },
|
"minecraft:entity_spawned": { "description": "Event called on an entity that is placed in the level.", "$ref": "#/definitions/event_base", "title": "Entity Spawned" },
|
||||||
"minecraft:on_prime": { "description": "Event called on an entity whose fuse is lit and is ready to explode.", "$ref": "#/definitions/event_base", "title": "On Prime" }
|
"minecraft:on_prime": { "description": "Event called on an entity whose fuse is lit and is ready to explode.", "$ref": "#/definitions/event_base", "title": "On Prime" }
|
||||||
},
|
},
|
||||||
"additionalProperties": { "$ref": "#/definitions/event_base" },
|
"additionalProperties": { "$ref": "#/definitions/event_base" }
|
||||||
"description": "TODO description: "
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -62,20 +62,20 @@
|
|||||||
"$ref": "./components.json",
|
"$ref": "./components.json",
|
||||||
"uniqueItems": true,
|
"uniqueItems": true,
|
||||||
"description": "The components that are added as the foundation of the entity",
|
"description": "The components that are added as the foundation of the entity",
|
||||||
"title": "Component Schema"
|
"title": "Component"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"components": {
|
"components": {
|
||||||
"$ref": "./components.json",
|
"$ref": "./components.json",
|
||||||
"uniqueItems": true,
|
"uniqueItems": true,
|
||||||
"description": "The components that are added as the foundation of the entity",
|
"description": "The components that are added as the foundation of the entity",
|
||||||
"title": "Component Schema"
|
"title": "Component"
|
||||||
},
|
},
|
||||||
"events": {
|
"events": {
|
||||||
"$ref": "./events.json",
|
"$ref": "./events.json",
|
||||||
"uniqueItems": true,
|
"uniqueItems": true,
|
||||||
"description": "The events that the entity can run, these add or remove components_groups",
|
"description": "The events that the entity can run, these add or remove components_groups",
|
||||||
"title": "Events Schema"
|
"title": "Events"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,7 +2,8 @@
|
|||||||
"$schema": "http://json-schema.org/draft-07/schema",
|
"$schema": "http://json-schema.org/draft-07/schema",
|
||||||
"$id": "blockception.minecraft.behavior.entities.events1.13.0",
|
"$id": "blockception.minecraft.behavior.entities.events1.13.0",
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"title": "Entity 1.13.0",
|
"title": "Events 1.13.0",
|
||||||
|
"description": "Events for entities 1.13.0",
|
||||||
"definitions": {
|
"definitions": {
|
||||||
"addremove": {
|
"addremove": {
|
||||||
"additionalProperties": false,
|
"additionalProperties": false,
|
||||||
@@ -14,7 +15,7 @@
|
|||||||
"title": "Component Groups Schema",
|
"title": "Component Groups Schema",
|
||||||
"description": "The components groups to add or remove",
|
"description": "The components groups to add or remove",
|
||||||
"type": "array",
|
"type": "array",
|
||||||
"items": { "type": "string", "description": "TODO description: component groups", "title": "Component Groups" }
|
"items": { "type": "string", "description": "A reference to a component group", "title": "Component Groups" }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -22,15 +23,15 @@
|
|||||||
"additionalProperties": false,
|
"additionalProperties": false,
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
"add": { "$ref": "#/definitions/addremove", "description": "TODO description: add", "title": "Add" },
|
"add": { "$ref": "#/definitions/addremove", "description": "What gets added when the event gets triggered", "title": "Add" },
|
||||||
"remove": { "$ref": "#/definitions/addremove", "description": "TODO description: remove", "title": "Remove" },
|
"remove": { "$ref": "#/definitions/addremove", "description": "What gets removed when the event gets triggered", "title": "Remove" },
|
||||||
"randomize": {
|
"randomize": {
|
||||||
"type": "array",
|
"type": "array",
|
||||||
"items": {
|
"items": {
|
||||||
"required": ["weight"],
|
"required": ["weight"],
|
||||||
"properties": {
|
"properties": {
|
||||||
"add": { "$ref": "#/definitions/addremove", "description": "TODO description: add", "title": "Add" },
|
"add": { "$ref": "#/definitions/addremove", "description": "What gets added when the event gets triggered", "title": "Add" },
|
||||||
"remove": { "$ref": "#/definitions/addremove", "description": "TODO description: remove", "title": "Remove" },
|
"remove": { "$ref": "#/definitions/addremove", "description": "What gets removed when the event gets triggered", "title": "Remove" },
|
||||||
"trigger": { "type": "string", "description": "UNDOCUMENTATED", "title": "UNDOCUMENTATED" },
|
"trigger": { "type": "string", "description": "UNDOCUMENTATED", "title": "UNDOCUMENTATED" },
|
||||||
"weight": { "type": "number", "description": "TODO description: weight", "title": "Weight" }
|
"weight": { "type": "number", "description": "TODO description: weight", "title": "Weight" }
|
||||||
},
|
},
|
||||||
@@ -47,8 +48,8 @@
|
|||||||
"title": "Sequence",
|
"title": "Sequence",
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
"add": { "$ref": "#/definitions/addremove", "description": "TODO description: add", "title": "Add" },
|
"add": { "$ref": "#/definitions/addremove", "description": "What gets added when the event gets triggered", "title": "Add" },
|
||||||
"remove": { "$ref": "#/definitions/addremove", "description": "TODO description: remove", "title": "Remove" },
|
"remove": { "$ref": "#/definitions/addremove", "description": "What gets removed when the event gets triggered", "title": "Remove" },
|
||||||
"filters": { "$ref": "./filters.json" }
|
"filters": { "$ref": "./filters.json" }
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -74,6 +75,5 @@
|
|||||||
"minecraft:entity_spawned": { "description": "Event called on an entity that is placed in the level.", "$ref": "#/definitions/event_base", "title": "Entity Spawned" },
|
"minecraft:entity_spawned": { "description": "Event called on an entity that is placed in the level.", "$ref": "#/definitions/event_base", "title": "Entity Spawned" },
|
||||||
"minecraft:on_prime": { "description": "Event called on an entity whose fuse is lit and is ready to explode.", "$ref": "#/definitions/event_base", "title": "On Prime" }
|
"minecraft:on_prime": { "description": "Event called on an entity whose fuse is lit and is ready to explode.", "$ref": "#/definitions/event_base", "title": "On Prime" }
|
||||||
},
|
},
|
||||||
"additionalProperties": { "$ref": "#/definitions/event_base" },
|
"additionalProperties": { "$ref": "#/definitions/event_base" }
|
||||||
"description": "TODO description: "
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -62,20 +62,20 @@
|
|||||||
"$ref": "./components.json",
|
"$ref": "./components.json",
|
||||||
"uniqueItems": true,
|
"uniqueItems": true,
|
||||||
"description": "The components that are added as the foundation of the entity",
|
"description": "The components that are added as the foundation of the entity",
|
||||||
"title": "Component Schema"
|
"title": "Component"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"components": {
|
"components": {
|
||||||
"$ref": "./components.json",
|
"$ref": "./components.json",
|
||||||
"uniqueItems": true,
|
"uniqueItems": true,
|
||||||
"description": "The components that are added as the foundation of the entity",
|
"description": "The components that are added as the foundation of the entity",
|
||||||
"title": "Component Schema"
|
"title": "Component"
|
||||||
},
|
},
|
||||||
"events": {
|
"events": {
|
||||||
"$ref": "./events.json",
|
"$ref": "./events.json",
|
||||||
"uniqueItems": true,
|
"uniqueItems": true,
|
||||||
"description": "The events that the entity can run, these add or remove components_groups",
|
"description": "The events that the entity can run, these add or remove components_groups",
|
||||||
"title": "Events Schema"
|
"title": "Events"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,7 +2,8 @@
|
|||||||
"$schema": "http://json-schema.org/draft-07/schema",
|
"$schema": "http://json-schema.org/draft-07/schema",
|
||||||
"$id": "blockception.minecraft.behavior.entities.events.1.14.0",
|
"$id": "blockception.minecraft.behavior.entities.events.1.14.0",
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"title": "Entity 1.14.0",
|
"title": "Events 1.14.0",
|
||||||
|
"description": "Events for entities 1.14.0",
|
||||||
"definitions": {
|
"definitions": {
|
||||||
"addremove": {
|
"addremove": {
|
||||||
"additionalProperties": false,
|
"additionalProperties": false,
|
||||||
@@ -14,7 +15,7 @@
|
|||||||
"title": "Component Groups Schema",
|
"title": "Component Groups Schema",
|
||||||
"description": "The components groups to add or remove",
|
"description": "The components groups to add or remove",
|
||||||
"type": "array",
|
"type": "array",
|
||||||
"items": { "type": "string", "description": "TODO description: component groups", "title": "Component Groups" }
|
"items": { "type": "string", "description": "A reference to a component group", "title": "Component Groups" }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -22,15 +23,15 @@
|
|||||||
"additionalProperties": false,
|
"additionalProperties": false,
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
"add": { "$ref": "#/definitions/addremove", "description": "TODO description: add", "title": "Add" },
|
"add": { "$ref": "#/definitions/addremove", "description": "What gets added when the event gets triggered", "title": "Add" },
|
||||||
"remove": { "$ref": "#/definitions/addremove", "description": "TODO description: remove", "title": "Remove" },
|
"remove": { "$ref": "#/definitions/addremove", "description": "What gets removed when the event gets triggered", "title": "Remove" },
|
||||||
"randomize": {
|
"randomize": {
|
||||||
"type": "array",
|
"type": "array",
|
||||||
"items": {
|
"items": {
|
||||||
"required": ["weight"],
|
"required": ["weight"],
|
||||||
"properties": {
|
"properties": {
|
||||||
"add": { "$ref": "#/definitions/addremove", "description": "TODO description: add", "title": "Add" },
|
"add": { "$ref": "#/definitions/addremove", "description": "What gets added when the event gets triggered", "title": "Add" },
|
||||||
"remove": { "$ref": "#/definitions/addremove", "description": "TODO description: remove", "title": "Remove" },
|
"remove": { "$ref": "#/definitions/addremove", "description": "What gets removed when the event gets triggered", "title": "Remove" },
|
||||||
"trigger": { "type": "string", "description": "UNDOCUMENTATED", "title": "UNDOCUMENTATED" },
|
"trigger": { "type": "string", "description": "UNDOCUMENTATED", "title": "UNDOCUMENTATED" },
|
||||||
"weight": { "type": "number", "description": "TODO description: weight", "title": "Weight" }
|
"weight": { "type": "number", "description": "TODO description: weight", "title": "Weight" }
|
||||||
},
|
},
|
||||||
@@ -47,8 +48,8 @@
|
|||||||
"title": "Sequence",
|
"title": "Sequence",
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
"add": { "$ref": "#/definitions/addremove", "description": "TODO description: add", "title": "Add" },
|
"add": { "$ref": "#/definitions/addremove", "description": "What gets added when the event gets triggered", "title": "Add" },
|
||||||
"remove": { "$ref": "#/definitions/addremove", "description": "TODO description: remove", "title": "Remove" },
|
"remove": { "$ref": "#/definitions/addremove", "description": "What gets removed when the event gets triggered", "title": "Remove" },
|
||||||
"filters": { "$ref": "./filters.json" }
|
"filters": { "$ref": "./filters.json" }
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -74,6 +75,5 @@
|
|||||||
"minecraft:entity_spawned": { "description": "Event called on an entity that is placed in the level.", "$ref": "#/definitions/event_base", "title": "Entity Spawned" },
|
"minecraft:entity_spawned": { "description": "Event called on an entity that is placed in the level.", "$ref": "#/definitions/event_base", "title": "Entity Spawned" },
|
||||||
"minecraft:on_prime": { "description": "Event called on an entity whose fuse is lit and is ready to explode.", "$ref": "#/definitions/event_base", "title": "On Prime" }
|
"minecraft:on_prime": { "description": "Event called on an entity whose fuse is lit and is ready to explode.", "$ref": "#/definitions/event_base", "title": "On Prime" }
|
||||||
},
|
},
|
||||||
"additionalProperties": { "$ref": "#/definitions/event_base" },
|
"additionalProperties": { "$ref": "#/definitions/event_base" }
|
||||||
"description": "TODO description: "
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -62,20 +62,20 @@
|
|||||||
"$ref": "./components.json",
|
"$ref": "./components.json",
|
||||||
"uniqueItems": true,
|
"uniqueItems": true,
|
||||||
"description": "The components that are added as the foundation of the entity",
|
"description": "The components that are added as the foundation of the entity",
|
||||||
"title": "Component Schema"
|
"title": "Component"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"components": {
|
"components": {
|
||||||
"$ref": "./components.json",
|
"$ref": "./components.json",
|
||||||
"uniqueItems": true,
|
"uniqueItems": true,
|
||||||
"description": "The components that are added as the foundation of the entity",
|
"description": "The components that are added as the foundation of the entity",
|
||||||
"title": "Component Schema"
|
"title": "Component"
|
||||||
},
|
},
|
||||||
"events": {
|
"events": {
|
||||||
"$ref": "./events.json",
|
"$ref": "./events.json",
|
||||||
"uniqueItems": true,
|
"uniqueItems": true,
|
||||||
"description": "The events that the entity can run, these add or remove components_groups",
|
"description": "The events that the entity can run, these add or remove components_groups",
|
||||||
"title": "Events Schema"
|
"title": "Events"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,8 +2,8 @@
|
|||||||
"$schema": "http://json-schema.org/draft-07/schema",
|
"$schema": "http://json-schema.org/draft-07/schema",
|
||||||
"$id": "blockception.minecraft.behavior.entities.events.1.16.0",
|
"$id": "blockception.minecraft.behavior.entities.events.1.16.0",
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"title": "Entity 1.16.0",
|
"title": "Events 1.16.0",
|
||||||
"description": "TODO description:",
|
"description": "Events for entities 1.16.0",
|
||||||
"definitions": {
|
"definitions": {
|
||||||
"addremove": {
|
"addremove": {
|
||||||
"additionalProperties": false,
|
"additionalProperties": false,
|
||||||
@@ -15,7 +15,7 @@
|
|||||||
"title": "Component Groups Schema",
|
"title": "Component Groups Schema",
|
||||||
"description": "The components groups to add or remove",
|
"description": "The components groups to add or remove",
|
||||||
"type": "array",
|
"type": "array",
|
||||||
"items": { "type": "string", "description": "TODO description: component groups", "title": "Component Groups" }
|
"items": { "type": "string", "description": "A reference to a component group", "title": "Component Groups" }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -26,8 +26,8 @@
|
|||||||
"items": {
|
"items": {
|
||||||
"required": ["weight"],
|
"required": ["weight"],
|
||||||
"properties": {
|
"properties": {
|
||||||
"add": { "$ref": "#/definitions/addremove", "description": "TODO description: add", "title": "Add" },
|
"add": { "$ref": "#/definitions/addremove", "description": "What gets added when the event gets triggered", "title": "Add" },
|
||||||
"remove": { "$ref": "#/definitions/addremove", "description": "TODO description: remove", "title": "Remove" },
|
"remove": { "$ref": "#/definitions/addremove", "description": "What gets removed when the event gets triggered", "title": "Remove" },
|
||||||
"trigger": { "type": "string", "description": "UNDOCUMENTATED", "title": "UNDOCUMENTATED" },
|
"trigger": { "type": "string", "description": "UNDOCUMENTATED", "title": "UNDOCUMENTATED" },
|
||||||
"weight": { "type": "number", "description": "TODO description: weight", "title": "Weight" }
|
"weight": { "type": "number", "description": "TODO description: weight", "title": "Weight" }
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -63,20 +63,20 @@
|
|||||||
"$ref": "./components.json",
|
"$ref": "./components.json",
|
||||||
"uniqueItems": true,
|
"uniqueItems": true,
|
||||||
"description": "The components that are added as the foundation of the entity",
|
"description": "The components that are added as the foundation of the entity",
|
||||||
"title": "Component Schema"
|
"title": "Component"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"components": {
|
"components": {
|
||||||
"uniqueItems": true,
|
|
||||||
"$ref": "./components.json",
|
"$ref": "./components.json",
|
||||||
|
"uniqueItems": true,
|
||||||
"description": "The components that are added as the foundation of the entity",
|
"description": "The components that are added as the foundation of the entity",
|
||||||
"title": "Component Schema"
|
"title": "Component"
|
||||||
},
|
},
|
||||||
"events": {
|
"events": {
|
||||||
"uniqueItems": true,
|
|
||||||
"$ref": "./events.json",
|
"$ref": "./events.json",
|
||||||
|
"uniqueItems": true,
|
||||||
"description": "The events that the entity can run, these add or remove components_groups",
|
"description": "The events that the entity can run, these add or remove components_groups",
|
||||||
"title": "Events Schema"
|
"title": "Events"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,8 +2,8 @@
|
|||||||
"$schema": "http://json-schema.org/draft-07/schema",
|
"$schema": "http://json-schema.org/draft-07/schema",
|
||||||
"$id": "blockception.minecraft.behavior.entities.events.1.16.100",
|
"$id": "blockception.minecraft.behavior.entities.events.1.16.100",
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"title": "Entity 1.16.100",
|
"title": "Events 1.16.100",
|
||||||
"description": "TODO description:",
|
"description": "Events for entities 1.16.100",
|
||||||
"definitions": {
|
"definitions": {
|
||||||
"addremove": {
|
"addremove": {
|
||||||
"additionalProperties": false,
|
"additionalProperties": false,
|
||||||
@@ -15,7 +15,7 @@
|
|||||||
"title": "Component Groups Schema",
|
"title": "Component Groups Schema",
|
||||||
"description": "The components groups to add or remove",
|
"description": "The components groups to add or remove",
|
||||||
"type": "array",
|
"type": "array",
|
||||||
"items": { "type": "string", "description": "TODO description: component groups", "title": "Component Groups" }
|
"items": { "type": "string", "description": "A reference to a component group", "title": "Component Groups" }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -26,8 +26,8 @@
|
|||||||
"items": {
|
"items": {
|
||||||
"required": ["weight"],
|
"required": ["weight"],
|
||||||
"properties": {
|
"properties": {
|
||||||
"add": { "$ref": "#/definitions/addremove", "description": "TODO description: add", "title": "Add" },
|
"add": { "$ref": "#/definitions/addremove", "description": "What gets added when the event gets triggered", "title": "Add" },
|
||||||
"remove": { "$ref": "#/definitions/addremove", "description": "TODO description: remove", "title": "Remove" },
|
"remove": { "$ref": "#/definitions/addremove", "description": "What gets removed when the event gets triggered", "title": "Remove" },
|
||||||
"trigger": { "type": "string", "description": "UNDOCUMENTATED", "title": "UNDOCUMENTATED" },
|
"trigger": { "type": "string", "description": "UNDOCUMENTATED", "title": "UNDOCUMENTATED" },
|
||||||
"weight": { "type": "number", "description": "TODO description: weight", "title": "Weight" }
|
"weight": { "type": "number", "description": "TODO description: weight", "title": "Weight" }
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -63,20 +63,20 @@
|
|||||||
"$ref": "./components.json",
|
"$ref": "./components.json",
|
||||||
"uniqueItems": true,
|
"uniqueItems": true,
|
||||||
"description": "The components that are added as the foundation of the entity",
|
"description": "The components that are added as the foundation of the entity",
|
||||||
"title": "Component Schema"
|
"title": "Component"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"components": {
|
"components": {
|
||||||
"uniqueItems": true,
|
|
||||||
"$ref": "./components.json",
|
"$ref": "./components.json",
|
||||||
|
"uniqueItems": true,
|
||||||
"description": "The components that are added as the foundation of the entity",
|
"description": "The components that are added as the foundation of the entity",
|
||||||
"title": "Component Schema"
|
"title": "Component"
|
||||||
},
|
},
|
||||||
"events": {
|
"events": {
|
||||||
"uniqueItems": true,
|
|
||||||
"$ref": "./events.json",
|
"$ref": "./events.json",
|
||||||
|
"uniqueItems": true,
|
||||||
"description": "The events that the entity can run, these add or remove components_groups",
|
"description": "The events that the entity can run, these add or remove components_groups",
|
||||||
"title": "Events Schema"
|
"title": "Events"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -23,15 +23,15 @@
|
|||||||
"additionalProperties": false,
|
"additionalProperties": false,
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
"add": { "$ref": "#/definitions/addremove", "description": "TODO description: add", "title": "Add" },
|
"add": { "$ref": "#/definitions/addremove", "description": "What gets added when the event gets triggered", "title": "Add" },
|
||||||
"remove": { "$ref": "#/definitions/addremove", "description": "TODO description: remove", "title": "Remove" },
|
"remove": { "$ref": "#/definitions/addremove", "description": "What gets removed when the event gets triggered", "title": "Remove" },
|
||||||
"randomize": {
|
"randomize": {
|
||||||
"type": "array",
|
"type": "array",
|
||||||
"items": {
|
"items": {
|
||||||
"required": ["weight"],
|
"required": ["weight"],
|
||||||
"properties": {
|
"properties": {
|
||||||
"add": { "$ref": "#/definitions/addremove", "description": "TODO description: add", "title": "Add" },
|
"add": { "$ref": "#/definitions/addremove", "description": "What gets added when the event gets triggered", "title": "Add" },
|
||||||
"remove": { "$ref": "#/definitions/addremove", "description": "TODO description: remove", "title": "Remove" },
|
"remove": { "$ref": "#/definitions/addremove", "description": "What gets removed when the event gets triggered", "title": "Remove" },
|
||||||
"trigger": { "type": "string", "description": "UNDOCUMENTATED", "title": "UNDOCUMENTATED" },
|
"trigger": { "type": "string", "description": "UNDOCUMENTATED", "title": "UNDOCUMENTATED" },
|
||||||
"weight": { "type": "number", "description": "TODO description: weight", "title": "Weight" }
|
"weight": { "type": "number", "description": "TODO description: weight", "title": "Weight" }
|
||||||
},
|
},
|
||||||
@@ -48,8 +48,8 @@
|
|||||||
"title": "Sequence",
|
"title": "Sequence",
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
"add": { "$ref": "#/definitions/addremove", "description": "TODO description: add", "title": "Add" },
|
"add": { "$ref": "#/definitions/addremove", "description": "What gets added when the event gets triggered", "title": "Add" },
|
||||||
"remove": { "$ref": "#/definitions/addremove", "description": "TODO description: remove", "title": "Remove" },
|
"remove": { "$ref": "#/definitions/addremove", "description": "What gets removed when the event gets triggered", "title": "Remove" },
|
||||||
"filters": { "$ref": "./filters.json" }
|
"filters": { "$ref": "./filters.json" }
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -63,20 +63,20 @@
|
|||||||
"$ref": "./components.json",
|
"$ref": "./components.json",
|
||||||
"uniqueItems": true,
|
"uniqueItems": true,
|
||||||
"description": "The components that are added as the foundation of the entity",
|
"description": "The components that are added as the foundation of the entity",
|
||||||
"title": "Component Schema"
|
"title": "Component"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"components": {
|
"components": {
|
||||||
"$ref": "./components.json",
|
"$ref": "./components.json",
|
||||||
"uniqueItems": true,
|
"uniqueItems": true,
|
||||||
"description": "The components that are added as the foundation of the entity",
|
"description": "The components that are added as the foundation of the entity",
|
||||||
"title": "Component Schema"
|
"title": "Component"
|
||||||
},
|
},
|
||||||
"events": {
|
"events": {
|
||||||
"$ref": "./events.json",
|
"$ref": "./events.json",
|
||||||
"uniqueItems": true,
|
"uniqueItems": true,
|
||||||
"description": "The events that the entity can run, these add or remove components_groups",
|
"description": "The events that the entity can run, these add or remove components_groups",
|
||||||
"title": "Events Schema"
|
"title": "Events"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user