Starting on blocks (#137)

* Starting on blocks

* Updated collision box

* Updated block components

* Fixed block/rotation

* Making orbi responsible for dependencies

* Updating blocks

* trigger -> triggers
This commit is contained in:
Daan Verstraten
2022-10-29 16:36:39 +02:00
committed by GitHub
parent 519f9ed84a
commit 2fe9f2ed70
50 changed files with 530 additions and 376 deletions

View File

@@ -0,0 +1,31 @@
{
"$id": "blockception.minecraft.behavior.blocks.minecraft.random_ticking",
"title": "Random Ticking",
"description": "[Experimental] Triggers the specified event randomly based on the random tick speed gamerule. The random tick speed determines how often blocks are updated.",
"type": "object",
"additionalProperties": false,
"properties": {
"on_tick": {
"title": "On Tick",
"description": "the event that will be triggered on random ticks."
},
"condition": {
"title": "Condition",
"type": "string",
"default": "1",
"description": "A condition using Molang queries that results to true/false. If true on the random tick, the event will be triggered. If false on the random tick, the event will not be triggered."
},
"event": {
"title": "Event",
"type": "string",
"default": "set_block_property",
"description": "The event that will be triggered."
},
"target": {
"title": "Target",
"type": "string",
"default": "self",
"description": "The target of the event executed by the block"
}
}
}