Add iron/gold nugget recipes
This commit is contained in:
parent
164792e1c0
commit
fea3049954
5 changed files with 135 additions and 37 deletions
|
@ -81,6 +81,12 @@ minetest.register_craft({
|
|||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = "default:iron_nugget",
|
||||
recipe = "farming:hoe_steel",
|
||||
})
|
||||
|
||||
minetest.register_tool("farming:hoe_gold", {
|
||||
description = "Gold Hoe",
|
||||
inventory_image = "farming_tool_goldhoe.png",
|
||||
|
@ -103,6 +109,12 @@ minetest.register_craft({
|
|||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = "default:gold_nugget",
|
||||
recipe = "farming:hoe_gold",
|
||||
})
|
||||
|
||||
minetest.register_tool("farming:hoe_diamond", {
|
||||
description = "Diamond Hoe",
|
||||
inventory_image = "farming_tool_diamondhoe.png",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue