2013-10-22 02:31:54 +02:00
local S = homedecor.gettext
2013-03-18 00:09:42 +01:00
2015-01-24 00:34:02 +01:00
homedecor.register ( " ceiling_paint " , {
2013-03-18 00:09:42 +01:00
description = S ( " Textured Ceiling Paint " ) ,
drawtype = ' signlike ' ,
tiles = { ' homedecor_ceiling_paint.png ' } ,
inventory_image = ' homedecor_ceiling_paint_roller.png ' ,
wield_image = ' homedecor_ceiling_paint_roller.png ' ,
walkable = false ,
groups = { snappy = 3 } ,
sounds = default.node_sound_leaves_defaults ( ) ,
2015-04-29 14:14:36 +02:00
selection_box = { type = " wallmounted " } ,
2013-03-18 00:09:42 +01:00
} )
2015-01-24 00:34:02 +01:00
homedecor.register ( " ceiling_tile " , {
2013-03-18 00:09:42 +01:00
description = S ( " Drop-Ceiling Tile " ) ,
drawtype = ' signlike ' ,
tiles = { ' homedecor_ceiling_tile.png ' } ,
wield_image = ' homedecor_ceiling_tile.png ' ,
inventory_image = ' homedecor_ceiling_tile.png ' ,
walkable = false ,
groups = { snappy = 3 } ,
sounds = default.node_sound_leaves_defaults ( ) ,
2015-04-29 14:14:36 +02:00
selection_box = { type = " wallmounted " } ,
2013-03-18 00:09:42 +01:00
} )
2015-05-11 18:37:49 +02:00
local rug_types = {
{ " small " , " homedecor_small_rug.obj " } ,
{ " large " , { - 0.5 , - 0.5 , - 0.5 , 0.5 , - 0.4375 , 0.5 } } ,
{ " persian " , { - 0.5 , - 0.5 , - 0.5 , 0.5 , - 0.4375 , 0.5 } }
}
2013-03-18 00:09:42 +01:00
2015-05-11 18:37:49 +02:00
for i in ipairs ( rug_types ) do
s = rug_types [ i ] [ 1 ]
m = rug_types [ i ] [ 2 ]
local mesh = m
local nodebox = nil
local tiles = { " homedecor_rug_ " .. s .. " .png " , " wool_grey.png " }
if type ( m ) == " table " then
mesh = nil
nodebox = {
type = " fixed " ,
fixed = m
}
tiles = {
" homedecor_rug_ " .. s .. " .png " ,
" wool_grey.png " ,
" homedecor_rug_ " .. s .. " .png "
}
end
homedecor.register ( " rug_ " .. s , {
description = S ( " Rug ( " .. s .. " ) " ) ,
mesh = mesh ,
tiles = tiles ,
node_box = nodebox ,
paramtype2 = " wallmounted " ,
walkable = false ,
groups = { snappy = 3 } ,
sounds = default.node_sound_leaves_defaults ( ) ,
selection_box = { type = " wallmounted " } ,
} )
2015-02-28 10:14:46 +01:00
end
2013-03-18 00:09:42 +01:00
2015-02-28 10:14:46 +01:00
local pot_colors = { " black " , " green " , " terracotta " }
2013-03-18 00:09:42 +01:00
2015-02-28 10:14:46 +01:00
for _ , p in ipairs ( pot_colors ) do
homedecor.register ( " flower_pot_ " .. p , {
description = S ( " Flower Pot ( " .. p .. " ) " ) ,
2014-12-14 21:12:44 +01:00
mesh = " homedecor_flowerpot.obj " ,
2015-04-06 22:35:00 +02:00
tiles = {
" homedecor_flower_pot_ " .. p .. " .png " ,
2015-05-04 05:22:46 +02:00
" default_dirt.png^[colorize:#000000:175 "
2015-04-06 22:35:00 +02:00
} ,
2015-01-21 04:40:38 +01:00
groups = { snappy = 3 , potting_soil = 1 } ,
2015-04-29 14:14:36 +02:00
sounds = default.node_sound_stone_defaults ( ) ,
2013-03-18 00:09:42 +01:00
} )
2015-02-28 10:14:46 +01:00
end
2013-03-18 00:09:42 +01:00
2015-01-24 00:34:02 +01:00
homedecor.register ( " pole_brass " , {
2014-08-12 18:26:14 +02:00
description = S ( " Brass Pole " ) ,
2014-12-13 23:32:31 +01:00
mesh = " homedecor_round_pole.obj " ,
2015-04-28 05:48:02 +02:00
tiles = { " homedecor_generic_metal_brass.png^homedecor_generic_metal_lines_overlay.png " , } ,
2014-12-14 21:42:59 +01:00
inventory_image = " homedecor_pole_brass_inv.png " ,
wield_image = " homedecor_pole_brass_inv.png " ,
2014-08-12 18:26:14 +02:00
selection_box = {
type = " fixed " ,
2014-12-13 23:32:31 +01:00
fixed = { - 0.125 , - 0.5 , - 0.125 , 0.125 , 0.5 , 0.125 } ,
} ,
collision_box = {
type = " fixed " ,
fixed = { - 0.125 , - 0.5 , - 0.125 , 0.125 , 0.5 , 0.125 } ,
2014-08-12 18:26:14 +02:00
} ,
groups = { snappy = 3 } ,
sounds = default.node_sound_wood_defaults ( ) ,
2013-03-18 00:09:42 +01:00
} )
2015-01-20 23:59:50 +01:00
2015-01-24 00:34:02 +01:00
homedecor.register ( " pole_wrought_iron " , {
2014-08-12 18:26:14 +02:00
description = S ( " Wrought Iron Pole " ) ,
2015-04-28 05:48:02 +02:00
tiles = { " homedecor_generic_metal_wrought_iron.png^homedecor_generic_metal_lines_overlay.png " } ,
2014-12-14 21:42:59 +01:00
inventory_image = " homedecor_pole_wrought_iron_inv.png " ,
wield_image = " homedecor_pole_wrought_iron_inv.png " ,
2014-08-12 18:26:14 +02:00
selection_box = {
type = " fixed " ,
fixed = { - 0.0625 , - 0.5 , - 0.0625 , 0.0625 , 0.5 , 0.0625 }
} ,
2013-03-18 00:09:42 +01:00
node_box = {
type = " fixed " ,
fixed = { - 0.0625 , - 0.5 , - 0.0625 , 0.0625 , 0.5 , 0.0625 }
} ,
2014-08-12 18:26:14 +02:00
groups = { snappy = 3 } ,
sounds = default.node_sound_wood_defaults ( ) ,
2013-03-18 00:09:42 +01:00
} )
2014-06-25 08:50:11 +02:00
local welcome_mat_colors = { " green " , " brown " , " grey " }
for _ , color in ipairs ( welcome_mat_colors ) do
2015-01-24 00:34:02 +01:00
homedecor.register ( " welcome_mat_ " .. color , {
2014-06-25 08:50:11 +02:00
description = " Welcome Mat ( " .. color .. " ) " ,
tiles = {
" homedecor_welcome_mat_ " .. color .. " .png " ,
" homedecor_welcome_mat_bottom.png " ,
" homedecor_welcome_mat_ " .. color .. " .png " ,
} ,
groups = { crumbly = 3 } ,
sounds = default.node_sound_dirt_defaults ( {
footstep = { name = " default_grass_footstep " , gain = 0.25 } ,
} ) ,
node_box = {
type = " fixed " ,
fixed = { - 0.5 , - 0.5 , - 0.375 , 0.5 , - 0.46875 , 0.375 }
}
} )
end
2014-06-25 10:21:54 +02:00
2015-01-24 00:34:02 +01:00
homedecor.register ( " chimney " , {
2014-06-25 10:21:54 +02:00
description = " Chimney " ,
2015-04-27 04:52:11 +02:00
mesh = " homedecor_chimney.obj " ,
2014-06-25 10:21:54 +02:00
tiles = {
2015-04-27 04:52:11 +02:00
" homedecor_chimney_tb.png " ,
" default_brick.png "
2014-06-25 10:21:54 +02:00
} ,
2015-01-23 17:40:57 +01:00
selection_box = homedecor.nodebox . bar_y ( 0.25 ) ,
2014-06-25 10:21:54 +02:00
groups = { cracky = 3 } ,
sounds = default.node_sound_stone_defaults ( )
} )
2015-05-08 20:05:24 +02:00
local ft_cbox = {
type = " fixed " ,
fixed = { - 0.5 , - 0.5 , - 0.375 , 0.5 , 0.3125 , 0.375 }
}
2015-01-24 00:34:02 +01:00
homedecor.register ( " fishtank " , {
2014-06-26 04:32:43 +02:00
description = " Fishtank " ,
2015-05-08 20:05:24 +02:00
mesh = " homedecor_fishtank.obj " ,
2014-06-26 04:32:43 +02:00
tiles = {
2015-05-08 20:05:24 +02:00
" homedecor_generic_plastic_black.png " ,
2015-05-09 01:45:34 +02:00
" homedecor_fishtank_filter.png " ,
2015-05-08 20:05:24 +02:00
" homedecor_fishtank_fishes.png " ,
2015-05-09 01:45:34 +02:00
" homedecor_fishtank_gravel.png " ,
" homedecor_fishtank_water_top.png " ,
2015-05-08 21:52:41 +02:00
" homedecor_fishtank_sides.png " ,
2014-06-26 04:32:43 +02:00
} ,
use_texture_alpha = true ,
2015-05-08 20:05:24 +02:00
selection_box = ft_cbox ,
collision_box = ft_cbox ,
2014-06-26 04:32:43 +02:00
groups = { cracky = 3 , oddly_breakable_by_hand = 3 } ,
sounds = default.node_sound_glass_defaults ( ) ,
2014-06-28 01:12:21 +02:00
on_rightclick = function ( pos , node , clicker )
2015-05-08 20:05:24 +02:00
minetest.set_node ( pos , { name = " homedecor:fishtank_lighted " , param2 = node.param2 } )
2014-06-28 01:12:21 +02:00
end
} )
2015-01-24 00:34:02 +01:00
homedecor.register ( " fishtank_lighted " , {
2015-05-08 20:05:24 +02:00
description = " Fishtank (lighted) " ,
mesh = " homedecor_fishtank.obj " ,
2014-06-28 01:12:21 +02:00
tiles = {
2015-05-08 20:05:24 +02:00
" homedecor_generic_plastic_black.png " ,
2015-05-09 01:45:34 +02:00
" homedecor_fishtank_filter.png " ,
2015-05-08 20:05:24 +02:00
" homedecor_fishtank_fishes_lighted.png " ,
2015-05-09 01:45:34 +02:00
" homedecor_fishtank_gravel_lighted.png " ,
" homedecor_fishtank_water_top_lighted.png " ,
2015-05-08 21:52:41 +02:00
" homedecor_fishtank_sides_lighted.png " ,
2014-06-28 01:12:21 +02:00
} ,
light_source = LIGHT_MAX - 4 ,
use_texture_alpha = true ,
2015-05-08 20:05:24 +02:00
selection_box = ft_cbox ,
collision_box = ft_cbox ,
2014-08-04 19:04:17 +02:00
groups = { cracky = 3 , oddly_breakable_by_hand = 3 , not_in_creative_inventory = 1 } ,
2014-06-28 01:12:21 +02:00
sounds = default.node_sound_glass_defaults ( ) ,
on_rightclick = function ( pos , node , clicker )
2015-05-08 20:05:24 +02:00
minetest.set_node ( pos , { name = " homedecor:fishtank " , param2 = node.param2 } )
2015-05-08 20:22:00 +02:00
end ,
drop = " homedecor:fishtank " ,
2014-06-26 04:32:43 +02:00
} )
2015-01-23 23:25:00 +01:00
homedecor.register ( " cardboard_box_big " , {
description = S ( " Cardboard box (big) " ) ,
2014-06-26 06:28:21 +02:00
tiles = {
2015-01-23 23:25:00 +01:00
' homedecor_cardbox_big_tb.png ' ,
' homedecor_cardbox_big_tb.png ' ,
' homedecor_cardbox_big_sides.png ' ,
2014-06-26 06:28:21 +02:00
} ,
2015-01-23 23:25:00 +01:00
groups = { snappy = 3 } ,
infotext = S ( " Cardboard box " ) ,
inventory = {
size = 24 ,
} ,
} )
homedecor.register ( " cardboard_box " , {
description = S ( " Cardboard box " ) ,
tiles = {
' homedecor_cardbox_tb.png ' ,
' homedecor_cardbox_tb.png ' ,
' homedecor_cardbox_sides.png ' ,
} ,
2014-06-26 06:28:21 +02:00
node_box = {
type = " fixed " ,
fixed = {
2015-01-23 23:25:00 +01:00
{ - 0.3125 , - 0.5 , - 0.3125 , 0.3125 , 0 , 0.3125 } ,
2014-06-26 06:28:21 +02:00
}
} ,
groups = { snappy = 3 } ,
2015-01-21 19:19:14 +01:00
infotext = S ( " Cardboard box " ) ,
inventory = {
2015-01-23 23:25:00 +01:00
size = 8 ,
2015-01-21 19:19:14 +01:00
} ,
2014-06-26 06:28:21 +02:00
} )
2014-06-25 11:59:34 +02:00
2015-01-24 00:34:02 +01:00
homedecor.register ( " dvd_cd_cabinet " , {
2014-06-26 13:11:58 +02:00
description = " DVD/CD cabinet " ,
2015-04-27 05:23:45 +02:00
mesh = " homedecor_dvd_cabinet.obj " ,
2014-06-26 13:11:58 +02:00
tiles = {
2015-04-27 05:23:45 +02:00
" default_wood.png " ,
2014-06-26 13:11:58 +02:00
" homedecor_dvdcd_cabinet_front.png " ,
2015-04-27 05:23:45 +02:00
" homedecor_dvdcd_cabinet_back.png "
2014-06-26 13:11:58 +02:00
} ,
2015-01-23 17:40:57 +01:00
selection_box = homedecor.nodebox . slab_z ( 0.5 ) ,
2015-04-29 14:14:36 +02:00
groups = { choppy = 2 , oddly_breakable_by_hand = 2 } ,
2014-06-26 13:11:58 +02:00
sounds = default.node_sound_wood_defaults ( ) ,
} )
2015-01-21 19:19:14 +01:00
homedecor.register ( " filing_cabinet " , {
2014-06-26 14:10:10 +02:00
description = S ( " Filing Cabinet " ) ,
2015-04-27 04:25:18 +02:00
mesh = " homedecor_filing_cabinet.obj " ,
2014-06-26 14:10:10 +02:00
tiles = {
2015-05-04 03:18:35 +02:00
homedecor.plain_wood ,
2015-04-27 04:25:18 +02:00
" homedecor_filing_cabinet_front.png " ,
" homedecor_filing_cabinet_bottom.png "
2014-06-26 14:10:10 +02:00
} ,
groups = { snappy = 3 } ,
sounds = default.node_sound_wood_defaults ( ) ,
2015-01-21 19:19:14 +01:00
infotext = S ( " Filing cabinet " ) ,
inventory = {
size = 16 ,
} ,
2014-06-26 14:10:10 +02:00
} )
2014-06-26 14:39:30 +02:00
2015-03-23 06:25:13 +01:00
local pooltable_cbox = {
type = " fixed " ,
fixed = { - 0.5 , - 0.5 , - 0.5 , 0.5 , 0.3125 , 1.5 }
}
2015-01-23 00:01:08 +01:00
homedecor.register ( " pool_table " , {
2015-03-23 06:25:13 +01:00
mesh = " homedecor_pool_table.obj " ,
2014-08-07 20:49:26 +02:00
tiles = {
2015-03-23 06:25:13 +01:00
" homedecor_pool_table_cue.png " ,
" homedecor_pool_table_baize.png " ,
" homedecor_pool_table_pockets.png " ,
" homedecor_pool_table_balls.png " ,
2015-05-04 03:52:52 +02:00
" homedecor_generic_wood_luxury.png^[colorize:#000000:90 "
2014-08-07 20:49:26 +02:00
} ,
description = " Pool Table " ,
inventory_image = " homedecor_pool_table_inv.png " ,
groups = { snappy = 3 } ,
2015-03-23 06:25:13 +01:00
selection_box = pooltable_cbox ,
collision_box = pooltable_cbox ,
expand = { forward = " air " } ,
2015-04-29 14:14:36 +02:00
sounds = default.node_sound_wood_defaults ( ) ,
2014-08-07 20:49:26 +02:00
} )
2015-03-23 06:25:13 +01:00
minetest.register_alias ( " homedecor:pool_table_2 " , " air " )
2014-08-08 21:13:47 +02:00
2015-01-24 00:34:02 +01:00
homedecor.register ( " coatrack_wallmount " , {
2015-05-04 03:18:35 +02:00
tiles = { homedecor.plain_wood } ,
2014-08-14 20:05:41 +02:00
inventory_image = " homedecor_coatrack_wallmount_inv.png " ,
description = " Coatrack (wallmounted) " ,
2015-04-29 14:14:36 +02:00
groups = { snappy = 3 } ,
sounds = default.node_sound_wood_defaults ( ) ,
2014-08-14 20:05:41 +02:00
node_box = {
type = " fixed " ,
fixed = {
{ - 0.375 , 0 , 0.4375 , 0.375 , 0.14 , 0.5 } , -- NodeBox1
{ - 0.3025 , 0.0475 , 0.375 , - 0.26 , 0.09 , 0.4375 } , -- NodeBox2
{ 0.26 , 0.0475 , 0.375 , 0.3025 , 0.09 , 0.4375 } , -- NodeBox3
{ 0.0725 , 0.0475 , 0.375 , 0.115 , 0.09 , 0.4375 } , -- NodeBox4
{ - 0.115 , 0.0475 , 0.375 , - 0.0725 , 0.09 , 0.4375 } , -- NodeBox5
{ 0.24 , 0.025 , 0.352697 , 0.3225 , 0.115 , 0.375 } , -- NodeBox6
{ - 0.3225 , 0.025 , 0.352697 , - 0.24 , 0.115 , 0.375 } , -- NodeBox7
{ - 0.135 , 0.025 , 0.352697 , - 0.0525 , 0.115 , 0.375 } , -- NodeBox8
{ 0.0525 , 0.025 , 0.352697 , 0.135 , 0.115 , 0.375 } , -- NodeBox9
}
} ,
} )
2015-01-24 00:34:02 +01:00
homedecor.register ( " coat_tree " , {
2015-04-16 00:41:22 +02:00
mesh = " homedecor_coatrack.obj " ,
tiles = {
2015-05-04 03:18:35 +02:00
homedecor.plain_wood ,
2015-05-04 03:56:14 +02:00
" homedecor_generic_wood_old.png "
2015-04-16 00:41:22 +02:00
} ,
2014-09-30 19:17:43 +02:00
inventory_image = " homedecor_coatrack_inv.png " ,
2014-08-14 20:05:41 +02:00
description = " Coat tree " ,
2014-09-30 19:17:43 +02:00
groups = { snappy = 3 } ,
2015-04-29 14:14:36 +02:00
sounds = default.node_sound_wood_defaults ( ) ,
2015-04-16 00:41:22 +02:00
expand = { top = " air " } ,
2015-04-29 14:14:36 +02:00
walkable = false ,
2015-04-16 01:10:15 +02:00
selection_box = {
type = " fixed " ,
fixed = { - 0.4 , - 0.5 , - 0.4 , 0.4 , 1.5 , 0.4 }
} ,
2014-08-14 20:05:41 +02:00
} )
2015-01-28 04:07:19 +01:00
local cutlery_cbox = {
type = " fixed " ,
fixed = {
{ - 5 / 16 , - 8 / 16 , - 6 / 16 , 5 / 16 , - 7 / 16 , 2 / 16 } ,
{ - 2 / 16 , - 8 / 16 , 2 / 16 , 2 / 16 , - 4 / 16 , 6 / 16 }
}
}
2015-01-24 00:34:02 +01:00
homedecor.register ( " cutlery_set " , {
2015-01-28 04:07:19 +01:00
drawtype = " mesh " ,
mesh = " homedecor_cutlery_set.obj " ,
tiles = { " homedecor_cutlery_set.png " } ,
2014-08-18 05:40:56 +02:00
inventory_image = " homedecor_cutlery_set_inv.png " ,
description = " Cutlery set " ,
groups = { snappy = 3 } ,
2015-01-28 04:07:19 +01:00
selection_box = cutlery_cbox ,
2015-04-29 14:14:36 +02:00
walkable = false ,
sounds = default.node_sound_glass_defaults ( ) ,
2014-08-18 05:40:56 +02:00
} )
2015-01-02 07:24:07 +01:00
local bottle_cbox = {
type = " fixed " ,
fixed = {
{ - 0.125 , - 0.5 , - 0.125 , 0.125 , 0 , 0.125 }
}
}
2015-01-02 11:40:02 +01:00
local fbottle_cbox = {
type = " fixed " ,
fixed = {
{ - 0.375 , - 0.5 , - 0.3125 , 0.375 , 0 , 0.3125 }
}
}
2015-02-28 10:14:46 +01:00
local bottle_colors = { " brown " , " green " }
for _ , b in ipairs ( bottle_colors ) do
2015-04-28 06:26:54 +02:00
homedecor.register ( " bottle_ " .. b , {
tiles = { " homedecor_bottle_ " .. b .. " .png " } ,
inventory_image = " homedecor_bottle_ " .. b .. " _inv.png " ,
description = " Bottle ( " .. b .. " ) " ,
mesh = " homedecor_bottle.obj " ,
2015-04-29 14:14:36 +02:00
walkable = false ,
2015-04-28 06:26:54 +02:00
groups = { snappy = 3 } ,
sounds = default.node_sound_glass_defaults ( ) ,
selection_box = bottle_cbox
} )
2015-01-02 11:29:42 +01:00
2015-04-28 06:26:54 +02:00
-- 4-bottle sets
2015-01-02 11:29:42 +01:00
2015-04-28 06:26:54 +02:00
homedecor.register ( " 4_bottles_ " .. b , {
tiles = {
" homedecor_bottle_ " .. b .. " .png " ,
" homedecor_bottle_ " .. b .. " .png "
} ,
inventory_image = " homedecor_4_bottles_ " .. b .. " _inv.png " ,
description = " Four " .. b .. " bottles " ,
mesh = " homedecor_4_bottles.obj " ,
2015-04-29 14:14:36 +02:00
walkable = false ,
2015-04-28 06:26:54 +02:00
groups = { snappy = 3 } ,
sounds = default.node_sound_glass_defaults ( ) ,
selection_box = fbottle_cbox
} )
2015-02-28 10:14:46 +01:00
end
2015-01-24 00:34:02 +01:00
homedecor.register ( " 4_bottles_multi " , {
2015-04-28 06:26:54 +02:00
tiles = {
" homedecor_bottle_brown.png " ,
" homedecor_bottle_green.png "
} ,
2015-01-02 11:29:42 +01:00
inventory_image = " homedecor_4_bottles_multi_inv.png " ,
description = " Four misc brown/green bottles " ,
2015-04-28 06:26:54 +02:00
mesh = " homedecor_4_bottles.obj " ,
2015-01-02 11:29:42 +01:00
groups = { snappy = 3 } ,
2015-04-29 14:14:36 +02:00
walkable = false ,
2015-04-09 15:00:29 +02:00
sounds = default.node_sound_glass_defaults ( ) ,
2015-01-02 11:40:02 +01:00
selection_box = fbottle_cbox
2015-01-02 11:29:42 +01:00
} )
2015-01-24 00:34:02 +01:00
homedecor.register ( " dartboard " , {
2014-08-26 14:20:18 +02:00
description = " Dartboard " ,
2014-12-14 02:55:19 +01:00
mesh = " homedecor_dartboard.obj " ,
tiles = { " homedecor_dartboard.png " } ,
inventory_image = " homedecor_dartboard_inv.png " ,
wield_image = " homedecor_dartboard_inv.png " ,
2014-08-26 14:20:18 +02:00
paramtype2 = " wallmounted " ,
walkable = false ,
selection_box = {
type = " wallmounted " ,
} ,
groups = { choppy = 2 , dig_immediate = 2 , attached_node = 1 } ,
legacy_wallmounted = true ,
2015-04-29 14:14:36 +02:00
sounds = default.node_sound_wood_defaults ( ) ,
2014-08-26 14:20:18 +02:00
} )
2015-03-22 06:36:56 +01:00
local piano_cbox = {
type = " fixed " ,
fixed = { - 0.5 , - 0.5 , - 0.125 , 1.5 , 0.5 , 0.5 }
}
2015-03-22 12:17:13 +01:00
homedecor.register ( " piano " , {
2015-03-22 06:36:56 +01:00
mesh = " homedecor_piano.obj " ,
2014-08-26 19:28:47 +02:00
tiles = {
2015-05-04 03:52:52 +02:00
" homedecor_generic_wood_luxury.png^[colorize:#000000:175 " ,
2015-03-22 06:36:56 +01:00
" homedecor_piano_keys.png " ,
2015-04-28 05:48:02 +02:00
" homedecor_generic_metal_brass.png " ,
2014-08-26 19:28:47 +02:00
} ,
inventory_image = " homedecor_piano_inv.png " ,
2014-08-26 19:32:40 +02:00
description = " Piano " ,
2015-03-22 06:36:56 +01:00
groups = { snappy = 3 } ,
selection_box = piano_cbox ,
collision_box = piano_cbox ,
expand = { right = " air " } ,
2015-04-29 14:14:36 +02:00
sounds = default.node_sound_wood_defaults ( ) ,
2014-08-26 19:28:47 +02:00
} )
2015-03-22 12:17:13 +01:00
minetest.register_alias ( " homedecor:piano_left " , " homedecor:piano " )
2015-03-22 06:36:56 +01:00
minetest.register_alias ( " homedecor:piano_right " , " air " )
2014-08-28 14:38:16 +02:00
2015-04-14 22:53:45 +02:00
local tr_cbox = {
type = " fixed " ,
2015-04-14 23:14:02 +02:00
fixed = { - 0.3125 , - 0.5 , - 0.1875 , 0.3125 , 0.125 , 0.1875 }
2015-04-14 22:53:45 +02:00
}
2015-01-24 00:34:02 +01:00
homedecor.register ( " trophy " , {
2015-04-14 22:53:45 +02:00
description = " Trophy " ,
mesh = " homedecor_trophy.obj " ,
2014-09-10 12:13:06 +02:00
tiles = {
2015-04-14 22:53:45 +02:00
" default_wood.png " ,
2015-04-28 05:48:02 +02:00
" homedecor_generic_metal_gold.png "
2014-09-10 12:13:06 +02:00
} ,
2014-09-10 20:01:37 +02:00
inventory_image = " homedecor_trophy_inv.png " ,
2015-04-14 22:53:45 +02:00
groups = { snappy = 3 } ,
2015-04-29 14:14:36 +02:00
walkable = false ,
2015-04-14 22:53:45 +02:00
selection_box = tr_cbox ,
2014-09-10 12:13:06 +02:00
} )
2014-09-10 18:34:09 +02:00
2015-04-15 09:01:48 +02:00
local sb_cbox = {
type = " fixed " ,
fixed = { - 0.4 , - 0.5 , - 0.5 , 0.4 , 0.375 , 0.5 }
}
2015-01-24 00:34:02 +01:00
homedecor.register ( " sportbench " , {
2014-09-10 18:34:09 +02:00
description = " Sport bench " ,
2015-04-15 09:01:48 +02:00
mesh = " homedecor_sport_bench.obj " ,
2014-09-10 18:34:09 +02:00
tiles = {
2015-04-28 05:48:02 +02:00
" homedecor_generic_metal_wrought_iron.png " ,
" homedecor_generic_metal_bright.png " ,
" homedecor_generic_metal_black.png " ,
2015-04-15 09:01:48 +02:00
" wool_black.png "
2014-09-10 18:34:09 +02:00
} ,
2015-04-15 09:04:29 +02:00
inventory_image = " homedecor_sport_bench_inv.png " ,
2014-09-10 18:34:09 +02:00
groups = { snappy = 3 } ,
2015-04-15 09:01:48 +02:00
selection_box = sb_cbox ,
2015-04-29 14:14:36 +02:00
walkable = false ,
sounds = default.node_sound_wood_defaults ( ) ,
2014-09-10 18:34:09 +02:00
} )
2015-03-28 16:22:47 +01:00
local skate_cbox = {
type = " fixed " ,
fixed = { - 0.5 , - 0.5 , - 0.15 , 0.5 , - 0.3 , 0.15 }
}
2015-01-24 00:34:02 +01:00
homedecor.register ( " skateboard " , {
2015-03-28 16:22:47 +01:00
drawtype = " mesh " ,
mesh = " homedecor_skateboard.obj " ,
tiles = { " homedecor_skateboard.png " } ,
2014-09-10 19:49:20 +02:00
inventory_image = " homedecor_skateboard_inv.png " ,
2015-03-28 16:22:47 +01:00
description = " Skateboard " ,
groups = { snappy = 3 } ,
selection_box = skate_cbox ,
2015-04-29 14:14:36 +02:00
walkable = false ,
2015-03-28 16:22:47 +01:00
sounds = default.node_sound_wood_defaults ( ) ,
2014-09-10 19:49:20 +02:00
on_place = minetest.rotate_node
} )
2015-01-24 00:34:02 +01:00
homedecor.register ( " beer_tap " , {
2014-09-18 06:30:07 +02:00
description = " Beer tap " ,
2015-05-09 06:15:07 +02:00
mesh = " homedecor_beer_taps.obj " ,
2014-09-18 06:30:07 +02:00
tiles = {
2015-05-09 06:15:07 +02:00
" homedecor_generic_metal_bright.png " ,
" homedecor_generic_metal_black.png " ,
2014-09-18 06:30:07 +02:00
} ,
inventory_image = " homedecor_beertap_inv.png " ,
groups = { snappy = 3 } ,
2015-04-29 14:14:36 +02:00
walkable = false ,
2014-09-18 06:30:07 +02:00
selection_box = {
type = " fixed " ,
fixed = { - 0.25 , - 0.5 , - 0.4375 , 0.25 , 0.235 , 0 }
2014-09-18 06:35:02 +02:00
} ,
on_punch = function ( pos , node , puncher , pointed_thing )
local wielditem = puncher : get_wielded_item ( )
local inv = puncher : get_inventory ( )
local wieldname = wielditem : get_name ( )
2015-01-20 23:59:50 +01:00
if wieldname == " vessels:drinking_glass " then
2014-09-18 06:35:02 +02:00
if inv : room_for_item ( " main " , " homedecor:beer_mug 1 " ) then
wielditem : take_item ( )
puncher : set_wielded_item ( wielditem )
inv : add_item ( " main " , " homedecor:beer_mug 1 " )
minetest.chat_send_player ( puncher : get_player_name ( ) , " Ahh, a frosty cold beer - look in your inventory for it! " )
else
minetest.chat_send_player ( puncher : get_player_name ( ) , " No room in your inventory to add a beer mug! " )
end
end
end
} )
2015-01-28 06:52:24 +01:00
local beer_cbox = {
type = " fixed " ,
fixed = { - 5 / 32 , - 8 / 16 , - 9 / 32 , 7 / 32 , - 2 / 16 , 1 / 32 }
}
2015-01-24 00:34:02 +01:00
homedecor.register ( " beer_mug " , {
2014-09-18 06:35:02 +02:00
description = " Beer mug " ,
2015-01-28 06:52:24 +01:00
drawtype = " mesh " ,
mesh = " homedecor_beer_mug.obj " ,
tiles = { " homedecor_beer_mug.png " } ,
inventory_image = " homedecor_beer_mug_inv.png " ,
2014-09-18 06:35:02 +02:00
groups = { snappy = 3 , oddly_breakable_by_hand = 3 } ,
2015-04-29 14:14:36 +02:00
walkable = false ,
2014-09-18 06:35:02 +02:00
sounds = default.node_sound_glass_defaults ( ) ,
2015-04-29 14:14:36 +02:00
selection_box = beer_cbox
2014-09-18 06:30:07 +02:00
} )
2015-03-30 09:42:33 +02:00
homedecor.register ( " tool_cabinet " , {
2014-09-18 07:36:23 +02:00
description = " Metal tool cabinet and work table " ,
2015-03-30 09:42:33 +02:00
mesh = " homedecor_tool_cabinet.obj " ,
2014-09-18 07:36:23 +02:00
tiles = {
2015-05-04 00:30:56 +02:00
" homedecor_generic_metal_black.png^[colorize:#ff0000:150 " ,
2015-03-30 09:42:33 +02:00
" homedecor_tool_cabinet_drawers.png " ,
2015-05-04 00:30:56 +02:00
" homedecor_generic_metal_black.png^[colorize:#006000:150 " ,
" homedecor_generic_metal_black.png^[brighten " ,
2015-04-28 05:48:02 +02:00
" homedecor_generic_metal_bright.png " ,
2015-03-30 09:42:33 +02:00
" homedecor_tool_cabinet_misc.png " ,
2014-09-18 07:36:23 +02:00
} ,
inventory_image = " homedecor_tool_cabinet_inv.png " ,
groups = { snappy = 3 } ,
2015-01-23 17:40:57 +01:00
selection_box = homedecor.nodebox . slab_y ( 2 ) ,
2015-03-30 09:42:33 +02:00
expand = { top = " air " } ,
2015-03-23 07:31:24 +01:00
inventory = {
size = 24 ,
}
2014-09-18 07:36:23 +02:00
} )
2015-03-30 09:42:33 +02:00
minetest.register_alias ( " homedecor:tool_cabinet_bottom " , " homedecor:tool_cabinet " )
minetest.register_alias ( " homedecor:tool_cabinet_top " , " air " )
2014-09-18 07:36:23 +02:00
2015-01-24 00:34:02 +01:00
homedecor.register ( " calendar " , {
2014-09-21 11:18:35 +02:00
description = " Calendar " ,
2015-04-16 11:23:08 +02:00
mesh = " homedecor_calendar.obj " ,
2014-09-21 11:18:35 +02:00
tiles = { " homedecor_calendar.png " } ,
2015-04-16 11:23:08 +02:00
inventory_image = " homedecor_calendar_inv.png " ,
wield_image = " homedecor_calendar_inv.png " ,
2014-09-21 11:18:35 +02:00
paramtype2 = " wallmounted " ,
walkable = false ,
selection_box = {
type = " wallmounted " ,
2015-04-16 11:23:08 +02:00
wall_side = { - 8 / 16 , - 8 / 16 , - 4 / 16 , - 5 / 16 , 5 / 16 , 4 / 16 } ,
wall_bottom = { - 4 / 16 , - 8 / 16 , - 8 / 16 , 4 / 16 , - 5 / 16 , 5 / 16 } ,
wall_top = { - 4 / 16 , 5 / 16 , - 8 / 16 , 4 / 16 , 8 / 16 , 5 / 16 }
2014-09-21 11:18:35 +02:00
} ,
2015-04-16 11:23:08 +02:00
groups = { choppy = 2 , attached_node = 1 } ,
2014-09-21 11:18:35 +02:00
legacy_wallmounted = true ,
sounds = default.node_sound_defaults ( ) ,
2015-04-29 14:14:36 +02:00
on_construct = function ( pos )
local meta = minetest.get_meta ( pos )
local date = os.date ( " %Y-%m-%d " ) -- ISO 8601 format
2015-04-30 11:48:15 +02:00
meta : set_string ( " infotext " , " Date (right-click to update): \n " .. date )
end ,
on_rightclick = function ( pos , node , clicker )
local meta = minetest.get_meta ( pos )
local date = os.date ( " %Y-%m-%d " )
meta : set_string ( " infotext " , " Date (right-click to update): \n " .. date )
2015-04-29 14:14:36 +02:00
end
2014-09-21 11:18:35 +02:00
} )
2015-01-01 21:28:49 +01:00
2015-01-02 10:41:01 +01:00
local globe_cbox = {
type = " fixed " ,
fixed = { - 0.4 , - 0.5 , - 0.3 , 0.3 , 0.3 , 0.3 }
}
2015-01-24 00:34:02 +01:00
homedecor.register ( " desk_globe " , {
2015-01-01 21:28:49 +01:00
description = " Desk globe " ,
mesh = " homedecor_desk_globe.obj " ,
2015-04-28 06:12:46 +02:00
tiles = {
" homedecor_generic_wood_red.png " ,
2015-05-04 00:30:56 +02:00
" homedecor_generic_metal_black.png^[brighten " ,
2015-04-28 06:12:46 +02:00
" homedecor_earth.png "
} ,
2015-01-01 21:28:49 +01:00
inventory_image = " homedecor_desk_globe_inv.png " ,
2015-01-02 10:41:01 +01:00
selection_box = globe_cbox ,
collision_box = globe_cbox ,
2015-01-02 06:47:08 +01:00
groups = { choppy = 2 } ,
2015-04-29 14:14:36 +02:00
walkable = false ,
sounds = default.node_sound_wood_defaults ( ) ,
2015-01-01 21:28:49 +01:00
} )
2015-01-23 17:40:57 +01:00
local wine_cbox = homedecor.nodebox . slab_z ( 0.25 )
2015-01-24 00:34:02 +01:00
homedecor.register ( " wine_rack " , {
2015-01-02 06:39:04 +01:00
description = " Wine Rack " ,
mesh = " homedecor_wine_rack.obj " ,
2015-04-27 03:57:56 +02:00
tiles = {
" homedecor_generic_wood_red.png " ,
" homedecor_bottle_brown.png " ,
" homedecor_bottle_brown2.png " ,
" homedecor_bottle_brown3.png " ,
" homedecor_bottle_brown4.png "
} ,
2015-01-02 06:39:04 +01:00
inventory_image = " homedecor_wine_rack_inv.png " ,
2015-01-02 06:47:08 +01:00
groups = { choppy = 2 } ,
2015-01-02 10:39:17 +01:00
selection_box = wine_cbox ,
collision_box = wine_cbox ,
2015-01-02 06:39:04 +01:00
sounds = default.node_sound_defaults ( ) ,
} )
2015-02-14 12:21:27 +01:00
local pframe_cbox = {
type = " fixed " ,
fixed = { - 0.18 , - 0.5 , - 0.08 , 0.18 , - 0.08 , 0.18 }
}
local n = { 1 , 2 }
for _ , i in ipairs ( n ) do
homedecor.register ( " picture_frame " .. i , {
description = S ( " Picture Frame " ) ,
mesh = " homedecor_picture_frame.obj " ,
2015-04-21 23:58:50 +02:00
tiles = {
" homedecor_picture_frame_image " .. i .. " .png " ,
2015-05-04 05:17:11 +02:00
" homedecor_generic_wood_luxury.png^[colorize:#000000:50 " ,
2015-04-21 23:58:50 +02:00
" homedecor_picture_frame_back.png " ,
} ,
2015-02-14 12:21:27 +01:00
inventory_image = " homedecor_picture_frame " .. i .. " _inv.png " ,
wield_image = " homedecor_picture_frame " .. i .. " _inv.png " ,
groups = { snappy = 3 } ,
selection_box = pframe_cbox ,
2015-04-29 14:14:36 +02:00
walkable = false ,
sounds = default.node_sound_glass_defaults ( )
} )
end
2015-05-08 00:45:49 +02:00
local p_cbox = {
type = " fixed " ,
fixed = {
{ - 0.5 , - 0.5 , 0.4375 , 0.5 , 0.5 , 0.5 }
}
}
2015-04-29 14:14:36 +02:00
for i = 1 , 20 do
homedecor.register ( " painting_ " .. i , {
description = " Decorative painting # " .. i ,
2015-05-08 00:45:49 +02:00
mesh = " homedecor_painting.obj " ,
2015-04-29 14:14:36 +02:00
tiles = {
2015-05-08 00:45:49 +02:00
" default_wood.png " ,
" homedecor_blank_canvas.png " ,
2015-04-29 14:14:36 +02:00
" homedecor_painting " .. i .. " .png "
} ,
2015-05-08 00:45:49 +02:00
selection_box = p_cbox ,
walkable = false ,
2015-04-29 14:14:36 +02:00
groups = { snappy = 3 } ,
sounds = default.node_sound_wood_defaults ( ) ,
2015-02-14 12:21:27 +01:00
} )
end
2015-04-21 23:58:50 +02:00
2015-04-27 09:04:22 +02:00
homedecor.banister_materials = {
{ " wood " ,
" wood " ,
" default_wood.png " ,
" default_wood.png " ,
" group:wood " ,
" group:stick " ,
" " ,
" "
} ,
{ " white_dark " ,
" dark topped " ,
2015-05-04 03:18:35 +02:00
homedecor.white_wood ,
homedecor.dark_wood ,
2015-04-27 09:04:22 +02:00
" group:wood " ,
" group:stick " ,
" dye:brown " ,
" dye:white "
} ,
{ " brass " ,
" brass " ,
2015-05-04 03:18:35 +02:00
homedecor.white_wood ,
2015-04-28 05:48:02 +02:00
" homedecor_generic_metal_brass.png " ,
2015-04-27 09:04:22 +02:00
" technic:brass_ingot " ,
" group:stick " ,
" " ,
" dye:white "
} ,
{ " wrought_iron " ,
" wrought iron " ,
2015-04-28 05:48:02 +02:00
" homedecor_generic_metal_wrought_iron.png " ,
" homedecor_generic_metal_wrought_iron.png " ,
2015-04-27 09:04:22 +02:00
" homedecor:pole_wrought_iron " ,
" homedecor:pole_wrought_iron " ,
" " ,
" "
}
}
for _ , side in ipairs ( { " left " , " right " } ) do
for i in ipairs ( homedecor.banister_materials ) do
local name = homedecor.banister_materials [ i ] [ 1 ]
local cbox = {
type = " fixed " ,
fixed = { - 9 / 16 , - 3 / 16 , 5 / 16 , 9 / 16 , 24 / 16 , 8 / 16 }
}
local onplace = nil
groups = { snappy = 3 , not_in_creative_inventory = 1 }
if side == " left " then
onplace = homedecor.place_banister
groups = { snappy = 3 }
end
homedecor.register ( " banister_ " .. name .. " _ " .. side , {
2015-04-27 19:13:10 +02:00
description = S ( " Banister for Stairs ( " .. homedecor.banister_materials [ i ] [ 2 ] .. " , " .. side .. " side) " ) ,
2015-04-27 09:04:22 +02:00
mesh = " homedecor_banister_ " .. side .. " .obj " ,
tiles = {
homedecor.banister_materials [ i ] [ 3 ] ,
homedecor.banister_materials [ i ] [ 4 ]
} ,
2015-04-27 09:23:15 +02:00
inventory_image = " homedecor_banister_ " .. name .. " _inv.png " ,
2015-04-27 09:04:22 +02:00
groups = groups ,
selection_box = cbox ,
collision_box = cbox ,
on_place = onplace ,
drop = " homedecor:banister_ " .. name .. " _left " ,
} )
end
end
2015-05-09 09:17:12 +02:00
homedecor.register ( " spiral_staircase " , {
description = " Spiral Staircase " ,
mesh = " homedecor_spiral_staircase.obj " ,
tiles = {
" homedecor_generic_metal_wrought_iron.png " ,
} ,
selection_box = {
type = " fixed " ,
2015-05-11 08:25:47 +02:00
fixed = { - 1.5 , - 0.5 , - 1.5 , 0.5 , 2.5 , 0.5 }
2015-05-09 09:17:12 +02:00
} ,
node_box = {
type = " fixed " ,
fixed = {
{ - 0.5625 , - 0.5 , - 0.5625 , - 0.4375 , 2.5 , - 0.4375 } , -- NodeBox9
{ - 0.5 , - 0.5 , - 0.5 , 0.5 , - 0.4375 , 0 } , -- NodeBox14
{ - 0.5 , - 0.125 , - 0.5 , - 0.25 , - 0.0625 , 0.5 } , -- NodeBox15
{ - 0.25 , - 0.125 , - 0.0625 , 0 , - 0.0625 , 0.5 } , -- NodeBox16
{ - 1 , 0.25 , - 0.5 , - 0.5 , 0.3125 , 0.5 } , -- NodeBox17
{ - 1.5 , 0.625 , - 0.5 , - 0.5 , 0.6875 , - 0.25 } , -- NodeBox18
{ - 1.5 , 0.625 , - 0.25 , - 0.9375 , 0.6875 , 0 } , -- NodeBox19
{ - 1.5 , 1 , - 1 , - 0.5 , 1.0625 , - 0.5 } , -- NodeBox20
{ - 0.75 , 1.375 , - 1.5 , - 0.5 , 1.4375 , - 0.5 } , -- NodeBox21
{ - 1 , 1.375 , - 1.5 , - 0.75 , 1.4375 , - 1 } , -- NodeBox22
{ - 0.5 , 1.75 , - 1.5 , 0.0625 , 1.8125 , - 0.5 } , -- NodeBox23
{ - 0.5 , 2.125 , - 0.8125 , 0.5 , 2.1875 , - 0.5 } , -- NodeBox24
{ - 0.0625 , 2.125 , - 1.0625 , 0.5 , 2.1875 , - 0.75 } , -- NodeBox25
{ - 1.5 , - 0.125 , 0.4375 , 0.5 , 1.625 , 0.5 } , -- NodeBox26
{ - 1.5 , 1.5625 , - 1.5 , - 1.4375 , 2.875 , 0.5 } , -- NodeBox27
{ - 1.5 , 1.75 , - 1.5 , 0.5 , 3.3125 , - 1.4375 } , -- NodeBox28
{ 0.4375 , - 0.5 , - 0.5 , 0.5 , 0.875 , 0.5 } , -- NodeBox29
{ 0.4375 , 2.125 , - 1.5 , 0.5 , 3.3125 , 0.5 } , -- NodeBox30
}
} ,
groups = { choppy = 2 } ,
sounds = default.node_sound_wood_defaults ( ) ,
2015-05-11 08:25:47 +02:00
after_place_node = function ( pos , placer , itemstack , pointed_thing )
local fdir = minetest.dir_to_facedir ( placer : get_look_dir ( ) )
local leftx = homedecor.fdir_to_left [ fdir + 1 ] [ 1 ]
local leftz = homedecor.fdir_to_left [ fdir + 1 ] [ 2 ]
local revx = - homedecor.fdir_to_fwd [ fdir + 1 ] [ 1 ]
local revz = - homedecor.fdir_to_fwd [ fdir + 1 ] [ 2 ]
local corner1 = { x = pos.x + leftx + revx , y = pos.y , z = pos.z + leftz + revz }
local corner2 = { x = pos.x , y = pos.y + 2 , z = pos.z }
local minp = { x = math.min ( corner1.x , corner2.x ) ,
y = math.min ( corner1.y , corner2.y ) ,
z = math.min ( corner1.z , corner2.z ) }
local maxp = { x = math.max ( corner1.x , corner2.x ) ,
y = math.max ( corner1.y , corner2.y ) ,
z = math.max ( corner1.z , corner2.z ) }
if # minetest.find_nodes_in_area ( minp , maxp , " air " ) < 11 then
minetest.set_node ( pos , { name = " air " } )
minetest.chat_send_player ( placer : get_player_name ( ) , " This object takes up a 2x3x2 block of space (the bottom step goes in the forward-right corner), and some of it is occupied! " )
return true
end
local belownode = minetest.get_node ( { x = pos.x , y = pos.y - 1 , z = pos.z } )
if belownode and belownode.name == " homedecor:spiral_staircase " then
local newpos = { x = pos.x , y = pos.y + 2 , z = pos.z }
minetest.set_node ( pos , { name = " air " } )
minetest.set_node ( newpos , { name = " homedecor:spiral_staircase " , param2 = belownode.param2 } )
end
end
2015-05-09 09:17:12 +02:00
} )
2015-05-11 08:25:47 +02:00
minetest.register_on_placenode ( function ( pos , newnode , placer , oldnode , itemstack , pointed_thing )
local belownode = minetest.get_node ( { x = pos.x , y = pos.y - 1 , z = pos.z } )
if belownode and belownode.name == " homedecor:spiral_staircase " then
minetest.set_node ( pos , { name = " air " } )
local newpos = { x = pos.x , y = pos.y + 2 , z = pos.z }
local checknode = minetest.get_node ( newpos )
if checknode and checknode.name == " air " then
local fdir = minetest.dir_to_facedir ( placer : get_look_dir ( ) )
minetest.set_node ( newpos , { name = newnode.name , param2 = fdir } )
else
return true
end
end
end )
2015-05-11 14:02:57 +02:00
local svm_cbox = {
type = " fixed " ,
fixed = { - 0.5 , - 0.5 , - 0.5 , 0.5 , 1.5 , 0.5 }
}
homedecor.register ( " soda_machine " , {
description = " Soda Vending Machine " ,
mesh = " homedecor_soda_machine.obj " ,
tiles = { " homedecor_soda_machine.png " } ,
groups = { snappy = 3 } ,
selection_box = svm_cbox ,
collision_box = svm_cbox ,
expand = { top = " air " } ,
sounds = default.node_sound_wood_defaults ( ) ,
on_punch = function ( pos , node , puncher , pointed_thing )
local wielditem = puncher : get_wielded_item ( )
local wieldname = wielditem : get_name ( )
local fdir_to_fwd = { { 0 , - 1 } , { - 1 , 0 } , { 0 , 1 } , { 1 , 0 } }
local fdir = node.param2
local pos_drop = { x = pos.x + fdir_to_fwd [ fdir + 1 ] [ 1 ] , y = pos.y , z = pos.z + fdir_to_fwd [ fdir + 1 ] [ 2 ] }
if wieldname == " homedecor:coin " then
wielditem : take_item ( )
puncher : set_wielded_item ( wielditem )
minetest.spawn_item ( pos_drop , " homedecor:soda_can " )
minetest.sound_play ( " insert_coin " , {
pos = pos , max_hear_distance = 5
} )
else
minetest.chat_send_player ( puncher : get_player_name ( ) , " Please insert a coin in the machine. " )
end
end
} )