2022-05-01 03:11:51 +02:00
|
|
|
local S = minetest.get_translator("mcl_copper")
|
|
|
|
|
|
|
|
minetest.register_craftitem("mcl_copper:copper_ingot", {
|
|
|
|
description = S("Copper Ingot"),
|
|
|
|
_doc_items_longdesc = S("Molten Raw Copper. It is used to craft blocks."),
|
|
|
|
inventory_image = "mcl_copper_ingot.png",
|
2022-05-04 11:07:04 +02:00
|
|
|
groups = { craftitem = 1 },
|
2022-05-01 03:11:51 +02:00
|
|
|
})
|
2022-05-04 11:07:04 +02:00
|
|
|
|
2022-05-01 03:11:51 +02:00
|
|
|
minetest.register_craftitem("mcl_copper:raw_copper", {
|
|
|
|
description = S("Raw Copper"),
|
|
|
|
_doc_items_longdesc = S("Raw Copper. Mine a Copper Ore to get it."),
|
|
|
|
inventory_image = "mcl_copper_raw.png",
|
2022-11-17 20:15:20 +01:00
|
|
|
groups = { craftitem = 1, blast_furnace_smeltable = 1 },
|
2022-05-01 03:11:51 +02:00
|
|
|
})
|