2015-02-20 15:55:03 +01:00
|
|
|
print("scaffolding: Loading 'functions.lua'")
|
|
|
|
dofile(minetest.get_modpath("scaffolding").."/functions.lua")
|
|
|
|
|
2015-02-20 22:55:13 +01:00
|
|
|
minetest.register_craftitem("scaffolding:scaffolding_wrench", {
|
|
|
|
description = "Scaffolding Wrench",
|
|
|
|
inventory_image = "scaffolding_wrench.png",
|
|
|
|
})
|
|
|
|
|
2015-02-20 15:55:03 +01:00
|
|
|
minetest.register_node("scaffolding:scaffolding", {
|
|
|
|
description = "Wooden Scaffolding",
|
|
|
|
drawtype = "nodebox",
|
|
|
|
tiles = {"scaffolding_wooden_scaffolding_top.png", "scaffolding_wooden_scaffolding_top.png", "scaffolding_wooden_scaffolding.png",
|
|
|
|
"scaffolding_wooden_scaffolding.png", "scaffolding_wooden_scaffolding.png", "scaffolding_wooden_scaffolding.png"},
|
|
|
|
paramtype = "light",
|
|
|
|
paramtype2 = "facedir",
|
|
|
|
climbable = true,
|
|
|
|
walkable = false,
|
|
|
|
is_ground_content = true,
|
|
|
|
groups = {snappy=2,cracky=3,oddly_breakable_by_hand=3},
|
|
|
|
sounds = default.node_sound_wood_defaults(),
|
2015-02-20 22:55:13 +01:00
|
|
|
on_punch = function(pos, node, puncher)
|
|
|
|
local tool = puncher:get_wielded_item():get_name()
|
|
|
|
if tool and tool == "scaffolding:scaffolding_wrench" then
|
|
|
|
node.name = "scaffolding:reinforced_scaffolding"
|
|
|
|
minetest.env:set_node(pos, node)
|
2015-02-21 16:07:34 +01:00
|
|
|
puncher:get_inventory():add_item("main", ItemStack("scaffolding:scaffolding"))
|
2015-02-20 22:55:13 +01:00
|
|
|
end
|
2015-02-21 16:07:34 +01:00
|
|
|
end,
|
|
|
|
--[[on_rightclick = function(pos, node, player, itemstack, pointed_thing)
|
|
|
|
if itemstack:get_name() == "scaffolding:scaffolding_wrench" then
|
|
|
|
node.name = "scaffolding:reinforced_scaffolding"
|
|
|
|
minetest.env:set_node(pos, node)
|
|
|
|
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
on_punch = function(pos, node, puncher)
|
|
|
|
local tool = puncher:get_wielded_item():get_name()
|
|
|
|
if tool and tool == "scaffolding:scaffolding_wrench" then
|
|
|
|
node.name = "air"
|
|
|
|
minetest.env:set_node(pos, node)
|
|
|
|
puncher:get_inventory():add_item("main", ItemStack("scaffolding:scaffolding"))
|
|
|
|
end
|
|
|
|
end,]]
|
2015-02-20 15:55:03 +01:00
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{-0.5, -0.5, -0.5, 0.5, 0.5, 0.5},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{-0.5, -0.5, -0.5, 0.5, 0.5, 0.5},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
after_dig_node = function(pos, node, metadata, digger)
|
|
|
|
default.dig_up(pos, node, digger)
|
|
|
|
end,
|
|
|
|
})
|
2015-02-21 16:07:34 +01:00
|
|
|
|
2015-02-20 22:55:13 +01:00
|
|
|
minetest.register_node("scaffolding:reinforced_scaffolding", {
|
|
|
|
description = "Wooden Scaffolding",
|
|
|
|
drawtype = "nodebox",
|
|
|
|
tiles = {"scaffolding_wooden_scaffolding.png^scaffolding_reinforced.png", "scaffolding_wooden_scaffolding.png^scaffolding_reinforced.png",
|
|
|
|
"scaffolding_wooden_scaffolding.png^scaffolding_reinforced.png"},
|
|
|
|
drop = "scaffolding:scaffolding",
|
|
|
|
paramtype = "light",
|
|
|
|
paramtype2 = "facedir",
|
|
|
|
climbable = true,
|
|
|
|
walkable = false,
|
|
|
|
is_ground_content = true,
|
|
|
|
groups = {snappy=2,cracky=3,oddly_breakable_by_hand=3},
|
|
|
|
sounds = default.node_sound_wood_defaults(),
|
|
|
|
on_punch = function(pos, node, puncher)
|
|
|
|
local tool = puncher:get_wielded_item():get_name()
|
|
|
|
if tool and tool == "scaffolding:scaffolding_wrench" then
|
|
|
|
node.name = "scaffolding:scaffolding"
|
|
|
|
minetest.env:set_node(pos, node)
|
2015-02-21 16:07:34 +01:00
|
|
|
puncher:get_inventory():add_item("main", ItemStack("scaffolding:scaffolding"))
|
2015-02-20 22:55:13 +01:00
|
|
|
end
|
2015-02-21 16:07:34 +01:00
|
|
|
end,
|
|
|
|
--[[ on_rightclick = function(pos, node, puncher)
|
|
|
|
local tool = puncher:get_wielded_item():get_name()
|
|
|
|
if tool and tool == "scaffolding:scaffolding_wrench" then
|
|
|
|
node.name = "scaffolding:scaffolding"
|
|
|
|
minetest.env:set_node(pos, node)
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
on_punch = function(pos, node, puncher)
|
|
|
|
local tool = puncher:get_wielded_item():get_name()
|
|
|
|
if tool and tool == "scaffolding:scaffolding_wrench" then
|
|
|
|
node.name = "air"
|
|
|
|
minetest.env:set_node(pos, node)
|
|
|
|
puncher:get_inventory():add_item("main", ItemStack("scaffolding:scaffolding"))
|
|
|
|
end
|
|
|
|
end,]]
|
2015-02-20 22:55:13 +01:00
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{-0.5, -0.5, -0.5, 0.5, 0.5, 0.5},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{-0.5, -0.5, -0.5, 0.5, 0.5, 0.5},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
2015-02-20 15:55:03 +01:00
|
|
|
|
2015-02-21 16:07:34 +01:00
|
|
|
minetest.register_node("scaffolding:platform", {
|
|
|
|
description = "Wooden Platform",
|
|
|
|
drawtype = "nodebox",
|
|
|
|
tiles = {"scaffolding_wooden_scaffolding_top.png", "scaffolding_wooden_scaffolding_top.png", "scaffolding_wooden_scaffolding.png^scaffolding_platform.png"},
|
|
|
|
paramtype = "light",
|
|
|
|
paramtype2 = "facedir",
|
|
|
|
climbable = false,
|
|
|
|
walkable = true,
|
|
|
|
is_ground_content = true,
|
|
|
|
groups = {snappy=2,cracky=3,oddly_breakable_by_hand=3},
|
|
|
|
sounds = default.node_sound_wood_defaults(),
|
|
|
|
on_punch = function(pos, node, puncher)
|
|
|
|
local tool = puncher:get_wielded_item():get_name()
|
|
|
|
if tool and tool == "scaffolding:scaffolding_wrench" then
|
|
|
|
node.name = "scaffolding:reinforced_platform"
|
|
|
|
minetest.env:set_node(pos, node)
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{-0.5, -0.3, -0.5, 0.5, 0.1, 0.5},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{-0.5, -0.3, -0.5, 0.5, 0.1, 0.5},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
after_dig_node = function(pos, node, metadata, digger)
|
|
|
|
default.dig_horx(pos, node, digger)
|
|
|
|
default.dig_horx2(pos, node, digger)
|
|
|
|
default.dig_horz(pos, node, digger)
|
|
|
|
default.dig_horz2(pos, node, digger)
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node("scaffolding:reinforced_platform", {
|
|
|
|
description = "Wooden Platform",
|
|
|
|
drawtype = "nodebox",
|
|
|
|
tiles = {"scaffolding_wooden_scaffolding.png^scaffolding_reinforced.png", "scaffolding_wooden_scaffolding.png^scaffolding_reinforced.png", "scaffolding_wooden_scaffolding.png^scaffolding_platform.png"},
|
|
|
|
drop = "scaffolding:platform",
|
|
|
|
paramtype = "light",
|
|
|
|
paramtype2 = "facedir",
|
|
|
|
climbable = false,
|
|
|
|
walkable = true,
|
|
|
|
is_ground_content = true,
|
|
|
|
groups = {snappy=2,cracky=3,oddly_breakable_by_hand=3},
|
|
|
|
sounds = default.node_sound_wood_defaults(),
|
|
|
|
on_punch = function(pos, node, puncher)
|
|
|
|
local tool = puncher:get_wielded_item():get_name()
|
|
|
|
if tool and tool == "scaffolding:scaffolding_wrench" then
|
|
|
|
node.name = "scaffolding:platform"
|
|
|
|
minetest.env:set_node(pos, node)
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{-0.5, -0.3, -0.5, 0.5, 0.1, 0.5},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{-0.5, -0.3, -0.5, 0.5, 0.1, 0.5},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node("scaffolding:iron_scaffolding", {
|
2015-02-20 15:55:03 +01:00
|
|
|
description = "Iron Scaffolding",
|
|
|
|
drawtype = "nodebox",
|
|
|
|
tiles = {"scaffolding_iron_scaffolding_top.png", "scaffolding_iron_scaffolding_top.png", "scaffolding_iron_scaffolding.png",
|
|
|
|
"scaffolding_iron_scaffolding.png", "scaffolding_iron_scaffolding.png", "scaffolding_iron_scaffolding.png"},
|
|
|
|
paramtype = "light",
|
|
|
|
paramtype2 = "facedir",
|
|
|
|
climbable = true,
|
2015-02-21 16:07:34 +01:00
|
|
|
walkable = false,
|
2015-02-20 15:55:03 +01:00
|
|
|
is_ground_content = true,
|
|
|
|
groups = {snappy=2,cracky=3},
|
|
|
|
sounds = default.node_sound_wood_defaults(),
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{-0.5, -0.5, -0.5, 0.5, 0.5, 0.5},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{-0.5, -0.5, -0.5, 0.5, 0.5, 0.5},
|
|
|
|
},
|
|
|
|
},
|
2015-02-20 22:55:13 +01:00
|
|
|
on_punch = function(pos, node, puncher)
|
|
|
|
local tool = puncher:get_wielded_item():get_name()
|
|
|
|
if tool and tool == "scaffolding:scaffolding_wrench" then
|
|
|
|
node.name = "scaffolding:reinforced_iron_scaffolding"
|
|
|
|
minetest.env:set_node(pos, node)
|
2015-02-21 16:07:34 +01:00
|
|
|
puncher:get_inventory():add_item("main", ItemStack("scaffolding:scaffolding"))
|
2015-02-20 22:55:13 +01:00
|
|
|
end
|
2015-02-21 16:07:34 +01:00
|
|
|
end,
|
|
|
|
--[[on_rightclick = function(pos, node, puncher)
|
|
|
|
local tool = puncher:get_wielded_item():get_name()
|
|
|
|
if tool and tool == "scaffolding:scaffolding_wrench" then
|
|
|
|
node.name = "scaffolding:reinforced_iron_scaffolding"
|
|
|
|
minetest.env:set_node(pos, node)
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
on_punch = function(pos, node, puncher)
|
|
|
|
local tool = puncher:get_wielded_item():get_name()
|
|
|
|
if tool and tool == "scaffolding:scaffolding_wrench" then
|
|
|
|
node.name = "air"
|
|
|
|
minetest.env:set_node(pos, node)
|
|
|
|
--puncher:get_inventory():remove_item("main", ItemStack("beer_test:tankard"))
|
|
|
|
puncher:get_inventory():add_item("main", ItemStack("scaffolding:scaffolding"))
|
|
|
|
end
|
|
|
|
end,]]
|
|
|
|
after_dig_node = function(pos, node, metadata, digger)
|
|
|
|
default.dig_up(pos, node, digger)
|
2015-02-20 15:55:03 +01:00
|
|
|
end,
|
|
|
|
})
|
2015-02-20 22:55:13 +01:00
|
|
|
|
|
|
|
minetest.register_node("scaffolding:reinforced_iron_scaffolding", {
|
|
|
|
description = "Iron Scaffolding",
|
|
|
|
drawtype = "nodebox",
|
|
|
|
tiles = {"scaffolding_iron_scaffolding.png^scaffolding_reinforced.png", "scaffolding_iron_scaffolding.png^scaffolding_reinforced.png",
|
|
|
|
"scaffolding_iron_scaffolding.png^scaffolding_reinforced.png"},
|
|
|
|
drop = "scaffolding:iron_scaffolding",
|
|
|
|
paramtype = "light",
|
|
|
|
paramtype2 = "facedir",
|
|
|
|
climbable = true,
|
2015-02-21 16:07:34 +01:00
|
|
|
walkable = false,
|
2015-02-20 22:55:13 +01:00
|
|
|
is_ground_content = true,
|
|
|
|
groups = {snappy=2,cracky=3},
|
|
|
|
sounds = default.node_sound_wood_defaults(),
|
|
|
|
on_punch = function(pos, node, puncher)
|
2015-02-21 16:07:34 +01:00
|
|
|
local tool = puncher:get_wielded_item():get_name()
|
|
|
|
if tool and tool == "scaffolding:scaffolding_wrench" then
|
|
|
|
node.name = "scaffolding:iron_scaffolding"
|
|
|
|
minetest.env:set_node(pos, node)
|
|
|
|
puncher:get_inventory():add_item("main", ItemStack("scaffolding:scaffolding"))
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
--[[on_rightclick = function(pos, node, puncher)
|
2015-02-20 22:55:13 +01:00
|
|
|
local tool = puncher:get_wielded_item():get_name()
|
|
|
|
if tool and tool == "scaffolding:scaffolding_wrench" then
|
|
|
|
node.name = "scaffolding:iron_scaffolding"
|
|
|
|
minetest.env:set_node(pos, node)
|
|
|
|
end
|
|
|
|
end,
|
2015-02-21 16:07:34 +01:00
|
|
|
on_punch = function(pos, node, puncher)
|
|
|
|
local tool = puncher:get_wielded_item():get_name()
|
|
|
|
if tool and tool == "scaffolding:scaffolding_wrench" then
|
|
|
|
node.name = "air"
|
|
|
|
minetest.env:set_node(pos, node)
|
|
|
|
--puncher:get_inventory():remove_item("main", ItemStack("beer_test:tankard"))
|
|
|
|
puncher:get_inventory():add_item("main", ItemStack("scaffolding:scaffolding"))
|
|
|
|
end
|
|
|
|
end,]]
|
2015-02-20 22:55:13 +01:00
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{-0.5, -0.5, -0.5, 0.5, 0.5, 0.5},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{-0.5, -0.5, -0.5, 0.5, 0.5, 0.5},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
2015-02-21 16:07:34 +01:00
|
|
|
|
|
|
|
minetest.register_node("scaffolding:iron_platform", {
|
|
|
|
description = "Iron Platform",
|
|
|
|
drawtype = "nodebox",
|
|
|
|
tiles = {"scaffolding_iron_scaffolding_top.png", "scaffolding_iron_scaffolding_top.png", "scaffolding_iron_scaffolding.png^scaffolding_platform.png"},
|
|
|
|
paramtype = "light",
|
|
|
|
paramtype2 = "facedir",
|
|
|
|
climbable = false,
|
|
|
|
walkable = true,
|
|
|
|
is_ground_content = true,
|
|
|
|
groups = {snappy=2,cracky=3},
|
|
|
|
sounds = default.node_sound_wood_defaults(),
|
|
|
|
on_punch = function(pos, node, puncher)
|
|
|
|
local tool = puncher:get_wielded_item():get_name()
|
|
|
|
if tool and tool == "scaffolding:scaffolding_wrench" then
|
|
|
|
node.name = "scaffolding:reinforced_iron_platform"
|
|
|
|
minetest.env:set_node(pos, node)
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{-0.5, -0.3, -0.5, 0.5, 0.1, 0.5},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{-0.5, -0.3, -0.5, 0.5, 0.1, 0.5},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
after_dig_node = function(pos, node, metadata, digger)
|
|
|
|
default.dig_horx(pos, node, digger)
|
|
|
|
default.dig_horx2(pos, node, digger)
|
|
|
|
default.dig_horz(pos, node, digger)
|
|
|
|
default.dig_horz2(pos, node, digger)
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_node("scaffolding:reinforced_iron_platform", {
|
|
|
|
description = "Iron Platform",
|
|
|
|
drawtype = "nodebox",
|
|
|
|
tiles = {"scaffolding_iron_scaffolding.png^scaffolding_reinforced.png", "scaffolding_iron_scaffolding.png^scaffolding_reinforced.png", "scaffolding_iron_scaffolding.png^scaffolding_platform.png"},
|
|
|
|
drop = "scaffolding:iron_platform",
|
|
|
|
paramtype = "light",
|
|
|
|
paramtype2 = "facedir",
|
|
|
|
climbable = false,
|
|
|
|
walkable = true,
|
|
|
|
is_ground_content = true,
|
|
|
|
groups = {snappy=2,cracky=3},
|
|
|
|
sounds = default.node_sound_wood_defaults(),
|
|
|
|
on_punch = function(pos, node, puncher)
|
|
|
|
local tool = puncher:get_wielded_item():get_name()
|
|
|
|
if tool and tool == "scaffolding:scaffolding_wrench" then
|
|
|
|
node.name = "scaffolding:iron_platform"
|
|
|
|
minetest.env:set_node(pos, node)
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{-0.5, -0.3, -0.5, 0.5, 0.1, 0.5},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{-0.5, -0.3, -0.5, 0.5, 0.1, 0.5},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
----------------------
|
|
|
|
-- wood scaffolding --
|
|
|
|
----------------------
|
2015-02-20 15:55:03 +01:00
|
|
|
|
|
|
|
minetest.register_craft({
|
2015-02-20 22:55:13 +01:00
|
|
|
output = 'scaffolding:scaffolding 12',
|
2015-02-20 15:55:03 +01:00
|
|
|
recipe = {
|
|
|
|
{'default:wood', 'default:wood', 'default:wood'},
|
|
|
|
{'default:stick', '', 'default:stick'},
|
|
|
|
{'default:wood', 'default:wood', 'default:wood'},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2015-02-20 22:55:13 +01:00
|
|
|
output = 'scaffolding:scaffolding 4',
|
|
|
|
recipe = {
|
|
|
|
{'default:wood'},
|
|
|
|
{'default:stick'},
|
|
|
|
{'default:wood'},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2015-02-21 16:07:34 +01:00
|
|
|
-- back to scaffolding --
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = 'scaffolding:scaffolding',
|
|
|
|
recipe = {
|
|
|
|
{'scaffolding:platform'},
|
|
|
|
{'scaffolding:platform'},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
-- wood platforms --
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = 'scaffolding:platform 2',
|
|
|
|
recipe = {
|
|
|
|
{'scaffolding:scaffolding'},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = 'scaffolding:platform 6',
|
|
|
|
recipe = {
|
|
|
|
{'scaffolding:scaffolding', 'scaffolding:scaffolding', 'scaffolding:scaffolding'},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
-- get wood back --
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = 'default:wood',
|
|
|
|
recipe = {
|
|
|
|
{'scaffolding:scaffolding', 'scaffolding:scaffolding'},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
----------------------
|
|
|
|
-- iron scaffolding --
|
|
|
|
----------------------
|
|
|
|
|
2015-02-20 22:55:13 +01:00
|
|
|
minetest.register_craft({
|
|
|
|
output = 'scaffolding:iron_scaffolding 12',
|
2015-02-20 15:55:03 +01:00
|
|
|
recipe = {
|
2015-02-21 16:07:34 +01:00
|
|
|
{'default:steel_ingot', 'default:steel_ingot', 'default:steel_ingot'},
|
|
|
|
{'default:stick', '', 'default:stick'},
|
|
|
|
{'default:steel_ingot', 'default:steel_ingot', 'default:steel_ingot'},
|
2015-02-20 15:55:03 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2015-02-20 22:55:13 +01:00
|
|
|
minetest.register_craft({
|
|
|
|
output = 'scaffolding:iron_scaffolding 4',
|
|
|
|
recipe = {
|
|
|
|
{'default:steel_ingot'},
|
2015-02-21 16:07:34 +01:00
|
|
|
{'default:stick'},
|
|
|
|
{'default:steel_ingot'},
|
2015-02-20 22:55:13 +01:00
|
|
|
}
|
|
|
|
})
|
2015-02-21 16:07:34 +01:00
|
|
|
-- back to scaffolding --
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = 'scaffolding:iron_scaffolding',
|
|
|
|
recipe = {
|
|
|
|
{'scaffolding:iron_platform'},
|
|
|
|
{'scaffolding:iron_platform'},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
-- iron platforms --
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = 'scaffolding:iron_platform 2',
|
|
|
|
recipe = {
|
|
|
|
{'scaffolding:iron_scaffolding'},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = 'scaffolding:iron_platform 6',
|
|
|
|
recipe = {
|
|
|
|
{'scaffolding:iron_scaffolding', 'scaffolding:iron_scaffolding', 'scaffolding:iron_scaffolding'},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
-- get iron back --
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = 'default:steel_ingot',
|
|
|
|
recipe = {
|
|
|
|
{'scaffolding:iron_scaffolding', 'scaffolding:iron_scaffolding'},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
------------
|
|
|
|
-- wrench --
|
|
|
|
------------
|
2015-02-20 22:55:13 +01:00
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = 'scaffolding:scaffolding_wrench',
|
|
|
|
recipe = {
|
|
|
|
{'', 'default:steel_ingot', ''},
|
|
|
|
{'', 'default:steel_ingot', 'default:steel_ingot'},
|
|
|
|
{'default:steel_ingot', '', ''},
|
|
|
|
}
|
|
|
|
})
|
2015-02-21 16:07:34 +01:00
|
|
|
|
|
|
|
|