From 5a1a7349b391ec362965892cd6b7d8066ea23ef8 Mon Sep 17 00:00:00 2001 From: jani270 <69345714+jani270@users.noreply.github.com> Date: Mon, 23 Dec 2024 02:42:50 +0100 Subject: feat: Gift Drops (#1558) --- mobs/green_gift.json | 12 ++++++++++++ mobs/party_gift.json | 12 ++++++++++++ mobs/red_gift.json | 12 ++++++++++++ mobs/white_gift.json | 12 ++++++++++++ 4 files changed, 48 insertions(+) create mode 100644 mobs/green_gift.json create mode 100644 mobs/party_gift.json create mode 100644 mobs/red_gift.json create mode 100644 mobs/white_gift.json (limited to 'mobs') diff --git a/mobs/green_gift.json b/mobs/green_gift.json new file mode 100644 index 00000000..303bd6e4 --- /dev/null +++ b/mobs/green_gift.json @@ -0,0 +1,12 @@ +{ + "entity": "ArmorStand", + "modifiers": [ + { + "type": "invisible" + }, + { + "type": "equipment", + "helmet": "GREEN_GIFT" + } + ] +} \ No newline at end of file diff --git a/mobs/party_gift.json b/mobs/party_gift.json new file mode 100644 index 00000000..81ece7cb --- /dev/null +++ b/mobs/party_gift.json @@ -0,0 +1,12 @@ +{ + "entity": "ArmorStand", + "modifiers": [ + { + "type": "invisible" + }, + { + "type": "equipment", + "helmet": "PARTY_GIFT" + } + ] +} \ No newline at end of file diff --git a/mobs/red_gift.json b/mobs/red_gift.json new file mode 100644 index 00000000..a9d1c25c --- /dev/null +++ b/mobs/red_gift.json @@ -0,0 +1,12 @@ +{ + "entity": "ArmorStand", + "modifiers": [ + { + "type": "invisible" + }, + { + "type": "equipment", + "helmet": "RED_GIFT" + } + ] +} \ No newline at end of file diff --git a/mobs/white_gift.json b/mobs/white_gift.json new file mode 100644 index 00000000..7ea87ef4 --- /dev/null +++ b/mobs/white_gift.json @@ -0,0 +1,12 @@ +{ + "entity": "ArmorStand", + "modifiers": [ + { + "type": "invisible" + }, + { + "type": "equipment", + "helmet": "WHITE_GIFT" + } + ] +} \ No newline at end of file -- cgit