mirror of
https://github.com/minetest-mods/technic.git
synced 2024-12-22 13:52:31 +01:00
Fine gold and silver wire items
Not used in any recipes yet.
This commit is contained in:
parent
4958a77e21
commit
3f717cbb9e
@ -61,6 +61,24 @@ minetest.register_craft({
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = 'technic:fine_gold_wire 2',
|
||||||
|
recipe = {
|
||||||
|
{'', 'default:gold_ingot', ''},
|
||||||
|
{'', 'default:gold_ingot', ''},
|
||||||
|
{'', 'default:gold_ingot', ''},
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = 'technic:fine_silver_wire 2',
|
||||||
|
recipe = {
|
||||||
|
{'', 'moreores:silver_ingot', ''},
|
||||||
|
{'', 'moreores:silver_ingot', ''},
|
||||||
|
{'', 'moreores:silver_ingot', ''},
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = 'technic:copper_coil 1',
|
output = 'technic:copper_coil 1',
|
||||||
recipe = {
|
recipe = {
|
||||||
|
@ -80,6 +80,16 @@ minetest.register_craftitem("technic:fine_copper_wire", {
|
|||||||
inventory_image = "technic_fine_copper_wire.png",
|
inventory_image = "technic_fine_copper_wire.png",
|
||||||
})
|
})
|
||||||
|
|
||||||
|
minetest.register_craftitem("technic:fine_gold_wire", {
|
||||||
|
description = S("Fine Gold Wire"),
|
||||||
|
inventory_image = "technic_fine_gold_wire.png",
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craftitem("technic:fine_silver_wire", {
|
||||||
|
description = S("Fine Silver Wire"),
|
||||||
|
inventory_image = "technic_fine_silver_wire.png",
|
||||||
|
})
|
||||||
|
|
||||||
minetest.register_craftitem("technic:copper_coil", {
|
minetest.register_craftitem("technic:copper_coil", {
|
||||||
description = S("Copper Coil"),
|
description = S("Copper Coil"),
|
||||||
inventory_image = "technic_copper_coil.png",
|
inventory_image = "technic_copper_coil.png",
|
||||||
|
BIN
technic/textures/technic_fine_gold_wire.png
Normal file
BIN
technic/textures/technic_fine_gold_wire.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 474 B |
BIN
technic/textures/technic_fine_silver_wire.png
Normal file
BIN
technic/textures/technic_fine_silver_wire.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 546 B |
BIN
technic/textures/technicx32/technic_fine_gold_wire.png
Normal file
BIN
technic/textures/technicx32/technic_fine_gold_wire.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.8 KiB |
BIN
technic/textures/technicx32/technic_fine_silver_wire.png
Normal file
BIN
technic/textures/technicx32/technic_fine_silver_wire.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.1 KiB |
Loading…
Reference in New Issue
Block a user