mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-17 00:21:07 +01:00
Compare commits
No commits in common. "f45b38c4dce4f8d7b4f3613ebba082a7135233b9" and "73f96ed5f303c1f27e59d36012b1457b86ebcf32" have entirely different histories.
f45b38c4dc
...
73f96ed5f3
14 changed files with 478 additions and 769 deletions
|
@ -1,28 +1,39 @@
|
||||||
--- This function determines the format of the crafting recipe in the crafting grid based on the
|
minetest.register_craft({
|
||||||
---block name. Each block must have its own crafting format for the given material(s).
|
output = "mcl_copper:block_raw",
|
||||||
---Some materials in the recipe can be pre-defined (e.g. copper bulbs have fixed materials
|
recipe = {
|
||||||
--(blaze stick and redstone) and materials that vary according to the material parameter)
|
{ "mcl_copper:raw_copper", "mcl_copper:raw_copper", "mcl_copper:raw_copper" },
|
||||||
---@param name string
|
{ "mcl_copper:raw_copper", "mcl_copper:raw_copper", "mcl_copper:raw_copper" },
|
||||||
---@param material string
|
{ "mcl_copper:raw_copper", "mcl_copper:raw_copper", "mcl_copper:raw_copper" },
|
||||||
---@return table
|
},
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "mcl_copper:block",
|
||||||
|
recipe = {
|
||||||
|
{ "mcl_copper:copper_ingot", "mcl_copper:copper_ingot", "mcl_copper:copper_ingot" },
|
||||||
|
{ "mcl_copper:copper_ingot", "mcl_copper:copper_ingot", "mcl_copper:copper_ingot" },
|
||||||
|
{ "mcl_copper:copper_ingot", "mcl_copper:copper_ingot", "mcl_copper:copper_ingot" },
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
||||||
local function get_shape(name, material)
|
local function get_shape(name, material)
|
||||||
if name == "cut" then -- Shape of cut copper blocks
|
if name == "cut" then
|
||||||
return {
|
return {
|
||||||
{material, material},
|
{material, material},
|
||||||
{material, material}
|
{material, material}
|
||||||
}
|
}
|
||||||
elseif name == "grate" then -- Shape of copper grates
|
elseif name == "grate" then
|
||||||
return {
|
return {
|
||||||
{"", material, ""},
|
{"", material, ""},
|
||||||
{material, "", material},
|
{material, "", material},
|
||||||
{"", material, ""}
|
{"", material, ""}
|
||||||
}
|
}
|
||||||
elseif name == "chiseled" then -- Shape of chiseled copper blocks
|
elseif name == "chiseled" then
|
||||||
return {
|
return {
|
||||||
{material},
|
{material},
|
||||||
{material},
|
{material},
|
||||||
}
|
}
|
||||||
elseif name == "bulb_off" then -- Shape of copper bulbs (with fixed materials)
|
elseif name == "bulb_off" then
|
||||||
return {
|
return {
|
||||||
{"", material, ""},
|
{"", material, ""},
|
||||||
{material, "mcl_mobitems:blaze_rod", material},
|
{material, "mcl_mobitems:blaze_rod", material},
|
||||||
|
@ -33,19 +44,9 @@ local function get_shape(name, material)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
--- This function is responsible for recording the recipes for each block (including oxidized variants).
|
function mcl_copper.register_variants_recipes(name, material, amount)
|
||||||
--- If the recipe's main material is the Block of Copper, the material parameter must be passed as "block".
|
|
||||||
--- If the main material is another block (as in the case of the chiseled copper block), the material
|
|
||||||
--- parameter must be a table containing 8 itemstrings of the blocks used in the recipes.
|
|
||||||
--- Special fixed materials (such as copper bulbs) must be registered to the crafting grid format in the
|
|
||||||
--- get_shape function.
|
|
||||||
---@param name string
|
|
||||||
---@param material string|table
|
|
||||||
---@param amount integer
|
|
||||||
local function register_variants_recipes(name, material, amount)
|
|
||||||
local names
|
local names
|
||||||
local materials = {}
|
local materials = {}
|
||||||
-- Handling the inconsistency of the original itemstrings
|
|
||||||
if name ~= "cut" then
|
if name ~= "cut" then
|
||||||
names = {
|
names = {
|
||||||
name, "waxed_"..name,
|
name, "waxed_"..name,
|
||||||
|
@ -61,7 +62,7 @@ local function register_variants_recipes(name, material, amount)
|
||||||
"block_oxidized_"..name, "waxed_block_oxidized_"..name
|
"block_oxidized_"..name, "waxed_block_oxidized_"..name
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
-- Checking the type of material
|
|
||||||
if type(material) == "string" then
|
if type(material) == "string" then
|
||||||
materials = {
|
materials = {
|
||||||
"mcl_copper:"..material, "mcl_copper:waxed_"..material,
|
"mcl_copper:"..material, "mcl_copper:waxed_"..material,
|
||||||
|
@ -69,13 +70,16 @@ local function register_variants_recipes(name, material, amount)
|
||||||
"mcl_copper:"..material.."_weathered", "mcl_copper:waxed_"..material.."_weathered",
|
"mcl_copper:"..material.."_weathered", "mcl_copper:waxed_"..material.."_weathered",
|
||||||
"mcl_copper:"..material.."_oxidized", "mcl_copper:waxed_"..material.."_oxidized"
|
"mcl_copper:"..material.."_oxidized", "mcl_copper:waxed_"..material.."_oxidized"
|
||||||
}
|
}
|
||||||
else
|
elseif type(material) == "table" then
|
||||||
|
if #material == 8 then
|
||||||
materials = material
|
materials = material
|
||||||
|
else
|
||||||
|
return
|
||||||
end
|
end
|
||||||
--[[
|
else
|
||||||
Registering each recipe according to the materials
|
return
|
||||||
blocks made from copper and its oxidized and waxed variations)
|
end
|
||||||
]]
|
|
||||||
for i = 1, 8 do
|
for i = 1, 8 do
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "mcl_copper:"..names[i].." "..tostring(amount),
|
output = "mcl_copper:"..names[i].." "..tostring(amount),
|
||||||
|
@ -83,11 +87,11 @@ local function register_variants_recipes(name, material, amount)
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
-- Using the function above to record the recipes for cut copper blocks, copper grates and copper bulbs
|
|
||||||
register_variants_recipes("cut", "block", 4)
|
mcl_copper.register_variants_recipes("cut", "block", 4)
|
||||||
register_variants_recipes("grate", "block", 4)
|
mcl_copper.register_variants_recipes("grate", "block", 4)
|
||||||
register_variants_recipes("bulb_off", "block", 4)
|
mcl_copper.register_variants_recipes("bulb_off", "block", 4)
|
||||||
-- Chiseled copper uses slabs as the main material.
|
|
||||||
local chiseled_materials = {
|
local chiseled_materials = {
|
||||||
"mcl_stairs:slab_copper_cut",
|
"mcl_stairs:slab_copper_cut",
|
||||||
"mcl_stairs:slab_waxed_copper_cut",
|
"mcl_stairs:slab_waxed_copper_cut",
|
||||||
|
@ -98,9 +102,9 @@ local chiseled_materials = {
|
||||||
"mcl_stairs:slab_copper_oxidized_cut",
|
"mcl_stairs:slab_copper_oxidized_cut",
|
||||||
"mcl_stairs:slab_waxed_copper_oxidized_cut"
|
"mcl_stairs:slab_waxed_copper_oxidized_cut"
|
||||||
}
|
}
|
||||||
-- Registering recipes for chiseled copper blocks using the slabs.
|
|
||||||
register_variants_recipes("chiseled", chiseled_materials, 1)
|
mcl_copper.register_variants_recipes("chiseled", chiseled_materials, 1)
|
||||||
-- List of blocks that can be waxed.
|
|
||||||
local waxable_blocks = {
|
local waxable_blocks = {
|
||||||
"block",
|
"block",
|
||||||
"block_cut",
|
"block_cut",
|
||||||
|
@ -123,7 +127,7 @@ local waxable_blocks = {
|
||||||
"chiseled_oxidized",
|
"chiseled_oxidized",
|
||||||
"bulb_off_oxidized"
|
"bulb_off_oxidized"
|
||||||
}
|
}
|
||||||
-- Registering the waxing recipes for each block listed above.
|
|
||||||
for _, w in ipairs(waxable_blocks) do
|
for _, w in ipairs(waxable_blocks) do
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "mcl_copper:waxed_"..w,
|
output = "mcl_copper:waxed_"..w,
|
||||||
|
@ -132,7 +136,7 @@ for _, w in ipairs(waxable_blocks) do
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
end
|
end
|
||||||
-- List of blocks that can be cutted on stonecutter
|
|
||||||
local cuttable_blocks = {
|
local cuttable_blocks = {
|
||||||
"block",
|
"block",
|
||||||
"waxed_block",
|
"waxed_block",
|
||||||
|
@ -143,31 +147,13 @@ local cuttable_blocks = {
|
||||||
"block_oxidized",
|
"block_oxidized",
|
||||||
"waxed_block_oxidized"
|
"waxed_block_oxidized"
|
||||||
}
|
}
|
||||||
-- Registering stonecutter recipes using the blocks listed above.
|
|
||||||
for _, c in ipairs(cuttable_blocks) do
|
for _, c in ipairs(cuttable_blocks) do
|
||||||
mcl_stonecutter.register_recipe("mcl_copper:"..c, "mcl_copper:"..c.."_cut", 4)
|
mcl_stonecutter.register_recipe("mcl_copper:"..c, "mcl_copper:"..c.."_cut", 4)
|
||||||
--mcl_stonecutter.register_recipe("mcl_copper:"..c, "mcl_copper:"..c:gsub("block", "grate"), 4)
|
--mcl_stonecutter.register_recipe("mcl_copper:"..c, "mcl_copper:"..c:gsub("block", "grate"), 4)
|
||||||
--mcl_stonecutter.register_recipe("mcl_copper:"..c, "mcl_copper:"..c:gsub("block", "chiseled"), 4)
|
--mcl_stonecutter.register_recipe("mcl_copper:"..c, "mcl_copper:"..c:gsub("block", "chiseled"), 4)
|
||||||
--mcl_stonecutter.register_recipe("mcl_copper:"..c.."_cut", "mcl_copper:"..c:gsub("block", "chiseled"))
|
--mcl_stonecutter.register_recipe("mcl_copper:"..c.."_cut", "mcl_copper:"..c:gsub("block", "chiseled"))
|
||||||
end
|
end
|
||||||
-- Registering blocks and items specific recipes
|
|
||||||
minetest.register_craft({
|
|
||||||
output = "mcl_copper:block_raw",
|
|
||||||
recipe = {
|
|
||||||
{ "mcl_copper:raw_copper", "mcl_copper:raw_copper", "mcl_copper:raw_copper" },
|
|
||||||
{ "mcl_copper:raw_copper", "mcl_copper:raw_copper", "mcl_copper:raw_copper" },
|
|
||||||
{ "mcl_copper:raw_copper", "mcl_copper:raw_copper", "mcl_copper:raw_copper" },
|
|
||||||
},
|
|
||||||
})
|
|
||||||
|
|
||||||
minetest.register_craft({
|
|
||||||
output = "mcl_copper:block",
|
|
||||||
recipe = {
|
|
||||||
{ "mcl_copper:copper_ingot", "mcl_copper:copper_ingot", "mcl_copper:copper_ingot" },
|
|
||||||
{ "mcl_copper:copper_ingot", "mcl_copper:copper_ingot", "mcl_copper:copper_ingot" },
|
|
||||||
{ "mcl_copper:copper_ingot", "mcl_copper:copper_ingot", "mcl_copper:copper_ingot" },
|
|
||||||
},
|
|
||||||
})
|
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
output = "mcl_copper:copper_ingot 9",
|
output = "mcl_copper:copper_ingot 9",
|
||||||
|
|
|
@ -1,117 +1,106 @@
|
||||||
local S = minetest.get_translator("mcl_copper")
|
|
||||||
local lit_desc = "(Lit)"
|
local lit_desc = "(Lit)"
|
||||||
|
local pow_desc = "(Powered)"
|
||||||
|
local mix_desc = "(Lit and Powered)"
|
||||||
|
|
||||||
mcl_copper.copper_descs = {
|
mcl_copper.copper_descs = {
|
||||||
["block"] = {
|
["block"] = {
|
||||||
S("Block of Copper"), S("Waxed Block of Copper"),
|
"Block of Copper", "Waxed Block of Copper",
|
||||||
S("Exposed Copper"), S("Waxed Exposed Copper"),
|
"Exposed Copper", "Waxed Exposed Copper",
|
||||||
S("Weathered Copper"), S("Waxed Weathered Copper"),
|
"Weathered Copper", "Waxed Weathered Copper",
|
||||||
S("Oxidized Copper"), S("Waxed Oxidized Copper")
|
"Oxidized Copper", "Waxed Oxidized Copper"
|
||||||
},
|
},
|
||||||
["cut"] = {
|
["cut"] = {
|
||||||
S("Cut Copper"), S("Waxed Cut Copper"),
|
"Cut Copper", "Waxed Cut Copper",
|
||||||
S("Exposed Cut Copper"), S("Waxed Exposed Cut Copper"),
|
"Exposed Cut Copper", "Waxed Exposed Cut Copper",
|
||||||
S("Weathered Cut Copper"), S("Waxed Weathered Cut Copper"),
|
"Weathered Cut Copper", "Waxed Weathered Cut Copper",
|
||||||
S("Oxidized Cut Copper"), S("Waxed Oxidized Cut Copper")
|
"Oxidized Cut Copper", "Waxed Oxidized Cut Copper"
|
||||||
},
|
},
|
||||||
["grate"] = {
|
["grate"] = {
|
||||||
S("Copper Grate"), S("Waxed Copper Grate"),
|
"Copper Grate", "Waxed Copper Grate",
|
||||||
S("Exposed Copper Grate"), S("Waxed Exposed Copper Grate"),
|
"Exposed Copper Grate", "Waxed Exposed Copper Grate",
|
||||||
S("Weathered Copper Grate"), S("Waxed Weathered Copper Grate"),
|
"Weathered Copper Grate", "Waxed Weathered Copper Grate",
|
||||||
S("Oxidized Copper Grate"), S("Waxed Oxidized Copper Grate")
|
"Oxidized Copper Grate", "Waxed Oxidized Copper Grate"
|
||||||
},
|
},
|
||||||
["chiseled"] = {
|
["chiseled"] = {
|
||||||
S("Chiseled Copper"), S("Waxed Chiseled Copper"),
|
"Chiseled Copper", "Waxed Chiseled Copper",
|
||||||
S("Exposed Chiseled Copper"), S("Waxed Exposed Chiseled Copper"),
|
"Exposed Chiseled Copper", "Waxed Exposed Chiseled Copper",
|
||||||
S("Weathered Chiseled Copper"), S("Waxed Weathered Chiseled Copper"),
|
"Weathered Chiseled Copper", "Waxed Weathered Chiseled Copper",
|
||||||
S("Oxidized Chiseled Copper"), S("Waxed Oxidized Chiseled Copper")
|
"Oxidized Chiseled Copper", "Waxed Oxidized Chiseled Copper"
|
||||||
},
|
},
|
||||||
["bulb_off"] = {
|
["bulb_off"] = {
|
||||||
S("Copper Bulb"), S("Waxed Copper Bulb"),
|
"Copper Bulb", "Waxed Copper Bulb",
|
||||||
S("Exposed Copper Bulb"), S("Waxed Exposed Copper Bulb"),
|
"Exposed Copper Bulb", "Waxed Exposed Copper Bulb",
|
||||||
S("Weathered Copper Bulb"), S("Waxed Weathered Copper Bulb"),
|
"Weathered Copper Bulb", "Waxed Weathered Copper Bulb",
|
||||||
S("Oxidized Copper Bulb"), S("Waxed Oxidized Copper Bulb")
|
"Oxidized Copper Bulb", "Waxed Oxidized Copper Bulb"
|
||||||
},
|
},
|
||||||
["bulb_on"] = {
|
["bulb_on"] = {
|
||||||
S("Copper Bulb").." "..S("(Lit)"),
|
{"Copper Bulb", lit_desc}, {"Waxed Copper Bulb", lit_desc},
|
||||||
S("Waxed Copper Bulb").." "..S("(Lit)"),
|
{"Exposed Copper Bulb", lit_desc}, {"Waxed Exposed Copper Bulb", lit_desc},
|
||||||
S("Exposed Copper Bulb").." "..S("(Lit)"),
|
{"Weathered Copper Bulb", lit_desc}, {"Waxed Weathered Copper Bulb", lit_desc},
|
||||||
S("Waxed Exposed Copper Bulb").." "..S("(Lit)"),
|
{"Oxidized Copper Bulb", lit_desc}, {"Waxed Oxidized Copper Bulb", lit_desc}
|
||||||
S("Weathered Copper Bulb").." "..S("(Lit)"),
|
|
||||||
S("Waxed Weathered Copper Bulb").." "..S("(Lit)"),
|
|
||||||
S("Oxidized Copper Bulb").." "..S("(Lit)"),
|
|
||||||
S("Waxed Oxidized Copper Bulb").." "..S("(Lit)")
|
|
||||||
},
|
},
|
||||||
["bulb_powered_off"] = {
|
["bulb_powered_off"] = {
|
||||||
S("Copper Bulb").." "..S("(Powered)"),
|
{"Copper Bulb", pow_desc}, {"Waxed Copper Bulb", pow_desc},
|
||||||
S("Waxed Copper Bulb").." "..S("(Powered)"),
|
{"Exposed Copper Bulb", pow_desc}, {"Waxed Exposed Copper Bulb", pow_desc},
|
||||||
S("Exposed Copper Bulb").." "..S("(Powered)"),
|
{"Weathered Copper Bulb", pow_desc}, {"Waxed Weathered Copper Bulb", pow_desc},
|
||||||
S("Waxed Exposed Copper Bulb").." "..S("(Powered)"),
|
{"Oxidized Copper Bulb", pow_desc}, {"Waxed Oxidized Copper Bulb", pow_desc}
|
||||||
S("Weathered Copper Bulb").." "..S("(Powered)"),
|
|
||||||
S("Waxed Weathered Copper Bulb").." "..S("(Powered)"),
|
|
||||||
S("Oxidized Copper Bulb").." "..S("(Powered)"),
|
|
||||||
S("Waxed Oxidized Copper Bulb").." "..S("(Powered)")
|
|
||||||
},
|
},
|
||||||
["bulb_powered_on"] = {
|
["bulb_powered_on"] = {
|
||||||
S("Copper Bulb").." "..S("(Lit and Powered)"),
|
{"Copper Bulb", mix_desc}, {"Waxed Copper Bulb", mix_desc},
|
||||||
S("Waxed Copper Bulb").." "..S("(Lit and Powered)"),
|
{"Exposed Copper Bulb", mix_desc}, {"Waxed Exposed Copper Bulb", mix_desc},
|
||||||
S("Exposed Copper Bulb").." "..S("(Lit and Powered)"),
|
{"Weathered Copper Bulb", mix_desc}, {"Waxed Weathered Copper Bulb", mix_desc},
|
||||||
S("Waxed Exposed Copper Bulb").." "..S("(Lit and Powered)"),
|
{"Oxidized Copper Bulb", mix_desc}, {"Waxed Oxidized Copper Bulb", mix_desc}
|
||||||
S("Weathered Copper Bulb").." "..S("(Lit and Powered)"),
|
|
||||||
S("Waxed Weathered Copper Bulb").." "..S("(Lit and Powered)"),
|
|
||||||
S("Oxidized Copper Bulb").." "..S("(Lit and Powered)"),
|
|
||||||
S("Waxed Oxidized Copper Bulb").." "..S("(Lit and Powered)")
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
mcl_copper.copper_longdescs = {
|
mcl_copper.copper_longdescs = {
|
||||||
["block"] = {
|
["block"] = {
|
||||||
S("A block of copper is mostly a decorative block."),
|
"A block of copper is mostly a decorative block.",
|
||||||
S("Exposed copper is a decorative block."),
|
"Exposed copper is a decorative block.",
|
||||||
S("Weathered copper is a decorative block."),
|
"Weathered copper is a decorative block.",
|
||||||
S("Oxidized copper is a decorative block.")
|
"Oxidized copper is a decorative block."
|
||||||
},
|
},
|
||||||
["cut"] = {
|
["cut"] = {
|
||||||
S("Cut copper is a decorative block."),
|
"Cut copper is a decorative block.",
|
||||||
S("Exposed cut copper is a decorative block."),
|
"Exposed cut copper is a decorative block.",
|
||||||
S("Weathered cut copper is a decorative block."),
|
"Weathered cut copper is a decorative block.",
|
||||||
S("Oxidized cut copper is a decorative block.")
|
"Oxidized cut copper is a decorative block."
|
||||||
},
|
},
|
||||||
["grate"] = {
|
["grate"] = {
|
||||||
S("Copper grate is a decorative block."),
|
"Copper grate is a decorative block.",
|
||||||
S("Exposed copper grate is a decorative block."),
|
"Exposed copper grate is a decorative block.",
|
||||||
S("Weathered copper grate is a decorative block."),
|
"Weathered copper grate is a decorative block.",
|
||||||
S("Oxidized copper grate is a decorative block.")
|
"Oxidized copper grate is a decorative block."
|
||||||
},
|
},
|
||||||
["chiseled"] = {
|
["chiseled"] = {
|
||||||
S("Chiseled copper is a decorative block."),
|
"Chiseled copper is a decorative block.",
|
||||||
S("Exposed chiseled copper is a decorative block."),
|
"Exposed chiseled copper is a decorative block.",
|
||||||
S("Weathered chiseled copper is a decorative block."),
|
"Weathered chiseled copper is a decorative block.",
|
||||||
S("Oxidized chiseled copper is a decorative block.")
|
"Oxidized chiseled copper is a decorative block."
|
||||||
},
|
},
|
||||||
["bulb_off"] = {
|
["bulb_off"] = {
|
||||||
S("Copper bulb is a decorative block and a light source when lited."),
|
"Copper bulb is a decorative block and a light source when lited.",
|
||||||
S("Exposed copper bulb is a decorative block and a light source when lited."),
|
"Exposed copper bulb is a decorative block and a light source when lited.",
|
||||||
S("Weathered copper bulb is a decorative block and a light source when lited."),
|
"Weathered copper bulb is a decorative block and a light source when lited.",
|
||||||
S("Oxidized copper bulb is a decorative block and a light source when lited.")
|
"Oxidized copper bulb is a decorative block and a light source when lited."
|
||||||
},
|
},
|
||||||
["bulb_on"] = {
|
["bulb_on"] = {
|
||||||
S("Copper bulb is a decorative block and a light source."),
|
"Copper bulb is a decorative block and a light source.",
|
||||||
S("Exposed copper bulb is a decorative block and a light source."),
|
"Exposed copper bulb is a decorative block and a light source.",
|
||||||
S("Weathered copper bulb is a decorative block and a light source."),
|
"Weathered copper bulb is a decorative block and a light source.",
|
||||||
S("Oxidized copper bulb is a decorative block and a light source.")
|
"Oxidized copper bulb is a decorative block and a light source."
|
||||||
},
|
},
|
||||||
["bulb_powered_off"] = {
|
["bulb_powered_off"] = {
|
||||||
S("Copper bulb is a decorative block and a light source when lited."),
|
"Copper bulb is a decorative block and a light source when lited.",
|
||||||
S("Exposed copper bulb is a decorative block and a light source when lited."),
|
"Exposed copper bulb is a decorative block and a light source when lited.",
|
||||||
S("Weathered copper bulb is a decorative block and a light source when lited."),
|
"Weathered copper bulb is a decorative block and a light source when lited.",
|
||||||
S("Oxidized copper bulb is a decorative block and a light source when lited.")
|
"Oxidized copper bulb is a decorative block and a light source when lited."
|
||||||
},
|
},
|
||||||
["bulb_powered_on"] = {
|
["bulb_powered_on"] = {
|
||||||
S("Copper bulb is a decorative block and a light source."),
|
"Copper bulb is a decorative block and a light source.",
|
||||||
S("Exposed copper bulb is a decorative block and a light source."),
|
"Exposed copper bulb is a decorative block and a light source.",
|
||||||
S("Weathered copper bulb is a decorative block and a light source."),
|
"Weathered copper bulb is a decorative block and a light source.",
|
||||||
S("Oxidized copper bulb is a decorative block and a light source.")
|
"Oxidized copper bulb is a decorative block and a light source."
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -126,54 +115,38 @@ mcl_copper.stairs_subnames = {
|
||||||
|
|
||||||
mcl_copper.stairs_descs = {
|
mcl_copper.stairs_descs = {
|
||||||
["copper_cut"] = {
|
["copper_cut"] = {
|
||||||
S("Slab of Cut Copper"),
|
"Slab of Cut Copper", "Double Slab of Cut Copper", "Stairs of Cut Copper",
|
||||||
S("Double Slab of Cut Copper"),
|
|
||||||
S("Stairs of Cut Copper"),
|
|
||||||
},
|
},
|
||||||
["waxed_copper_cut"] = {
|
["waxed_copper_cut"] = {
|
||||||
S("Waxed Slab of Cut Copper"),
|
"Waxed Slab of Cut Copper", "Waxed Double Slab of Cut Copper", "Waxed Stairs of Cut Copper",
|
||||||
S("Waxed Double Slab of Cut Copper"),
|
|
||||||
S("Waxed Stairs of Cut Copper"),
|
|
||||||
},
|
},
|
||||||
["copper_exposed_cut"] = {
|
["copper_exposed_cut"] = {
|
||||||
S("Slab of Exposed Cut Copper"),
|
"Slab of Exposed Cut Copper", "Double Slab of Exposed Cut Copper", "Stairs of Exposed Cut Copper"
|
||||||
S("Double Slab of Exposed Cut Copper"),
|
|
||||||
S("Stairs of Exposed Cut Copper")
|
|
||||||
},
|
},
|
||||||
["waxed_copper_exposed_cut"] = {
|
["waxed_copper_exposed_cut"] = {
|
||||||
S("Waxed Slab of Exposed Cut Copper"),
|
"Waxed Slab of Exposed Cut Copper", "Waxed Double Slab of Exposed Cut Copper", "Waxed Stairs of Exposed Cut Copper"
|
||||||
S("Waxed Double Slab of Exposed Cut Copper"),
|
|
||||||
S("Waxed Stairs of Exposed Cut Copper")
|
|
||||||
},
|
},
|
||||||
["copper_weathered_cut"] = {
|
["copper_weathered_cut"] = {
|
||||||
S("Slab of Weathered Cut Copper"),
|
"Slab of Weathered Cut Copper", "Double Slab of Weathered Cut Copper", "Stairs of Weathered Cut Copper"
|
||||||
S("Double Slab of Weathered Cut Copper"),
|
|
||||||
S("Stairs of Weathered Cut Copper")
|
|
||||||
},
|
},
|
||||||
["waxed_copper_weathered_cut"] = {
|
["waxed_copper_weathered_cut"] = {
|
||||||
S("Waxed Slab of Weathered Cut Copper"),
|
"Waxed Slab of Weathered Cut Copper", "Waxed Double Slab of Weathered Cut Copper", "Waxed Stairs of Weathered Cut Copper"
|
||||||
S("Waxed Double Slab of Weathered Cut Copper"),
|
|
||||||
S("Waxed Stairs of Weathered Cut Copper")
|
|
||||||
},
|
},
|
||||||
["copper_oxidized_cut"] = {
|
["copper_oxidized_cut"] = {
|
||||||
S("Slab of Oxidized Cut Copper"),
|
"Slab of Oxidized Cut Copper", "Double Slab of Oxidized Cut Copper", "Stairs of Oxidized Cut Copper"
|
||||||
S("Double Slab of Oxidized Cut Copper"),
|
|
||||||
S("Stairs of Oxidized Cut Copper")
|
|
||||||
},
|
},
|
||||||
["waxed_copper_oxidized_cut"] = {
|
["waxed_copper_oxidized_cut"] = {
|
||||||
S("Waxed Slab of Oxidized Cut Copper"),
|
"Waxed Slab of Oxidized Cut Copper", "Waxed Double Slab of Oxidized Cut Copper", "Waxed Stairs of Oxidized Cut Copper"
|
||||||
S("Waxed Double Slab of Oxidized Cut Copper"),
|
|
||||||
S("Waxed Stairs of Oxidized Cut Copper")
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
mcl_copper.doors_descs = {
|
mcl_copper.doors_descs = {
|
||||||
{S("Copper Door"), S("Copper Trapdoor")},
|
{"Copper Door", "Copper Trapdoor"},
|
||||||
{S("Waxed Copper Door"), S("Waxed Copper Trapdoor")},
|
{"Waxed Copper Door", "Waxed Copper Trapdoor"},
|
||||||
{S("Exposed Copper Door"), S("Exposed Copper Trapdoor")},
|
{"Exposed Copper Door", "Exposed Copper Trapdoor"},
|
||||||
{S("Waxed Exposed Copper Door"), S("Waxed Exposed Copper Trapdoor")},
|
{"Waxed Exposed Copper Door", "Waxed Exposed Copper Trapdoor"},
|
||||||
{S("Weathered Copper Door"), S("Weathered Copper Trapdoor")},
|
{"Weathered Copper Door", "Weathered Copper Trapdoor"},
|
||||||
{S("Waxed Weathered Copper Door"), S("Waxed Weathered Copper Trapdoor")},
|
{"Waxed Weathered Copper Door", "Waxed Weathered Copper Trapdoor"},
|
||||||
{S("Oxidized Copper Door"), S("Oxidized Copper Trapdoor")},
|
{"Oxidized Copper Door", "Oxidized Copper Trapdoor"},
|
||||||
{S("Waxed Oxidized Copper Door"), S("Waxed Oxidized Copper Trapdoor")}
|
{"Waxed Oxidized Copper Door", "Waxed Oxidized Copper Trapdoor"}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,17 +1,9 @@
|
||||||
local path = minetest.get_modpath("mcl_copper") -- Getting mcl_copper mod path
|
local path = minetest.get_modpath("mcl_copper")
|
||||||
|
|
||||||
mcl_copper = {} -- Initializing global variable mcl_copper.
|
mcl_copper = {} -- initialize global variable.
|
||||||
|
|
||||||
-- Loading the file containing the descriptions and longdescs of each block
|
|
||||||
dofile(path .. "/descriptions.lua")
|
dofile(path .. "/descriptions.lua")
|
||||||
-- Loading the file that registers all blocks provided by this mod
|
|
||||||
dofile(path .. "/nodes.lua")
|
dofile(path .. "/nodes.lua")
|
||||||
-- Loading the file that registers craftitems
|
|
||||||
dofile(path .. "/items.lua")
|
dofile(path .. "/items.lua")
|
||||||
-- Loading the file that registers the blocks crafting recipes
|
|
||||||
dofile(path .. "/crafting.lua")
|
dofile(path .. "/crafting.lua")
|
||||||
--[[
|
|
||||||
Loading the file that handles oxidized, waxed and stripped variants for blocks that are registered
|
|
||||||
in other mods and normally do not have these variants.
|
|
||||||
]]
|
|
||||||
dofile(path .. "/functions.lua")
|
dofile(path .. "/functions.lua")
|
||||||
|
|
|
@ -1,116 +1,37 @@
|
||||||
# textdomain: mcl_copper
|
# textdomain: mcl_copper
|
||||||
Block of Copper=Kupferblock
|
|
||||||
Waxed Block of Copper=
|
|
||||||
Exposed Copper=Angelaufener Kupferblock
|
|
||||||
Waxed Exposed Copper=
|
|
||||||
Weathered Copper=Verwitterter Kupferblock
|
|
||||||
Waxed Weathered Copper=
|
|
||||||
Oxidized Copper=Oxidierter Kupferblock
|
|
||||||
Waxed Oxidized Copper=
|
|
||||||
Cut Copper=Geschnittener Kupferblock
|
|
||||||
Waxed Cut Copper=
|
|
||||||
Exposed Cut Copper=Angelaufener geschnittener Kupferblock
|
|
||||||
Waxed Exposed Cut Copper=
|
|
||||||
Weathered Cut Copper=Verwitterter geschnittener Kupferblock
|
|
||||||
Waxed Weathered Cut Copper=
|
|
||||||
Oxidized Cut Copper=Oxidierter geschnittener Kupferblock
|
|
||||||
Waxed Oxidized Cut Copper=
|
|
||||||
Copper Grate=
|
|
||||||
Waxed Copper Grate=
|
|
||||||
Exposed Copper Grate=
|
|
||||||
Waxed Exposed Copper Grate=
|
|
||||||
Weathered Copper Grate=
|
|
||||||
Waxed Weathered Copper Grate=
|
|
||||||
Oxidized Copper Grate=
|
|
||||||
Waxed Oxidized Copper Grate=
|
|
||||||
Chiseled Copper=
|
|
||||||
Waxed Chiseled Copper=
|
|
||||||
Exposed Chiseled Copper=
|
|
||||||
Waxed Exposed Chiseled Copper=
|
|
||||||
Weathered Chiseled Copper=
|
|
||||||
Waxed Weathered Chiseled Copper=
|
|
||||||
Oxidized Chiseled Copper=
|
|
||||||
Waxed Oxidized Chiseled Copper=
|
|
||||||
Copper Bulb=
|
|
||||||
Waxed Copper Bulb=
|
|
||||||
Exposed Copper Bulb=
|
|
||||||
Waxed Exposed Copper Bulb=
|
|
||||||
Weathered Copper Bulb=
|
|
||||||
Waxed Weathered Copper Bulb=
|
|
||||||
Oxidized Copper Bulb=
|
|
||||||
Waxed Oxidized Copper Bulb=
|
|
||||||
(Lit)=
|
|
||||||
(Powered)=
|
|
||||||
(Lit and Powered)=
|
|
||||||
A block of copper is mostly a decorative block.=Ein Kupferblock wird meistens als dekorativer Block verwendet.
|
A block of copper is mostly a decorative block.=Ein Kupferblock wird meistens als dekorativer Block verwendet.
|
||||||
Exposed copper is a decorative block.=Ein Angelaufener Kupferblock ist ein dekorativer Block.
|
|
||||||
Weathered copper is a decorative block.=Ein Verwitterter Kupferblock ist ein dekorativer Block.
|
|
||||||
Oxidized copper is a decorative block.=Ein Oxidierter Kupferblockist ist ein dekorativer Block.
|
|
||||||
Cut copper is a decorative block.=Ein Geschnittener Kupferblock ist ein dekorativer Block.
|
|
||||||
Exposed cut copper is a decorative block.=Ein Angelaufener geschnittener Kupferblock ist ein dekorativer Block.
|
|
||||||
Weathered cut copper is a decorative block.=Ein Verwitterter geschnittener Kupferblock ist ein dekorativer Block.
|
|
||||||
Oxidized cut copper is a decorative block.=Ein Oxidierter geschnittener Kupferblock ist ein dekorativer Block.
|
|
||||||
Copper grate is a decorative block.=
|
|
||||||
Exposed copper grate is a decorative block.=
|
|
||||||
Weathered copper grate is a decorative block.=
|
|
||||||
Oxidized copper grate is a decorative block.=
|
|
||||||
Chiseled copper is a decorative block.=
|
|
||||||
Exposed chiseled copper is a decorative block.=
|
|
||||||
Weathered chiseled copper is a decorative block.=
|
|
||||||
Oxidized chiseled copper is a decorative block.=
|
|
||||||
Copper bulb is a decorative block and a light source when lited.=
|
|
||||||
Exposed copper bulb is a decorative block and a light source when lited.=
|
|
||||||
Weathered copper bulb is a decorative block and a light source when lited.=
|
|
||||||
Oxidized copper bulb is a decorative block and a light source when lited.=
|
|
||||||
Copper bulb is a decorative block and a light source.=
|
|
||||||
Exposed copper bulb is a decorative block and a light source.=
|
|
||||||
Weathered copper bulb is a decorative block and a light source.=
|
|
||||||
Oxidized copper bulb is a decorative block and a light source.=
|
|
||||||
Slab of Cut Copper=Geschnittene Kupferstufe
|
|
||||||
Double Slab of Cut Copper=Doppelte Geschnittene Kupferstufe
|
|
||||||
Stairs of Cut Copper=Geschnittene Kupfertreppe
|
|
||||||
Waxed Slab of Cut Copper=
|
|
||||||
Waxed Double Slab of Cut Copper=
|
|
||||||
Waxed Stairs of Cut Copper=
|
|
||||||
Slab of Exposed Cut Copper=Angelaufene Geschnittene Kupferstufe
|
|
||||||
Double Slab of Exposed Cut Copper=Doppelte Angelaufene Geschnittene Kupferstufe
|
|
||||||
Stairs of Exposed Cut Copper=Angelaufene Geschnittene Kupfertreppe
|
|
||||||
Waxed Slab of Exposed Cut Copper=
|
|
||||||
Waxed Double Slab of Exposed Cut Copper=
|
|
||||||
Waxed Stairs of Exposed Cut Copper=
|
|
||||||
Slab of Weathered Cut Copper=Verwitterte Geschnittene Kupferstufe
|
|
||||||
Double Slab of Weathered Cut Copper=Doppelte Verwitterte Geschnittene Kupferstufe
|
|
||||||
Stairs of Weathered Cut Copper=Verwitterte Geschnittene Kupfertreppe
|
|
||||||
Waxed Slab of Weathered Cut Copper=
|
|
||||||
Waxed Double Slab of Weathered Cut Copper=
|
|
||||||
Waxed Stairs of Weathered Cut Copper=
|
|
||||||
Slab of Oxidized Cut Copper=Oxidierte Geschnittene Kupferstufe
|
|
||||||
Double Slab of Oxidized Cut Copper=Doppelte Oxidierte Geschnittene Kupferstufe
|
|
||||||
Stairs of Oxidized Cut Copper=Oxidierte Geschnittene Kupfertreppe
|
|
||||||
Waxed Slab of Oxidized Cut Copper=
|
|
||||||
Waxed Double Slab of Oxidized Cut Copper=
|
|
||||||
Waxed Stairs of Oxidized Cut Copper=
|
|
||||||
Copper Door=
|
|
||||||
Copper Trapdoor=
|
|
||||||
Waxed Copper Door=
|
|
||||||
Waxed Copper Trapdoor=
|
|
||||||
Exposed Copper Door=
|
|
||||||
Exposed Copper Trapdoor=
|
|
||||||
Waxed Exposed Copper Door=
|
|
||||||
Waxed Exposed Copper Trapdoor=
|
|
||||||
Weathered Copper Door=
|
|
||||||
Weathered Copper Trapdoor=
|
|
||||||
Waxed Weathered Copper Door=
|
|
||||||
Waxed Weathered Copper Trapdoor=
|
|
||||||
Oxidized Copper Door=
|
|
||||||
Oxidized Copper Trapdoor=
|
|
||||||
Waxed Oxidized Copper Door=
|
|
||||||
Waxed Oxidized Copper Trapdoor=
|
|
||||||
Copper Ingot=Kupfer Barren
|
|
||||||
Molten Raw Copper. It is used to craft blocks.=Geschmolzenes Rohkupfer. Es wird verwendet, um Blöcke herzustellen.
|
|
||||||
Raw Copper=Rohkupfer
|
|
||||||
Raw Copper. Mine a Copper Ore to get it.=Bauen sie ein Kupfererz ab, um es zu erhalten.
|
|
||||||
Copper Ore=Kupfererz
|
|
||||||
Some copper contained in stone, it is pretty common and can be found below sea level.=Stein, in dem etwas Kupfer enthalten ist. Es ist ziemlich häufig und kann unter dem Meeresspiegel gefunden werden.
|
|
||||||
Block of Raw Copper=Rohkupferblock
|
|
||||||
A block used for compact raw copper storage.=Ein Block für die kompakte Lagerung von Rohkupfer.
|
A block used for compact raw copper storage.=Ein Block für die kompakte Lagerung von Rohkupfer.
|
||||||
|
Block of Copper=Kupferblock
|
||||||
|
Block of Raw Copper=Rohkupferblock
|
||||||
|
Copper Ingot=Kupfer Barren
|
||||||
|
Copper Ore=Kupfererz
|
||||||
|
Cut copper is a decorative block.=Ein Geschnittener Kupferblock ist ein dekorativer Block.
|
||||||
|
Cut Copper=Geschnittener Kupferblock
|
||||||
|
Double Slab of Cut Copper=Doppelte Geschnittene Kupferstufe
|
||||||
|
Double Slab of Exposed Cut Copper=Doppelte Angelaufene Geschnittene Kupferstufe
|
||||||
|
Double Slab of Oxidized Cut Copper=Doppelte Oxidierte Geschnittene Kupferstufe
|
||||||
|
Double Slab of Weathered Cut Copper=Doppelte Verwitterte Geschnittene Kupferstufe
|
||||||
|
Exposed copper is a decorative block.=Ein Angelaufener Kupferblock ist ein dekorativer Block.
|
||||||
|
Exposed Copper=Angelaufener Kupferblock
|
||||||
|
Exposed cut copper is a decorative block.=Ein Angelaufener geschnittener Kupferblock ist ein dekorativer Block.
|
||||||
|
Exposed Cut Copper=Angelaufener geschnittener Kupferblock
|
||||||
|
Molten Raw Copper. It is used to craft blocks.=Geschmolzenes Rohkupfer. Es wird verwendet, um Blöcke herzustellen.
|
||||||
|
Oxidized copper is a decorative block.=Ein Oxidierter Kupferblockist ist ein dekorativer Block.
|
||||||
|
Oxidized Copper=Oxidierter Kupferblock
|
||||||
|
Oxidized cut copper is a decorative block.=Ein Oxidierter geschnittener Kupferblock ist ein dekorativer Block.
|
||||||
|
Oxidized Cut Copper=Oxidierter geschnittener Kupferblock
|
||||||
|
Raw Copper. Mine a Copper Ore to get it.=Bauen sie ein Kupfererz ab, um es zu erhalten.
|
||||||
|
Raw Copper=Rohkupfer
|
||||||
|
Slab of Cut Copper=Geschnittene Kupferstufe
|
||||||
|
Slab of Exposed Cut Copper=Angelaufene Geschnittene Kupferstufe
|
||||||
|
Slab of Oxidized Cut Copper=Oxidierte Geschnittene Kupferstufe
|
||||||
|
Slab of Weathered Cut Copper=Verwitterte Geschnittene Kupferstufe
|
||||||
|
Some copper contained in stone, it is pretty common and can be found below sea level.=Stein, in dem etwas Kupfer enthalten ist. Es ist ziemlich häufig und kann unter dem Meeresspiegel gefunden werden.
|
||||||
|
Stairs of Cut Copper=Geschnittene Kupfertreppe
|
||||||
|
Stairs of Exposed Cut Copper=Angelaufene Geschnittene Kupfertreppe
|
||||||
|
Stairs of Oxidized Cut Copper=Oxidierte Geschnittene Kupfertreppe
|
||||||
|
Stairs of Weathered Cut Copper=Verwitterte Geschnittene Kupfertreppe
|
||||||
|
Weathered copper is a decorative block.=Ein Verwitterter Kupferblock ist ein dekorativer Block.
|
||||||
|
Weathered Copper=Verwitterter Kupferblock
|
||||||
|
Weathered cut copper is a decorative block.=Ein Verwitterter geschnittener Kupferblock ist ein dekorativer Block.
|
||||||
|
Weathered Cut Copper=Verwitterter geschnittener Kupferblock
|
||||||
|
|
|
@ -1,116 +1,57 @@
|
||||||
# textdomain: mcl_copper
|
# textdomain: mcl_copper
|
||||||
|
A block of copper is mostly a decorative block.=Le bloc de cuivre est surtout un bloc décoratif.
|
||||||
|
A block used for compact raw copper storage.=Un bloc utilisé pour le stockage compact de cuivre brut.
|
||||||
Block of Copper=Bloc de cuivre
|
Block of Copper=Bloc de cuivre
|
||||||
Waxed Block of Copper=Bloc de cuivre ciré
|
Waxed Block of Copper=Bloc de cuivre ciré
|
||||||
Exposed Copper=Cuivre exposé
|
Block of Raw Copper=Bloc de cuivre brut
|
||||||
Waxed Exposed Copper=Cuivre exposé ciré
|
Copper Ingot=Lingot de cuivre
|
||||||
Weathered Copper=Cuivre érodé
|
Copper Ore=Minerai de cuivre
|
||||||
Waxed Weathered Copper=Cuivre érodé ciré
|
Cut copper is a decorative block.=Le cuivre taillé est un bloc décoratif.
|
||||||
Oxidized Copper=Cuivre oxydé
|
|
||||||
Waxed Oxidized Copper=Cuivre oxydé ciré
|
|
||||||
Cut Copper=Cuivre taillé
|
Cut Copper=Cuivre taillé
|
||||||
Waxed Cut Copper=Cuivre taillé ciré
|
Waxed Cut Copper=Cuivre taillé ciré
|
||||||
|
Double Slab of Cut Copper=Double dalle de cuivre taillé
|
||||||
|
Double Slab of Exposed Cut Copper=Double dalle de cuivre taillé exposé
|
||||||
|
Double Slab of Oxidized Cut Copper=Double dalle de cuivre taillé oxydé
|
||||||
|
Double Slab of Weathered Cut Copper=Double dalle de cuivre taillé érodé
|
||||||
|
Waxed Double Slab of Cut Copper=Double dalle de cuivre taillé ciré
|
||||||
|
Waxed Double Slab of Exposed Cut Copper=Double dalle de cuivre taillé exposé ciré
|
||||||
|
Waxed Double Slab of Oxidized Cut Copper=Double dalle de cuivre taillé oxydé ciré
|
||||||
|
Waxed Double Slab of Weathered Cut Copper=Double dalle de cuivre taillé érodé ciré
|
||||||
|
Exposed copper is a decorative block.=Le cuivre exposé est un bloc décoratif.
|
||||||
|
Exposed Copper=Cuivre exposé
|
||||||
|
Waxed Exposed Copper=Cuivre exposé ciré
|
||||||
|
Exposed cut copper is a decorative block.=Le cuivre taillé exposé est un bloc décoratif.
|
||||||
Exposed Cut Copper=Cuivre taillé exposé
|
Exposed Cut Copper=Cuivre taillé exposé
|
||||||
Waxed Exposed Cut Copper=Cuivre taillé exposé ciré
|
Waxed Exposed Cut Copper=Cuivre taillé exposé ciré
|
||||||
Weathered Cut Copper=Cuivre taillé érodé
|
Molten Raw Copper. It is used to craft blocks.=Cuivre brut fondu. Utilisé pour fabriquer des blocs.
|
||||||
Waxed Weathered Cut Copper=Cuivre taillé érodé ciré
|
Oxidized copper is a decorative block.=Le cuivre oxydé est un bloc décoratif.
|
||||||
|
Oxidized Copper=Cuivre oxydé
|
||||||
|
Waxed Oxidized Copper=Cuivre oxydé ciré
|
||||||
|
Oxidized cut copper is a decorative block.=Le cuivre taillé oxydé est un bloc décoratif.
|
||||||
Oxidized Cut Copper=Cuivre taillé oxydé
|
Oxidized Cut Copper=Cuivre taillé oxydé
|
||||||
Waxed Oxidized Cut Copper=Cuivre taillé oxydé ciré
|
Waxed Oxidized Cut Copper=Cuivre taillé oxydé ciré
|
||||||
Copper Grate=
|
|
||||||
Waxed Copper Grate=
|
|
||||||
Exposed Copper Grate=
|
|
||||||
Waxed Exposed Copper Grate=
|
|
||||||
Weathered Copper Grate=
|
|
||||||
Waxed Weathered Copper Grate=
|
|
||||||
Oxidized Copper Grate=
|
|
||||||
Waxed Oxidized Copper Grate=
|
|
||||||
Chiseled Copper=
|
|
||||||
Waxed Chiseled Copper=
|
|
||||||
Exposed Chiseled Copper=
|
|
||||||
Waxed Exposed Chiseled Copper=
|
|
||||||
Weathered Chiseled Copper=
|
|
||||||
Waxed Weathered Chiseled Copper=
|
|
||||||
Oxidized Chiseled Copper=
|
|
||||||
Waxed Oxidized Chiseled Copper=
|
|
||||||
Copper Bulb=
|
|
||||||
Waxed Copper Bulb=
|
|
||||||
Exposed Copper Bulb=
|
|
||||||
Waxed Exposed Copper Bulb=
|
|
||||||
Weathered Copper Bulb=
|
|
||||||
Waxed Weathered Copper Bulb=
|
|
||||||
Oxidized Copper Bulb=
|
|
||||||
Waxed Oxidized Copper Bulb=
|
|
||||||
(Lit)=
|
|
||||||
(Powered)=
|
|
||||||
(Lit and Powered)=
|
|
||||||
A block of copper is mostly a decorative block.=Le bloc de cuivre est surtout un bloc décoratif.
|
|
||||||
Exposed copper is a decorative block.=Le cuivre exposé est un bloc décoratif.
|
|
||||||
Weathered copper is a decorative block.=Le cuivre érodé est un bloc décoratif.
|
|
||||||
Oxidized copper is a decorative block.=Le cuivre oxydé est un bloc décoratif.
|
|
||||||
Cut copper is a decorative block.=Le cuivre taillé est un bloc décoratif.
|
|
||||||
Exposed cut copper is a decorative block.=Le cuivre taillé exposé est un bloc décoratif.
|
|
||||||
Weathered cut copper is a decorative block.=Le cuivre taillé érodé est un bloc décoratif.
|
|
||||||
Oxidized cut copper is a decorative block.=Le cuivre taillé oxydé est un bloc décoratif.
|
|
||||||
Copper grate is a decorative block.=
|
|
||||||
Exposed copper grate is a decorative block.=
|
|
||||||
Weathered copper grate is a decorative block.=
|
|
||||||
Oxidized copper grate is a decorative block.=
|
|
||||||
Chiseled copper is a decorative block.=
|
|
||||||
Exposed chiseled copper is a decorative block.=
|
|
||||||
Weathered chiseled copper is a decorative block.=
|
|
||||||
Oxidized chiseled copper is a decorative block.=
|
|
||||||
Copper bulb is a decorative block and a light source when lited.=
|
|
||||||
Exposed copper bulb is a decorative block and a light source when lited.=
|
|
||||||
Weathered copper bulb is a decorative block and a light source when lited.=
|
|
||||||
Oxidized copper bulb is a decorative block and a light source when lited.=
|
|
||||||
Copper bulb is a decorative block and a light source.=
|
|
||||||
Exposed copper bulb is a decorative block and a light source.=
|
|
||||||
Weathered copper bulb is a decorative block and a light source.=
|
|
||||||
Oxidized copper bulb is a decorative block and a light source.=
|
|
||||||
Slab of Cut Copper=Dalle de cuivre taillé
|
|
||||||
Double Slab of Cut Copper=Double dalle de cuivre taillé
|
|
||||||
Stairs of Cut Copper=Escalier de cuivre taillé
|
|
||||||
Waxed Slab of Cut Copper=Dalle de cuivre taillé ciré
|
|
||||||
Waxed Double Slab of Cut Copper=Double dalle de cuivre taillé ciré
|
|
||||||
Waxed Stairs of Cut Copper=Escalier de cuivre taillé ciré
|
|
||||||
Slab of Exposed Cut Copper=Dalle de cuivre taillé exposé
|
|
||||||
Double Slab of Exposed Cut Copper=Double dalle de cuivre taillé exposé
|
|
||||||
Stairs of Exposed Cut Copper=Escalier de cuivre taillé exposé
|
|
||||||
Waxed Slab of Exposed Cut Copper=Dalle de cuivre taillé exposé ciré
|
|
||||||
Waxed Double Slab of Exposed Cut Copper=Double dalle de cuivre taillé exposé ciré
|
|
||||||
Waxed Stairs of Exposed Cut Copper=Escalier de cuivre taillé exposé ciré
|
|
||||||
Slab of Weathered Cut Copper=Dalle de cuivre taillé érodé
|
|
||||||
Double Slab of Weathered Cut Copper=Double dalle de cuivre taillé érodé
|
|
||||||
Stairs of Weathered Cut Copper=Escalier de cuivre taillé érodé
|
|
||||||
Waxed Slab of Weathered Cut Copper=Dalle de cuivre taillé érodé ciré
|
|
||||||
Waxed Double Slab of Weathered Cut Copper=Double dalle de cuivre taillé érodé ciré
|
|
||||||
Waxed Stairs of Weathered Cut Copper=Escalier de cuivre taillé érodé ciré
|
|
||||||
Slab of Oxidized Cut Copper=Dalle de cuivre taillé oxydé
|
|
||||||
Double Slab of Oxidized Cut Copper=Double dalle de cuivre taillé oxydé
|
|
||||||
Stairs of Oxidized Cut Copper=Escalier de cuivre taillé oxydé
|
|
||||||
Waxed Slab of Oxidized Cut Copper=Dalle de cuivre taillé oxydé ciré
|
|
||||||
Waxed Double Slab of Oxidized Cut Copper=Double dalle de cuivre taillé oxydé ciré
|
|
||||||
Waxed Stairs of Oxidized Cut Copper=Escalier de cuivre taillé oxydé ciré
|
|
||||||
Copper Door=
|
|
||||||
Copper Trapdoor=
|
|
||||||
Waxed Copper Door=
|
|
||||||
Waxed Copper Trapdoor=
|
|
||||||
Exposed Copper Door=
|
|
||||||
Exposed Copper Trapdoor=
|
|
||||||
Waxed Exposed Copper Door=
|
|
||||||
Waxed Exposed Copper Trapdoor=
|
|
||||||
Weathered Copper Door=
|
|
||||||
Weathered Copper Trapdoor=
|
|
||||||
Waxed Weathered Copper Door=
|
|
||||||
Waxed Weathered Copper Trapdoor=
|
|
||||||
Oxidized Copper Door=
|
|
||||||
Oxidized Copper Trapdoor=
|
|
||||||
Waxed Oxidized Copper Door=
|
|
||||||
Waxed Oxidized Copper Trapdoor=
|
|
||||||
Copper Ingot=Lingot de cuivre
|
|
||||||
Molten Raw Copper. It is used to craft blocks.=Cuivre brut fondu. Utilisé pour fabriquer des blocs.
|
|
||||||
Raw Copper=Cuivre brut
|
|
||||||
Raw Copper. Mine a Copper Ore to get it.=Cuivre brut. Creuser dans du minerai de cuivre pour l'obtenir.
|
Raw Copper. Mine a Copper Ore to get it.=Cuivre brut. Creuser dans du minerai de cuivre pour l'obtenir.
|
||||||
Copper Ore=Minerai de cuivre
|
Raw Copper=Cuivre brut
|
||||||
|
Slab of Cut Copper=Dalle de cuivre taillé
|
||||||
|
Slab of Exposed Cut Copper=Dalle de cuivre taillé exposé
|
||||||
|
Slab of Oxidized Cut Copper=Dalle de cuivre taillé oxydé
|
||||||
|
Slab of Weathered Cut Copper=Dalle de cuivre taillé érodé
|
||||||
|
Waxed Slab of Cut Copper=Dalle de cuivre taillé ciré
|
||||||
|
Waxed Slab of Exposed Cut Copper=Dalle de cuivre taillé exposé ciré
|
||||||
|
Waxed Slab of Oxidized Cut Copper=Dalle de cuivre taillé oxydé ciré
|
||||||
|
Waxed Slab of Weathered Cut Copper=Dalle de cuivre taillé érodé ciré
|
||||||
Some copper contained in stone, it is pretty common and can be found below sea level.=Un peu de cuivre se trouve dans la pierre, il est plutôt répandu et peut être trouvé sous le niveau de la mer.
|
Some copper contained in stone, it is pretty common and can be found below sea level.=Un peu de cuivre se trouve dans la pierre, il est plutôt répandu et peut être trouvé sous le niveau de la mer.
|
||||||
Block of Raw Copper=Bloc de cuivre brut
|
Stairs of Cut Copper=Escalier de cuivre taillé
|
||||||
A block used for compact raw copper storage.=Un bloc utilisé pour le stockage compact de cuivre brut.
|
Stairs of Exposed Cut Copper=Escalier de cuivre taillé exposé
|
||||||
|
Stairs of Oxidized Cut Copper=Escalier de cuivre taillé oxydé
|
||||||
|
Stairs of Weathered Cut Copper=Escalier de cuivre taillé érodé
|
||||||
|
Waxed Stairs of Cut Copper=Escalier de cuivre taillé ciré
|
||||||
|
Waxed Stairs of Exposed Cut Copper=Escalier de cuivre taillé exposé ciré
|
||||||
|
Waxed Stairs of Oxidized Cut Copper=Escalier de cuivre taillé oxydé ciré
|
||||||
|
Waxed Stairs of Weathered Cut Copper=Escalier de cuivre taillé érodé ciré
|
||||||
|
Weathered copper is a decorative block.=Le cuivre érodé est un bloc décoratif.
|
||||||
|
Weathered Copper=Cuivre érodé
|
||||||
|
Waxed Weathered Copper=Cuivre érodé ciré
|
||||||
|
Weathered cut copper is a decorative block.=Le cuivre taillé érodé est un bloc décoratif.
|
||||||
|
Weathered Cut Copper=Cuivre taillé érodé
|
||||||
|
Waxed Weathered Cut Copper=Cuivre taillé érodé ciré
|
||||||
|
|
|
@ -1,116 +1,57 @@
|
||||||
# textdomain: mcl_copper
|
# textdomain: mcl_copper
|
||||||
|
A block of copper is mostly a decorative block.=銅ブロックは、そのほとんどが装飾ブロックです。
|
||||||
|
A block used for compact raw copper storage.=銅の粗鉱をコンパクトに保管するのに使えるブロックです。
|
||||||
Block of Copper=銅ブロック
|
Block of Copper=銅ブロック
|
||||||
Waxed Block of Copper=錆止め済み銅ブロック
|
Waxed Block of Copper=錆止め済み銅ブロック
|
||||||
Exposed Copper=少し酸化した銅
|
Block of Raw Copper=銅の粗鉱ブロック
|
||||||
Waxed Exposed Copper=少し酸化した錆止め済み銅
|
Copper Ingot=銅インゴット
|
||||||
Weathered Copper=半ば酸化した銅
|
Copper Ore=銅鉱石
|
||||||
Waxed Weathered Copper=半ば酸化した錆止め済み銅
|
Cut copper is a decorative block.=溝入り銅は、装飾ブロックです。
|
||||||
Oxidized Copper=殆ど酸化した銅
|
|
||||||
Waxed Oxidized Copper=殆ど酸化した錆止め済み銅
|
|
||||||
Cut Copper=溝入り銅
|
Cut Copper=溝入り銅
|
||||||
Waxed Cut Copper=錆止め済み溝入り銅
|
Waxed Cut Copper=錆止め済み溝入り銅
|
||||||
|
Double Slab of Cut Copper=溝入り銅の2重スラブ
|
||||||
|
Double Slab of Exposed Cut Copper=少し酸化した溝入り銅の2重スラブ
|
||||||
|
Double Slab of Oxidized Cut Copper=殆ど酸化した溝入り銅の2重スラブ
|
||||||
|
Double Slab of Weathered Cut Copper=半ば酸化した溝入り銅の2重スラブ
|
||||||
|
Waxed Double Slab of Cut Copper=錆止め済み溝入り銅の2重スラブ
|
||||||
|
Waxed Double Slab of Exposed Cut Copper=少し酸化した錆止め済み溝入り銅の2重スラブ
|
||||||
|
Waxed Double Slab of Oxidized Cut Copper=殆ど酸化した錆止め済み溝入り銅の2重スラブ
|
||||||
|
Waxed Double Slab of Weathered Cut Copper=半ば酸化した錆止め済み溝入り銅の2重スラブ
|
||||||
|
Exposed copper is a decorative block.=少し酸化した銅は、装飾ブロックです。
|
||||||
|
Exposed Copper=少し酸化した銅
|
||||||
|
Waxed Exposed Copper=少し酸化した錆止め済み銅
|
||||||
|
Exposed cut copper is a decorative block.=少し酸化した溝入り銅は、装飾ブロックです。
|
||||||
Exposed Cut Copper=少し酸化した溝入り銅
|
Exposed Cut Copper=少し酸化した溝入り銅
|
||||||
Waxed Exposed Cut Copper=少し酸化した錆止め済み溝入り銅
|
Waxed Exposed Cut Copper=少し酸化した錆止め済み溝入り銅
|
||||||
Weathered Cut Copper=半ば酸化した溝入り銅
|
Molten Raw Copper. It is used to craft blocks.=溶けた未処理の銅。ブロックのクラフトに使われます。
|
||||||
Waxed Weathered Cut Copper=半ば酸化した錆止め済み溝入り銅
|
Oxidized copper is a decorative block.=殆ど酸化した銅は、装飾ブロックです。
|
||||||
|
Oxidized Copper=殆ど酸化した銅
|
||||||
|
Waxed Oxidized Copper=殆ど酸化した錆止め済み銅
|
||||||
|
Oxidized cut copper is a decorative block.=殆ど酸化した溝入り銅は、装飾ブロックです。
|
||||||
Oxidized Cut Copper=殆ど酸化した溝入り銅
|
Oxidized Cut Copper=殆ど酸化した溝入り銅
|
||||||
Waxed Oxidized Cut Copper=殆ど酸化した錆止め済み溝入り銅
|
Waxed Oxidized Cut Copper=殆ど酸化した錆止め済み溝入り銅
|
||||||
Copper Grate=
|
|
||||||
Waxed Copper Grate=
|
|
||||||
Exposed Copper Grate=
|
|
||||||
Waxed Exposed Copper Grate=
|
|
||||||
Weathered Copper Grate=
|
|
||||||
Waxed Weathered Copper Grate=
|
|
||||||
Oxidized Copper Grate=
|
|
||||||
Waxed Oxidized Copper Grate=
|
|
||||||
Chiseled Copper=
|
|
||||||
Waxed Chiseled Copper=
|
|
||||||
Exposed Chiseled Copper=
|
|
||||||
Waxed Exposed Chiseled Copper=
|
|
||||||
Weathered Chiseled Copper=
|
|
||||||
Waxed Weathered Chiseled Copper=
|
|
||||||
Oxidized Chiseled Copper=
|
|
||||||
Waxed Oxidized Chiseled Copper=
|
|
||||||
Copper Bulb=
|
|
||||||
Waxed Copper Bulb=
|
|
||||||
Exposed Copper Bulb=
|
|
||||||
Waxed Exposed Copper Bulb=
|
|
||||||
Weathered Copper Bulb=
|
|
||||||
Waxed Weathered Copper Bulb=
|
|
||||||
Oxidized Copper Bulb=
|
|
||||||
Waxed Oxidized Copper Bulb=
|
|
||||||
(Lit)=
|
|
||||||
(Powered)=
|
|
||||||
(Lit and Powered)=
|
|
||||||
A block of copper is mostly a decorative block.=銅ブロックは、そのほとんどが装飾ブロックです。
|
|
||||||
Exposed copper is a decorative block.=少し酸化した銅は、装飾ブロックです。
|
|
||||||
Weathered copper is a decorative block.=半ば酸化した銅は、装飾ブロックです。
|
|
||||||
Oxidized copper is a decorative block.=殆ど酸化した銅は、装飾ブロックです。
|
|
||||||
Cut copper is a decorative block.=溝入り銅は、装飾ブロックです。
|
|
||||||
Exposed cut copper is a decorative block.=少し酸化した溝入り銅は、装飾ブロックです。
|
|
||||||
Weathered cut copper is a decorative block.=半ば酸化した溝入り銅は、装飾ブロックです。
|
|
||||||
Oxidized cut copper is a decorative block.=殆ど酸化した溝入り銅は、装飾ブロックです。
|
|
||||||
Copper grate is a decorative block.=
|
|
||||||
Exposed copper grate is a decorative block.=
|
|
||||||
Weathered copper grate is a decorative block.=
|
|
||||||
Oxidized copper grate is a decorative block.=
|
|
||||||
Chiseled copper is a decorative block.=
|
|
||||||
Exposed chiseled copper is a decorative block.=
|
|
||||||
Weathered chiseled copper is a decorative block.=
|
|
||||||
Oxidized chiseled copper is a decorative block.=
|
|
||||||
Copper bulb is a decorative block and a light source when lited.=
|
|
||||||
Exposed copper bulb is a decorative block and a light source when lited.=
|
|
||||||
Weathered copper bulb is a decorative block and a light source when lited.=
|
|
||||||
Oxidized copper bulb is a decorative block and a light source when lited.=
|
|
||||||
Copper bulb is a decorative block and a light source.=
|
|
||||||
Exposed copper bulb is a decorative block and a light source.=
|
|
||||||
Weathered copper bulb is a decorative block and a light source.=
|
|
||||||
Oxidized copper bulb is a decorative block and a light source.=
|
|
||||||
Slab of Cut Copper=溝入り銅のスラブ
|
|
||||||
Double Slab of Cut Copper=溝入り銅の2重スラブ
|
|
||||||
Stairs of Cut Copper=溝入り銅の階段
|
|
||||||
Waxed Slab of Cut Copper=錆止め済み溝入り銅のスラブ
|
|
||||||
Waxed Double Slab of Cut Copper=錆止め済み溝入り銅の2重スラブ
|
|
||||||
Waxed Stairs of Cut Copper=錆止め済み溝入り銅の階段
|
|
||||||
Slab of Exposed Cut Copper=少し酸化した溝入り銅のスラブ
|
|
||||||
Double Slab of Exposed Cut Copper=少し酸化した溝入り銅の2重スラブ
|
|
||||||
Stairs of Exposed Cut Copper=少し酸化した溝入り銅の階段
|
|
||||||
Waxed Slab of Exposed Cut Copper=少し酸化した錆止め済み溝入り銅のスラブ
|
|
||||||
Waxed Double Slab of Exposed Cut Copper=少し酸化した錆止め済み溝入り銅の2重スラブ
|
|
||||||
Waxed Stairs of Exposed Cut Copper=少し酸化した錆止め済み溝入り銅の階段
|
|
||||||
Slab of Weathered Cut Copper=半ば酸化した溝入り銅のスラブ
|
|
||||||
Double Slab of Weathered Cut Copper=半ば酸化した溝入り銅の2重スラブ
|
|
||||||
Stairs of Weathered Cut Copper=半ば酸化した溝入り銅の階段
|
|
||||||
Waxed Slab of Weathered Cut Copper=半ば酸化した錆止め済み溝入り銅のスラブ
|
|
||||||
Waxed Double Slab of Weathered Cut Copper=半ば酸化した錆止め済み溝入り銅の2重スラブ
|
|
||||||
Waxed Stairs of Weathered Cut Copper=半ば酸化した錆止め済み溝入り銅の階段
|
|
||||||
Slab of Oxidized Cut Copper=殆ど酸化した溝入り銅のスラブ
|
|
||||||
Double Slab of Oxidized Cut Copper=殆ど酸化した溝入り銅の2重スラブ
|
|
||||||
Stairs of Oxidized Cut Copper=殆ど酸化した溝入り銅の階段
|
|
||||||
Waxed Slab of Oxidized Cut Copper=殆ど酸化した錆止め済み溝入り銅のスラブ
|
|
||||||
Waxed Double Slab of Oxidized Cut Copper=殆ど酸化した錆止め済み溝入り銅の2重スラブ
|
|
||||||
Waxed Stairs of Oxidized Cut Copper=殆ど酸化した錆止め済み溝入り銅の階段
|
|
||||||
Copper Door=
|
|
||||||
Copper Trapdoor=
|
|
||||||
Waxed Copper Door=
|
|
||||||
Waxed Copper Trapdoor=
|
|
||||||
Exposed Copper Door=
|
|
||||||
Exposed Copper Trapdoor=
|
|
||||||
Waxed Exposed Copper Door=
|
|
||||||
Waxed Exposed Copper Trapdoor=
|
|
||||||
Weathered Copper Door=
|
|
||||||
Weathered Copper Trapdoor=
|
|
||||||
Waxed Weathered Copper Door=
|
|
||||||
Waxed Weathered Copper Trapdoor=
|
|
||||||
Oxidized Copper Door=
|
|
||||||
Oxidized Copper Trapdoor=
|
|
||||||
Waxed Oxidized Copper Door=
|
|
||||||
Waxed Oxidized Copper Trapdoor=
|
|
||||||
Copper Ingot=銅インゴット
|
|
||||||
Molten Raw Copper. It is used to craft blocks.=溶けた未処理の銅。ブロックのクラフトに使われます。
|
|
||||||
Raw Copper=銅の粗鉱
|
|
||||||
Raw Copper. Mine a Copper Ore to get it.=未処理の銅。銅鉱石を採掘すると手に入ります。
|
Raw Copper. Mine a Copper Ore to get it.=未処理の銅。銅鉱石を採掘すると手に入ります。
|
||||||
Copper Ore=銅鉱石
|
Raw Copper=銅の粗鉱
|
||||||
|
Slab of Cut Copper=溝入り銅のスラブ
|
||||||
|
Slab of Exposed Cut Copper=少し酸化した溝入り銅のスラブ
|
||||||
|
Slab of Oxidized Cut Copper=殆ど酸化した溝入り銅のスラブ
|
||||||
|
Slab of Weathered Cut Copper=半ば酸化した溝入り銅のスラブ
|
||||||
|
Waxed Slab of Cut Copper=錆止め済み溝入り銅のスラブ
|
||||||
|
Waxed Slab of Exposed Cut Copper=少し酸化した錆止め済み溝入り銅のスラブ
|
||||||
|
Waxed Slab of Oxidized Cut Copper=殆ど酸化した錆止め済み溝入り銅のスラブ
|
||||||
|
Waxed Slab of Weathered Cut Copper=半ば酸化した錆止め済み溝入り銅のスラブ
|
||||||
Some copper contained in stone, it is pretty common and can be found below sea level.=石に含まれる銅は ごく一般的で、海面下の高さで見られます。
|
Some copper contained in stone, it is pretty common and can be found below sea level.=石に含まれる銅は ごく一般的で、海面下の高さで見られます。
|
||||||
Block of Raw Copper=銅の粗鉱ブロック
|
Stairs of Cut Copper=溝入り銅の階段
|
||||||
A block used for compact raw copper storage.=銅の粗鉱をコンパクトに保管するのに使えるブロックです。
|
Stairs of Exposed Cut Copper=少し酸化した溝入り銅の階段
|
||||||
|
Stairs of Oxidized Cut Copper=殆ど酸化した溝入り銅の階段
|
||||||
|
Stairs of Weathered Cut Copper=半ば酸化した溝入り銅の階段
|
||||||
|
Waxed Stairs of Cut Copper=錆止め済み溝入り銅の階段
|
||||||
|
Waxed Stairs of Exposed Cut Copper=少し酸化した錆止め済み溝入り銅の階段
|
||||||
|
Waxed Stairs of Oxidized Cut Copper=殆ど酸化した錆止め済み溝入り銅の階段
|
||||||
|
Waxed Stairs of Weathered Cut Copper=半ば酸化した錆止め済み溝入り銅の階段
|
||||||
|
Weathered copper is a decorative block.=半ば酸化した銅は、装飾ブロックです。
|
||||||
|
Weathered Copper=半ば酸化した銅
|
||||||
|
Waxed Weathered Copper=半ば酸化した錆止め済み銅
|
||||||
|
Weathered cut copper is a decorative block.=半ば酸化した溝入り銅は、装飾ブロックです。
|
||||||
|
Weathered Cut Copper=半ば酸化した溝入り銅
|
||||||
|
Waxed Weathered Cut Copper=半ば酸化した錆止め済み溝入り銅
|
||||||
|
|
|
@ -1,116 +1,116 @@
|
||||||
# textdomain: mcl_copper
|
# textdomain: mcl_copper
|
||||||
|
A block of copper is mostly a decorative block.=Um bloco de cobre é principalmente um bloco decorativo.
|
||||||
|
A block used for compact raw copper storage.=Um bloco usado para armazenar minério de cobre compactado.
|
||||||
Block of Copper=Bloco de Cobre
|
Block of Copper=Bloco de Cobre
|
||||||
Waxed Block of Copper=Bloco de Cobre Encerado
|
Waxed Block of Copper=Bloco de Cobre Encerado
|
||||||
Exposed Copper=Cobre Exposto
|
Block of Raw Copper=Bloco de Cobre Crú
|
||||||
Waxed Exposed Copper=Cobre Exposto Encerado
|
Copper Ingot=Lingote de Cobre
|
||||||
Weathered Copper=Cobre Desgastado
|
Copper Ore=Minério de Cobre
|
||||||
Waxed Weathered Copper=Cobre Desgastado Encerado
|
Cut copper is a decorative block.=Cobre lapidado é um bloco decorativo
|
||||||
Oxidized Copper=Cobre Oxidado
|
|
||||||
Waxed Oxidized Copper=Cobre Oxidado Encerado
|
|
||||||
Cut Copper=Cobre Lapidado
|
Cut Copper=Cobre Lapidado
|
||||||
Waxed Cut Copper=Cobre Lapidado Encerado
|
Waxed Cut Copper=Cobre Lapidado Encerado
|
||||||
|
Double Slab of Cut Copper=Laje Dupla de Cobre Lapidado
|
||||||
|
Double Slab of Exposed Cut Copper=Laje Dupla de Cobre Lapidado Exposto
|
||||||
|
Double Slab of Oxidized Cut Copper=Laje Dupla de Cobre Lapidado Oxidado
|
||||||
|
Double Slab of Weathered Cut Copper=Laje Dupla de Cobre Lapidado Desgastado
|
||||||
|
Waxed Double Slab of Cut Copper=Laje Dupla de Cobre Lapidado Encerado
|
||||||
|
Waxed Double Slab of Exposed Cut Copper=Laje Dupla de Cobre Lapidado Exposto Encerado
|
||||||
|
Waxed Double Slab of Oxidized Cut Copper=Laje Dupla de Cobre Lapidado Oxidado Encerado
|
||||||
|
Waxed Double Slab of Weathered Cut Copper=Laje Dupla de Cobre Lapidado Desgastado Encerado
|
||||||
|
Exposed copper is a decorative block.=Cobre exposto é um bloco decorativo.
|
||||||
|
Exposed Copper=Cobre Exposto
|
||||||
|
Waxed Exposed Copper=Cobre Exposto Encerado
|
||||||
|
Exposed cut copper is a decorative block.=Cobre lapidado encerado é um bloco decorativo.
|
||||||
Exposed Cut Copper=Cobre Lapidado Exposto
|
Exposed Cut Copper=Cobre Lapidado Exposto
|
||||||
Waxed Exposed Cut Copper=Cobre Lapidado Exposto Encerado
|
Waxed Exposed Cut Copper=Cobre Lapidado Exposto Encerado
|
||||||
Weathered Cut Copper=Cobre Lapidado Desgastado
|
Molten Raw Copper. It is used to craft blocks.=Minério de Cobre Fundido. É utilizado para fabricar blocos.
|
||||||
Waxed Weathered Cut Copper=Cobre Lapidado Desgastado Encerado
|
Oxidized copper is a decorative block.=Cobre oxidado é um bloco decorativo.
|
||||||
|
Oxidized Copper=Cobre Oxidado
|
||||||
|
Waxed Oxidized Copper=Cobre Oxidado Encerado
|
||||||
|
Oxidized cut copper is a decorative block.=Cobre lapidado oxidado é um bloco decorativo.
|
||||||
Oxidized Cut Copper=Cobre Lapidado Oxidado
|
Oxidized Cut Copper=Cobre Lapidado Oxidado
|
||||||
Waxed Oxidized Cut Copper=Cobre Lapidado Oxidado Encerado
|
Waxed Oxidized Cut Copper=Cobre Lapidado Oxidado Encerado
|
||||||
|
Raw Copper. Mine a Copper Ore to get it.=Cobre Crú. Minere um minério de cobre para obtê-lo.
|
||||||
|
Raw Copper=Cobre Crú
|
||||||
|
Slab of Cut Copper=Laje de Cobre Lapidado
|
||||||
|
Slab of Exposed Cut Copper=Laje de Cobre Lapidado Exposto
|
||||||
|
Slab of Oxidized Cut Copper=Laje de Cobre Lapidado Oxidado
|
||||||
|
Slab of Weathered Cut Copper=Laje de Cobre Lapidado Desgastado
|
||||||
|
Waxed Slab of Cut Copper=Laje de Cobre Lapidado Encerado
|
||||||
|
Waxed Slab of Exposed Cut Copper=Laje de Cobre Lapidado Exposto Encerado
|
||||||
|
Waxed Slab of Oxidized Cut Copper=Laje de Cobre Lapidado Oxidado Encerado
|
||||||
|
Waxed Slab of Weathered Cut Copper=Laje de Cobre Lapidado Desgastado Encerado
|
||||||
|
Some copper contained in stone, it is pretty common and can be found below sea level.=Um pouco de cobre contido em rocha, é bem comum e pode ser encontrado abaixo do nível do mar.
|
||||||
|
Stairs of Cut Copper=Escadas de Cobre Lapidado
|
||||||
|
Stairs of Exposed Cut Copper=Escadas de Cobre Lapidado Exposto
|
||||||
|
Stairs of Oxidized Cut Copper=Escadas de Cobre Lapidado Oxidado
|
||||||
|
Stairs of Weathered Cut Copper=Escadas de Cobre Lapidado Desgastado
|
||||||
|
Waxed Stairs of Cut Copper=Escadas de Cobre Lapidado Encerado
|
||||||
|
Waxed Stairs of Exposed Cut Copper=Escadas de Cobre Lapidado Exposto Encerado
|
||||||
|
Waxed Stairs of Oxidized Cut Copper=Escadas de Cobre Lapidado Oxidado Encerado
|
||||||
|
Waxed Stairs of Weathered Cut Copper=Escadas de Cobre Lapidado Desgastado Encerado
|
||||||
|
Weathered copper is a decorative block.=Cobre desgastado é um bloco decorativo.
|
||||||
|
Weathered Copper=Cobre Desgastado
|
||||||
|
Waxed Weathered Copper=Cobre Desgastado Encerado
|
||||||
|
Weathered cut copper is a decorative block.=Cobre lapidado desgastado é um bloco decorativo.
|
||||||
|
Weathered Cut Copper=Cobre Lapidado Desgastado
|
||||||
|
Waxed Weathered Cut Copper=Cobre Lapidado Desgastado Encerado
|
||||||
Copper Grate=Grade de Cobre
|
Copper Grate=Grade de Cobre
|
||||||
Waxed Copper Grate=Grade de Cobre Encerada
|
Waxed Copper Grate=Grade de Cobre Encerada
|
||||||
|
Copper grate is a decorative block.=Grade de cobre é um bloco decorativo.
|
||||||
Exposed Copper Grate=Grade de Cobre Exposto
|
Exposed Copper Grate=Grade de Cobre Exposto
|
||||||
Waxed Exposed Copper Grate=Grade de Cobre Exposto Encerada
|
Waxed Exposed Copper Grate=Grade de Cobre Exposto Encerada
|
||||||
|
Exposed copper grate is a decorative block.=Grade de cobre exposto é um bloco decorativo.
|
||||||
Weathered Copper Grate=Grade de Cobre Desgastado
|
Weathered Copper Grate=Grade de Cobre Desgastado
|
||||||
Waxed Weathered Copper Grate=Grade de Cobre Desgastado Encerada
|
Waxed Weathered Copper Grate=Grade de Cobre Desgastado Encerada
|
||||||
|
Weathered opper grate is a decorative block.=Grade de cobre de desgastado é um bloco decorativo.
|
||||||
Oxidized Copper Grate=Grade de Cobre Oxidado
|
Oxidized Copper Grate=Grade de Cobre Oxidado
|
||||||
Waxed Oxidized Copper Grate=Grade de Cobre Oxidado Encerada
|
Waxed Oxidized Copper Grate=Grade de Cobre Oxidado Encerada
|
||||||
|
Oxidized copper grate is a decorative block.=Grade de cobre oxidado é um bloco decorativo.
|
||||||
Chiseled Copper=Cobre Talhado
|
Chiseled Copper=Cobre Talhado
|
||||||
Waxed Chiseled Copper=Cobre Talhado Encerado
|
Waxed Chiseled Copper=Cobre Talhado Encerado
|
||||||
|
Chiseled copper is a decorative block.=Cobre talhado é um bloco decorativo.
|
||||||
Exposed Chiseled Copper=Cobre Talhado Exposto
|
Exposed Chiseled Copper=Cobre Talhado Exposto
|
||||||
Waxed Exposed Chiseled Copper=Cobre Talhado Exposto Encerado
|
Waxed Exposed Chiseled Copper=Cobre Talhado Exposto Encerado
|
||||||
|
Exposed chiseled copper is a decorative block.=Cobre talhado exposto é um bloco decorativo.
|
||||||
Weathered Chiseled Copper=Cobre Talhado Desgastado
|
Weathered Chiseled Copper=Cobre Talhado Desgastado
|
||||||
Waxed Weathered Chiseled Copper=Cobre Talhado Desgastado Encerado
|
Waxed Weathered Chiseled Copper=Cobre Talhado Desgastado Encerado
|
||||||
|
Weathered chiseled copper is a decorative block.=Cobre talhado desgastado é um bloco decorativo.
|
||||||
Oxidized Chiseled Copper=Cobre Talhado Oxidado
|
Oxidized Chiseled Copper=Cobre Talhado Oxidado
|
||||||
Waxed Oxidized Chiseled Copper=Cobre Talhado Oxidado Encerado
|
Waxed Oxidized Chiseled Copper=Cobre Talhado Oxidado Encerado
|
||||||
|
Oxidized chiseled copper is a decorative block.=Cobre talhado oxidado é um bloco decorativo.
|
||||||
Copper Bulb=Bulbo de Cobre
|
Copper Bulb=Bulbo de Cobre
|
||||||
Waxed Copper Bulb=Bulbo de Cobre Encerado
|
Waxed Copper Bulb=Bulbo de Cobre Encerado
|
||||||
|
Copper bulb is a decorative block and a light source.=Bulbo de cobre é um bloco decorativo e uma fonte de luz.
|
||||||
|
Copper bulb is a decorative block and a light source when lited.=Bulbo de cobre é um bloco decorativo e uma fonte de luz quando aceso.
|
||||||
Exposed Copper Bulb=Bulbo de Cobre Exposto
|
Exposed Copper Bulb=Bulbo de Cobre Exposto
|
||||||
Waxed Exposed Copper Bulb=Bulbo de Cobre Exposto Encerado
|
Waxed Exposed Copper Bulb=Bulbo de Cobre Exposto Encerado
|
||||||
|
Exposed copper bulb is a decorative block and a light source.=Bulbo de cobre exposto é um bloco decorativo e uma fonte de luz.
|
||||||
|
Exposed copper bulb is a decorative block and a light source when lited.=Bulbo de cobre exposto é um bloco decorativo e uma fonte de luz quando aceso.
|
||||||
Weathered Copper Bulb=Bulbo de Cobre Desgastado
|
Weathered Copper Bulb=Bulbo de Cobre Desgastado
|
||||||
Waxed Weathered Copper Bulb=Bulbo de Cobre Desgastado Encerado
|
Waxed Weathered Copper Bulb=Bulbo de Cobre Desgastado Encerado
|
||||||
|
Weathered copper bulb is a decorative block and a light source.=Bulbo de cobre desgastado é um bloco decorativo e uma fonte de luz.
|
||||||
|
Weathered copper bulb is a decorative block and a light source when lited.=Bulbo de cobre desgastado é um bloco decorativo e uma fonte de luz quando aceso.
|
||||||
Oxidized Copper Bulb=Bulbo de Cobre Oxidado
|
Oxidized Copper Bulb=Bulbo de Cobre Oxidado
|
||||||
Waxed Oxidized Copper Bulb=Bulbo de Cobre Oxidado Encerado
|
Waxed Oxidized Copper Bulb=Bulbo de Cobre Oxidado Encerado
|
||||||
(Lit)=(Aceso)
|
|
||||||
(Powered)=(Energizado)
|
|
||||||
(Lit and Powered)=(Aceso e Energizado)
|
|
||||||
A block of copper is mostly a decorative block.=Um bloco de cobre é principalmente um bloco decorativo.
|
|
||||||
Exposed copper is a decorative block.=Cobre exposto é um bloco decorativo.
|
|
||||||
Weathered copper is a decorative block.=Cobre desgastado é um bloco decorativo.
|
|
||||||
Oxidized copper is a decorative block.=Cobre oxidado é um bloco decorativo.
|
|
||||||
Cut copper is a decorative block.=Cobre lapidado é um bloco decorativo
|
|
||||||
Exposed cut copper is a decorative block.=Cobre lapidado encerado é um bloco decorativo.
|
|
||||||
Weathered cut copper is a decorative block.=Cobre lapidado desgastado é um bloco decorativo.
|
|
||||||
Oxidized cut copper is a decorative block.=Cobre lapidado oxidado é um bloco decorativo.
|
|
||||||
Copper grate is a decorative block.=Grade de cobre é um bloco decorativo.
|
|
||||||
Exposed copper grate is a decorative block.=Grade de cobre exposto é um bloco decorativo.
|
|
||||||
Weathered copper grate is a decorative block.=Grade de cobre de desgastado é um bloco decorativo.
|
|
||||||
Oxidized copper grate is a decorative block.=Grade de cobre oxidado é um bloco decorativo.
|
|
||||||
Chiseled copper is a decorative block.=Cobre talhado é um bloco decorativo.
|
|
||||||
Exposed chiseled copper is a decorative block.=Cobre talhado exposto é um bloco decorativo.
|
|
||||||
Weathered chiseled copper is a decorative block.=Cobre talhado desgastado é um bloco decorativo.
|
|
||||||
Oxidized chiseled copper is a decorative block.=Cobre talhado oxidado é um bloco decorativo.
|
|
||||||
Copper bulb is a decorative block and a light source when lited.=Bulbo de cobre é um bloco decorativo e uma fonte de luz quando aceso.
|
|
||||||
Exposed copper bulb is a decorative block and a light source when lited.=Bulbo de cobre exposto é um bloco decorativo e uma fonte de luz quando aceso.
|
|
||||||
Weathered copper bulb is a decorative block and a light source when lited.=Bulbo de cobre desgastado é um bloco decorativo e uma fonte de luz quando aceso.
|
|
||||||
Oxidized copper bulb is a decorative block and a light source when lited.=Bulbo de cobre oxidado é um bloco decorativo e uma fonte de luz quando aceso.
|
|
||||||
Copper bulb is a decorative block and a light source.=Bulbo de cobre é um bloco decorativo e uma fonte de luz.
|
|
||||||
Exposed copper bulb is a decorative block and a light source.=Bulbo de cobre exposto é um bloco decorativo e uma fonte de luz.
|
|
||||||
Weathered copper bulb is a decorative block and a light source.=Bulbo de cobre desgastado é um bloco decorativo e uma fonte de luz.
|
|
||||||
Oxidized copper bulb is a decorative block and a light source.=Bulbo de cobre oxidado é um bloco decorativo e uma fonte de luz.
|
Oxidized copper bulb is a decorative block and a light source.=Bulbo de cobre oxidado é um bloco decorativo e uma fonte de luz.
|
||||||
Slab of Cut Copper=Laje de Cobre Lapidado
|
Oxidized copper bulb is a decorative block and a light source when lited.=Bulbo de cobre oxidado é um bloco decorativo e uma fonte de luz quando aceso.
|
||||||
Double Slab of Cut Copper=Laje Dupla de Cobre Lapidado
|
|
||||||
Stairs of Cut Copper=Escadas de Cobre Lapidado
|
|
||||||
Waxed Slab of Cut Copper=Laje de Cobre Lapidado Encerado
|
|
||||||
Waxed Double Slab of Cut Copper=Laje Dupla de Cobre Lapidado Encerado
|
|
||||||
Waxed Stairs of Cut Copper=Escadas de Cobre Lapidado Encerado
|
|
||||||
Slab of Exposed Cut Copper=Laje de Cobre Lapidado Exposto
|
|
||||||
Double Slab of Exposed Cut Copper=Laje Dupla de Cobre Lapidado Exposto
|
|
||||||
Stairs of Exposed Cut Copper=Escadas de Cobre Lapidado Exposto
|
|
||||||
Waxed Slab of Exposed Cut Copper=Laje de Cobre Lapidado Exposto Encerado
|
|
||||||
Waxed Double Slab of Exposed Cut Copper=Laje Dupla de Cobre Lapidado Exposto Encerado
|
|
||||||
Waxed Stairs of Exposed Cut Copper=Escadas de Cobre Lapidado Exposto Encerado
|
|
||||||
Slab of Weathered Cut Copper=Laje de Cobre Lapidado Desgastado
|
|
||||||
Double Slab of Weathered Cut Copper=Laje Dupla de Cobre Lapidado Desgastado
|
|
||||||
Stairs of Weathered Cut Copper=Escadas de Cobre Lapidado Desgastado
|
|
||||||
Waxed Slab of Weathered Cut Copper=Laje de Cobre Lapidado Desgastado Encerado
|
|
||||||
Waxed Double Slab of Weathered Cut Copper=Laje Dupla de Cobre Lapidado Desgastado Encerado
|
|
||||||
Waxed Stairs of Weathered Cut Copper=Escadas de Cobre Lapidado Desgastado Encerado
|
|
||||||
Slab of Oxidized Cut Copper=Laje de Cobre Lapidado Oxidado
|
|
||||||
Double Slab of Oxidized Cut Copper=Laje Dupla de Cobre Lapidado Oxidado
|
|
||||||
Stairs of Oxidized Cut Copper=Escadas de Cobre Lapidado Oxidado
|
|
||||||
Waxed Slab of Oxidized Cut Copper=Laje de Cobre Lapidado Oxidado Encerado
|
|
||||||
Waxed Double Slab of Oxidized Cut Copper=Laje Dupla de Cobre Lapidado Oxidado Encerado
|
|
||||||
Waxed Stairs of Oxidized Cut Copper=Escadas de Cobre Lapidado Oxidado Encerado
|
|
||||||
Copper Door=Porta de Cobre
|
Copper Door=Porta de Cobre
|
||||||
Copper Trapdoor=Alçapão de Cobre
|
|
||||||
Waxed Copper Door=Porta de Cobre Encerada
|
Waxed Copper Door=Porta de Cobre Encerada
|
||||||
Waxed Copper Trapdoor=Alçapão de Cobre Encerado
|
|
||||||
Exposed Copper Door=Porta de Cobre Exposto
|
Exposed Copper Door=Porta de Cobre Exposto
|
||||||
Exposed Copper Trapdoor=Alçapão de Cobre Exposto
|
|
||||||
Waxed Exposed Copper Door=Porta de Cobre Exposto Encerada
|
Waxed Exposed Copper Door=Porta de Cobre Exposto Encerada
|
||||||
Waxed Exposed Copper Trapdoor=Alçapão de Cobre Exposto Encerado
|
|
||||||
Weathered Copper Door=Porta de Cobre Desgastado
|
Weathered Copper Door=Porta de Cobre Desgastado
|
||||||
Weathered Copper Trapdoor=Alçapão de Cobre Desgastado
|
|
||||||
Waxed Weathered Copper Door=Porta de Cobre Desgastado Encerada
|
Waxed Weathered Copper Door=Porta de Cobre Desgastado Encerada
|
||||||
Waxed Weathered Copper Trapdoor=Alçapão de Cobre Desgastado Encerado
|
|
||||||
Oxidized Copper Door=Porta de Cobre Oxidado
|
Oxidized Copper Door=Porta de Cobre Oxidado
|
||||||
Oxidized Copper Trapdoor=Alçapão de Cobre Oxidado
|
|
||||||
Waxed Oxidized Copper Door=Porta de Cobre Oxidado Encerada
|
Waxed Oxidized Copper Door=Porta de Cobre Oxidado Encerada
|
||||||
|
Copper Trapdoor=Alçapão de Cobre
|
||||||
|
Waxed Copper Trapdoor=Alçapão de Cobre Encerado
|
||||||
|
Exposed Copper Trapdoor=Alçapão de Cobre Exposto
|
||||||
|
Waxed Exposed Copper Trapdoor=Alçapão de Cobre Exposto Encerado
|
||||||
|
Weathered Copper Trapdoor=Alçapão de Cobre Desgastado
|
||||||
|
Waxed Weathered Copper Trapdoor=Alçapão de Cobre Desgastado Encerado
|
||||||
|
Oxidized Copper Trapdoor=Alçapão de Cobre Oxidado
|
||||||
Waxed Oxidized Copper Trapdoor=Alçapão de Cobre Oxidado Encerado
|
Waxed Oxidized Copper Trapdoor=Alçapão de Cobre Oxidado Encerado
|
||||||
Copper Ingot=Lingote de Cobre
|
@1 (Lit)=@1 (Aceso)
|
||||||
Molten Raw Copper. It is used to craft blocks.=Minério de Cobre Fundido. É utilizado para fabricar blocos.
|
@1 (Powered)=@1 (Energizado)
|
||||||
Raw Copper=Cobre Crú
|
@1 (Lit and Powered)=@1 (Aceso e Energizado)
|
||||||
Raw Copper. Mine a Copper Ore to get it.=Cobre Crú. Minere um minério de cobre para obtê-lo.
|
|
||||||
Copper Ore=Minério de Cobre
|
|
||||||
Some copper contained in stone, it is pretty common and can be found below sea level.=Um pouco de cobre contido em rocha, é bem comum e pode ser encontrado abaixo do nível do mar.
|
|
||||||
Block of Raw Copper=Bloco de Cobre Crú
|
|
||||||
A block used for compact raw copper storage.=Um bloco usado para armazenar minério de cobre compactado.
|
|
||||||
|
|
|
@ -1,116 +1,57 @@
|
||||||
# textdomain: mcl_copper
|
# textdomain: mcl_copper
|
||||||
|
A block of copper is mostly a decorative block.=Медный блок — это декоративный блок.
|
||||||
|
A block used for compact raw copper storage.=Блок используется для компактного хранения необработанной меди.
|
||||||
Block of Copper=Медный блок
|
Block of Copper=Медный блок
|
||||||
Waxed Block of Copper=Вощёный медный блок
|
Waxed Block of Copper=Вощёный медный блок
|
||||||
Exposed Copper=Потемневший медный блок
|
Block of Raw Copper=Блок необработанной меди
|
||||||
Waxed Exposed Copper=Вощёный потемневший медный блок
|
Copper Ingot=Медный слиток
|
||||||
Weathered Copper=Состаренный медный блок
|
Copper Ore=Медная руда
|
||||||
Waxed Weathered Copper=Вощёный состаренный медный блок
|
Cut copper is a decorative block.=Резной медный блок это декоративный блок.
|
||||||
Oxidized Copper=Окисленный медный блок
|
|
||||||
Waxed Oxidized Copper=Вощёный окисленный медный блок
|
|
||||||
Cut Copper=Резной медный блок
|
Cut Copper=Резной медный блок
|
||||||
Waxed Cut Copper=Вощёный резной медный блок
|
Waxed Cut Copper=Вощёный резной медный блок
|
||||||
|
Double Slab of Cut Copper=Двойная плита из резного медного блока
|
||||||
|
Double Slab of Exposed Cut Copper=Двойная плита из потемневшего резного медного блока
|
||||||
|
Double Slab of Oxidized Cut Copper=Двойная плита из окисленного резного медного блока
|
||||||
|
Double Slab of Weathered Cut Copper=Двойная плита из состаренного резного медного блока
|
||||||
|
Waxed Double Slab of Cut Copper=Вощёная двойная плита из резного медного блока
|
||||||
|
Waxed Double Slab of Exposed Cut Copper=Вощёная двойная плита из потемневшего резного медного блока
|
||||||
|
Waxed Double Slab of Oxidized Cut Copper=Вощёная двойная плита из окисленного резного медного блока
|
||||||
|
Waxed Double Slab of Weathered Cut Copper=Вощёная двойная плита из состаренного резного медного блока
|
||||||
|
Exposed copper is a decorative block.=Потемневший медный блок это декоративный блок.
|
||||||
|
Exposed Copper=Потемневший медный блок
|
||||||
|
Waxed Exposed Copper=Вощёный потемневший медный блок
|
||||||
|
Exposed cut copper is a decorative block.=Потемневший резной медный блок это декоративный блок.
|
||||||
Exposed Cut Copper=Потемневший резной медный блок
|
Exposed Cut Copper=Потемневший резной медный блок
|
||||||
Waxed Exposed Cut Copper=Вощёный потемневший резной медный блок
|
Waxed Exposed Cut Copper=Вощёный потемневший резной медный блок
|
||||||
Weathered Cut Copper=Состаренный резной медный блок
|
Molten Raw Copper. It is used to craft blocks.=Медный слиток. Используется для крафта блоков.
|
||||||
Waxed Weathered Cut Copper=Вощёный состаренный резной медный блок
|
Oxidized copper is a decorative block.=Окисленный медный блок это декоративный блок.
|
||||||
|
Oxidized Copper=Окисленный медный блок
|
||||||
|
Waxed Oxidized Copper=Вощёный окисленный медный блок
|
||||||
|
Oxidized cut copper is a decorative block.=Окисленный резной медный блок это декоративный блок.
|
||||||
Oxidized Cut Copper=Окисленный резной медный блок
|
Oxidized Cut Copper=Окисленный резной медный блок
|
||||||
Waxed Oxidized Cut Copper=Вощёный окисленный резной медный блок
|
Waxed Oxidized Cut Copper=Вощёный окисленный резной медный блок
|
||||||
Copper Grate=
|
|
||||||
Waxed Copper Grate=
|
|
||||||
Exposed Copper Grate=
|
|
||||||
Waxed Exposed Copper Grate=
|
|
||||||
Weathered Copper Grate=
|
|
||||||
Waxed Weathered Copper Grate=
|
|
||||||
Oxidized Copper Grate=
|
|
||||||
Waxed Oxidized Copper Grate=
|
|
||||||
Chiseled Copper=
|
|
||||||
Waxed Chiseled Copper=
|
|
||||||
Exposed Chiseled Copper=
|
|
||||||
Waxed Exposed Chiseled Copper=
|
|
||||||
Weathered Chiseled Copper=
|
|
||||||
Waxed Weathered Chiseled Copper=
|
|
||||||
Oxidized Chiseled Copper=
|
|
||||||
Waxed Oxidized Chiseled Copper=
|
|
||||||
Copper Bulb=
|
|
||||||
Waxed Copper Bulb=
|
|
||||||
Exposed Copper Bulb=
|
|
||||||
Waxed Exposed Copper Bulb=
|
|
||||||
Weathered Copper Bulb=
|
|
||||||
Waxed Weathered Copper Bulb=
|
|
||||||
Oxidized Copper Bulb=
|
|
||||||
Waxed Oxidized Copper Bulb=
|
|
||||||
(Lit)=
|
|
||||||
(Powered)=
|
|
||||||
(Lit and Powered)=
|
|
||||||
A block of copper is mostly a decorative block.=Медный блок — это декоративный блок.
|
|
||||||
Exposed copper is a decorative block.=Потемневший медный блок это декоративный блок.
|
|
||||||
Weathered copper is a decorative block.=Состаренный медный блок это декоративный блок.
|
|
||||||
Oxidized copper is a decorative block.=Окисленный медный блок это декоративный блок.
|
|
||||||
Cut copper is a decorative block.=Резной медный блок это декоративный блок.
|
|
||||||
Exposed cut copper is a decorative block.=Потемневший резной медный блок это декоративный блок.
|
|
||||||
Weathered cut copper is a decorative block.=Состаренный резной медный блок это декоративный блок.
|
|
||||||
Oxidized cut copper is a decorative block.=Окисленный резной медный блок это декоративный блок.
|
|
||||||
Copper grate is a decorative block.=
|
|
||||||
Exposed copper grate is a decorative block.=
|
|
||||||
Weathered copper grate is a decorative block.=
|
|
||||||
Oxidized copper grate is a decorative block.=
|
|
||||||
Chiseled copper is a decorative block.=
|
|
||||||
Exposed chiseled copper is a decorative block.=
|
|
||||||
Weathered chiseled copper is a decorative block.=
|
|
||||||
Oxidized chiseled copper is a decorative block.=
|
|
||||||
Copper bulb is a decorative block and a light source when lited.=
|
|
||||||
Exposed copper bulb is a decorative block and a light source when lited.=
|
|
||||||
Weathered copper bulb is a decorative block and a light source when lited.=
|
|
||||||
Oxidized copper bulb is a decorative block and a light source when lited.=
|
|
||||||
Copper bulb is a decorative block and a light source.=
|
|
||||||
Exposed copper bulb is a decorative block and a light source.=
|
|
||||||
Weathered copper bulb is a decorative block and a light source.=
|
|
||||||
Oxidized copper bulb is a decorative block and a light source.=
|
|
||||||
Slab of Cut Copper=Плита из резного медного блока
|
|
||||||
Double Slab of Cut Copper=Двойная плита из резного медного блока
|
|
||||||
Stairs of Cut Copper=Ступени из резного медного блока
|
|
||||||
Waxed Slab of Cut Copper=Вощёная плита из резного медного блока
|
|
||||||
Waxed Double Slab of Cut Copper=Вощёная двойная плита из резного медного блока
|
|
||||||
Waxed Stairs of Cut Copper=Вощёные ступени из резного медного блока
|
|
||||||
Slab of Exposed Cut Copper=Плита из потемневшего резного медного блока
|
|
||||||
Double Slab of Exposed Cut Copper=Двойная плита из потемневшего резного медного блока
|
|
||||||
Stairs of Exposed Cut Copper=Ступени из потемневшего резного медного блока
|
|
||||||
Waxed Slab of Exposed Cut Copper=Вощёная плита из потемневшего резного медного блока
|
|
||||||
Waxed Double Slab of Exposed Cut Copper=Вощёная двойная плита из потемневшего резного медного блока
|
|
||||||
Waxed Stairs of Exposed Cut Copper=Вощёные ступени из потемневшего резного медного блока
|
|
||||||
Slab of Weathered Cut Copper=Плита из состаренного резного медного блока
|
|
||||||
Double Slab of Weathered Cut Copper=Двойная плита из состаренного резного медного блока
|
|
||||||
Stairs of Weathered Cut Copper=Ступени из состаренного резного медного блока
|
|
||||||
Waxed Slab of Weathered Cut Copper=Вощёная плита из состаренного резного медного блока
|
|
||||||
Waxed Double Slab of Weathered Cut Copper=Вощёная двойная плита из состаренного резного медного блока
|
|
||||||
Waxed Stairs of Weathered Cut Copper=Вощёные ступени из состаренного резного медного блока
|
|
||||||
Slab of Oxidized Cut Copper=Плита из окисленного резного медного блока
|
|
||||||
Double Slab of Oxidized Cut Copper=Двойная плита из окисленного резного медного блока
|
|
||||||
Stairs of Oxidized Cut Copper=Ступени из окисленного резного медного блока
|
|
||||||
Waxed Slab of Oxidized Cut Copper=Вощёная плита из окисленного резного медного блока
|
|
||||||
Waxed Double Slab of Oxidized Cut Copper=Вощёная двойная плита из окисленного резного медного блока
|
|
||||||
Waxed Stairs of Oxidized Cut Copper=Вощёные ступени из окисленного резного медного блока
|
|
||||||
Copper Door=
|
|
||||||
Copper Trapdoor=
|
|
||||||
Waxed Copper Door=
|
|
||||||
Waxed Copper Trapdoor=
|
|
||||||
Exposed Copper Door=
|
|
||||||
Exposed Copper Trapdoor=
|
|
||||||
Waxed Exposed Copper Door=
|
|
||||||
Waxed Exposed Copper Trapdoor=
|
|
||||||
Weathered Copper Door=
|
|
||||||
Weathered Copper Trapdoor=
|
|
||||||
Waxed Weathered Copper Door=
|
|
||||||
Waxed Weathered Copper Trapdoor=
|
|
||||||
Oxidized Copper Door=
|
|
||||||
Oxidized Copper Trapdoor=
|
|
||||||
Waxed Oxidized Copper Door=
|
|
||||||
Waxed Oxidized Copper Trapdoor=
|
|
||||||
Copper Ingot=Медный слиток
|
|
||||||
Molten Raw Copper. It is used to craft blocks.=Медный слиток. Используется для крафта блоков.
|
|
||||||
Raw Copper=Необработанная медь
|
|
||||||
Raw Copper. Mine a Copper Ore to get it.=Необработанная медь. Добудьте медную руду, чтобы получить её.
|
Raw Copper. Mine a Copper Ore to get it.=Необработанная медь. Добудьте медную руду, чтобы получить её.
|
||||||
Copper Ore=Медная руда
|
Raw Copper=Необработанная медь
|
||||||
|
Slab of Cut Copper=Плита из резного медного блока
|
||||||
|
Slab of Exposed Cut Copper=Плита из потемневшего резного медного блока
|
||||||
|
Slab of Oxidized Cut Copper=Плита из окисленного резного медного блока
|
||||||
|
Slab of Weathered Cut Copper=Плита из состаренного резного медного блока
|
||||||
|
Waxed Slab of Cut Copper=Вощёная плита из резного медного блока
|
||||||
|
Waxed Slab of Exposed Cut Copper=Вощёная плита из потемневшего резного медного блока
|
||||||
|
Waxed Slab of Oxidized Cut Copper=Вощёная плита из окисленного резного медного блока
|
||||||
|
Waxed Slab of Weathered Cut Copper=Вощёная плита из состаренного резного медного блока
|
||||||
Some copper contained in stone, it is pretty common and can be found below sea level.=Залежи медной руды находятся в камне, медь довольно распространена и может быть найдена ниже уровня моря.
|
Some copper contained in stone, it is pretty common and can be found below sea level.=Залежи медной руды находятся в камне, медь довольно распространена и может быть найдена ниже уровня моря.
|
||||||
Block of Raw Copper=Блок необработанной меди
|
Stairs of Cut Copper=Ступени из резного медного блока
|
||||||
A block used for compact raw copper storage.=Блок используется для компактного хранения необработанной меди.
|
Stairs of Exposed Cut Copper=Ступени из потемневшего резного медного блока
|
||||||
|
Stairs of Oxidized Cut Copper=Ступени из окисленного резного медного блока
|
||||||
|
Stairs of Weathered Cut Copper=Ступени из состаренного резного медного блока
|
||||||
|
Waxed Stairs of Cut Copper=Вощёные ступени из резного медного блока
|
||||||
|
Waxed Stairs of Exposed Cut Copper=Вощёные ступени из потемневшего резного медного блока
|
||||||
|
Waxed Stairs of Oxidized Cut Copper=Вощёные ступени из окисленного резного медного блока
|
||||||
|
Waxed Stairs of Weathered Cut Copper=Вощёные ступени из состаренного резного медного блока
|
||||||
|
Weathered copper is a decorative block.=Состаренный медный блок это декоративный блок.
|
||||||
|
Weathered Copper=Состаренный медный блок
|
||||||
|
Waxed Weathered Copper=Вощёный состаренный медный блок
|
||||||
|
Weathered cut copper is a decorative block.=Состаренный резной медный блок это декоративный блок.
|
||||||
|
Weathered Cut Copper=Состаренный резной медный блок
|
||||||
|
Waxed Weathered Cut Copper=Вощёный состаренный резной медный блок
|
||||||
|
|
|
@ -1,116 +1,116 @@
|
||||||
# textdomain: mcl_copper
|
# textdomain: mcl_copper
|
||||||
|
A block of copper is mostly a decorative block.=
|
||||||
|
A block used for compact raw copper storage.=
|
||||||
Block of Copper=
|
Block of Copper=
|
||||||
Waxed Block of Copper=
|
Waxed Block of Copper=
|
||||||
Exposed Copper=
|
Block of Raw Copper=
|
||||||
Waxed Exposed Copper=
|
Copper Ingot=
|
||||||
Weathered Copper=
|
Copper Ore=
|
||||||
Waxed Weathered Copper=
|
Cut copper is a decorative block.=
|
||||||
Oxidized Copper=
|
|
||||||
Waxed Oxidized Copper=
|
|
||||||
Cut Copper=
|
Cut Copper=
|
||||||
Waxed Cut Copper=
|
Waxed Cut Copper=
|
||||||
|
Double Slab of Cut Copper=
|
||||||
|
Double Slab of Exposed Cut Copper=
|
||||||
|
Double Slab of Oxidized Cut Copper=
|
||||||
|
Double Slab of Weathered Cut Copper=
|
||||||
|
Waxed Double Slab of Cut Copper=
|
||||||
|
Waxed Double Slab of Exposed Cut Copper=
|
||||||
|
Waxed Double Slab of Oxidized Cut Copper=
|
||||||
|
Waxed Double Slab of Weathered Cut Copper=
|
||||||
|
Exposed copper is a decorative block.=
|
||||||
|
Exposed Copper=
|
||||||
|
Waxed Exposed Copper=
|
||||||
|
Exposed cut copper is a decorative block.=
|
||||||
Exposed Cut Copper=
|
Exposed Cut Copper=
|
||||||
Waxed Exposed Cut Copper=
|
Waxed Exposed Cut Copper=
|
||||||
Weathered Cut Copper=
|
Molten Raw Copper. It is used to craft blocks.=
|
||||||
Waxed Weathered Cut Copper=
|
Oxidized copper is a decorative block.=
|
||||||
|
Oxidized Copper=
|
||||||
|
Waxed Oxidized Copper=
|
||||||
|
Oxidized cut copper is a decorative block.=
|
||||||
Oxidized Cut Copper=
|
Oxidized Cut Copper=
|
||||||
Waxed Oxidized Cut Copper=
|
Waxed Oxidized Cut Copper=
|
||||||
|
Raw Copper. Mine a Copper Ore to get it.=
|
||||||
|
Raw Copper=
|
||||||
|
Slab of Cut Copper=
|
||||||
|
Slab of Exposed Cut Copper=
|
||||||
|
Slab of Oxidized Cut Copper=
|
||||||
|
Slab of Weathered Cut Copper=
|
||||||
|
Waxed Slab of Cut Copper=
|
||||||
|
Waxed Slab of Exposed Cut Copper=
|
||||||
|
Waxed Slab of Oxidized Cut Copper=
|
||||||
|
Waxed Slab of Weathered Cut Copper=
|
||||||
|
Some copper contained in stone, it is pretty common and can be found below sea level.=
|
||||||
|
Stairs of Cut Copper=
|
||||||
|
Stairs of Exposed Cut Copper=
|
||||||
|
Stairs of Oxidized Cut Copper=
|
||||||
|
Stairs of Weathered Cut Copper=
|
||||||
|
Waxed Stairs of Cut Copper=
|
||||||
|
Waxed Stairs of Exposed Cut Copper=
|
||||||
|
Waxed Stairs of Oxidized Cut Copper=
|
||||||
|
Waxed Stairs of Weathered Cut Copper=
|
||||||
|
Weathered copper is a decorative block.=
|
||||||
|
Weathered Copper=
|
||||||
|
Waxed Weathered Copper=
|
||||||
|
Weathered cut copper is a decorative block.=
|
||||||
|
Weathered Cut Copper=
|
||||||
|
Waxed Weathered Cut Copper=
|
||||||
Copper Grate=
|
Copper Grate=
|
||||||
Waxed Copper Grate=
|
Waxed Copper Grate=
|
||||||
|
Copper grate is a decorative block.=
|
||||||
Exposed Copper Grate=
|
Exposed Copper Grate=
|
||||||
Waxed Exposed Copper Grate=
|
Waxed Exposed Copper Grate=
|
||||||
|
Exposed copper grate is a decorative block.=
|
||||||
Weathered Copper Grate=
|
Weathered Copper Grate=
|
||||||
Waxed Weathered Copper Grate=
|
Waxed Weathered Copper Grate=
|
||||||
|
Weathered copper grate is a decorative block.=
|
||||||
Oxidized Copper Grate=
|
Oxidized Copper Grate=
|
||||||
Waxed Oxidized Copper Grate=
|
Waxed Oxidized Copper Grate=
|
||||||
|
Oxidized copper grate is a decorative block.=
|
||||||
Chiseled Copper=
|
Chiseled Copper=
|
||||||
Waxed Chiseled Copper=
|
Waxed Chiseled Copper=
|
||||||
|
Chiseled copper is a decorative block.=
|
||||||
Exposed Chiseled Copper=
|
Exposed Chiseled Copper=
|
||||||
Waxed Exposed Chiseled Copper=
|
Waxed Exposed Chiseled Copper=
|
||||||
|
Exposed chiseled copper is a decorative block.=
|
||||||
Weathered Chiseled Copper=
|
Weathered Chiseled Copper=
|
||||||
Waxed Weathered Chiseled Copper=
|
Waxed Weathered Chiseled Copper=
|
||||||
|
Weathered chiseled copper is a decorative block.=
|
||||||
Oxidized Chiseled Copper=
|
Oxidized Chiseled Copper=
|
||||||
Waxed Oxidized Chiseled Copper=
|
Waxed Oxidized Chiseled Copper=
|
||||||
|
Oxidized chiseled copper is a decorative block.=
|
||||||
Copper Bulb=
|
Copper Bulb=
|
||||||
Waxed Copper Bulb=
|
Waxed Copper Bulb=
|
||||||
|
Copper bulb is a decorative block and a light source.=
|
||||||
|
Copper bulb is a decorative block and a light source when lited.=
|
||||||
Exposed Copper Bulb=
|
Exposed Copper Bulb=
|
||||||
Waxed Exposed Copper Bulb=
|
Waxed Exposed Copper Bulb=
|
||||||
|
Exposed copper bulb is a decorative block and a light source.=
|
||||||
|
Exposed copper bulb is a decorative block and a light source when lited.=
|
||||||
Weathered Copper Bulb=
|
Weathered Copper Bulb=
|
||||||
Waxed Weathered Copper Bulb=
|
Waxed Weathered Copper Bulb=
|
||||||
|
Weathered copper bulb is a decorative block and a light source.=
|
||||||
|
Weathered copper bulb is a decorative block and a light source when lited.=
|
||||||
Oxidized Copper Bulb=
|
Oxidized Copper Bulb=
|
||||||
Waxed Oxidized Copper Bulb=
|
Waxed Oxidized Copper Bulb=
|
||||||
(Lit)=
|
|
||||||
(Powered)=
|
|
||||||
(Lit and Powered)=
|
|
||||||
A block of copper is mostly a decorative block.=
|
|
||||||
Exposed copper is a decorative block.=
|
|
||||||
Weathered copper is a decorative block.=
|
|
||||||
Oxidized copper is a decorative block.=
|
|
||||||
Cut copper is a decorative block.=
|
|
||||||
Exposed cut copper is a decorative block.=
|
|
||||||
Weathered cut copper is a decorative block.=
|
|
||||||
Oxidized cut copper is a decorative block.=
|
|
||||||
Copper grate is a decorative block.=
|
|
||||||
Exposed copper grate is a decorative block.=
|
|
||||||
Weathered copper grate is a decorative block.=
|
|
||||||
Oxidized copper grate is a decorative block.=
|
|
||||||
Chiseled copper is a decorative block.=
|
|
||||||
Exposed chiseled copper is a decorative block.=
|
|
||||||
Weathered chiseled copper is a decorative block.=
|
|
||||||
Oxidized chiseled copper is a decorative block.=
|
|
||||||
Copper bulb is a decorative block and a light source when lited.=
|
|
||||||
Exposed copper bulb is a decorative block and a light source when lited.=
|
|
||||||
Weathered copper bulb is a decorative block and a light source when lited.=
|
|
||||||
Oxidized copper bulb is a decorative block and a light source when lited.=
|
|
||||||
Copper bulb is a decorative block and a light source.=
|
|
||||||
Exposed copper bulb is a decorative block and a light source.=
|
|
||||||
Weathered copper bulb is a decorative block and a light source.=
|
|
||||||
Oxidized copper bulb is a decorative block and a light source.=
|
Oxidized copper bulb is a decorative block and a light source.=
|
||||||
Slab of Cut Copper=
|
Oxidized copper bulb is a decorative block and a light source when lited.=
|
||||||
Double Slab of Cut Copper=
|
|
||||||
Stairs of Cut Copper=
|
|
||||||
Waxed Slab of Cut Copper=
|
|
||||||
Waxed Double Slab of Cut Copper=
|
|
||||||
Waxed Stairs of Cut Copper=
|
|
||||||
Slab of Exposed Cut Copper=
|
|
||||||
Double Slab of Exposed Cut Copper=
|
|
||||||
Stairs of Exposed Cut Copper=
|
|
||||||
Waxed Slab of Exposed Cut Copper=
|
|
||||||
Waxed Double Slab of Exposed Cut Copper=
|
|
||||||
Waxed Stairs of Exposed Cut Copper=
|
|
||||||
Slab of Weathered Cut Copper=
|
|
||||||
Double Slab of Weathered Cut Copper=
|
|
||||||
Stairs of Weathered Cut Copper=
|
|
||||||
Waxed Slab of Weathered Cut Copper=
|
|
||||||
Waxed Double Slab of Weathered Cut Copper=
|
|
||||||
Waxed Stairs of Weathered Cut Copper=
|
|
||||||
Slab of Oxidized Cut Copper=
|
|
||||||
Double Slab of Oxidized Cut Copper=
|
|
||||||
Stairs of Oxidized Cut Copper=
|
|
||||||
Waxed Slab of Oxidized Cut Copper=
|
|
||||||
Waxed Double Slab of Oxidized Cut Copper=
|
|
||||||
Waxed Stairs of Oxidized Cut Copper=
|
|
||||||
Copper Door=
|
Copper Door=
|
||||||
Copper Trapdoor=
|
|
||||||
Waxed Copper Door=
|
Waxed Copper Door=
|
||||||
Waxed Copper Trapdoor=
|
|
||||||
Exposed Copper Door=
|
Exposed Copper Door=
|
||||||
Exposed Copper Trapdoor=
|
|
||||||
Waxed Exposed Copper Door=
|
Waxed Exposed Copper Door=
|
||||||
Waxed Exposed Copper Trapdoor=
|
|
||||||
Weathered Copper Door=
|
Weathered Copper Door=
|
||||||
Weathered Copper Trapdoor=
|
|
||||||
Waxed Weathered Copper Door=
|
Waxed Weathered Copper Door=
|
||||||
Waxed Weathered Copper Trapdoor=
|
|
||||||
Oxidized Copper Door=
|
Oxidized Copper Door=
|
||||||
Oxidized Copper Trapdoor=
|
|
||||||
Waxed Oxidized Copper Door=
|
Waxed Oxidized Copper Door=
|
||||||
|
Copper Trapdoor=
|
||||||
|
Waxed Copper Trapdoor=
|
||||||
|
Exposed Copper Trapdoor=
|
||||||
|
Waxed Exposed Copper Trapdoor=
|
||||||
|
Weathered Copper Trapdoor=
|
||||||
|
Waxed Weathered Copper Trapdoor=
|
||||||
|
Oxidized Copper Trapdoor=
|
||||||
Waxed Oxidized Copper Trapdoor=
|
Waxed Oxidized Copper Trapdoor=
|
||||||
Copper Ingot=
|
@1 (Lit)=
|
||||||
Molten Raw Copper. It is used to craft blocks.=
|
@1 (Powered)=
|
||||||
Raw Copper=
|
@1 (Lit and Powered)=
|
||||||
Raw Copper. Mine a Copper Ore to get it.=
|
|
||||||
Copper Ore=
|
|
||||||
Some copper contained in stone, it is pretty common and can be found below sea level.=
|
|
||||||
Block of Raw Copper=
|
|
||||||
A block used for compact raw copper storage.=
|
|
||||||
|
|
|
@ -1,5 +1,19 @@
|
||||||
local S = minetest.get_translator("mcl_copper")
|
local S = minetest.get_translator("mcl_copper")
|
||||||
|
|
||||||
|
local function set_description(descs, s_index, n_index)
|
||||||
|
local description
|
||||||
|
|
||||||
|
if type(descs[s_index][n_index]) == "string" then
|
||||||
|
description = S(descs[s_index][n_index])
|
||||||
|
elseif type(descs[s_index][n_index]) == "table" then
|
||||||
|
description = S("@1 "..descs[s_index][n_index][2], S(descs[s_index][n_index][1]))
|
||||||
|
else
|
||||||
|
return nil
|
||||||
|
end
|
||||||
|
|
||||||
|
return description
|
||||||
|
end
|
||||||
|
|
||||||
local function set_drop(drop, old_name, index_name)
|
local function set_drop(drop, old_name, index_name)
|
||||||
if drop and old_name and index_name then
|
if drop and old_name and index_name then
|
||||||
drop = "mcl_copper:"..old_name:gsub(index_name, drop)
|
drop = "mcl_copper:"..old_name:gsub(index_name, drop)
|
||||||
|
@ -46,7 +60,7 @@ local function set_tiles(tiles, index)
|
||||||
return tiles[math.ceil(index / 2)]
|
return tiles[math.ceil(index / 2)]
|
||||||
end
|
end
|
||||||
|
|
||||||
local function register_copper_variants(name, definitions)
|
function mcl_copper.register_copper_variants(name, definitions)
|
||||||
local names, oxidized_variant, stripped_variant, waxed_variant, tiles
|
local names, oxidized_variant, stripped_variant, waxed_variant, tiles
|
||||||
|
|
||||||
if name ~= "cut" then
|
if name ~= "cut" then
|
||||||
|
@ -95,7 +109,7 @@ local function register_copper_variants(name, definitions)
|
||||||
end
|
end
|
||||||
|
|
||||||
minetest.register_node("mcl_copper:"..names[i], {
|
minetest.register_node("mcl_copper:"..names[i], {
|
||||||
description = mcl_copper.copper_descs[name][i],
|
description = set_description(mcl_copper.copper_descs, name, i),
|
||||||
drawtype = definitions.drawtype or "normal",
|
drawtype = definitions.drawtype or "normal",
|
||||||
drop = set_drop(definitions.drop, names[i], name),
|
drop = set_drop(definitions.drop, names[i], name),
|
||||||
groups = set_groups(names[i], definitions.groups),
|
groups = set_groups(names[i], definitions.groups),
|
||||||
|
@ -107,7 +121,7 @@ local function register_copper_variants(name, definitions)
|
||||||
sounds = mcl_sounds.node_sound_metal_defaults(),
|
sounds = mcl_sounds.node_sound_metal_defaults(),
|
||||||
sunlight_propagates = definitions.sunlight_propagates or false,
|
sunlight_propagates = definitions.sunlight_propagates or false,
|
||||||
tiles = {set_tiles(tiles, i)},
|
tiles = {set_tiles(tiles, i)},
|
||||||
_doc_items_longdesc = mcl_copper.copper_longdescs[name][math.ceil(i/2)],
|
_doc_items_longdesc = S(mcl_copper.copper_longdescs[name][math.ceil(i/2)]),
|
||||||
_mcl_blast_resistance = 6,
|
_mcl_blast_resistance = 6,
|
||||||
_mcl_hardness = 3,
|
_mcl_hardness = 3,
|
||||||
_mcl_oxidized_variant = oxidized_variant,
|
_mcl_oxidized_variant = oxidized_variant,
|
||||||
|
@ -120,14 +134,14 @@ local function register_copper_variants(name, definitions)
|
||||||
|
|
||||||
mcl_stairs.register_slab(subname, "mcl_copper:"..names[i], set_groups(subname, definitions.groups),
|
mcl_stairs.register_slab(subname, "mcl_copper:"..names[i], set_groups(subname, definitions.groups),
|
||||||
{set_tiles(tiles, i), set_tiles(tiles, i), set_tiles(tiles, i)},
|
{set_tiles(tiles, i), set_tiles(tiles, i), set_tiles(tiles, i)},
|
||||||
mcl_copper.stairs_descs[subname][1], nil, nil, nil,
|
set_description(mcl_copper.stairs_descs, subname, 1), nil, nil, nil,
|
||||||
mcl_copper.stairs_descs[subname][2]
|
set_description(mcl_copper.stairs_descs, subname, 2)
|
||||||
)
|
)
|
||||||
|
|
||||||
mcl_stairs.register_stair(subname, "mcl_copper:"..names[i], set_groups(subname, definitions.groups),
|
mcl_stairs.register_stair(subname, "mcl_copper:"..names[i], set_groups(subname, definitions.groups),
|
||||||
{set_tiles(tiles, i), set_tiles(tiles, i), set_tiles(tiles, i),
|
{set_tiles(tiles, i), set_tiles(tiles, i), set_tiles(tiles, i),
|
||||||
set_tiles(tiles, i), set_tiles(tiles, i), set_tiles(tiles, i)},
|
set_tiles(tiles, i), set_tiles(tiles, i), set_tiles(tiles, i)},
|
||||||
mcl_copper.stairs_descs[subname][3], nil, nil, nil, "woodlike"
|
set_description(mcl_copper.stairs_descs, subname, 3), nil, nil, nil, "woodlike"
|
||||||
)
|
)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -151,7 +165,7 @@ local function register_copper_variants(name, definitions)
|
||||||
end
|
end
|
||||||
|
|
||||||
mcl_doors:register_door("mcl_copper:"..names[i]:gsub(name, "door"), {
|
mcl_doors:register_door("mcl_copper:"..names[i]:gsub(name, "door"), {
|
||||||
description = mcl_copper.doors_descs[i][1],
|
description = S(mcl_copper.doors_descs[i][1]),
|
||||||
groups = door_groups,
|
groups = door_groups,
|
||||||
inventory_image = itemimg,
|
inventory_image = itemimg,
|
||||||
only_redstone_can_open = false,
|
only_redstone_can_open = false,
|
||||||
|
@ -165,7 +179,7 @@ local function register_copper_variants(name, definitions)
|
||||||
})
|
})
|
||||||
|
|
||||||
mcl_doors:register_trapdoor("mcl_copper:"..names[i]:gsub(name, "trapdoor"), {
|
mcl_doors:register_trapdoor("mcl_copper:"..names[i]:gsub(name, "trapdoor"), {
|
||||||
description = mcl_copper.doors_descs[i][2],
|
description = S(mcl_copper.doors_descs[i][2]),
|
||||||
groups = trapdoor_groups,
|
groups = trapdoor_groups,
|
||||||
only_redstone_can_open = false,
|
only_redstone_can_open = false,
|
||||||
sounds = mcl_sounds.node_sound_metal_defaults(),
|
sounds = mcl_sounds.node_sound_metal_defaults(),
|
||||||
|
@ -198,7 +212,7 @@ minetest.register_node("mcl_copper:stone_with_copper", {
|
||||||
minetest.register_node("mcl_copper:block_raw", {
|
minetest.register_node("mcl_copper:block_raw", {
|
||||||
description = S("Block of Raw Copper"),
|
description = S("Block of Raw Copper"),
|
||||||
_doc_items_longdesc = S("A block used for compact raw copper storage."),
|
_doc_items_longdesc = S("A block used for compact raw copper storage."),
|
||||||
tiles = {"mcl_copper_block_raw.png"},
|
tiles = {"mcl_copper_raw_block.png"},
|
||||||
is_ground_content = false,
|
is_ground_content = false,
|
||||||
groups = {pickaxey = 2, building_block = 1, blast_furnace_smeltable = 1},
|
groups = {pickaxey = 2, building_block = 1, blast_furnace_smeltable = 1},
|
||||||
sounds = mcl_sounds.node_sound_metal_defaults(),
|
sounds = mcl_sounds.node_sound_metal_defaults(),
|
||||||
|
@ -206,27 +220,27 @@ minetest.register_node("mcl_copper:block_raw", {
|
||||||
_mcl_hardness = 5,
|
_mcl_hardness = 5,
|
||||||
})
|
})
|
||||||
|
|
||||||
register_copper_variants("block", {
|
mcl_copper.register_copper_variants("block", {
|
||||||
groups = {pickaxey = 2, building_block = 1},
|
groups = {pickaxey = 2, building_block = 1},
|
||||||
_mcl_doors = true,
|
_mcl_doors = true,
|
||||||
})
|
})
|
||||||
|
|
||||||
register_copper_variants("cut", {
|
mcl_copper.register_copper_variants("cut", {
|
||||||
groups = {pickaxey = 2, building_block = 1},
|
groups = {pickaxey = 2, building_block = 1},
|
||||||
_mcl_stairs = true,
|
_mcl_stairs = true,
|
||||||
})
|
})
|
||||||
|
--[[
|
||||||
register_copper_variants("grate", {
|
mcl_copper.register_copper_variants("grate", {
|
||||||
drawtype = "allfaces",
|
drawtype = "allfaces",
|
||||||
groups = {pickaxey = 2, building_block = 1, disable_suffocation = 1},
|
groups = {pickaxey = 2, building_block = 1, disable_suffocation = 1},
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
})
|
})
|
||||||
--[[
|
|
||||||
register_copper_variants("chiseled", {
|
mcl_copper.register_copper_variants("chiseled", {
|
||||||
groups = {pickaxey = 2, building_block = 1}
|
groups = {pickaxey = 2, building_block = 1}
|
||||||
})
|
})
|
||||||
|
|
||||||
register_copper_variants("bulb_off", {
|
mcl_copper.register_copper_variants("bulb_off", {
|
||||||
groups = {pickaxey = 2, building_block = 1},
|
groups = {pickaxey = 2, building_block = 1},
|
||||||
mesecons = {
|
mesecons = {
|
||||||
effector = {
|
effector = {
|
||||||
|
@ -237,7 +251,7 @@ register_copper_variants("bulb_off", {
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
register_copper_variants("bulb_on", {
|
mcl_copper.register_copper_variants("bulb_on", {
|
||||||
drop = "bulb_off",
|
drop = "bulb_off",
|
||||||
groups = {pickaxey = 2, building_block = 1, not_in_creative_inventory = 1},
|
groups = {pickaxey = 2, building_block = 1, not_in_creative_inventory = 1},
|
||||||
light_source = 14,
|
light_source = 14,
|
||||||
|
@ -251,7 +265,7 @@ register_copper_variants("bulb_on", {
|
||||||
paramtype = "light"
|
paramtype = "light"
|
||||||
})
|
})
|
||||||
|
|
||||||
register_copper_variants("bulb_powered_off", {
|
mcl_copper.register_copper_variants("bulb_powered_off", {
|
||||||
drop = "bulb_off",
|
drop = "bulb_off",
|
||||||
groups = {pickaxey = 2, building_block = 1, not_in_creative_inventory = 1},
|
groups = {pickaxey = 2, building_block = 1, not_in_creative_inventory = 1},
|
||||||
mesecons = {
|
mesecons = {
|
||||||
|
@ -263,7 +277,7 @@ register_copper_variants("bulb_powered_off", {
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
register_copper_variants("bulb_powered_on", {
|
mcl_copper.register_copper_variants("bulb_powered_on", {
|
||||||
drop = "bulb_off",
|
drop = "bulb_off",
|
||||||
groups = {pickaxey = 2, building_block = 1, not_in_creative_inventory = 1},
|
groups = {pickaxey = 2, building_block = 1, not_in_creative_inventory = 1},
|
||||||
light_source = 14,
|
light_source = 14,
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 284 B |
Binary file not shown.
Before Width: | Height: | Size: 328 B |
Binary file not shown.
Before Width: | Height: | Size: 283 B |
Binary file not shown.
Before Width: | Height: | Size: 337 B |
Loading…
Reference in a new issue