From a236abdd5cd4d9e16ef3591b06c740abe601ab27 Mon Sep 17 00:00:00 2001 From: skippyall <> Date: Sun, 1 Sep 2024 19:52:35 +0200 Subject: [PATCH] Recipe --- .../resources/data/minions/recipe/minion.json | 18 ++++++++++++++++++ .../data/minions/tags/item/heads.json | 11 +++++++++++ 2 files changed, 29 insertions(+) create mode 100644 src/main/resources/data/minions/recipe/minion.json create mode 100644 src/main/resources/data/minions/tags/item/heads.json diff --git a/src/main/resources/data/minions/recipe/minion.json b/src/main/resources/data/minions/recipe/minion.json new file mode 100644 index 0000000..4db1b12 --- /dev/null +++ b/src/main/resources/data/minions/recipe/minion.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + " H ", + "SAS", + " L " + ], + "key": { + "H": "#minions:heads", + "S": "minecraft:stick", + "A": "minecraft:armor_stand", + "L": "minecraft:lodestone" + }, + "result": { + "id": "minions:minion", + "count": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/data/minions/tags/item/heads.json b/src/main/resources/data/minions/tags/item/heads.json new file mode 100644 index 0000000..d2f3ddd --- /dev/null +++ b/src/main/resources/data/minions/tags/item/heads.json @@ -0,0 +1,11 @@ +{ + "values": [ + "minecraft:creeper_head", + "minecraft:zombie_head", + "minecraft:piglin_head", + "minecraft:wither_skeleton_skull", + "minecraft:skeleton_skull", + "minecraft:dragon_head", + "minecraft:player_head" + ] +} \ No newline at end of file