2020-08-04 22:57:45 +02:00
|
|
|
local S = minetest.get_translator("homedecor_gastronomy")
|
2017-01-31 06:34:41 +01:00
|
|
|
|
2015-08-16 16:29:29 +02: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 }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
homedecor.register("cutlery_set", {
|
|
|
|
drawtype = "mesh",
|
|
|
|
mesh = "homedecor_cutlery_set.obj",
|
|
|
|
tiles = { "homedecor_cutlery_set.png" },
|
|
|
|
inventory_image = "homedecor_cutlery_set_inv.png",
|
2017-01-31 06:34:41 +01:00
|
|
|
description = S("Cutlery set"),
|
2022-05-03 21:21:14 +02:00
|
|
|
groups = {snappy=3, dig_stone=3},
|
2015-08-16 16:29:29 +02:00
|
|
|
selection_box = cutlery_cbox,
|
|
|
|
walkable = false,
|
2022-05-03 21:21:14 +02:00
|
|
|
_sound_def = {
|
|
|
|
key = "node_sound_glass_defaults",
|
|
|
|
},
|
2015-08-16 16:29:29 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
local bottle_cbox = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{ -0.125, -0.5, -0.125, 0.125, 0, 0.125}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
local fbottle_cbox = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{ -0.375, -0.5, -0.3125, 0.375, 0, 0.3125 }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-31 06:34:41 +01:00
|
|
|
local bottle_colors = {
|
|
|
|
{ "brown", S("Brown bottle"), S("Four brown bottles") },
|
|
|
|
{ "green", S("Green bottle"), S("Four green bottles") },
|
|
|
|
}
|
2015-08-16 16:29:29 +02:00
|
|
|
|
|
|
|
for _, b in ipairs(bottle_colors) do
|
|
|
|
|
2017-01-31 06:34:41 +01:00
|
|
|
local name, desc, desc4 = unpack(b)
|
|
|
|
|
|
|
|
homedecor.register("bottle_"..name, {
|
|
|
|
tiles = { "homedecor_bottle_"..name..".png" },
|
|
|
|
inventory_image = "homedecor_bottle_"..name.."_inv.png",
|
|
|
|
description = desc,
|
2015-08-16 16:29:29 +02:00
|
|
|
mesh = "homedecor_bottle.obj",
|
|
|
|
walkable = false,
|
2022-05-03 21:21:14 +02:00
|
|
|
groups = {snappy=3, dig_stone=3},
|
|
|
|
_sound_def = {
|
|
|
|
key = "node_sound_glass_defaults",
|
|
|
|
},
|
2015-08-16 16:29:29 +02:00
|
|
|
selection_box = bottle_cbox
|
|
|
|
})
|
|
|
|
|
|
|
|
-- 4-bottle sets
|
|
|
|
|
2017-01-31 06:34:41 +01:00
|
|
|
homedecor.register("4_bottles_"..name, {
|
2015-08-16 16:29:29 +02:00
|
|
|
tiles = {
|
2017-01-31 06:34:41 +01:00
|
|
|
"homedecor_bottle_"..name..".png",
|
|
|
|
"homedecor_bottle_"..name..".png"
|
2015-08-16 16:29:29 +02:00
|
|
|
},
|
2017-01-31 06:34:41 +01:00
|
|
|
inventory_image = "homedecor_4_bottles_"..name.."_inv.png",
|
|
|
|
description = desc4,
|
2015-08-16 16:29:29 +02:00
|
|
|
mesh = "homedecor_4_bottles.obj",
|
|
|
|
walkable = false,
|
2022-05-03 21:21:14 +02:00
|
|
|
groups = {snappy=3, dig_stone=3},
|
|
|
|
_sound_def = {
|
|
|
|
key = "node_sound_glass_defaults",
|
|
|
|
},
|
2015-08-16 16:29:29 +02:00
|
|
|
selection_box = fbottle_cbox
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
homedecor.register("4_bottles_multi", {
|
|
|
|
tiles = {
|
|
|
|
"homedecor_bottle_brown.png",
|
|
|
|
"homedecor_bottle_green.png"
|
|
|
|
},
|
|
|
|
inventory_image = "homedecor_4_bottles_multi_inv.png",
|
2017-01-31 06:34:41 +01:00
|
|
|
description = S("Four misc brown/green bottles"),
|
2015-08-16 16:29:29 +02:00
|
|
|
mesh = "homedecor_4_bottles.obj",
|
2022-05-03 21:21:14 +02:00
|
|
|
groups = {snappy=3, dig_stone=3},
|
2015-08-16 16:29:29 +02:00
|
|
|
walkable = false,
|
2022-05-03 21:21:14 +02:00
|
|
|
_sound_def = {
|
|
|
|
key = "node_sound_glass_defaults",
|
|
|
|
},
|
2015-08-16 16:29:29 +02:00
|
|
|
selection_box = fbottle_cbox
|
|
|
|
})
|
|
|
|
|
2015-08-19 15:06:53 +02:00
|
|
|
local wine_cbox = homedecor.nodebox.slab_z(-0.75)
|
2015-08-16 16:29:29 +02:00
|
|
|
homedecor.register("wine_rack", {
|
2017-01-31 06:34:41 +01:00
|
|
|
description = S("Wine rack"),
|
2015-08-16 16:29:29 +02:00
|
|
|
mesh = "homedecor_wine_rack.obj",
|
|
|
|
tiles = {
|
|
|
|
"homedecor_generic_wood_red.png",
|
|
|
|
"homedecor_bottle_brown.png",
|
|
|
|
"homedecor_bottle_brown2.png",
|
|
|
|
"homedecor_bottle_brown3.png",
|
|
|
|
"homedecor_bottle_brown4.png"
|
|
|
|
},
|
|
|
|
inventory_image = "homedecor_wine_rack_inv.png",
|
2022-05-03 21:21:14 +02:00
|
|
|
groups = {choppy=2, dig_tree=2},
|
2015-08-16 16:29:29 +02:00
|
|
|
selection_box = wine_cbox,
|
|
|
|
collision_box = wine_cbox,
|
2022-05-03 21:21:14 +02:00
|
|
|
_sound_def = {
|
2022-08-12 05:37:26 +02:00
|
|
|
key = "node_sound_default",
|
2022-05-03 21:21:14 +02:00
|
|
|
},
|
2015-08-16 16:29:29 +02:00
|
|
|
})
|
|
|
|
|
2019-04-20 21:49:36 +02:00
|
|
|
-- coffee!
|
|
|
|
-- coffee!
|
|
|
|
-- coffee!
|
|
|
|
|
|
|
|
local cm_cbox = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{ 0, -8/16, 0, 7/16, 3/16, 8/16 },
|
|
|
|
{ -4/16, -8/16, -6/16, -1/16, -5/16, -3/16 }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
homedecor.register("coffee_maker", {
|
|
|
|
mesh = "homedecor_coffeemaker.obj",
|
|
|
|
tiles = {
|
|
|
|
"homedecor_coffeemaker_decanter.png",
|
|
|
|
"homedecor_coffeemaker_cup.png",
|
|
|
|
"homedecor_coffeemaker_case.png",
|
|
|
|
},
|
|
|
|
description = S("Coffee Maker"),
|
|
|
|
inventory_image = "homedecor_coffeemaker_inv.png",
|
|
|
|
walkable = false,
|
2022-05-03 21:21:14 +02:00
|
|
|
groups = {snappy=3, dig_stone=3},
|
2019-04-20 21:49:36 +02:00
|
|
|
selection_box = cm_cbox,
|
|
|
|
node_box = cm_cbox,
|
2020-08-04 22:57:45 +02:00
|
|
|
on_rotate = minetest.get_modpath("screwdriver") and screwdriver.disallow or nil,
|
2022-05-03 21:21:14 +02:00
|
|
|
crafts = {
|
|
|
|
{
|
|
|
|
recipe = {
|
|
|
|
{"basic_materials:plastic_sheet", "bucket:bucket_water", "basic_materials:plastic_sheet"},
|
|
|
|
{"basic_materials:plastic_sheet", "glass_block", "basic_materials:plastic_sheet"},
|
|
|
|
{"basic_materials:plastic_sheet", "basic_materials:heating_element", "basic_materials:plastic_sheet"}
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
2019-04-20 21:49:36 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
homedecor.register("toaster", {
|
|
|
|
description = S("Toaster"),
|
|
|
|
tiles = { "homedecor_toaster_sides.png" },
|
|
|
|
inventory_image = "homedecor_toaster_inv.png",
|
|
|
|
walkable = false,
|
2022-02-07 14:18:17 +01:00
|
|
|
use_texture_alpha = "clip",
|
2022-05-03 21:21:14 +02:00
|
|
|
groups = { snappy=3, dig_stone=3 },
|
2019-04-20 21:49:36 +02:00
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{-0.0625, -0.5, -0.125, 0.125, -0.3125, 0.125}, -- NodeBox1
|
|
|
|
},
|
|
|
|
},
|
|
|
|
on_rightclick = function(pos, node, clicker, itemstack, pointed_thing)
|
|
|
|
local fdir = node.param2
|
|
|
|
minetest.set_node(pos, { name = "homedecor:toaster_loaf", param2 = fdir })
|
|
|
|
minetest.sound_play("toaster", {
|
|
|
|
pos = pos,
|
|
|
|
gain = 1.0,
|
|
|
|
max_hear_distance = 5
|
|
|
|
})
|
|
|
|
return itemstack
|
2022-05-03 21:21:14 +02:00
|
|
|
end,
|
|
|
|
crafts = {
|
|
|
|
{
|
|
|
|
recipe = {
|
|
|
|
{ "steel_ingot", "basic_materials:heating_element", "steel_ingot" },
|
|
|
|
{ "steel_ingot", "basic_materials:heating_element", "steel_ingot" }
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
2019-04-20 21:49:36 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
homedecor.register("toaster_loaf", {
|
|
|
|
tiles = {
|
|
|
|
"homedecor_toaster_toploaf.png",
|
|
|
|
"homedecor_toaster_sides.png",
|
|
|
|
"homedecor_toaster_sides.png",
|
|
|
|
"homedecor_toaster_sides.png",
|
|
|
|
"homedecor_toaster_sides.png",
|
|
|
|
"homedecor_toaster_sides.png"
|
|
|
|
},
|
|
|
|
walkable = false,
|
2022-02-07 14:18:17 +01:00
|
|
|
use_texture_alpha = "clip",
|
2022-05-03 21:21:14 +02:00
|
|
|
groups = { snappy=3, not_in_creative_inventory=1, dig_stone=3 },
|
2019-04-20 21:49:36 +02:00
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{-0.0625, -0.5, -0.125, 0.125, -0.3125, 0.125}, -- NodeBox1
|
|
|
|
{-0.03125, -0.3125, -0.0935, 0, -0.25, 0.0935}, -- NodeBox2
|
|
|
|
{0.0625, -0.3125, -0.0935, 0.0935, -0.25, 0.0935}, -- NodeBox3
|
|
|
|
},
|
|
|
|
},
|
|
|
|
on_rightclick = function(pos, node, clicker, itemstack, pointed_thing)
|
|
|
|
local fdir = node.param2
|
|
|
|
minetest.set_node(pos, { name = "homedecor:toaster", param2 = fdir })
|
|
|
|
return itemstack
|
|
|
|
end,
|
|
|
|
drop = "homedecor:toaster"
|
|
|
|
})
|
|
|
|
|
|
|
|
local fdir_to_steampos = {
|
|
|
|
x = { 0.15, 0.275, -0.15, -0.275 },
|
|
|
|
z = { 0.275, -0.15, -0.275, 0.15 }
|
|
|
|
}
|
|
|
|
|
|
|
|
minetest.register_abm({
|
|
|
|
nodenames = "homedecor:coffee_maker",
|
|
|
|
label = "sfx",
|
|
|
|
interval = 2,
|
|
|
|
chance = 1,
|
|
|
|
action = function(pos, node)
|
|
|
|
local fdir = node.param2
|
|
|
|
if fdir and fdir < 4 then
|
|
|
|
|
|
|
|
local steamx = fdir_to_steampos.x[fdir + 1]
|
|
|
|
local steamz = fdir_to_steampos.z[fdir + 1]
|
|
|
|
|
|
|
|
minetest.add_particlespawner({
|
|
|
|
amount = 1,
|
|
|
|
time = 1,
|
|
|
|
minpos = {x=pos.x - steamx, y=pos.y - 0.35, z=pos.z - steamz},
|
|
|
|
maxpos = {x=pos.x - steamx, y=pos.y - 0.35, z=pos.z - steamz},
|
|
|
|
minvel = {x=-0.003, y=0.01, z=-0.003},
|
|
|
|
maxvel = {x=0.003, y=0.01, z=-0.003},
|
|
|
|
minacc = {x=0.0,y=-0.0,z=-0.0},
|
|
|
|
maxacc = {x=0.0,y=0.003,z=-0.0},
|
|
|
|
minexptime = 2,
|
|
|
|
maxexptime = 5,
|
|
|
|
minsize = 1,
|
|
|
|
maxsize = 1.2,
|
|
|
|
collisiondetection = false,
|
|
|
|
texture = "homedecor_steam.png",
|
|
|
|
})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
})
|
|
|
|
|
|
|
|
-- crafting
|
|
|
|
|
|
|
|
minetest.register_craft( {
|
|
|
|
output = "homedecor:bottle_green",
|
|
|
|
recipe = {
|
2022-05-03 21:21:14 +02:00
|
|
|
{ homedecor.materials["glass_bottle"], homedecor.materials["dye_green"] }
|
2019-04-20 21:49:36 +02:00
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft( {
|
|
|
|
output = "homedecor:bottle_brown",
|
|
|
|
recipe = {
|
2022-05-03 21:21:14 +02:00
|
|
|
{ homedecor.materials["glass_bottle"], homedecor.materials["dye_brown"] }
|
2019-04-20 21:49:36 +02:00
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "shapeless",
|
|
|
|
output = "homedecor:4_bottles_brown",
|
|
|
|
recipe = {
|
|
|
|
"homedecor:bottle_brown",
|
|
|
|
"homedecor:bottle_brown",
|
|
|
|
"homedecor:bottle_brown",
|
|
|
|
"homedecor:bottle_brown"
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "shapeless",
|
|
|
|
output = "homedecor:4_bottles_green",
|
|
|
|
recipe = {
|
|
|
|
"homedecor:bottle_green",
|
|
|
|
"homedecor:bottle_green",
|
|
|
|
"homedecor:bottle_green",
|
|
|
|
"homedecor:bottle_green"
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "shapeless",
|
|
|
|
output = "homedecor:4_bottles_multi",
|
|
|
|
recipe = {
|
|
|
|
"homedecor:bottle_brown",
|
|
|
|
"homedecor:bottle_brown",
|
|
|
|
"homedecor:bottle_green",
|
|
|
|
"homedecor:bottle_green",
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "homedecor:wine_rack",
|
|
|
|
recipe = {
|
|
|
|
{ "homedecor:4_bottles_brown", "group:wood", "homedecor:4_bottles_brown" },
|
|
|
|
{ "homedecor:4_bottles_brown", "group:wood", "homedecor:4_bottles_brown" },
|
|
|
|
{ "homedecor:4_bottles_brown", "group:wood", "homedecor:4_bottles_brown" },
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|