From 72ecf3bb956ebe171d10badc7b7c3cde7142805d Mon Sep 17 00:00:00 2001 From: DaanV2 Date: Tue, 7 Jun 2022 20:10:44 +0200 Subject: [PATCH] Added minecraft:heartbeat --- source/behavior/entities/format/components.json | 1 + .../entities/format/components/heartbeat.json | 11 +++++++++++ 2 files changed, 12 insertions(+) create mode 100644 source/behavior/entities/format/components/heartbeat.json diff --git a/source/behavior/entities/format/components.json b/source/behavior/entities/format/components.json index db9e83a7..6175faee 100644 --- a/source/behavior/entities/format/components.json +++ b/source/behavior/entities/format/components.json @@ -68,6 +68,7 @@ "minecraft:grows_crop": { "$ref": "./components/grows_crop.json" }, "minecraft:healable": { "$ref": "./components/healable.json" }, "minecraft:health": { "$ref": "./components/health.json" }, + "minecraft:heartbeat": { "$ref": "./components/heartbeat.json" }, "minecraft:hide": { "$ref": "./components/hide.json" }, "minecraft:home": { "$ref": "./components/home.json" }, "minecraft:horse.jump_strength": { "$ref": "./components/horse.jump_strength.json" }, diff --git a/source/behavior/entities/format/components/heartbeat.json b/source/behavior/entities/format/components/heartbeat.json new file mode 100644 index 00000000..8346ad82 --- /dev/null +++ b/source/behavior/entities/format/components/heartbeat.json @@ -0,0 +1,11 @@ +{ + "$id": "blockception.minecraft.behavior.entities.minecraft.heartbeat", + "description": "UNDOCUMENTED", + "$comment": "UNDOCUMENTED", + "type": "object", + "title": "Health", + "additionalProperties": false, + "required": [], + "properties": {}, + "examples": [{}] +}