1
0
mirror of https://github.com/TechnoVisionDev/Forge-Modding-Tutorial-1.16 synced 2026-03-02 03:40:08 +00:00

Custom Tools

This commit is contained in:
TechnoVisionDev
2020-07-05 19:15:32 -07:00
parent 6b3eb0f676
commit e34e51e48c
16 changed files with 164 additions and 2 deletions

View File

@@ -1,5 +1,10 @@
{
"item.tutorial.ruby": "Ruby",
"block.tutorial.ruby_block": "Block of Ruby",
"itemGroup.tutorialTab": "Tutorial"
"itemGroup.tutorialTab": "Tutorial",
"item.tutorial.ruby_sword": "Ruby Sword",
"item.tutorial.ruby_pickaxe": "Ruby Pickaxe",
"item.tutorial.ruby_shovel": "Ruby Shovel",
"item.tutorial.ruby_axe": "Ruby Axe",
"item.tutorial.ruby_hoe": "Ruby Hoe"
}

View File

@@ -0,0 +1,6 @@
{
"parent": "item/handheld",
"textures": {
"layer0": "tutorial:items/ruby_axe"
}
}

View File

@@ -0,0 +1,6 @@
{
"parent": "item/handheld",
"textures": {
"layer0": "tutorial:items/ruby_hoe"
}
}

View File

@@ -0,0 +1,6 @@
{
"parent": "item/handheld",
"textures": {
"layer0": "tutorial:items/ruby_pickaxe"
}
}

View File

@@ -0,0 +1,6 @@
{
"parent": "item/handheld",
"textures": {
"layer0": "tutorial:items/ruby_shovel"
}
}

View File

@@ -0,0 +1,6 @@
{
"parent": "item/handheld",
"textures": {
"layer0": "tutorial:items/ruby_sword"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 275 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 159 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 303 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 276 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 273 B

View File

@@ -0,0 +1,16 @@
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "minecraft:emerald"
},
{
"item": "minecraft:red_dye"
}
],
"result":
{
"item": "tutorial:ruby",
"count": 3
}
}

View File

@@ -0,0 +1,25 @@
{
"type": "minecraft:crafting_shaped",
"pattern":
[
"xxx",
"xdx",
"xxx"
],
"key":
{
"x":
{
"item": "tutorial:ruby"
},
"d":
{
"item": "minecraft:diamond"
}
},
"result":
{
"item": "tutorial:ruby_block",
"count": 1
}
}

View File

@@ -0,0 +1,9 @@
{
"type": "minecraft:smelting",
"ingredient": {
"item": "minecraft:emerald"
},
"result": "tutorial:ruby",
"experience": 1.0,
"cookingtime": 100
}