2012-09-30 23:05:46 +02:00
|
|
|
-- This file adds fences of various types
|
|
|
|
|
2013-10-22 02:31:54 +02:00
|
|
|
local S = homedecor.gettext
|
2013-03-05 08:18:56 +01:00
|
|
|
|
2012-09-30 23:05:46 +02:00
|
|
|
minetest.register_node("homedecor:fence_brass", {
|
2013-03-05 08:18:56 +01:00
|
|
|
description = S("Brass Fence/railing"),
|
2013-02-08 08:31:40 +01:00
|
|
|
drawtype = "fencelike",
|
|
|
|
tiles = {"homedecor_tile_brass.png"},
|
|
|
|
inventory_image = "homedecor_fence_brass.png",
|
|
|
|
wield_image = "homedecor_pole_brass.png",
|
|
|
|
paramtype = "light",
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-1/7, -1/2, -1/7, 1/7, 1/2, 1/7},
|
|
|
|
},
|
|
|
|
groups = {snappy=3},
|
|
|
|
sounds = default.node_sound_wood_defaults(),
|
2012-09-30 23:05:46 +02:00
|
|
|
walkable = true,
|
2013-02-09 23:59:35 +01:00
|
|
|
})
|
2013-02-08 08:31:40 +01:00
|
|
|
|
2012-09-30 23:05:46 +02:00
|
|
|
minetest.register_node("homedecor:fence_wrought_iron", {
|
2013-03-05 08:18:56 +01:00
|
|
|
description = S("Wrought Iron Fence/railing"),
|
2013-02-08 08:31:40 +01:00
|
|
|
drawtype = "fencelike",
|
|
|
|
tiles = {"homedecor_tile_wrought_iron.png"},
|
|
|
|
inventory_image = "homedecor_fence_wrought_iron.png",
|
|
|
|
wield_image = "homedecor_pole_wrought_iron.png",
|
|
|
|
paramtype = "light",
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-1/7, -1/2, -1/7, 1/7, 1/2, 1/7},
|
|
|
|
},
|
|
|
|
groups = {snappy=3},
|
|
|
|
sounds = default.node_sound_wood_defaults(),
|
|
|
|
walkable = true,
|
|
|
|
})
|
|
|
|
|
|
|
|
-- brass/wrought iron with signs:
|
|
|
|
|
|
|
|
minetest.register_node("homedecor:fence_brass_with_sign", {
|
2013-03-05 08:18:56 +01:00
|
|
|
description = S("Brass Fence/railing with sign"),
|
2013-02-08 08:31:40 +01:00
|
|
|
drawtype = "nodebox",
|
|
|
|
tiles = {
|
|
|
|
"homedecor_sign_brass_post_top.png",
|
|
|
|
"homedecor_sign_brass_post_bottom.png",
|
|
|
|
"homedecor_sign_brass_post_side.png",
|
|
|
|
"homedecor_sign_brass_post_side.png",
|
|
|
|
"homedecor_sign_brass_post_back.png",
|
|
|
|
"homedecor_sign_brass_post_front.png",
|
|
|
|
},
|
|
|
|
wield_image = "homedecor_sign_brass_post.png",
|
|
|
|
paramtype = "light",
|
|
|
|
paramtype2 = "facedir",
|
2014-08-04 01:53:52 +02:00
|
|
|
node_box = signs_lib.sign_post_model.nodebox,
|
2013-02-10 00:51:06 +01:00
|
|
|
groups = {snappy=3,not_in_creative_inventory=1},
|
2013-02-08 08:31:40 +01:00
|
|
|
sounds = default.node_sound_wood_defaults(),
|
2012-09-30 23:05:46 +02:00
|
|
|
walkable = true,
|
2014-08-04 01:44:21 +02:00
|
|
|
sunlight_propagates = true,
|
2013-02-08 08:31:40 +01:00
|
|
|
drop = {
|
|
|
|
max_items = 2,
|
|
|
|
items = {
|
|
|
|
{ items = { "default:sign_wall" }},
|
|
|
|
{ items = { "homedecor:fence_brass" }},
|
|
|
|
},
|
|
|
|
},
|
2012-09-30 23:05:46 +02:00
|
|
|
})
|
|
|
|
|
2013-02-08 08:31:40 +01:00
|
|
|
minetest.register_node("homedecor:fence_wrought_iron_with_sign", {
|
2013-03-05 08:18:56 +01:00
|
|
|
description = S("Wrought Iron Fence/railing with sign"),
|
2013-02-08 08:31:40 +01:00
|
|
|
drawtype = "nodebox",
|
|
|
|
tiles = {
|
|
|
|
"homedecor_sign_wrought_iron_post_top.png",
|
|
|
|
"homedecor_sign_wrought_iron_post_bottom.png",
|
|
|
|
"homedecor_sign_wrought_iron_post_side.png",
|
|
|
|
"homedecor_sign_wrought_iron_post_side.png",
|
|
|
|
"homedecor_sign_wrought_iron_post_back.png",
|
|
|
|
"homedecor_sign_wrought_iron_post_front.png",
|
|
|
|
},
|
|
|
|
wield_image = "homedecor_sign_wrought_iron_post.png",
|
|
|
|
paramtype = "light",
|
|
|
|
paramtype2 = "facedir",
|
2014-08-04 01:53:52 +02:00
|
|
|
node_box = signs_lib.sign_post_model.nodebox,
|
2013-02-10 00:51:06 +01:00
|
|
|
groups = {snappy=3,not_in_creative_inventory=1},
|
2013-02-08 08:31:40 +01:00
|
|
|
sounds = default.node_sound_wood_defaults(),
|
|
|
|
walkable = true,
|
2014-08-04 01:44:21 +02:00
|
|
|
sunlight_propagates = true,
|
2013-02-08 08:31:40 +01:00
|
|
|
drop = {
|
|
|
|
max_items = 2,
|
|
|
|
items = {
|
|
|
|
{ items = { "default:sign_wall" }},
|
|
|
|
{ items = { "homedecor:fence_wrought_iron" }},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
-- other types of fences
|
|
|
|
|
2012-09-30 23:05:46 +02:00
|
|
|
minetest.register_node("homedecor:fence_picket", {
|
2012-10-01 00:09:54 +02:00
|
|
|
drawtype = "nodebox",
|
2013-03-05 08:18:56 +01:00
|
|
|
description = S("Unpainted Picket Fence"),
|
2012-10-01 00:09:54 +02:00
|
|
|
tiles = {
|
2013-04-20 01:30:50 +02:00
|
|
|
"homedecor_blanktile.png",
|
|
|
|
"homedecor_blanktile.png",
|
2012-10-01 00:09:54 +02:00
|
|
|
"homedecor_fence_picket.png",
|
|
|
|
"homedecor_fence_picket.png",
|
|
|
|
"homedecor_fence_picket_backside.png",
|
|
|
|
"homedecor_fence_picket.png"
|
|
|
|
},
|
2012-09-30 23:05:46 +02:00
|
|
|
paramtype = "light",
|
|
|
|
is_ground_content = true,
|
|
|
|
groups = {snappy=3},
|
|
|
|
sounds = default.node_sound_wood_defaults(),
|
|
|
|
walkable = true,
|
2012-10-01 00:09:54 +02:00
|
|
|
paramtype2 = "facedir",
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = { -0.5, -0.5, 0.4, 0.5, 0.5, 0.5 }
|
|
|
|
},
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
2013-04-20 01:10:20 +02:00
|
|
|
fixed = { -0.5, -0.5, 0.498, 0.5, 0.5, 0.498 }
|
2012-10-01 00:09:54 +02:00
|
|
|
},
|
2012-09-30 23:05:46 +02:00
|
|
|
})
|
|
|
|
|
2013-04-20 01:10:20 +02:00
|
|
|
minetest.register_node("homedecor:fence_picket_corner", {
|
|
|
|
drawtype = "nodebox",
|
|
|
|
description = S("Unpainted Picket Fence Corner"),
|
|
|
|
tiles = {
|
2013-04-20 01:30:50 +02:00
|
|
|
"homedecor_blanktile.png",
|
|
|
|
"homedecor_blanktile.png",
|
2013-04-20 01:10:20 +02:00
|
|
|
"homedecor_fence_picket.png",
|
|
|
|
"homedecor_fence_picket_backside.png",
|
|
|
|
"homedecor_fence_picket_backside.png",
|
|
|
|
"homedecor_fence_picket.png",
|
|
|
|
},
|
|
|
|
paramtype = "light",
|
|
|
|
is_ground_content = true,
|
|
|
|
groups = {snappy=3},
|
|
|
|
sounds = default.node_sound_wood_defaults(),
|
|
|
|
walkable = true,
|
|
|
|
paramtype2 = "facedir",
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{ -0.5, -0.5, 0.4, 0.5, 0.5, 0.5 },
|
2013-04-20 02:54:05 +02:00
|
|
|
{ -0.5, -0.5, -0.5, -0.4, 0.5, 0.4 }
|
2013-04-20 01:10:20 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{ -0.5, -0.5, 0.498, 0.5, 0.5, 0.5 },
|
|
|
|
{ -0.5, -0.5, -0.5, -0.498, 0.5, 0.5 }
|
|
|
|
}
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
2012-09-30 23:05:46 +02:00
|
|
|
minetest.register_node("homedecor:fence_picket_white", {
|
2012-10-01 00:09:54 +02:00
|
|
|
drawtype = "nodebox",
|
2013-03-05 08:18:56 +01:00
|
|
|
description = S("White Picket Fence"),
|
2012-10-01 00:09:54 +02:00
|
|
|
tiles = {
|
2013-04-20 01:30:50 +02:00
|
|
|
"homedecor_blanktile.png",
|
|
|
|
"homedecor_blanktile.png",
|
2012-10-01 00:09:54 +02:00
|
|
|
"homedecor_fence_picket_white.png",
|
|
|
|
"homedecor_fence_picket_white.png",
|
|
|
|
"homedecor_fence_picket_white_backside.png",
|
|
|
|
"homedecor_fence_picket_white.png"
|
|
|
|
},
|
2012-09-30 23:05:46 +02:00
|
|
|
paramtype = "light",
|
|
|
|
is_ground_content = true,
|
|
|
|
groups = {snappy=3},
|
|
|
|
sounds = default.node_sound_wood_defaults(),
|
|
|
|
walkable = true,
|
2012-10-01 00:09:54 +02:00
|
|
|
paramtype2 = "facedir",
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = { -0.5, -0.5, 0.4, 0.5, 0.5, 0.5 }
|
|
|
|
},
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
2013-04-20 01:10:20 +02:00
|
|
|
fixed = { -0.5, -0.5, 0.498, 0.5, 0.5, 0.498 }
|
2012-10-01 00:09:54 +02:00
|
|
|
},
|
2012-09-30 23:05:46 +02:00
|
|
|
})
|
|
|
|
|
2013-04-20 01:10:20 +02:00
|
|
|
minetest.register_node("homedecor:fence_picket_corner_white", {
|
|
|
|
drawtype = "nodebox",
|
|
|
|
description = S("White Picket Fence Corner"),
|
|
|
|
tiles = {
|
2013-04-20 01:30:50 +02:00
|
|
|
"homedecor_blanktile.png",
|
|
|
|
"homedecor_blanktile.png",
|
2013-04-20 01:10:20 +02:00
|
|
|
"homedecor_fence_picket_white.png",
|
|
|
|
"homedecor_fence_picket_white_backside.png",
|
|
|
|
"homedecor_fence_picket_white_backside.png",
|
|
|
|
"homedecor_fence_picket_white.png",
|
|
|
|
},
|
|
|
|
paramtype = "light",
|
|
|
|
is_ground_content = true,
|
|
|
|
groups = {snappy=3},
|
|
|
|
sounds = default.node_sound_wood_defaults(),
|
|
|
|
walkable = true,
|
|
|
|
paramtype2 = "facedir",
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{ -0.5, -0.5, 0.4, 0.5, 0.5, 0.5 },
|
2013-04-20 02:54:05 +02:00
|
|
|
{ -0.5, -0.5, -0.5, -0.4, 0.5, 0.4 }
|
2013-04-20 01:10:20 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{ -0.5, -0.5, 0.498, 0.5, 0.5, 0.5 },
|
|
|
|
{ -0.5, -0.5, -0.5, -0.498, 0.5, 0.5 }
|
|
|
|
}
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
2012-09-30 23:05:46 +02:00
|
|
|
minetest.register_node("homedecor:fence_privacy", {
|
2012-10-01 00:09:54 +02:00
|
|
|
drawtype = "nodebox",
|
2013-03-05 08:18:56 +01:00
|
|
|
description = S("Wooden Privacy Fence"),
|
2012-10-01 00:09:54 +02:00
|
|
|
tiles = {
|
|
|
|
"homedecor_fence_privacy_tb.png",
|
|
|
|
"homedecor_fence_privacy_tb.png",
|
|
|
|
"homedecor_fence_privacy_sides.png",
|
|
|
|
"homedecor_fence_privacy_sides.png",
|
|
|
|
"homedecor_fence_privacy_backside.png",
|
|
|
|
"homedecor_fence_privacy_front.png"
|
|
|
|
},
|
2012-09-30 23:05:46 +02:00
|
|
|
paramtype = "light",
|
|
|
|
is_ground_content = true,
|
|
|
|
groups = {snappy=3},
|
|
|
|
sounds = default.node_sound_wood_defaults(),
|
|
|
|
walkable = true,
|
2012-10-01 00:09:54 +02:00
|
|
|
paramtype2 = "facedir",
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = { -0.5, -0.5, 5/16, 0.5, 0.5, 8/16 }
|
|
|
|
},
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{ -8/16, -8/16, 5/16, -5/16, 8/16, 7/16 }, -- left part
|
|
|
|
{ -4/16, -8/16, 5/16, 3/16, 8/16, 7/16 }, -- middle part
|
|
|
|
{ 4/16, -8/16, 5/16, 8/16, 8/16, 7/16 }, -- right part
|
|
|
|
{ -8/16, -2/16, 7/16, 8/16, 2/16, 8/16 }, -- connecting rung
|
|
|
|
}
|
|
|
|
},
|
2012-09-30 23:05:46 +02:00
|
|
|
})
|
|
|
|
|
2013-04-20 02:45:14 +02:00
|
|
|
minetest.register_node("homedecor:fence_privacy_corner", {
|
|
|
|
drawtype = "nodebox",
|
2014-03-25 14:16:47 +01:00
|
|
|
description = S("Wooden Privacy Fence Corner"),
|
2013-04-20 02:45:14 +02:00
|
|
|
tiles = {
|
|
|
|
"homedecor_fence_privacy_corner_top.png",
|
|
|
|
"homedecor_fence_privacy_corner_bottom.png",
|
|
|
|
"homedecor_fence_privacy_corner_right.png",
|
2013-04-20 13:32:51 +02:00
|
|
|
"homedecor_fence_privacy_backside2.png",
|
2013-04-20 14:08:28 +02:00
|
|
|
"homedecor_fence_privacy_backside.png",
|
2013-04-20 02:45:14 +02:00
|
|
|
"homedecor_fence_privacy_corner_front.png"
|
|
|
|
},
|
|
|
|
paramtype = "light",
|
|
|
|
is_ground_content = true,
|
|
|
|
groups = {snappy=3},
|
|
|
|
sounds = default.node_sound_wood_defaults(),
|
|
|
|
walkable = true,
|
|
|
|
paramtype2 = "facedir",
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{ -0.5, -0.5, 5/16, 0.5, 0.5, 0.5 },
|
|
|
|
{ -0.5, -0.5, -0.5, -5/16, 0.5, 5/16 },
|
|
|
|
}
|
|
|
|
},
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{ -7/16, -8/16, 5/16, -5/16, 8/16, 7/16 }, -- left part
|
|
|
|
{ -4/16, -8/16, 5/16, 3/16, 8/16, 7/16 }, -- middle part
|
|
|
|
{ 4/16, -8/16, 5/16, 8/16, 8/16, 7/16 }, -- right part
|
|
|
|
{ -8/16, -2/16, 7/16, 8/16, 2/16, 8/16 }, -- back-side connecting rung
|
|
|
|
|
|
|
|
{ -7/16, -8/16, 4/16, -5/16, 8/16, 7/16 }, -- back-most part
|
|
|
|
{ -7/16, -8/16, -4/16, -5/16, 8/16, 3/16 }, -- middle part
|
|
|
|
{ -7/16, -8/16, -8/16, -5/16, 8/16, -5/16 }, -- front-most part
|
|
|
|
{ -8/16, -2/16, -8/16, -7/16, 2/16, 7/16 }, -- left-side connecting rung
|
|
|
|
}
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
2012-09-30 23:05:46 +02:00
|
|
|
minetest.register_node("homedecor:fence_barbed_wire", {
|
2012-10-01 00:09:54 +02:00
|
|
|
drawtype = "nodebox",
|
2013-03-05 08:18:56 +01:00
|
|
|
description = S("Barbed Wire Fence"),
|
2012-09-30 23:05:46 +02:00
|
|
|
tiles = {"homedecor_fence_barbed_wire.png"},
|
|
|
|
paramtype = "light",
|
|
|
|
is_ground_content = true,
|
|
|
|
groups = {snappy=3},
|
|
|
|
sounds = default.node_sound_wood_defaults(),
|
|
|
|
walkable = true,
|
2012-10-01 00:09:54 +02:00
|
|
|
paramtype2 = "facedir",
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = { -0.5, -0.5, 0.375, 0.5, 0.5, 0.5 }
|
|
|
|
},
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{ -8/16, -8/16, 6/16, -6/16, 8/16, 8/16 }, -- left post
|
|
|
|
{ 6/16, -8/16, 6/16, 8/16, 8/16, 8/16 }, -- right post
|
|
|
|
{ -6/16, -8/16, 7/16, 6/16, 8/16, 7/16 } -- the wire
|
|
|
|
}
|
|
|
|
},
|
2012-09-30 23:05:46 +02:00
|
|
|
})
|
|
|
|
|
2013-04-20 01:10:20 +02:00
|
|
|
minetest.register_node("homedecor:fence_barbed_wire_corner", {
|
|
|
|
drawtype = "nodebox",
|
2014-03-25 14:16:47 +01:00
|
|
|
description = S("Barbed Wire Fence Corner"),
|
2013-04-20 01:10:20 +02:00
|
|
|
tiles = {
|
|
|
|
"homedecor_fence_barbed_wire.png"
|
|
|
|
},
|
|
|
|
paramtype = "light",
|
|
|
|
is_ground_content = true,
|
|
|
|
groups = {snappy=3},
|
|
|
|
sounds = default.node_sound_wood_defaults(),
|
|
|
|
walkable = true,
|
|
|
|
paramtype2 = "facedir",
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{ -0.5, -0.5, 0.375, 0.5, 0.5, 0.5 },
|
2013-04-20 02:54:05 +02:00
|
|
|
{ -0.5, -0.5, -0.5, -0.375, 0.5, 0.375 }
|
2013-04-20 01:10:20 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{ -8/16, -8/16, 6/16, -6/16, 8/16, 8/16 }, -- left post
|
|
|
|
{ 6/16, -8/16, 6/16, 8/16, 8/16, 8/16 }, -- right post
|
|
|
|
{ -6/16, -8/16, 7/16, 6/16, 8/16, 7/16 }, -- the wire
|
|
|
|
|
|
|
|
{ -8/16, -8/16, -8/16, -6/16, 8/16, -6/16 }, -- front post
|
|
|
|
{ -7/16, -8/16, -6/16, -7/16, 8/16, 6/16 } -- more wire
|
|
|
|
}
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
2012-10-01 00:49:12 +02:00
|
|
|
minetest.register_node("homedecor:fence_chainlink", {
|
|
|
|
drawtype = "nodebox",
|
2013-03-05 08:18:56 +01:00
|
|
|
description = S("Chainlink Fence"),
|
2012-10-01 00:49:12 +02:00
|
|
|
tiles = {
|
|
|
|
"homedecor_fence_chainlink_tb.png",
|
|
|
|
"homedecor_fence_chainlink_tb.png",
|
|
|
|
"homedecor_fence_chainlink_sides.png",
|
|
|
|
"homedecor_fence_chainlink_sides.png",
|
|
|
|
"homedecor_fence_chainlink_fb.png",
|
|
|
|
"homedecor_fence_chainlink_fb.png",
|
|
|
|
},
|
|
|
|
paramtype = "light",
|
|
|
|
is_ground_content = true,
|
|
|
|
groups = {snappy=3},
|
|
|
|
sounds = default.node_sound_wood_defaults(),
|
|
|
|
walkable = true,
|
|
|
|
paramtype2 = "facedir",
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = { -0.5, -0.5, 0.375, 0.5, 0.5, 0.5 }
|
|
|
|
},
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
2012-10-01 03:16:41 +02:00
|
|
|
{ -8/16, -8/16, 6/16, -7/16, 8/16, 8/16 }, -- left post
|
|
|
|
{ 7/16, -8/16, 6/16, 8/16, 8/16, 8/16 }, -- right post
|
|
|
|
{ -8/16, 7/16, 13/32, 8/16, 8/16, 15/32 }, -- top piece
|
|
|
|
{ -8/16, -8/16, 13/32, 8/16, -7/16, 15/32 }, -- bottom piece
|
|
|
|
{ -8/16, -8/16, 7/16, 8/16, 8/16, 7/16 } -- the chainlink itself
|
2012-10-01 00:49:12 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
})
|
2012-10-01 03:16:41 +02:00
|
|
|
|
2013-03-05 08:16:20 +01:00
|
|
|
minetest.register_node("homedecor:fence_chainlink_corner", {
|
|
|
|
drawtype = "nodebox",
|
2014-03-25 14:16:47 +01:00
|
|
|
description = S("Chainlink Fence Corner"),
|
2013-03-05 08:16:20 +01:00
|
|
|
tiles = {
|
2013-04-20 13:10:56 +02:00
|
|
|
"homedecor_fence_chainlink_corner_top.png",
|
|
|
|
"homedecor_fence_chainlink_corner_bottom.png",
|
|
|
|
"homedecor_fence_chainlink_corner_left.png",
|
|
|
|
"homedecor_fence_chainlink_corner_right.png",
|
|
|
|
"homedecor_fence_chainlink_corner_front.png",
|
|
|
|
"homedecor_fence_chainlink_corner_back.png",
|
2013-03-05 08:16:20 +01:00
|
|
|
},
|
|
|
|
paramtype = "light",
|
|
|
|
is_ground_content = true,
|
|
|
|
groups = {snappy=3},
|
|
|
|
sounds = default.node_sound_wood_defaults(),
|
|
|
|
walkable = true,
|
|
|
|
paramtype2 = "facedir",
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{ -0.5, -0.5, 0.375, 0.5, 0.5, 0.5 },
|
2013-04-20 02:54:05 +02:00
|
|
|
{ -0.5, -0.5, -0.5, -0.375, 0.5, 0.375 }
|
2013-03-05 08:16:20 +01:00
|
|
|
}
|
|
|
|
},
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{ -8/16, -8/16, 6/16, -6/16, 8/16, 8/16 }, -- left post, rear
|
|
|
|
{ -8/16, -8/16, -8/16, -6/16, 8/16, -7/16 }, -- left post, front
|
|
|
|
{ 7/16, -8/16, 6/16, 8/16, 8/16, 8/16 }, -- right post, rear
|
|
|
|
{ -8/16, 7/16, 13/32, 8/16, 8/16, 15/32 }, -- top piece, rear
|
|
|
|
{ -8/16, -8/16, 13/32, 8/16, -7/16, 15/32 }, -- bottom piece, rear
|
|
|
|
{ -15/32, 7/16, -8/16, -13/32, 8/16, 8/16 }, -- top piece, side
|
|
|
|
{ -15/32, -8/16, -8/16, -13/32, -7/16, 8/16 }, -- bottom piece, side
|
|
|
|
{ -8/16, -8/16, 7/16, 8/16, 8/16, 7/16 }, -- the chainlink itself, rear
|
|
|
|
{ -7/16, -8/16, -8/16, -7/16, 8/16, 8/16 } -- the chainlink itself, side
|
|
|
|
}
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
2014-01-25 18:57:05 +01:00
|
|
|
signs_lib.register_fence_with_sign("homedecor:fence_brass", "homedecor:fence_brass_with_sign")
|
|
|
|
signs_lib.register_fence_with_sign("homedecor:fence_wrought_iron", "homedecor:fence_wrought_iron_with_sign")
|