mirror of
https://github.com/mt-mods/homedecor_modpack.git
synced 2024-12-23 00:20:17 +01:00
Add candles and oil lamp
This commit is contained in:
parent
f1f2db92c5
commit
2e05b5d49c
@ -1195,6 +1195,25 @@ minetest.register_craft({
|
|||||||
|
|
||||||
-- Lighting
|
-- Lighting
|
||||||
|
|
||||||
|
-- candles
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "homedecor:candle 4",
|
||||||
|
recipe = {
|
||||||
|
{"farming:string" },
|
||||||
|
{"homedecor:paraffin" }
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "homedecor:oil_lamp 4",
|
||||||
|
recipe = {
|
||||||
|
{ "", "vessels:glass_bottle", "" },
|
||||||
|
{ "", "farming:string", "" },
|
||||||
|
{ "default:steel_ingot", "homedecor:oil_extract", "default:steel_ingot" }
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
-- yellow
|
-- yellow
|
||||||
|
|
||||||
minetest.register_craft({
|
minetest.register_craft({
|
||||||
|
@ -268,3 +268,54 @@ minetest.register_node("homedecor:plasma_lamp", {
|
|||||||
end
|
end
|
||||||
})
|
})
|
||||||
|
|
||||||
|
minetest.register_node('homedecor:candle', {
|
||||||
|
description = S("Candle"),
|
||||||
|
drawtype = "nodebox",
|
||||||
|
tiles = {
|
||||||
|
'homedecor_candle_top.png',
|
||||||
|
'homedecor_candle_bottom.png',
|
||||||
|
{name="homedecor_candle_sides.png", animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=3.0}},
|
||||||
|
},
|
||||||
|
node_box = {
|
||||||
|
type = "fixed",
|
||||||
|
fixed = {
|
||||||
|
{ -0.125, -0.5, -0.125, 0.125, 0, 0.125 },
|
||||||
|
{ -0.125, 0, 0, 0.125, 0.5, 0 },
|
||||||
|
{ 0, 0, -0.125, 0, 0.5, 0.125 }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
selection_box = {
|
||||||
|
type = "fixed",
|
||||||
|
fixed = {
|
||||||
|
{ -0.1875, -0.5, -0.1875, 0.1875, 0.5, 0.1875 },
|
||||||
|
}
|
||||||
|
},
|
||||||
|
sunlight_propagates = true,
|
||||||
|
paramtype = "light",
|
||||||
|
paramtype2 = "facedir",
|
||||||
|
walkable = true,
|
||||||
|
groups = { snappy = 3 },
|
||||||
|
light_source = LIGHT_MAX-4,
|
||||||
|
sounds = default.node_sound_wood_defaults(),
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_node('homedecor:oil_lamp', {
|
||||||
|
description = S("Oil lamp"),
|
||||||
|
drawtype = "plantlike",
|
||||||
|
tiles = { 'homedecor_oil_lamp.png' },
|
||||||
|
inventory_image = 'homedecor_oil_lamp.png',
|
||||||
|
sunlight_propagates = true,
|
||||||
|
paramtype = "light",
|
||||||
|
paramtype2 = "facedir",
|
||||||
|
walkable = true,
|
||||||
|
selection_box = {
|
||||||
|
type = "fixed",
|
||||||
|
fixed = {
|
||||||
|
{ -0.3, -0.5, -0.3, 0.3, 0.5, 0.3 },
|
||||||
|
}
|
||||||
|
},
|
||||||
|
groups = { snappy = 3 },
|
||||||
|
light_source = LIGHT_MAX-4,
|
||||||
|
sounds = default.node_sound_wood_defaults(),
|
||||||
|
})
|
||||||
|
|
||||||
|
BIN
homedecor/textures/homedecor_candle_bottom.png
Normal file
BIN
homedecor/textures/homedecor_candle_bottom.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 95 B |
BIN
homedecor/textures/homedecor_candle_sides.png
Normal file
BIN
homedecor/textures/homedecor_candle_sides.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.4 KiB |
BIN
homedecor/textures/homedecor_candle_top.png
Normal file
BIN
homedecor/textures/homedecor_candle_top.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 95 B |
BIN
homedecor/textures/homedecor_oil_lamp.png
Normal file
BIN
homedecor/textures/homedecor_oil_lamp.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 460 B |
Loading…
Reference in New Issue
Block a user