From 8909b62171b1e8cef20f7ab2ad84826baeaf7b9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A4seToatz?= Date: Mon, 29 Sep 2025 20:03:42 +0200 Subject: [PATCH] initial commit --- .../loot_table/entities/shulker.json | 36 +++++++++++++++++++ pack.mcmeta | 6 ++++ 2 files changed, 42 insertions(+) create mode 100644 data/minecraft/loot_table/entities/shulker.json create mode 100644 pack.mcmeta diff --git a/data/minecraft/loot_table/entities/shulker.json b/data/minecraft/loot_table/entities/shulker.json new file mode 100644 index 0000000..b43c308 --- /dev/null +++ b/data/minecraft/loot_table/entities/shulker.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:shulker_shell" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/shulker" +} \ No newline at end of file diff --git a/pack.mcmeta b/pack.mcmeta new file mode 100644 index 0000000..a09b887 --- /dev/null +++ b/pack.mcmeta @@ -0,0 +1,6 @@ +{ + "pack": { + "description": "Changes the Shulker loot table to the one from Bedrock Edition so Shulkers drop more Shulker Shells when killed with Looting.", + "pack_format": 81 + } +} \ No newline at end of file