Skip to content

Commit

Permalink
Add Polymorphic Wand - Item only (JSONS)
Browse files Browse the repository at this point in the history
  • Loading branch information
Direwolf20-MC committed Dec 7, 2024
1 parent e81533f commit b48a5d8
Show file tree
Hide file tree
Showing 3 changed files with 60 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"parent": "minecraft:item/handheld",
"textures": {
"layer0": "justdirethings:item/polymorphic_wand"
}
}
Original file line number Diff line number Diff line change
@@ -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"
]
}
}
Original file line number Diff line number Diff line change
@@ -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"
}
}

0 comments on commit b48a5d8

Please sign in to comment.