Various changes
Recipe changes:
Brass and wrought iron poles, table legs, and fences/railings were too
expensive in practice. Increased recipe outputs.
Small square glass table now comes from one small round table (instead of
three-to-two). Large square glass comes from one small square insted of two. Small round, small square, and large wooden tables follow the same pattern.
All glass tables can be recycled back into glass blocks via the Vessels mod's
recipes. All are 3:1 with glass fragments (and thus, 3:1 with glass blocks),
so there's no glass wasted.
All wooden tables can be crafted into sticks by putting three of a given item
onto the crafting grid. Any such craft yields 4 sticks, so there's no waste.
Other changes:
3d-ified nightstands, improved their textures somewhat.
New nodes:
* Added working oven (really just a furnace with new textures)
* Added mini-fridge that stores 24 slots
* Added kitchen cabinet that stores 24 slots
* Added half-size kitchen cabinet that stores 12 slots (6x2)
* Added kitchen sink with under-sink cabinet that stores 16 slots.
* Added slab-sized and half-slab-sized glowlights (e.g. ceiling fixtures)
* Added curtains in 6 colors: red, green, blue, purple, pink, white
Notes:
This mod now requires Moreblocks for some recipes - namely fridge and oven.
2012-09-30 07:51:59 +02:00
|
|
|
-- This file supplies Kitchen cabinets and kitchen sink
|
|
|
|
|
2013-10-22 02:31:54 +02:00
|
|
|
local S = homedecor.gettext
|
2013-03-05 08:18:56 +01:00
|
|
|
|
2014-06-25 09:33:11 +02:00
|
|
|
local counter_materials = { "", "granite", "marble", "steel" }
|
|
|
|
|
|
|
|
for _, mat in ipairs(counter_materials) do
|
|
|
|
|
|
|
|
local desc = S("Kitchen Cabinet")
|
|
|
|
local material = ""
|
|
|
|
|
|
|
|
if mat ~= "" then
|
|
|
|
desc = S("Kitchen Cabinet ("..mat.." top)")
|
|
|
|
material = "_"..mat
|
|
|
|
end
|
|
|
|
|
2015-01-21 19:19:14 +01:00
|
|
|
homedecor.register("kitchen_cabinet"..material, {
|
2014-06-25 09:33:11 +02:00
|
|
|
description = desc,
|
|
|
|
tiles = { 'homedecor_kitchen_cabinet_top'..material..'.png',
|
|
|
|
'homedecor_kitchen_cabinet_bottom.png',
|
|
|
|
'homedecor_kitchen_cabinet_sides.png',
|
|
|
|
'homedecor_kitchen_cabinet_sides.png',
|
|
|
|
'homedecor_kitchen_cabinet_sides.png',
|
|
|
|
'homedecor_kitchen_cabinet_front.png'},
|
|
|
|
groups = { snappy = 3 },
|
|
|
|
sounds = default.node_sound_wood_defaults(),
|
2015-01-21 19:19:14 +01:00
|
|
|
infotext=S("Kitchen Cabinet"),
|
|
|
|
inventory = {
|
|
|
|
size=24,
|
|
|
|
},
|
2014-06-25 09:33:11 +02:00
|
|
|
})
|
|
|
|
end
|
Various changes
Recipe changes:
Brass and wrought iron poles, table legs, and fences/railings were too
expensive in practice. Increased recipe outputs.
Small square glass table now comes from one small round table (instead of
three-to-two). Large square glass comes from one small square insted of two. Small round, small square, and large wooden tables follow the same pattern.
All glass tables can be recycled back into glass blocks via the Vessels mod's
recipes. All are 3:1 with glass fragments (and thus, 3:1 with glass blocks),
so there's no glass wasted.
All wooden tables can be crafted into sticks by putting three of a given item
onto the crafting grid. Any such craft yields 4 sticks, so there's no waste.
Other changes:
3d-ified nightstands, improved their textures somewhat.
New nodes:
* Added working oven (really just a furnace with new textures)
* Added mini-fridge that stores 24 slots
* Added kitchen cabinet that stores 24 slots
* Added half-size kitchen cabinet that stores 12 slots (6x2)
* Added kitchen sink with under-sink cabinet that stores 16 slots.
* Added slab-sized and half-slab-sized glowlights (e.g. ceiling fixtures)
* Added curtains in 6 colors: red, green, blue, purple, pink, white
Notes:
This mod now requires Moreblocks for some recipes - namely fridge and oven.
2012-09-30 07:51:59 +02:00
|
|
|
|
2015-01-23 17:40:57 +01:00
|
|
|
local kitchen_cabinet_half_box = homedecor.nodebox.slab_y(0.5, 0.5)
|
2015-01-21 19:19:14 +01:00
|
|
|
homedecor.register("kitchen_cabinet_half", {
|
2014-03-25 14:16:47 +01:00
|
|
|
description = S('Half-height Kitchen Cabinet (on ceiling)'),
|
Various changes
Recipe changes:
Brass and wrought iron poles, table legs, and fences/railings were too
expensive in practice. Increased recipe outputs.
Small square glass table now comes from one small round table (instead of
three-to-two). Large square glass comes from one small square insted of two. Small round, small square, and large wooden tables follow the same pattern.
All glass tables can be recycled back into glass blocks via the Vessels mod's
recipes. All are 3:1 with glass fragments (and thus, 3:1 with glass blocks),
so there's no glass wasted.
All wooden tables can be crafted into sticks by putting three of a given item
onto the crafting grid. Any such craft yields 4 sticks, so there's no waste.
Other changes:
3d-ified nightstands, improved their textures somewhat.
New nodes:
* Added working oven (really just a furnace with new textures)
* Added mini-fridge that stores 24 slots
* Added kitchen cabinet that stores 24 slots
* Added half-size kitchen cabinet that stores 12 slots (6x2)
* Added kitchen sink with under-sink cabinet that stores 16 slots.
* Added slab-sized and half-slab-sized glowlights (e.g. ceiling fixtures)
* Added curtains in 6 colors: red, green, blue, purple, pink, white
Notes:
This mod now requires Moreblocks for some recipes - namely fridge and oven.
2012-09-30 07:51:59 +02:00
|
|
|
tiles = { 'homedecor_kitchen_cabinet_sides.png',
|
|
|
|
'homedecor_kitchen_cabinet_bottom.png',
|
|
|
|
'homedecor_kitchen_cabinet_sides.png',
|
|
|
|
'homedecor_kitchen_cabinet_sides.png',
|
|
|
|
'homedecor_kitchen_cabinet_sides.png',
|
|
|
|
'homedecor_kitchen_cabinet_front_half.png'},
|
2015-01-23 22:14:00 +01:00
|
|
|
selection_box = kitchen_cabinet_half_box,
|
|
|
|
node_box = kitchen_cabinet_half_box,
|
Various changes
Recipe changes:
Brass and wrought iron poles, table legs, and fences/railings were too
expensive in practice. Increased recipe outputs.
Small square glass table now comes from one small round table (instead of
three-to-two). Large square glass comes from one small square insted of two. Small round, small square, and large wooden tables follow the same pattern.
All glass tables can be recycled back into glass blocks via the Vessels mod's
recipes. All are 3:1 with glass fragments (and thus, 3:1 with glass blocks),
so there's no glass wasted.
All wooden tables can be crafted into sticks by putting three of a given item
onto the crafting grid. Any such craft yields 4 sticks, so there's no waste.
Other changes:
3d-ified nightstands, improved their textures somewhat.
New nodes:
* Added working oven (really just a furnace with new textures)
* Added mini-fridge that stores 24 slots
* Added kitchen cabinet that stores 24 slots
* Added half-size kitchen cabinet that stores 12 slots (6x2)
* Added kitchen sink with under-sink cabinet that stores 16 slots.
* Added slab-sized and half-slab-sized glowlights (e.g. ceiling fixtures)
* Added curtains in 6 colors: red, green, blue, purple, pink, white
Notes:
This mod now requires Moreblocks for some recipes - namely fridge and oven.
2012-09-30 07:51:59 +02:00
|
|
|
groups = { snappy = 3 },
|
2013-03-17 00:46:30 +01:00
|
|
|
sounds = default.node_sound_wood_defaults(),
|
2015-01-21 19:19:14 +01:00
|
|
|
infotext=S("Kitchen Cabinet"),
|
|
|
|
inventory = {
|
|
|
|
size=12,
|
|
|
|
},
|
Various changes
Recipe changes:
Brass and wrought iron poles, table legs, and fences/railings were too
expensive in practice. Increased recipe outputs.
Small square glass table now comes from one small round table (instead of
three-to-two). Large square glass comes from one small square insted of two. Small round, small square, and large wooden tables follow the same pattern.
All glass tables can be recycled back into glass blocks via the Vessels mod's
recipes. All are 3:1 with glass fragments (and thus, 3:1 with glass blocks),
so there's no glass wasted.
All wooden tables can be crafted into sticks by putting three of a given item
onto the crafting grid. Any such craft yields 4 sticks, so there's no waste.
Other changes:
3d-ified nightstands, improved their textures somewhat.
New nodes:
* Added working oven (really just a furnace with new textures)
* Added mini-fridge that stores 24 slots
* Added kitchen cabinet that stores 24 slots
* Added half-size kitchen cabinet that stores 12 slots (6x2)
* Added kitchen sink with under-sink cabinet that stores 16 slots.
* Added slab-sized and half-slab-sized glowlights (e.g. ceiling fixtures)
* Added curtains in 6 colors: red, green, blue, purple, pink, white
Notes:
This mod now requires Moreblocks for some recipes - namely fridge and oven.
2012-09-30 07:51:59 +02:00
|
|
|
})
|
|
|
|
|
2015-01-21 19:19:14 +01:00
|
|
|
homedecor.register("kitchen_cabinet_with_sink", {
|
2013-03-05 08:18:56 +01:00
|
|
|
description = S("Kitchen Cabinet with sink"),
|
2014-12-14 01:26:38 +01:00
|
|
|
mesh = "homedecor_kitchen_sink.obj",
|
|
|
|
tiles = { "homedecor_kitchen_sink.png" },
|
Various changes
Recipe changes:
Brass and wrought iron poles, table legs, and fences/railings were too
expensive in practice. Increased recipe outputs.
Small square glass table now comes from one small round table (instead of
three-to-two). Large square glass comes from one small square insted of two. Small round, small square, and large wooden tables follow the same pattern.
All glass tables can be recycled back into glass blocks via the Vessels mod's
recipes. All are 3:1 with glass fragments (and thus, 3:1 with glass blocks),
so there's no glass wasted.
All wooden tables can be crafted into sticks by putting three of a given item
onto the crafting grid. Any such craft yields 4 sticks, so there's no waste.
Other changes:
3d-ified nightstands, improved their textures somewhat.
New nodes:
* Added working oven (really just a furnace with new textures)
* Added mini-fridge that stores 24 slots
* Added kitchen cabinet that stores 24 slots
* Added half-size kitchen cabinet that stores 12 slots (6x2)
* Added kitchen sink with under-sink cabinet that stores 16 slots.
* Added slab-sized and half-slab-sized glowlights (e.g. ceiling fixtures)
* Added curtains in 6 colors: red, green, blue, purple, pink, white
Notes:
This mod now requires Moreblocks for some recipes - namely fridge and oven.
2012-09-30 07:51:59 +02:00
|
|
|
groups = { snappy = 3 },
|
2013-03-17 00:46:30 +01:00
|
|
|
sounds = default.node_sound_wood_defaults(),
|
2015-01-21 19:19:14 +01:00
|
|
|
infotext=S("Under-sink cabinet"),
|
|
|
|
inventory = {
|
|
|
|
size=16,
|
|
|
|
},
|
Various changes
Recipe changes:
Brass and wrought iron poles, table legs, and fences/railings were too
expensive in practice. Increased recipe outputs.
Small square glass table now comes from one small round table (instead of
three-to-two). Large square glass comes from one small square insted of two. Small round, small square, and large wooden tables follow the same pattern.
All glass tables can be recycled back into glass blocks via the Vessels mod's
recipes. All are 3:1 with glass fragments (and thus, 3:1 with glass blocks),
so there's no glass wasted.
All wooden tables can be crafted into sticks by putting three of a given item
onto the crafting grid. Any such craft yields 4 sticks, so there's no waste.
Other changes:
3d-ified nightstands, improved their textures somewhat.
New nodes:
* Added working oven (really just a furnace with new textures)
* Added mini-fridge that stores 24 slots
* Added kitchen cabinet that stores 24 slots
* Added half-size kitchen cabinet that stores 12 slots (6x2)
* Added kitchen sink with under-sink cabinet that stores 16 slots.
* Added slab-sized and half-slab-sized glowlights (e.g. ceiling fixtures)
* Added curtains in 6 colors: red, green, blue, purple, pink, white
Notes:
This mod now requires Moreblocks for some recipes - namely fridge and oven.
2012-09-30 07:51:59 +02:00
|
|
|
})
|
2015-01-23 22:48:40 +01:00
|
|
|
|
2015-01-24 00:34:02 +01:00
|
|
|
homedecor.register("copper_pans", {
|
2015-01-23 22:48:40 +01:00
|
|
|
description = "Copper pans",
|
|
|
|
tiles = {
|
|
|
|
"homedecor_polished_copper.png"
|
|
|
|
},
|
|
|
|
inventory_image = "homedecor_copper_pans_inv.png",
|
|
|
|
groups = { snappy=3 },
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{-0.375, -0.5, -0.1875, -0.0625, -0.48, 0.125}, -- NodeBox1
|
|
|
|
{-0.375, -0.48, -0.1875, -0.36, -0.3125, 0.125}, -- NodeBox2
|
|
|
|
{-0.0775, -0.48, -0.1875, -0.0625, -0.3125, 0.125}, -- NodeBox3
|
|
|
|
{-0.375, -0.48, 0.11, -0.0625, -0.3125, 0.125}, -- NodeBox4
|
|
|
|
{-0.375, -0.48, -0.1875, -0.0625, -0.3125, -0.1725}, -- NodeBox5
|
|
|
|
{-0.25, -0.36, -0.5, -0.1875, -0.33, -0.1875}, -- NodeBox6
|
|
|
|
{0.0625, -0.5, 0, 0.375, -0.48, 0.3125}, -- NodeBox7
|
|
|
|
{0.0625, -0.48, 0, 0.0775, -0.3125, 0.3125}, -- NodeBox8
|
|
|
|
{0.36, -0.48, 0, 0.375, -0.3125, 0.3125}, -- NodeBox9
|
|
|
|
{0.0625, -0.48, 0, 0.375, -0.3125, 0.0175}, -- NodeBox10
|
|
|
|
{0.0625, -0.48, 0.295, 0.375, -0.3125, 0.3125}, -- NodeBox11
|
|
|
|
{0.1875, -0.36, -0.3125, 0.25, -0.33, 0}, -- NodeBox12
|
|
|
|
}
|
|
|
|
},
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = { -0.375, -0.5, -0.5, 0.375, -0.3125, 0.3125 }
|
|
|
|
},
|
|
|
|
on_place = minetest.rotate_node
|
|
|
|
})
|
|
|
|
|
2015-01-24 00:34:02 +01:00
|
|
|
homedecor.register("kitchen_faucet", {
|
2015-01-23 22:48:40 +01:00
|
|
|
tiles = { "homedecor_bright_metal.png" },
|
|
|
|
inventory_image = "homedecor_kitchen_faucet_inv.png",
|
|
|
|
description = "Kitchen Faucet",
|
|
|
|
groups = {snappy=3},
|
|
|
|
node_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {
|
|
|
|
{0, -0.5, 0.375, 0.0625, -0.1875, 0.4375}, -- NodeBox1
|
|
|
|
{0, -0.1875, 0.35, 0.0625, -0.15, 0.4375}, -- NodeBox2
|
|
|
|
{0, -0.15, 0.32, 0.0625, -0.11, 0.41}, -- NodeBox3
|
|
|
|
{0.007, -0.12, 0.17, 0.055, -0.11, 0.1285}, -- NodeBox4
|
|
|
|
{0, -0.11, 0.125, 0.0625, -0.07, 0.37}, -- NodeBox5
|
|
|
|
{-0.05, -0.48, 0.385, 0.115, -0.455, 0.43}, -- NodeBox6
|
|
|
|
{-0.05, -0.49, 0.395, 0.115, -0.445, 0.42}, -- NodeBox7
|
|
|
|
}
|
|
|
|
},
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = { -0.055, -0.5, 0.125, 0.12, -0.065, 0.4375 }
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
2015-01-24 00:34:02 +01:00
|
|
|
homedecor.register("paper_towel", {
|
2015-01-23 22:48:40 +01:00
|
|
|
mesh = "homedecor_paper_towel.obj",
|
|
|
|
tiles = { "homedecor_paper_towel.png" },
|
|
|
|
inventory_image = "homedecor_paper_towel_inv.png",
|
|
|
|
description = "Paper towels",
|
|
|
|
groups = { snappy=3 },
|
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = { -0.4375, 0.125, 0.0625, 0.4375, 0.4375, 0.5 }
|
|
|
|
},
|
|
|
|
collision_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = { -0.4375, 0.125, 0.0625, 0.4375, 0.4375, 0.5 }
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|