homedecor_modpack/init.lua

849 lines
26 KiB
Lua
Raw Normal View History

2012-07-12 23:56:15 +02:00
-- Home Decor mod by VanessaE
-- 2012-09-30
2012-07-12 23:56:15 +02:00
--
-- Mostly my own code, with bits and pieces lifted from Minetest's default
-- lua files and from ironzorg's flowers mod. Many thanks to GloopMaster
-- for helping me figure out the inventories used in the nightstands/dressers.
2012-07-12 23:56:15 +02:00
--
-- The code for ovens, nightstands, refrigerators are basically modified
-- copies of the code for chests and furnaces.
2012-07-12 23:56:15 +02:00
--
-- License: LGPL
2012-07-12 23:56:15 +02:00
--
2012-07-31 17:37:24 +02:00
local DEBUG = 0
2012-07-12 23:56:15 +02:00
2013-03-05 08:18:56 +01:00
-- Boilerplate to support localized strings if intllib mod is installed.
local S
if (minetest.get_modpath("intllib")) then
dofile(minetest.get_modpath("intllib").."/intllib.lua")
S = intllib.Getter(minetest.get_current_modname())
else
S = function ( s ) return s end
end
-- Various Functions
2012-07-12 23:56:15 +02:00
local dbg = function(s)
if DEBUG == 1 then
print('[HomeDecor] ' .. s)
end
end
function homedecor_node_is_owned(pos, placer)
local ownername = false
if type(IsPlayerNodeOwner) == "function" then -- node_ownership mod
if HasOwner(pos, placer) then -- returns true if the node is owned
if not IsPlayerNodeOwner(pos, placer:get_player_name()) then
if type(getLastOwner) == "function" then -- ...is an old version
ownername = getLastOwner(pos)
elseif type(GetNodeOwnerName) == "function" then -- ...is a recent version
ownername = GetNodeOwnerName(pos)
else
2013-03-05 08:18:56 +01:00
ownername = S("someone")
end
end
end
elseif type(isprotect)=="function" then -- glomie's protection mod
if not isprotect(5, pos, placer) then
2013-03-05 08:18:56 +01:00
ownername = S("someone")
end
end
if ownername ~= false then
2013-03-05 08:18:56 +01:00
minetest.chat_send_player( placer:get_player_name(), S("Sorry, %s owns that spot."):format(ownername) )
return true
else
return false
end
end
2012-07-12 23:56:15 +02:00
-- Nodes
minetest.register_node('homedecor:shingles_wood', {
2013-03-05 08:18:56 +01:00
description = S("Wood Shingles"),
2012-07-12 23:56:15 +02:00
drawtype = 'raillike',
tiles = { 'homedecor_shingles_wood.png' },
2012-07-12 23:56:15 +02:00
wield_image = 'homedecor_shingles_wood.png',
inventory_image = 'homedecor_shingles_wood.png',
paramtype = 'light',
sunlight_propagates = false,
walkable = false,
groups = { snappy = 3 },
sounds = default.node_sound_leaves_defaults(),
})
minetest.register_node('homedecor:skylight', {
2013-03-05 08:18:56 +01:00
description = S("Glass Skylight"),
2012-07-12 23:56:15 +02:00
drawtype = 'raillike',
tiles = { 'default_glass.png' },
2012-07-12 23:56:15 +02:00
wield_image = 'default_glass.png',
inventory_image = 'default_glass.png',
paramtype = 'light',
sunlight_propagates = true,
2012-09-01 18:19:38 +02:00
walkable = true,
2012-07-12 23:56:15 +02:00
groups = { snappy = 3 },
sounds = default.node_sound_leaves_defaults(),
})
minetest.register_node('homedecor:shingles_asphalt', {
2013-03-05 08:18:56 +01:00
description = S("Asphalt Shingles"),
2012-07-12 23:56:15 +02:00
drawtype = 'raillike',
tiles = { 'homedecor_shingles_asphalt.png' },
2012-07-12 23:56:15 +02:00
wield_image = 'homedecor_shingles_asphalt.png',
inventory_image = 'homedecor_shingles_asphalt.png',
paramtype = 'light',
sunlight_propagates = false,
walkable = false,
groups = { snappy = 3 },
sounds = default.node_sound_leaves_defaults(),
})
minetest.register_node('homedecor:shingles_terracotta', {
2013-03-05 08:18:56 +01:00
description = S("Terracotta Roofing"),
2012-07-12 23:56:15 +02:00
drawtype = 'raillike',
tiles = { 'homedecor_shingles_terracotta.png' },
2012-07-12 23:56:15 +02:00
wield_image = 'homedecor_shingles_terracotta.png',
inventory_image = 'homedecor_shingles_terracotta.png',
paramtype = 'light',
sunlight_propagates = false,
walkable = false,
groups = { snappy = 3 },
sounds = default.node_sound_leaves_defaults(),
drop = 'homedecor:roof_tile_terracotta 4',
})
minetest.register_node('homedecor:projection_screen', {
2013-03-05 08:18:56 +01:00
description = S("Projection Screen Material"),
2012-07-12 23:56:15 +02:00
drawtype = 'signlike',
tiles = { 'homedecor_projection_screen.png' },
2012-07-12 23:56:15 +02:00
wield_image = 'homedecor_projection_screen_inv.png',
inventory_image = 'homedecor_projection_screen_inv.png',
sunlight_propagates = false,
paramtype = 'light',
walkable = false,
groups = { snappy = 3 },
sounds = default.node_sound_leaves_defaults(),
paramtype2 = 'wallmounted',
selection_box = {
type = "wallmounted",
--wall_side = = <default>
},
})
minetest.register_node('homedecor:ceiling_paint', {
2013-03-05 08:18:56 +01:00
description = S("Textured Ceiling Paint"),
2012-07-12 23:56:15 +02:00
drawtype = 'signlike',
tiles = { 'homedecor_ceiling_paint.png' },
2012-07-12 23:56:15 +02:00
inventory_image = 'homedecor_ceiling_paint_roller.png',
wield_image = 'homedecor_ceiling_paint_roller.png',
sunlight_propagates = true,
paramtype = 'light',
walkable = false,
groups = { snappy = 3 },
sounds = default.node_sound_leaves_defaults(),
selection_box = {
type = "wallmounted",
--wall_top = <default>
--wall_bottom = <default>
--wall_side = <default>
},
})
minetest.register_node('homedecor:ceiling_tile', {
2013-03-05 08:18:56 +01:00
description = S("Drop-Ceiling Tile"),
2012-07-12 23:56:15 +02:00
drawtype = 'signlike',
tiles = { 'homedecor_ceiling_tile.png' },
2012-07-12 23:56:15 +02:00
wield_image = 'homedecor_ceiling_tile.png',
inventory_image = 'homedecor_ceiling_tile.png',
sunlight_propagates = true,
paramtype = 'light',
walkable = false,
groups = { snappy = 3 },
sounds = default.node_sound_leaves_defaults(),
selection_box = {
type = "wallmounted",
--wall_top = <default>
--wall_bottom = <default>
--wall_side = <default>
},
})
minetest.register_node('homedecor:rug_small', {
2013-03-05 08:18:56 +01:00
description = S("Small Throw Rug"),
2012-07-12 23:56:15 +02:00
drawtype = 'signlike',
tiles = { 'homedecor_rug_small.png' },
2012-07-12 23:56:15 +02:00
wield_image = 'homedecor_rug_small.png',
inventory_image = 'homedecor_rug_small.png',
sunlight_propagates = true,
paramtype = 'light',
paramtype2 = "wallmounted",
is_ground_content = true,
walkable = false,
groups = { snappy = 3 },
sounds = default.node_sound_leaves_defaults(),
selection_box = {
type = "wallmounted",
--wall_top = <default>
--wall_bottom = <default>
--wall_side = <default>
},
})
minetest.register_node('homedecor:rug_large', {
2013-03-05 08:18:56 +01:00
description = S("Large Area Rug"),
2012-07-12 23:56:15 +02:00
drawtype = 'signlike',
tiles = { 'homedecor_rug_large.png' },
2012-07-12 23:56:15 +02:00
wield_image = 'homedecor_rug_large.png',
inventory_image = 'homedecor_rug_large.png',
sunlight_propagates = true,
paramtype = 'light',
paramtype2 = "wallmounted",
is_ground_content = true,
walkable = false,
groups = { snappy = 3 },
sounds = default.node_sound_leaves_defaults(),
selection_box = {
type = "wallmounted",
--wall_top = <default>
--wall_bottom = <default>
--wall_side = <default>
},
})
minetest.register_node('homedecor:glass_table_large', {
2013-03-05 08:18:56 +01:00
description = S("Large Glass Table Piece"),
2012-07-12 23:56:15 +02:00
drawtype = 'signlike',
tiles = { 'homedecor_glass_table_large.png' },
2012-07-12 23:56:15 +02:00
wield_image = 'homedecor_glass_table_large.png',
inventory_image = 'homedecor_glass_table_large.png',
sunlight_propagates = true,
paramtype = 'light',
walkable = false,
groups = { snappy = 3 },
sounds = default.node_sound_leaves_defaults(),
paramtype2 = "wallmounted",
is_ground_content = true,
selection_box = {
type = "wallmounted",
--wall_top = <default>
--wall_bottom = <default>
--wall_side = <default>
},
})
minetest.register_node('homedecor:glass_table_small_round', {
2013-03-05 08:18:56 +01:00
description = S("Glass Table (Small, Round)"),
2012-07-12 23:56:15 +02:00
drawtype = 'signlike',
tiles = { 'homedecor_glass_table_small_round.png' },
2012-07-12 23:56:15 +02:00
wield_image = 'homedecor_glass_table_small_round.png',
inventory_image = 'homedecor_glass_table_small_round.png',
sunlight_propagates = true,
paramtype = 'light',
paramtype2 = "wallmounted",
is_ground_content = true,
walkable = false,
groups = { snappy = 3 },
sounds = default.node_sound_leaves_defaults(),
selection_box = {
type = "wallmounted",
--wall_top = <default>
--wall_bottom = <default>
--wall_side = <default>
},
})
minetest.register_node('homedecor:glass_table_small_square', {
2013-03-05 08:18:56 +01:00
description = S("Glass Table (Small, Square)"),
2012-07-12 23:56:15 +02:00
drawtype = 'signlike',
tiles = { 'homedecor_glass_table_small_square.png' },
2012-07-12 23:56:15 +02:00
wield_image = 'homedecor_glass_table_small_square.png',
inventory_image = 'homedecor_glass_table_small_square.png',
sunlight_propagates = true,
paramtype = 'light',
paramtype2 = "wallmounted",
is_ground_content = true,
walkable = false,
groups = { snappy = 3 },
sounds = default.node_sound_leaves_defaults(),
selection_box = {
type = "wallmounted",
--wall_top = <default>
--wall_bottom = <default>
--wall_side = <default>
},
})
minetest.register_node("homedecor:table_legs_brass", {
2013-03-05 08:18:56 +01:00
description = S("Brass Table Legs"),
2012-07-12 23:56:15 +02:00
drawtype = "plantlike",
tiles = {"homedecor_table_legs_brass.png"},
2012-07-12 23:56:15 +02:00
inventory_image = "homedecor_table_legs_brass.png",
wield_image = "homedecor_table_legs_brass.png",
visual_scale = 1.04,
paramtype = "light",
walkable = false,
groups = {snappy=3},
sounds = default.node_sound_leaves_defaults(),
walkable = true,
})
minetest.register_node("homedecor:table_legs_wrought_iron", {
2013-03-05 08:18:56 +01:00
description = S("Brass Table Legs"),
2012-07-12 23:56:15 +02:00
drawtype = "plantlike",
tiles = {"homedecor_table_legs_wrought_iron.png"},
2012-07-12 23:56:15 +02:00
inventory_image = "homedecor_table_legs_wrought_iron.png",
wield_image = "homedecor_table_legs_wrought_iron.png",
visual_scale = 1.04,
paramtype = "light",
walkable = false,
groups = {snappy=3},
sounds = default.node_sound_leaves_defaults(),
walkable = true,
})
minetest.register_node('homedecor:stereo', {
2013-03-05 08:18:56 +01:00
description = S("Stereo Receiver"),
tiles = { 'homedecor_stereo_top.png',
2012-07-12 23:56:15 +02:00
'homedecor_stereo_bottom.png',
'homedecor_stereo_right.png',
'homedecor_stereo_left.png',
2012-07-12 23:56:15 +02:00
'homedecor_stereo_back.png',
'homedecor_stereo_front.png'},
sunlight_propagates = false,
paramtype = "light",
paramtype2 = "facedir",
walkable = true,
groups = { snappy = 3 },
sounds = default.node_sound_leaves_defaults(),
})
minetest.register_node('homedecor:utility_table_top', {
2013-03-05 08:18:56 +01:00
description = S("Utility Table"),
tiles = { 'homedecor_utility_table_top.png' },
2012-07-12 23:56:15 +02:00
inventory_image = 'homedecor_utility_table_top.png',
wield_image = 'homedecor_utility_table_top.png',
drawtype = "signlike",
sunlight_propagates = false,
paramtype = "light",
paramtype2 = "facedir",
walkable = true,
groups = { snappy = 3 },
sounds = default.node_sound_leaves_defaults(),
paramtype2 = "wallmounted",
is_ground_content = true,
selection_box = {
type = "wallmounted",
--wall_top = <default>
--wall_bottom = <default>
--wall_side = <default>
},
})
minetest.register_node('homedecor:utility_table_legs', {
2013-03-05 08:18:56 +01:00
description = S("Legs for Utility Table"),
tiles = { 'homedecor_utility_table_legs.png' },
2012-07-12 23:56:15 +02:00
inventory_image = 'homedecor_utility_table_legs_inv.png',
wield_image = 'homedecor_utility_table_legs.png',
visual_scale = 1.04,
sunlight_propagates = true,
paramtype = "light",
paramtype2 = "facedir",
walkable = true,
groups = { snappy = 3 },
sounds = default.node_sound_leaves_defaults(),
drawtype = "plantlike",
})
minetest.register_node('homedecor:flower_pot_terracotta', {
2013-03-05 08:18:56 +01:00
description = S("Terracotta Flower Pot"),
tiles = { 'homedecor_flower_pot_terracotta_top.png',
2012-07-12 23:56:15 +02:00
'homedecor_flower_pot_terracotta_bottom.png',
'homedecor_flower_pot_terracotta_sides.png',
'homedecor_flower_pot_terracotta_sides.png',
'homedecor_flower_pot_terracotta_sides.png',
'homedecor_flower_pot_terracotta_sides.png'},
sunlight_propagates = false,
paramtype = "light",
paramtype2 = "facedir",
walkable = true,
groups = { snappy = 3 },
sounds = default.node_sound_leaves_defaults(),
})
minetest.register_node('homedecor:flower_pot_black', {
2013-03-05 08:18:56 +01:00
description = S("Black Plastic Flower Pot"),
tiles = { 'homedecor_flower_pot_black_top.png',
2012-07-12 23:56:15 +02:00
'homedecor_flower_pot_black_bottom.png',
'homedecor_flower_pot_black_sides.png',
'homedecor_flower_pot_black_sides.png',
'homedecor_flower_pot_black_sides.png',
'homedecor_flower_pot_black_sides.png'},
sunlight_propagates = false,
paramtype = "light",
paramtype2 = "facedir",
walkable = true,
groups = { snappy = 3 },
sounds = default.node_sound_leaves_defaults(),
})
minetest.register_node('homedecor:flower_pot_green', {
2013-03-05 08:18:56 +01:00
description = S("Green Plastic Flower Pot"),
tiles = { 'homedecor_flower_pot_green_top.png',
2012-07-12 23:56:15 +02:00
'homedecor_flower_pot_green_bottom.png',
'homedecor_flower_pot_green_sides.png',
'homedecor_flower_pot_green_sides.png',
'homedecor_flower_pot_green_sides.png',
'homedecor_flower_pot_green_sides.png'},
sunlight_propagates = false,
paramtype = "light",
paramtype2 = "facedir",
walkable = true,
groups = { snappy = 3 },
sounds = default.node_sound_leaves_defaults(),
})
minetest.register_node('homedecor:wood_table_large', {
2013-03-05 08:18:56 +01:00
description = S("Wooden Tabletop piece"),
tiles = { 'homedecor_wood_table_large.png' },
2012-07-12 23:56:15 +02:00
inventory_image = 'homedecor_wood_table_large.png',
wield_image = 'homedecor_wood_table_large.png',
drawtype = 'signlike',
sunlight_propagates = false,
paramtype = "light",
walkable = false,
groups = { snappy = 3 },
sounds = default.node_sound_leaves_defaults(),
paramtype2 = "wallmounted",
is_ground_content = true,
selection_box = {
type = "wallmounted",
--wall_top = <default>
--wall_bottom = <default>
--wall_side = <default>
},
})
minetest.register_node('homedecor:wood_table_small_round', {
2013-03-05 08:18:56 +01:00
description = S("Wooden Tabletop (Small, Round)"),
tiles = { 'homedecor_wood_table_small_round.png' },
2012-07-12 23:56:15 +02:00
inventory_image = 'homedecor_wood_table_small_round.png',
wield_image = 'homedecor_wood_table_small_round.png',
drawtype = 'signlike',
sunlight_propagates = false,
paramtype = "light",
walkable = false,
groups = { snappy = 3 },
sounds = default.node_sound_leaves_defaults(),
paramtype2 = "wallmounted",
is_ground_content = true,
selection_box = {
type = "wallmounted",
--wall_top = <default>
--wall_bottom = <default>
--wall_side = <default>
},
})
minetest.register_node('homedecor:wood_table_small_square', {
2013-03-05 08:18:56 +01:00
description = S("Wooden Tabletop (Small, Square)"),
tiles = { 'homedecor_wood_table_small_square.png' },
2012-07-12 23:56:15 +02:00
inventory_image = 'homedecor_wood_table_small_square.png',
wield_image = 'homedecor_wood_table_small_square.png',
drawtype = 'signlike',
sunlight_propagates = false,
paramtype = "light",
walkable = false,
groups = { snappy = 3 },
sounds = default.node_sound_leaves_defaults(),
paramtype2 = "wallmounted",
is_ground_content = true,
selection_box = {
type = "wallmounted",
--wall_top = <default>
--wall_bottom = <default>
--wall_side = <default>
},
})
minetest.register_node('homedecor:shutter_black', {
2013-03-05 08:18:56 +01:00
description = S("Wooden Shutter (Black)"),
tiles = { 'homedecor_window_shutter_black.png' },
2012-07-12 23:56:15 +02:00
inventory_image = 'homedecor_window_shutter_black.png',
wield_image = 'homedecor_window_shutter_black.png',
drawtype = 'signlike',
sunlight_propagates = false,
paramtype = "light",
paramtype2 = "facedir",
walkable = false,
groups = { snappy = 3 },
sounds = default.node_sound_leaves_defaults(),
paramtype2 = 'wallmounted',
selection_box = {
type = "wallmounted",
--wall_side = = <default>
},
})
minetest.register_node('homedecor:shutter_mahogany', {
2013-03-05 08:18:56 +01:00
description = S("Wooden Shutter (Unpainted Mahogany)"),
tiles = { 'homedecor_window_shutter_mahogany.png' },
2012-07-12 23:56:15 +02:00
inventory_image = 'homedecor_window_shutter_mahogany.png',
wield_image = 'homedecor_window_shutter_mahogany.png',
drawtype = 'signlike',
sunlight_propagates = false,
paramtype = "light",
paramtype2 = "facedir",
walkable = false,
groups = { snappy = 3 },
sounds = default.node_sound_leaves_defaults(),
paramtype2 = 'wallmounted',
selection_box = {
type = "wallmounted",
--wall_side = = <default>
},
})
minetest.register_node('homedecor:shutter_oak', {
2013-03-05 08:18:56 +01:00
description = S("Wooden Shutter (Unpainted Oak)"),
tiles = { 'homedecor_window_shutter_oak.png' },
2012-07-12 23:56:15 +02:00
inventory_image = 'homedecor_window_shutter_oak.png',
wield_image = 'homedecor_window_shutter_oak.png',
drawtype = 'signlike',
sunlight_propagates = false,
paramtype = "light",
paramtype2 = "facedir",
walkable = false,
groups = { snappy = 3 },
sounds = default.node_sound_leaves_defaults(),
paramtype2 = 'wallmounted',
selection_box = {
type = "wallmounted",
--wall_side = = <default>
},
})
minetest.register_node('homedecor:shutter_dark_grey', {
2013-03-05 08:18:56 +01:00
description = S("Wooden Shutter (Dark Grey)"),
tiles = { 'homedecor_window_shutter_dark_grey.png' },
2012-07-12 23:56:15 +02:00
inventory_image = 'homedecor_window_shutter_dark_grey.png',
wield_image = 'homedecor_window_shutter_dark_grey.png',
drawtype = 'signlike',
sunlight_propagates = false,
paramtype = "light",
paramtype2 = "facedir",
walkable = false,
groups = { snappy = 3 },
sounds = default.node_sound_leaves_defaults(),
paramtype2 = 'wallmounted',
selection_box = {
type = "wallmounted",
--wall_side = = <default>
},
})
minetest.register_node('homedecor:shutter_forest_green', {
2013-03-05 08:18:56 +01:00
description = S("Wooden Shutter (Forest Green)"),
tiles = { 'homedecor_window_shutter_forest_green.png' },
2012-07-12 23:56:15 +02:00
inventory_image = 'homedecor_window_shutter_forest_green.png',
wield_image = 'homedecor_window_shutter_forest_green.png',
drawtype = 'signlike',
sunlight_propagates = false,
paramtype = "light",
paramtype2 = "facedir",
walkable = false,
groups = { snappy = 3 },
sounds = default.node_sound_leaves_defaults(),
paramtype2 = 'wallmounted',
selection_box = {
type = "wallmounted",
--wall_side = = <default>
},
})
minetest.register_node('homedecor:shutter_grey', {
2013-03-05 08:18:56 +01:00
description = S("Wooden Shutter (Grey)"),
tiles = { 'homedecor_window_shutter_grey.png' },
2012-07-12 23:56:15 +02:00
inventory_image = 'homedecor_window_shutter_grey.png',
wield_image = 'homedecor_window_shutter_grey.png',
drawtype = 'signlike',
sunlight_propagates = false,
paramtype = "light",
paramtype2 = "facedir",
walkable = false,
groups = { snappy = 3 },
sounds = default.node_sound_leaves_defaults(),
paramtype2 = 'wallmounted',
selection_box = {
type = "wallmounted",
--wall_side = = <default>
},
})
minetest.register_node('homedecor:shutter_light_blue', {
2013-03-05 08:18:56 +01:00
description = S("Wooden Shutter (Light Blue)"),
tiles = { 'homedecor_window_shutter_light_blue.png' },
2012-07-12 23:56:15 +02:00
inventory_image = 'homedecor_window_shutter_light_blue.png',
wield_image = 'homedecor_window_shutter_light_blue.png',
drawtype = 'signlike',
sunlight_propagates = false,
paramtype = "light",
paramtype2 = "facedir",
walkable = false,
groups = { snappy = 3 },
sounds = default.node_sound_leaves_defaults(),
paramtype2 = 'wallmounted',
selection_box = {
type = "wallmounted",
--wall_side = = <default>
},
})
minetest.register_node('homedecor:shutter_purple', {
2013-03-05 08:18:56 +01:00
description = S("Wooden Shutter (Purple)"),
tiles = { 'homedecor_window_shutter_purple.png' },
2012-07-12 23:56:15 +02:00
inventory_image = 'homedecor_window_shutter_purple.png',
wield_image = 'homedecor_window_shutter_purple.png',
drawtype = 'signlike',
sunlight_propagates = false,
paramtype = "light",
paramtype2 = "facedir",
walkable = false,
groups = { snappy = 3 },
sounds = default.node_sound_leaves_defaults(),
paramtype2 = 'wallmounted',
selection_box = {
type = "wallmounted",
--wall_side = = <default>
},
})
minetest.register_node('homedecor:shutter_red', {
2013-03-05 08:18:56 +01:00
description = S("Wooden Shutter (Red)"),
tiles = { 'homedecor_window_shutter_red.png' },
2012-07-12 23:56:15 +02:00
inventory_image = 'homedecor_window_shutter_red.png',
wield_image = 'homedecor_window_shutter_red.png',
drawtype = 'signlike',
sunlight_propagates = false,
paramtype = "light",
paramtype2 = "facedir",
walkable = false,
groups = { snappy = 3 },
sounds = default.node_sound_leaves_defaults(),
paramtype2 = 'wallmounted',
selection_box = {
type = "wallmounted",
--wall_side = = <default>
},
})
minetest.register_node('homedecor:shutter_white', {
2013-03-05 08:18:56 +01:00
description = S("Wooden Shutter (White)"),
tiles = { 'homedecor_window_shutter_white.png' },
2012-07-12 23:56:15 +02:00
inventory_image = 'homedecor_window_shutter_white.png',
wield_image = 'homedecor_window_shutter_white.png',
drawtype = 'signlike',
sunlight_propagates = false,
paramtype = "light",
paramtype2 = "facedir",
walkable = false,
groups = { snappy = 3 },
sounds = default.node_sound_leaves_defaults(),
paramtype2 = 'wallmounted',
selection_box = {
type = "wallmounted",
--wall_side = = <default>
},
})
minetest.register_node('homedecor:shutter_yellow', {
2013-03-05 08:18:56 +01:00
description = S("Wooden Shutter (Yellow)"),
tiles = { 'homedecor_window_shutter_yellow.png' },
2012-07-12 23:56:15 +02:00
inventory_image = 'homedecor_window_shutter_yellow.png',
wield_image = 'homedecor_window_shutter_yellow.png',
drawtype = 'signlike',
sunlight_propagates = false,
paramtype = "light",
paramtype2 = "facedir",
walkable = false,
groups = { snappy = 3 },
sounds = default.node_sound_leaves_defaults(),
paramtype2 = 'wallmounted',
selection_box = {
type = "wallmounted",
--wall_side = = <default>
},
})
minetest.register_node('homedecor:utilitytable2', {
2013-03-05 08:18:56 +01:00
description = S("Utility table mk2"),
tiles = { 'homedecor_utility_table_top.png',
2012-07-12 23:56:15 +02:00
'homedecor_blanktile.png',
'homedecor_utility_table_legs.png',
'homedecor_utility_table_legs.png',
'homedecor_utility_table_legs.png',
'homedecor_utility_table_legs.png'},
sunlight_propagates = false,
paramtype = "light",
paramtype2 = "facedir",
walkable = true,
groups = { snappy = 3 },
sounds = default.node_sound_leaves_defaults(),
})
-- cylinder-shaped objects courtesy Jeija
local cylbox = {}
local detail = 50
local sehne
local size = 0.2
for i = 1, detail-1 do
sehne = math.sqrt(0.25 - (((i/detail)-0.5)^2))
cylbox[i]={((i/detail)-0.5)*size, -0.5, -sehne*size, ((i/detail)+(1/detail)-0.5)*size, 0.5, sehne*size}
end
minetest.register_node("homedecor:pole_brass", {
2013-03-05 08:18:56 +01:00
description = S("Brass Pole"),
2012-07-12 23:56:15 +02:00
drawtype = "nodebox",
tiles = {"homedecor_tile_brass2.png"},
2012-07-12 23:56:15 +02:00
inventory_image = "homedecor_pole_brass2.png",
wield_image = "homedecor_pole_brass2.png",
paramtype = "light",
is_ground_content = true,
selection_box = {
type = "fixed",
fixed = {-size/2, -0.5, -size/2, size/2, 0.5, size/2},
},
groups = {snappy=3},
sounds = default.node_sound_wood_defaults(),
walkable = true,
node_box = {
type = "fixed",
fixed = cylbox,
}
})
minetest.register_node("homedecor:pole_wrought_iron", {
2013-03-05 08:18:56 +01:00
description = S("Wrought Iron Pole"),
2012-07-12 23:56:15 +02:00
drawtype = "nodebox",
tiles = {"homedecor_tile_wrought_iron2.png"},
2012-07-12 23:56:15 +02:00
inventory_image = "homedecor_pole_wrought_iron.png",
wield_image = "homedecor_pole_wrought_iron.png",
paramtype = "light",
is_ground_content = true,
selection_box = {
type = "fixed",
fixed = {-0.0625, -0.5, -0.0625, 0.0625, 0.5, 0.0625}
},
node_box = {
type = "fixed",
fixed = {-0.0625, -0.5, -0.0625, 0.0625, 0.5, 0.0625}
},
groups = {snappy=3},
sounds = default.node_sound_wood_defaults(),
walkable = true,
})
minetest.register_node('homedecor:speaker', {
2013-03-05 08:18:56 +01:00
description = S("Large Stereo Speaker"),
tiles = { 'homedecor_speaker_top.png',
2012-07-12 23:56:15 +02:00
'homedecor_speaker_bottom.png',
'homedecor_speaker_right.png',
'homedecor_speaker_left.png',
2012-07-12 23:56:15 +02:00
'homedecor_speaker_back.png',
'homedecor_speaker_front.png'},
sunlight_propagates = false,
paramtype = "light",
paramtype2 = "facedir",
walkable = true,
groups = { snappy = 3 },
sounds = default.node_sound_leaves_defaults(),
})
minetest.register_node('homedecor:speaker_small', {
2013-03-05 08:18:56 +01:00
description = S("Small Surround Speaker"),
2012-07-12 23:56:15 +02:00
drawtype = "nodebox",
tiles = {
'homedecor_speaker_top.png',
'homedecor_speaker_bottom.png',
'homedecor_speaker_right.png',
'homedecor_speaker_left.png',
'homedecor_speaker_back.png',
'homedecor_speaker_front.png'
},
2012-07-12 23:56:15 +02:00
selection_box = {
type = "fixed",
fixed = { -0.2, -0.5, 0, 0.2, 0, 0.4 }
},
node_box = {
type = "fixed",
fixed = { -0.2, -0.5, 0, 0.2, 0, 0.4 }
},
sunlight_propagates = false,
paramtype = "light",
paramtype2 = "facedir",
walkable = true,
groups = { snappy = 3 },
sounds = default.node_sound_leaves_defaults(),
})
--
local curtaincolors = {
"red",
"green",
"blue",
"white",
"pink",
"violet"
}
for c in ipairs(curtaincolors) do
2013-03-05 08:18:56 +01:00
local color = S(curtaincolors[c])
minetest.register_node("homedecor:curtain_"..color, {
2013-03-05 08:18:56 +01:00
description = S("Curtains (%s)"):format(color),
tiles = { "homedecor_curtain_"..color..".png" },
inventory_image = "homedecor_curtain_"..color..".png",
wield_image = "homedecor_curtain_"..color..".png",
drawtype = 'signlike',
sunlight_propagates = false,
paramtype = "light",
paramtype2 = "facedir",
walkable = false,
groups = { snappy = 3 },
sounds = default.node_sound_leaves_defaults(),
paramtype2 = 'wallmounted',
selection_box = {
type = "wallmounted",
--wall_side = = <default>
},
})
end
dofile(minetest.get_modpath("homedecor").."/door_models.lua")
dofile(minetest.get_modpath("homedecor").."/door_nodes.lua")
dofile(minetest.get_modpath("homedecor").."/signs_lib.lua")
dofile(minetest.get_modpath("homedecor").."/fences.lua")
dofile(minetest.get_modpath("homedecor").."/lighting.lua")
dofile(minetest.get_modpath("homedecor").."/kitchen_cabinet.lua")
dofile(minetest.get_modpath("homedecor").."/refrigerator.lua")
dofile(minetest.get_modpath("homedecor").."/oven.lua")
dofile(minetest.get_modpath("homedecor").."/nightstands.lua")
dofile(minetest.get_modpath("homedecor").."/television.lua")
dofile(minetest.get_modpath("homedecor").."/crafts.lua")
2013-02-25 18:02:42 +01:00
dofile(minetest.get_modpath("homedecor").."/locked.lua")
2013-03-05 08:18:56 +01:00
print("[HomeDecor] "..S("Loaded!"))