Rename *steel* itemstrings to *iron*
This commit is contained in:
parent
b5a4adc2e3
commit
f905c32289
20 changed files with 80 additions and 97 deletions
|
@ -192,9 +192,9 @@ minetest.register_craft({
|
|||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'mcl_core:pick_steel',
|
||||
output = 'mcl_core:pick_iron',
|
||||
recipe = {
|
||||
{'mcl_core:steel_ingot', 'mcl_core:steel_ingot', 'mcl_core:steel_ingot'},
|
||||
{'mcl_core:iron_ingot', 'mcl_core:iron_ingot', 'mcl_core:iron_ingot'},
|
||||
{'', 'mcl_core:stick', ''},
|
||||
{'', 'mcl_core:stick', ''},
|
||||
}
|
||||
|
@ -237,9 +237,9 @@ minetest.register_craft({
|
|||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'mcl_core:shovel_steel',
|
||||
output = 'mcl_core:shovel_iron',
|
||||
recipe = {
|
||||
{'mcl_core:steel_ingot'},
|
||||
{'mcl_core:iron_ingot'},
|
||||
{'mcl_core:stick'},
|
||||
{'mcl_core:stick'},
|
||||
}
|
||||
|
@ -298,18 +298,18 @@ minetest.register_craft({
|
|||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'mcl_core:axe_steel',
|
||||
output = 'mcl_core:axe_iron',
|
||||
recipe = {
|
||||
{'mcl_core:steel_ingot', 'mcl_core:steel_ingot'},
|
||||
{'mcl_core:steel_ingot', 'mcl_core:stick'},
|
||||
{'mcl_core:iron_ingot', 'mcl_core:iron_ingot'},
|
||||
{'mcl_core:iron_ingot', 'mcl_core:stick'},
|
||||
{'', 'mcl_core:stick'},
|
||||
}
|
||||
})
|
||||
minetest.register_craft({
|
||||
output = 'mcl_core:axe_steel',
|
||||
output = 'mcl_core:axe_iron',
|
||||
recipe = {
|
||||
{'mcl_core:steel_ingot', 'mcl_core:steel_ingot'},
|
||||
{'mcl_core:stick', 'mcl_core:steel_ingot'},
|
||||
{'mcl_core:iron_ingot', 'mcl_core:iron_ingot'},
|
||||
{'mcl_core:stick', 'mcl_core:iron_ingot'},
|
||||
{'mcl_core:stick', ''},
|
||||
}
|
||||
})
|
||||
|
@ -367,10 +367,10 @@ minetest.register_craft({
|
|||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'mcl_core:sword_steel',
|
||||
output = 'mcl_core:sword_iron',
|
||||
recipe = {
|
||||
{'mcl_core:steel_ingot'},
|
||||
{'mcl_core:steel_ingot'},
|
||||
{'mcl_core:iron_ingot'},
|
||||
{'mcl_core:iron_ingot'},
|
||||
{'mcl_core:stick'},
|
||||
}
|
||||
})
|
||||
|
@ -396,24 +396,24 @@ minetest.register_craft({
|
|||
minetest.register_craft({
|
||||
output = 'mcl_core:shears',
|
||||
recipe = {
|
||||
{ 'mcl_core:steel_ingot', '' },
|
||||
{ '', 'mcl_core:steel_ingot', },
|
||||
{ 'mcl_core:iron_ingot', '' },
|
||||
{ '', 'mcl_core:iron_ingot', },
|
||||
}
|
||||
})
|
||||
minetest.register_craft({
|
||||
output = 'mcl_core:shears',
|
||||
recipe = {
|
||||
{ '', 'mcl_core:steel_ingot', },
|
||||
{ 'mcl_core:steel_ingot', '' },
|
||||
{ '', 'mcl_core:iron_ingot', },
|
||||
{ 'mcl_core:iron_ingot', '' },
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'mcl_core:rail 16',
|
||||
recipe = {
|
||||
{'mcl_core:steel_ingot', '', 'mcl_core:steel_ingot'},
|
||||
{'mcl_core:steel_ingot', 'mcl_core:stick', 'mcl_core:steel_ingot'},
|
||||
{'mcl_core:steel_ingot', '', 'mcl_core:steel_ingot'},
|
||||
{'mcl_core:iron_ingot', '', 'mcl_core:iron_ingot'},
|
||||
{'mcl_core:iron_ingot', 'mcl_core:stick', 'mcl_core:iron_ingot'},
|
||||
{'mcl_core:iron_ingot', '', 'mcl_core:iron_ingot'},
|
||||
}
|
||||
})
|
||||
|
||||
|
@ -485,18 +485,18 @@ minetest.register_craft({
|
|||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'mcl_core:steelblock',
|
||||
output = 'mcl_core:ironblock',
|
||||
recipe = {
|
||||
{'mcl_core:steel_ingot', 'mcl_core:steel_ingot', 'mcl_core:steel_ingot'},
|
||||
{'mcl_core:steel_ingot', 'mcl_core:steel_ingot', 'mcl_core:steel_ingot'},
|
||||
{'mcl_core:steel_ingot', 'mcl_core:steel_ingot', 'mcl_core:steel_ingot'},
|
||||
{'mcl_core:iron_ingot', 'mcl_core:iron_ingot', 'mcl_core:iron_ingot'},
|
||||
{'mcl_core:iron_ingot', 'mcl_core:iron_ingot', 'mcl_core:iron_ingot'},
|
||||
{'mcl_core:iron_ingot', 'mcl_core:iron_ingot', 'mcl_core:iron_ingot'},
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'mcl_core:steel_ingot 9',
|
||||
output = 'mcl_core:iron_ingot 9',
|
||||
recipe = {
|
||||
{'mcl_core:steelblock'},
|
||||
{'mcl_core:ironblock'},
|
||||
}
|
||||
})
|
||||
|
||||
|
@ -523,7 +523,7 @@ minetest.register_craft({
|
|||
|
||||
minetest.register_craft({
|
||||
output = "mcl_core:iron_nugget 9",
|
||||
recipe = {{"mcl_core:steel_ingot"}},
|
||||
recipe = {{"mcl_core:iron_ingot"}},
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
|
@ -536,7 +536,7 @@ minetest.register_craft({
|
|||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "mcl_core:steel_ingot",
|
||||
output = "mcl_core:iron_ingot",
|
||||
recipe = {
|
||||
{"mcl_core:iron_nugget", "mcl_core:iron_nugget", "mcl_core:iron_nugget"},
|
||||
{"mcl_core:iron_nugget", "mcl_core:iron_nugget", "mcl_core:iron_nugget"},
|
||||
|
@ -723,7 +723,7 @@ minetest.register_craft({
|
|||
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = "mcl_core:steel_ingot",
|
||||
output = "mcl_core:iron_ingot",
|
||||
recipe = "mcl_core:stone_with_iron",
|
||||
cooktime = 10,
|
||||
})
|
||||
|
@ -815,28 +815,28 @@ minetest.register_craft({
|
|||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = "mcl_core:iron_nugget",
|
||||
recipe = "mcl_core:sword_steel",
|
||||
recipe = "mcl_core:sword_iron",
|
||||
cooktime = 10,
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = "mcl_core:iron_nugget",
|
||||
recipe = "mcl_core:axe_steel",
|
||||
recipe = "mcl_core:axe_iron",
|
||||
cooktime = 10,
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = "mcl_core:iron_nugget",
|
||||
recipe = "mcl_core:shovel_steel",
|
||||
recipe = "mcl_core:shovel_iron",
|
||||
cooktime = 10,
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
type = "cooking",
|
||||
output = "mcl_core:iron_nugget",
|
||||
recipe = "mcl_core:pick_steel",
|
||||
recipe = "mcl_core:pick_iron",
|
||||
cooktime = 10,
|
||||
})
|
||||
|
||||
|
|
|
@ -62,7 +62,7 @@ minetest.register_craftitem("mcl_core:clay_lump", {
|
|||
groups = { craftitem=1 },
|
||||
})
|
||||
|
||||
minetest.register_craftitem("mcl_core:steel_ingot", {
|
||||
minetest.register_craftitem("mcl_core:iron_ingot", {
|
||||
description = "Iron Ingot",
|
||||
inventory_image = "default_steel_ingot.png",
|
||||
stack_max = 64,
|
||||
|
@ -150,5 +150,3 @@ minetest.register_craftitem("mcl_core:apple_gold", {
|
|||
on_use = minetest.item_eat(8),
|
||||
groups = { food = 2 },
|
||||
})
|
||||
|
||||
minetest.register_alias("mcl_core:iron_ingot", "mcl_core:steel_ingot")
|
||||
|
|
|
@ -1264,7 +1264,7 @@ minetest.register_node("mcl_core:coalblock", {
|
|||
sounds = mcl_sounds.node_sound_stone_defaults(),
|
||||
})
|
||||
|
||||
minetest.register_node("mcl_core:steelblock", {
|
||||
minetest.register_node("mcl_core:ironblock", {
|
||||
description = "Block of Iron",
|
||||
tiles = {"default_steel_block.png"},
|
||||
is_ground_content = false,
|
||||
|
|
|
@ -62,7 +62,7 @@ minetest.register_tool("mcl_core:pick_stone", {
|
|||
damage_groups = {fleshy=3},
|
||||
},
|
||||
})
|
||||
minetest.register_tool("mcl_core:pick_steel", {
|
||||
minetest.register_tool("mcl_core:pick_iron", {
|
||||
description = "Iron Pickaxe",
|
||||
inventory_image = "default_tool_steelpick.png",
|
||||
groups = { tool=1 },
|
||||
|
@ -157,7 +157,7 @@ minetest.register_tool("mcl_core:shovel_stone", {
|
|||
},
|
||||
on_place = make_grass_path,
|
||||
})
|
||||
minetest.register_tool("mcl_core:shovel_steel", {
|
||||
minetest.register_tool("mcl_core:shovel_iron", {
|
||||
description = "Iron Shovel",
|
||||
inventory_image = "default_tool_steelshovel.png",
|
||||
wield_image = "default_tool_steelshovel.png^[transformR90",
|
||||
|
@ -230,7 +230,7 @@ minetest.register_tool("mcl_core:axe_stone", {
|
|||
damage_groups = {fleshy=9},
|
||||
},
|
||||
})
|
||||
minetest.register_tool("mcl_core:axe_steel", {
|
||||
minetest.register_tool("mcl_core:axe_iron", {
|
||||
description = "Iron Axe",
|
||||
inventory_image = "default_tool_steelaxe.png",
|
||||
groups = { tool=1 },
|
||||
|
@ -298,7 +298,7 @@ minetest.register_tool("mcl_core:sword_stone", {
|
|||
damage_groups = {fleshy=5},
|
||||
}
|
||||
})
|
||||
minetest.register_tool("mcl_core:sword_steel", {
|
||||
minetest.register_tool("mcl_core:sword_iron", {
|
||||
description = "Iron Sword",
|
||||
inventory_image = "default_tool_steelsword.png",
|
||||
groups = { weapon=1 },
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue