diff options
| author | jani270 <69345714+jani270@users.noreply.github.com> | 2024-12-23 02:42:50 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-12-23 01:42:50 +0000 |
| commit | 5a1a7349b391ec362965892cd6b7d8066ea23ef8 (patch) | |
| tree | 0c5c0fa3107657776f4ad362afc446365b8c7226 /mobs | |
| parent | cd3dc95fd3d1d2d3be26da6b660be5de7baf53b9 (diff) | |
| download | NotEnoughUpdates-REPO-5a1a7349b391ec362965892cd6b7d8066ea23ef8.tar.gz NotEnoughUpdates-REPO-5a1a7349b391ec362965892cd6b7d8066ea23ef8.tar.bz2 NotEnoughUpdates-REPO-5a1a7349b391ec362965892cd6b7d8066ea23ef8.zip | |
feat: Gift Drops (#1558)
Diffstat (limited to 'mobs')
| -rw-r--r-- | mobs/green_gift.json | 12 | ||||
| -rw-r--r-- | mobs/party_gift.json | 12 | ||||
| -rw-r--r-- | mobs/red_gift.json | 12 | ||||
| -rw-r--r-- | mobs/white_gift.json | 12 |
4 files changed, 48 insertions, 0 deletions
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 |
