From b48a5d8b7ba3d13444e4701ef91d389ebb6a1893 Mon Sep 17 00:00:00 2001 From: direwolf20 <39863894+Direwolf20-MC@users.noreply.github.com> Date: Sat, 7 Dec 2024 12:24:27 -0500 Subject: [PATCH] Add Polymorphic Wand - Item only (JSONS) --- .../models/item/polymorphic_wand.json | 6 ++++ .../recipes/misc/polymorphic_wand.json | 32 +++++++++++++++++++ .../recipe/polymorphic_wand.json | 22 +++++++++++++ 3 files changed, 60 insertions(+) create mode 100644 src/generated/resources/assets/justdirethings/models/item/polymorphic_wand.json create mode 100644 src/generated/resources/data/justdirethings/advancement/recipes/misc/polymorphic_wand.json create mode 100644 src/generated/resources/data/justdirethings/recipe/polymorphic_wand.json diff --git a/src/generated/resources/assets/justdirethings/models/item/polymorphic_wand.json b/src/generated/resources/assets/justdirethings/models/item/polymorphic_wand.json new file mode 100644 index 00000000..ad069fb2 --- /dev/null +++ b/src/generated/resources/assets/justdirethings/models/item/polymorphic_wand.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/handheld", + "textures": { + "layer0": "justdirethings:item/polymorphic_wand" + } +} \ No newline at end of file diff --git a/src/generated/resources/data/justdirethings/advancement/recipes/misc/polymorphic_wand.json b/src/generated/resources/data/justdirethings/advancement/recipes/misc/polymorphic_wand.json new file mode 100644 index 00000000..1927185c --- /dev/null +++ b/src/generated/resources/data/justdirethings/advancement/recipes/misc/polymorphic_wand.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blazegold_ingot": { + "conditions": { + "items": [ + { + "items": "justdirethings:blazegold_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "justdirethings:polymorphic_wand" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blazegold_ingot" + ] + ], + "rewards": { + "recipes": [ + "justdirethings:polymorphic_wand" + ] + } +} \ No newline at end of file diff --git a/src/generated/resources/data/justdirethings/recipe/polymorphic_wand.json b/src/generated/resources/data/justdirethings/recipe/polymorphic_wand.json new file mode 100644 index 00000000..cb1a03d1 --- /dev/null +++ b/src/generated/resources/data/justdirethings/recipe/polymorphic_wand.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "justdirethings", + "key": { + "b": { + "item": "justdirethings:fluid_canister" + }, + "i": { + "item": "justdirethings:blazegold_ingot" + } + }, + "pattern": [ + " b", + " i ", + "i " + ], + "result": { + "count": 1, + "id": "justdirethings:polymorphic_wand" + } +} \ No newline at end of file