* Adding block minecraft:transformation #176
* Updated heartbeat #171
* Fixing #152
This commit is contained in:
Daan Verstraten
2023-05-21 17:11:28 +02:00
committed by GitHub
parent c7c9f670bf
commit 86171d9732
5 changed files with 113 additions and 5 deletions

View File

@@ -16,7 +16,7 @@
"title": "Baby Type"
},
"breed_event": {
"$ref": "../types/event_object.json",
"$ref": "../types/event_object_filters.json",
"description": "Event to run when this entity breeds.",
"title": "Breed Event"
},

View File

@@ -1,7 +1,6 @@
{
"$id": "blockception.minecraft.behavior.entities.minecraft.heartbeat",
"description": "UNDOCUMENTED.",
"$comment": "UNDOCUMENTED",
"description": "defines the entity's heartbeat..",
"type": "object",
"title": "Heartbeat",
"additionalProperties": false,
@@ -9,9 +8,13 @@
"properties": {
"interval": {
"title": "Interval",
"description": "UNDOCUMENTED.",
"$comment": "UNDOCUMENTED",
"description": "A Molang expression defining the inter-beat interval in seconds. A value of zero or less means no heartbeat..",
"$ref": "../../../../molang/number.json"
},
"sound_event": {
"title": "Sound Event",
"description": "Level sound event to be played as the heartbeat sound.",
"type": "string"
}
},
"examples": [{}]