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:
@@ -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"
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "item/handheld",
|
||||
"textures": {
|
||||
"layer0": "tutorial:items/ruby_axe"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "item/handheld",
|
||||
"textures": {
|
||||
"layer0": "tutorial:items/ruby_hoe"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "item/handheld",
|
||||
"textures": {
|
||||
"layer0": "tutorial:items/ruby_pickaxe"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "item/handheld",
|
||||
"textures": {
|
||||
"layer0": "tutorial:items/ruby_shovel"
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"parent": "item/handheld",
|
||||
"textures": {
|
||||
"layer0": "tutorial:items/ruby_sword"
|
||||
}
|
||||
}
|
||||
BIN
src/main/resources/assets/tutorial/textures/items/ruby_axe.png
Normal file
BIN
src/main/resources/assets/tutorial/textures/items/ruby_axe.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 275 B |
BIN
src/main/resources/assets/tutorial/textures/items/ruby_hoe.png
Normal file
BIN
src/main/resources/assets/tutorial/textures/items/ruby_hoe.png
Normal file
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 |
BIN
src/main/resources/assets/tutorial/textures/items/ruby_sword.png
Normal file
BIN
src/main/resources/assets/tutorial/textures/items/ruby_sword.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 273 B |
16
src/main/resources/data/tutorial/recipes/ruby.json
Normal file
16
src/main/resources/data/tutorial/recipes/ruby.json
Normal file
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"type": "minecraft:crafting_shapeless",
|
||||
"ingredients": [
|
||||
{
|
||||
"item": "minecraft:emerald"
|
||||
},
|
||||
{
|
||||
"item": "minecraft:red_dye"
|
||||
}
|
||||
],
|
||||
"result":
|
||||
{
|
||||
"item": "tutorial:ruby",
|
||||
"count": 3
|
||||
}
|
||||
}
|
||||
25
src/main/resources/data/tutorial/recipes/ruby_block.json
Normal file
25
src/main/resources/data/tutorial/recipes/ruby_block.json
Normal 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
|
||||
}
|
||||
}
|
||||
9
src/main/resources/data/tutorial/recipes/ruby_smelt.json
Normal file
9
src/main/resources/data/tutorial/recipes/ruby_smelt.json
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"type": "minecraft:smelting",
|
||||
"ingredient": {
|
||||
"item": "minecraft:emerald"
|
||||
},
|
||||
"result": "tutorial:ruby",
|
||||
"experience": 1.0,
|
||||
"cookingtime": 100
|
||||
}
|
||||
Reference in New Issue
Block a user