mirror of
https://github.com/mt-mods/homedecor_modpack.git
synced 2024-10-31 23:40:27 +01:00
e057d357c8
package the two together as a modpack so that regular homedecor users don't see a functional change, but others can take signs_lib and use it as a standalone mod. also get rid of some *~ files
44 lines
1.1 KiB
Lua
44 lines
1.1 KiB
Lua
-- Various kinds of window shutters
|
|
|
|
local S = homedecor.gettext
|
|
|
|
local shutters = {
|
|
{"oak", "Unpainted oak"},
|
|
{"mahogany", "Mahogany"},
|
|
{"red", "Red"},
|
|
{"yellow", "Yellow"},
|
|
{"forest_green", "Forest green"},
|
|
{"light_blue", "Light blue"},
|
|
{"violet", "Violet"},
|
|
{"black", "Black"},
|
|
{"dark_grey", "Dark grey"},
|
|
{"grey", "Grey"},
|
|
{"white", "White"},
|
|
}
|
|
|
|
for i in ipairs(shutters) do
|
|
local name = shutters[i][1]
|
|
local desc = shutters[i][2]
|
|
|
|
minetest.register_node("homedecor:shutter_"..name, {
|
|
description = S("Wooden Shutter ("..desc..")"),
|
|
tiles = { "homedecor_window_shutter_"..name..".png" },
|
|
inventory_image = "homedecor_window_shutter_"..name..".png",
|
|
wield_image = "homedecor_window_shutter_"..name..".png",
|
|
drawtype = 'signlike',
|
|
sunlight_propagates = true,
|
|
paramtype = "light",
|
|
paramtype2 = "facedir",
|
|
walkable = false,
|
|
groups = { snappy = 3 },
|
|
sounds = default.node_sound_wood_defaults(),
|
|
paramtype2 = 'wallmounted',
|
|
selection_box = {
|
|
type = "wallmounted",
|
|
--wall_side = = <default>
|
|
},
|
|
})
|
|
end
|
|
|
|
minetest.register_alias("homedecor:shutter_purple", "homedecor:shutter_violet")
|