2013-03-18 00:09:42 +01:00
|
|
|
-- Various kinds of window shutters
|
|
|
|
|
2013-10-22 02:31:54 +02:00
|
|
|
local S = homedecor.gettext
|
2013-03-18 00:09:42 +01:00
|
|
|
|
2013-08-28 11:31:42 +02:00
|
|
|
local shutters = {
|
2015-05-04 05:47:43 +02:00
|
|
|
{"oak", "Unpainted oak", "#bf8a51:200" },
|
|
|
|
{"mahogany", "Mahogany", "#822606:200" },
|
|
|
|
{"red", "Red", "#d00000:150" },
|
|
|
|
{"yellow", "Yellow", "#ffff00:150" },
|
|
|
|
{"forest_green", "Forest green", "#006000:150" },
|
|
|
|
{"light_blue", "Light blue", "#1963c7:150" },
|
|
|
|
{"violet", "Violet", "#6000ff:150" },
|
|
|
|
{"black", "Black", "#000000:200" },
|
|
|
|
{"dark_grey", "Dark grey", "#202020:200" },
|
|
|
|
{"grey", "Grey", "#c0c0c0:150" },
|
|
|
|
{"white", "White", "#ffffff:150" },
|
2013-08-28 11:31:42 +02:00
|
|
|
}
|
|
|
|
|
2015-01-25 21:32:36 +01:00
|
|
|
local shutter_cbox = {
|
|
|
|
type = "wallmounted",
|
|
|
|
wall_top = { -0.5, 0.4375, -0.5, 0.5, 0.5, 0.5 },
|
|
|
|
wall_bottom = { -0.5, -0.5, -0.5, 0.5, -0.4375, 0.5 },
|
2015-05-04 05:47:43 +02:00
|
|
|
wall_side = { -0.5, -0.5, -0.5, -0.4375, 0.5, 0.5 }
|
2015-01-25 21:32:36 +01:00
|
|
|
}
|
|
|
|
|
2013-08-28 11:31:42 +02:00
|
|
|
for i in ipairs(shutters) do
|
|
|
|
local name = shutters[i][1]
|
|
|
|
local desc = shutters[i][2]
|
2015-05-04 05:47:43 +02:00
|
|
|
local hue = shutters[i][3]
|
|
|
|
|
|
|
|
local tile = "homedecor_window_shutter.png^[colorize:"..hue
|
|
|
|
local inv = "homedecor_window_shutter_inv.png^[colorize:"..hue
|
2013-08-28 11:31:42 +02:00
|
|
|
|
2015-01-25 21:32:36 +01:00
|
|
|
homedecor.register("shutter_"..name, {
|
|
|
|
mesh = "homedecor_window_shutter.obj",
|
2015-05-04 05:47:43 +02:00
|
|
|
tiles = { tile },
|
2015-01-25 21:32:36 +01:00
|
|
|
description = S("Wooden Shutter ("..desc..")"),
|
2015-05-04 05:47:43 +02:00
|
|
|
inventory_image = inv,
|
|
|
|
wield_image = inv,
|
2015-01-25 21:32:36 +01:00
|
|
|
paramtype2 = "wallmounted",
|
|
|
|
groups = { snappy = 3 },
|
|
|
|
sounds = default.node_sound_wood_defaults(),
|
|
|
|
selection_box = shutter_cbox,
|
|
|
|
node_box = shutter_cbox,
|
|
|
|
-- collision_box doesn't accept type="wallmounted", but node_box
|
|
|
|
-- does. Said nodeboxes create a custom collision box but are
|
|
|
|
-- invisible themselves because drawtype="mesh".
|
|
|
|
})
|
2013-08-28 11:31:42 +02:00
|
|
|
end
|
2013-04-03 23:03:42 +02:00
|
|
|
|
|
|
|
minetest.register_alias("homedecor:shutter_purple", "homedecor:shutter_violet")
|
2015-05-04 05:47:43 +02:00
|
|
|
|