forked from Wuzzy/realtest_mt5
458 lines
10 KiB
Lua
458 lines
10 KiB
Lua
metals = {}
|
|
|
|
metals.levels = {0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,4,4,4,4,4,5}
|
|
|
|
metals.list = {
|
|
'bismuth',
|
|
'zinc',
|
|
'tin',
|
|
----------
|
|
'copper',
|
|
----------
|
|
'lead',
|
|
'silver',
|
|
'gold',
|
|
'brass',
|
|
'sterling_silver',
|
|
'rose_gold',
|
|
'oroide',
|
|
'black_bronze',
|
|
'bismuth_bronze',
|
|
'tumbaga',
|
|
'bronze',
|
|
'aluminium',
|
|
----------
|
|
'platinum',
|
|
'pig_iron',
|
|
'wrought_iron',
|
|
----------
|
|
'german_silver',
|
|
'albata',
|
|
'nickel',
|
|
'steel',
|
|
'monel',
|
|
----------
|
|
'black_steel'
|
|
}
|
|
|
|
metals.desc_list = {
|
|
'Bismuth',
|
|
'Zinc',
|
|
'Tin',
|
|
----------
|
|
'Copper',
|
|
----------
|
|
'Lead',
|
|
'Silver',
|
|
'Gold',
|
|
'Brass',
|
|
'Sterling Silver',
|
|
'Rose Gold',
|
|
'Oroide',
|
|
'Black Bronze',
|
|
'Bismuth Bronze',
|
|
'Tumbaga',
|
|
'Bronze',
|
|
'Aluminium',
|
|
----------
|
|
'Platinum',
|
|
'Pig Iron',
|
|
'Wrought Iron',
|
|
----------
|
|
'German Silver',
|
|
'Albata',
|
|
'Nickel',
|
|
'Steel',
|
|
'Monel',
|
|
----------
|
|
'Black Steel'
|
|
}
|
|
|
|
for i=1, #metals.list do
|
|
|
|
--
|
|
-- Craftitems
|
|
--
|
|
|
|
minetest.register_craftitem("metals:"..metals.list[i].."_unshaped", {
|
|
description = "Unshaped "..metals.desc_list[i],
|
|
inventory_image = "metals_"..metals.list[i].."_unshaped.png",
|
|
})
|
|
|
|
minetest.register_craftitem("metals:"..metals.list[i].."_ingot", {
|
|
description = metals.desc_list[i].." Ingot",
|
|
inventory_image = "metals_"..metals.list[i].."_ingot.png",
|
|
})
|
|
|
|
minetest.register_craftitem("metals:"..metals.list[i].."_doubleingot", {
|
|
description = metals.desc_list[i].." Double Ingot",
|
|
inventory_image = "metals_"..metals.list[i].."_doubleingot.png",
|
|
})
|
|
|
|
minetest.register_craftitem("metals:"..metals.list[i].."_sheet", {
|
|
description = metals.desc_list[i].." Sheet",
|
|
inventory_image = "metals_" .. metals.list[i].."_sheet.png",
|
|
})
|
|
|
|
minetest.register_craftitem("metals:"..metals.list[i].."_doublesheet", {
|
|
description = metals.desc_list[i].." Double Sheet",
|
|
inventory_image = "metals_"..metals.list[i].."_doublesheet.png",
|
|
})
|
|
|
|
minetest.register_craftitem("metals:ceramic_mold_"..metals.list[i], {
|
|
description = "Ceramic Mold with "..metals.desc_list[i],
|
|
inventory_image = "metals_ceramic_mold.png^metals_"..metals.list[i].."_ingot.png",
|
|
})
|
|
|
|
minetest.register_craftitem("metals:"..metals.list[i].."_lock", {
|
|
description = metals.desc_list[i].." Lock",
|
|
inventory_image = "metals_"..metals.list[i].."_lock.png",
|
|
groups = {lock=1}
|
|
})
|
|
|
|
--
|
|
-- Nodes
|
|
--
|
|
|
|
minetest.register_node("metals:"..metals.list[i].."_block", {
|
|
description = "Block of "..metals.desc_list[i],
|
|
tiles = {"metals_"..metals.list[i].."_block.png"},
|
|
particle_image = {"metals_"..metals.list[i].."_block.png"},
|
|
is_ground_content = true,
|
|
drop = "metals:"..metals.list[i].."_doubleingot 4",
|
|
groups = {snappy=1,bendy=2,cracky=2,melty=2,level=2,drop_on_dig=1},
|
|
sounds = default.node_sound_stone_defaults(),
|
|
})
|
|
|
|
--
|
|
-- Crafts
|
|
--
|
|
|
|
minetest.register_craft({
|
|
output = "metals:"..metals.list[i].."_block",
|
|
recipe = {
|
|
{"metals:"..metals.list[i].."_doubleingot", "metals:"..metals.list[i].."_doubleingot"},
|
|
{"metals:"..metals.list[i].."_doubleingot", "metals:"..metals.list[i].."_doubleingot"},
|
|
}
|
|
})
|
|
|
|
realtest.register_stair("metals:"..metals.list[i].."_block",nil,nil,nil,metals.desc_list[i].." Stair",nil,
|
|
"metals:"..metals.list[i].."_doubleingot 3")
|
|
realtest.register_slab("metals:"..metals.list[i].."_block",nil,nil,nil,metals.desc_list[i].." Slab",nil,
|
|
"metals:"..metals.list[i].."_doubleingot 2")
|
|
minetest.register_craft({
|
|
output = "metals:"..metals.list[i].."_block_slab",
|
|
recipe = {
|
|
{"metals:"..metals.list[i].."_doubleingot","metals:"..metals.list[i].."_doubleingot"},
|
|
},
|
|
})
|
|
minetest.register_craft({
|
|
output = "metals:"..metals.list[i].."_block_stair",
|
|
recipe = {
|
|
{"metals:"..metals.list[i].."_doubleingot",""},
|
|
{"metals:"..metals.list[i].."_doubleingot","metals:"..metals.list[i].."_doubleingot"},
|
|
},
|
|
})
|
|
minetest.register_craft({
|
|
output = "metals:"..metals.list[i].."_block_stair",
|
|
recipe = {
|
|
{"","metals:"..metals.list[i].."_doubleingot"},
|
|
{"metals:"..metals.list[i].."_doubleingot","metals:"..metals.list[i].."_doubleingot"},
|
|
},
|
|
})
|
|
|
|
minetest.register_craft({
|
|
output = "metals:ceramic_mold_"..metals.list[i],
|
|
recipe = {
|
|
{"metals:"..metals.list[i].."_ingot"},
|
|
{"metals:ceramic_mold"},
|
|
}
|
|
})
|
|
|
|
minetest.register_craft({
|
|
output = "metals:"..metals.list[i].."_ingot",
|
|
recipe = {{"metals:ceramic_mold_"..metals.list[i]}},
|
|
replacements = {{"metals:ceramic_mold_"..metals.list[i], "metals:ceramic_mold"}},
|
|
})
|
|
|
|
--
|
|
-- Cooking
|
|
--
|
|
|
|
minetest.register_craft({
|
|
type = "cooking",
|
|
output = "metals:"..metals.list[i].."_unshaped",
|
|
recipe = "metals:ceramic_mold_"..metals.list[i],
|
|
cooktime = 10,
|
|
})
|
|
end
|
|
|
|
--
|
|
-- Smelting
|
|
--
|
|
|
|
minetest.register_craftitem("metals:molding_sand_lump", {
|
|
description = "Molding Sand",
|
|
inventory_image = "metals_molding_sand.png"
|
|
})
|
|
|
|
minetest.register_craft({
|
|
type = "shapeless",
|
|
output = "metals:molding_sand_lump 5",
|
|
recipe = {"grounds:clay_lump", "default:sand", "default:desert_sand"}
|
|
})
|
|
|
|
minetest.register_craftitem("metals:molding_sand_mold", {
|
|
description = "Molding Sand Mold",
|
|
inventory_image = "metals_molding_sand_mold.png",
|
|
})
|
|
|
|
minetest.register_craftitem("metals:clay_mold", {
|
|
description = "Clay Mold",
|
|
inventory_image = "metals_clay_mold.png",
|
|
})
|
|
|
|
minetest.register_craftitem("metals:ceramic_mold", {
|
|
description = "Ceramic mold",
|
|
inventory_image = "metals_ceramic_mold.png",
|
|
})
|
|
|
|
minetest.register_craft({
|
|
output = "metals:molding_sand_mold 5",
|
|
recipe = {
|
|
{"metals:molding_sand_lump", "", "metals:molding_sand_lump"},
|
|
{"metals:molding_sand_lump", "metals:molding_sand_lump", "metals:molding_sand_lump"},
|
|
}
|
|
})
|
|
|
|
minetest.register_craft({
|
|
output = "metals:clay_mold 5",
|
|
recipe = {
|
|
{"grounds:clay_lump", "", "grounds:clay_lump"},
|
|
{"grounds:clay_lump", "grounds:clay_lump", "grounds:clay_lump"},
|
|
}
|
|
})
|
|
|
|
minetest.register_craft({
|
|
type = "cooking",
|
|
output = "metals:ceramic_mold",
|
|
recipe = "metals:clay_mold",
|
|
cooktime = 5,
|
|
})
|
|
|
|
minetest.register_craft({
|
|
type = "cooking",
|
|
output = "metals:ceramic_mold",
|
|
recipe = "metals:molding_sand_mold",
|
|
})
|
|
|
|
minerals = {}
|
|
|
|
minerals.list = {
|
|
'magnetite',
|
|
'hematite',
|
|
'limonite',
|
|
'bismuthinite',
|
|
'cassiterite',
|
|
'galena',
|
|
'malachite',
|
|
'native_copper',
|
|
'native_gold',
|
|
'native_platinum',
|
|
'native_silver',
|
|
'sphalerite',
|
|
'tetrahedrite',
|
|
'garnierite',
|
|
'bauxite',
|
|
}
|
|
|
|
minerals.desc_list = {
|
|
'Magnetite',
|
|
'Hematite',
|
|
'Limonite',
|
|
'Bismuthinite',
|
|
'Cassiterite',
|
|
'Galena',
|
|
'Malachite',
|
|
'Native Copper',
|
|
'Native Gold',
|
|
'Native Platinum',
|
|
'Native Silver',
|
|
'Sphalerite',
|
|
'Tetrahedrite',
|
|
'Garnierite',
|
|
'Bauxite',
|
|
}
|
|
|
|
minerals.metals_list = {
|
|
'pig_iron',
|
|
'pig_iron',
|
|
'pig_iron',
|
|
'bismuth',
|
|
'tin',
|
|
'lead',
|
|
'copper',
|
|
'copper',
|
|
'gold',
|
|
'platinum',
|
|
'silver',
|
|
'zinc',
|
|
'copper',
|
|
'nickel',
|
|
'aluminium',
|
|
}
|
|
|
|
for i, mineral in ipairs(minerals.list) do
|
|
minetest.register_craftitem("metals:ceramic_mold_"..mineral, {
|
|
description = "Ceramic mold with "..minerals.desc_list[i],
|
|
inventory_image = "metals_ceramic_mold_"..mineral..".png",
|
|
})
|
|
|
|
minetest.register_craft({
|
|
output = "metals:ceramic_mold_"..mineral,
|
|
recipe = {
|
|
{"minerals:"..mineral},
|
|
{"metals:ceramic_mold"},
|
|
}
|
|
})
|
|
|
|
minetest.register_craft({
|
|
output = "minerals:"..mineral,
|
|
recipe = {{"metals:ceramic_mold_"..mineral}},
|
|
replacements = {{"metals:ceramic_mold_"..mineral, "metals:ceramic_mold"}},
|
|
})
|
|
|
|
minetest.register_craft({
|
|
type = "cooking",
|
|
output = "metals:"..minerals.metals_list[i].."_unshaped",
|
|
recipe = "metals:ceramic_mold_"..mineral,
|
|
cooktime = 5,
|
|
})
|
|
end
|
|
|
|
--
|
|
-- Alloys (needs smelter)
|
|
--
|
|
|
|
|
|
crafter.register_craft({
|
|
type = "smelting",
|
|
output = "metals:oroide_unshaped 4",
|
|
recipe = {
|
|
{"metals:copper_unshaped","metals:copper_unshaped"},
|
|
{"metals:tin_unshaped","metals:zinc_unshaped"}
|
|
}
|
|
})
|
|
|
|
crafter.register_craft({
|
|
type = "smelting",
|
|
output = "metals:tumbaga_unshaped 4",
|
|
recipe = {
|
|
{"metals:copper_unshaped","metals:copper_unshaped"},
|
|
{"metals:gold_unshaped","metals:gold_unshaped"}
|
|
}
|
|
})
|
|
|
|
crafter.register_craft({
|
|
type = "smelting",
|
|
output = "metals:monel_unshaped 4",
|
|
recipe = {
|
|
{"metals:nickel_unshaped","metals:nickel_unshaped"},
|
|
{"metals:nickel_unshaped","metals:copper_unshaped"}
|
|
}
|
|
})
|
|
|
|
crafter.register_craft({
|
|
type = "smelting",
|
|
output = "metals:german_silver_unshaped 4",
|
|
recipe = {
|
|
{"metals:copper_unshaped","metals:copper_unshaped"},
|
|
{"metals:copper_unshaped","metals:nickel_unshaped"}
|
|
}
|
|
})
|
|
|
|
crafter.register_craft({
|
|
type = "smelting",
|
|
output = "metals:albata_unshaped 4",
|
|
recipe = {
|
|
{"metals:copper_unshaped","metals:nickel_unshaped"},
|
|
{"metals:zinc_unshaped","metals:zinc_unshaped"}
|
|
}
|
|
})
|
|
|
|
crafter.register_craft({
|
|
type = "smelting",
|
|
output = "metals:steel_unshaped 4",
|
|
recipe = {
|
|
{"metals:wrought_iron_unshaped","metals:wrought_iron_unshaped"},
|
|
{"metals:wrought_iron_unshaped","metals:pig_iron_unshaped"}
|
|
}
|
|
})
|
|
|
|
crafter.register_craft({
|
|
type = "smelting",
|
|
output = "metals:brass_unshaped 4",
|
|
recipe = {
|
|
{"metals:copper_unshaped","metals:copper_unshaped"},
|
|
{"metals:copper_unshaped","metals:zinc_unshaped"}
|
|
}
|
|
})
|
|
|
|
crafter.register_craft({
|
|
type = "smelting",
|
|
output = "metals:sterling_silver_unshaped 4",
|
|
recipe = {
|
|
{"metals:silver_unshaped","metals:silver_unshaped"},
|
|
{"metals:silver_unshaped","metals:copper_unshaped"}
|
|
}
|
|
})
|
|
|
|
crafter.register_craft({
|
|
type = "smelting",
|
|
output = "metals:rose_gold_unshaped 4",
|
|
recipe = {
|
|
{"metals:gold_unshaped","metals:gold_unshaped"},
|
|
{"metals:gold_unshaped","metals:brass_unshaped"}
|
|
}
|
|
})
|
|
|
|
crafter.register_craft({
|
|
type = "smelting",
|
|
output = "metals:black_bronze_unshaped 4",
|
|
recipe = {
|
|
{"metals:copper_unshaped","metals:copper_unshaped"},
|
|
{"metals:gold_unshaped","metals:silver_unshaped"}
|
|
}
|
|
})
|
|
|
|
crafter.register_craft({
|
|
type = "smelting",
|
|
output = "metals:bismuth_bronze_unshaped 4",
|
|
recipe = {
|
|
{"metals:copper_unshaped","metals:copper_unshaped"},
|
|
{"metals:bismuth_unshaped","metals:tin_unshaped"}
|
|
}
|
|
})
|
|
|
|
crafter.register_craft({
|
|
type = "smelting",
|
|
output = "metals:bronze_unshaped 4",
|
|
recipe = {
|
|
{"metals:copper_unshaped","metals:copper_unshaped"},
|
|
{"metals:copper_unshaped","metals:tin_unshaped"}
|
|
}
|
|
})
|
|
|
|
crafter.register_craft({
|
|
type = "smelting",
|
|
output = "metals:black_steel_unshaped 4",
|
|
recipe = {
|
|
{"metals:steel_unshaped","metals:steel_unshaped"},
|
|
{"metals:nickel_unshaped","metals:black_bronze_unshaped"}
|
|
}
|
|
})
|
|
|
|
--
|
|
-- Other
|
|
--
|