Change how bronze is made, fix #61
This commit is contained in:
parent
68a51a6e6a
commit
10292b7282
@ -100,10 +100,10 @@ crafting.register_craft(
|
||||
|
||||
crafting.register_craft(
|
||||
{
|
||||
output = "default:lump_bronze 2",
|
||||
output = "default:ingot_bronze 2",
|
||||
items = {
|
||||
"default:lump_tin 2",
|
||||
"default:lump_copper 5",
|
||||
"default:ingot_tin 2",
|
||||
"default:ingot_copper 5",
|
||||
}
|
||||
})
|
||||
|
||||
|
@ -110,6 +110,20 @@ minetest.register_craftitem(
|
||||
inventory_image = "default_ingot_carbon_steel.png",
|
||||
})
|
||||
|
||||
minetest.register_craftitem(
|
||||
"default:ingot_copper",
|
||||
{
|
||||
description = "Copper Ingot",
|
||||
inventory_image = "default_ingot_copper.png",
|
||||
})
|
||||
|
||||
minetest.register_craftitem(
|
||||
"default:ingot_tin",
|
||||
{
|
||||
description = "Tin Ingot",
|
||||
inventory_image = "default_ingot_tin.png",
|
||||
})
|
||||
|
||||
minetest.register_craftitem(
|
||||
"default:ingot_bronze",
|
||||
{
|
||||
|
BIN
mods/default/textures/default_ingot_copper.png
Normal file
BIN
mods/default/textures/default_ingot_copper.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 296 B |
BIN
mods/default/textures/default_ingot_copper.xcf
Normal file
BIN
mods/default/textures/default_ingot_copper.xcf
Normal file
Binary file not shown.
BIN
mods/default/textures/default_ingot_tin.png
Normal file
BIN
mods/default/textures/default_ingot_tin.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 461 B |
BIN
mods/default/textures/default_ingot_tin.xcf
Normal file
BIN
mods/default/textures/default_ingot_tin.xcf
Normal file
Binary file not shown.
Binary file not shown.
Before Width: | Height: | Size: 484 B After Width: | Height: | Size: 484 B |
Binary file not shown.
Loading…
Reference in New Issue
Block a user