add custom items for tool picker, easy place, & material grabber

This commit is contained in:
ForestOfLight
2025-06-07 18:52:42 -07:00
Unverified
parent f077982544
commit 137100114a
10 changed files with 92 additions and 19 deletions
+22
View File
@@ -0,0 +1,22 @@
{
"format_version": "1.20.30",
"minecraft:item": {
"description": {
"identifier": "construct:easy_place",
"category": "Items"
},
"components": {
"minecraft:max_stack_size": 1,
"minecraft:icon": {
"texture": "construct:easy_place"
},
"minecraft:display_name": {
"value": "Easy Place"
},
"minecraft:wearable": {
"dispensable": true,
"slot": "slot.weapon.offhand"
}
}
}
}
+22
View File
@@ -0,0 +1,22 @@
{
"format_version": "1.20.30",
"minecraft:item": {
"description": {
"identifier": "construct:material_grabber",
"category": "Items"
},
"components": {
"minecraft:max_stack_size": 1,
"minecraft:icon": {
"texture": "construct:material_grabber"
},
"minecraft:display_name": {
"value": "Material Grabber"
},
"minecraft:wearable": {
"dispensable": true,
"slot": "slot.weapon.offhand"
}
}
}
}
+22
View File
@@ -0,0 +1,22 @@
{
"format_version": "1.20.30",
"minecraft:item": {
"description": {
"identifier": "construct:tool_picker",
"category": "Items"
},
"components": {
"minecraft:max_stack_size": 1,
"minecraft:icon": {
"texture": "construct:tool_picker"
},
"minecraft:display_name": {
"value": "Construct Tool Picker"
},
"minecraft:wearable": {
"dispensable": true,
"slot": "slot.weapon.offhand"
}
}
}
}