add small mese lamps

master
mbblp 2017-01-21 18:48:58 +01:00
parent e205bc7b83
commit aef8ec4026
7 changed files with 48 additions and 1 deletions

View File

@ -174,6 +174,29 @@ core.register_node("lamps:paper_lamp_small", {
}
})
core.register_node("lamps:mese_lamp_small", {
description = "Small mese Lamp",
tiles = {
"lamps_mese_top_1.png",
"lamps_mese_top_2.png",
"lamps_mese_small_2.png",
"lamps_mese_small.png",
"lamps_mese_small_front.png",
"lamps_mese_small_front.png"
},
groups = {choppy = 3, oddly_breakable_by_hand = 2,},
drawtype = "nodebox",
light_source = 15,
paramtype = "light",
paramtype2 = "facedir",
node_box = {
type = "fixed",
fixed = {
{-0.25, -0.25, 0, 0.25, 0.25, 0.5},
}
}
})
core.register_node("lamps:metal_lantern", {
description = 'Metal Lantern',
tiles = {
@ -194,6 +217,23 @@ core.register_node("lamps:metal_lantern", {
},
})
-- override
--[[core.override_item("default:meselamp", {
tiles = {"lamps_mese.png"},
})
minetest.override_item("default:meselamp", {
tiles = {
{"lamps_mese.png"},
}
})
]]
--crafting
core.register_craft({
output = "lamps:lamp_wood",
recipe = {
@ -226,7 +266,7 @@ if core.get_modpath("advtrains") then
output = "lamps:track_end_lamp_adv",
recipe = {
{"lamps:track_end_lamp"},
}
}
})
end
@ -264,6 +304,13 @@ core.register_craft({
}
})
core.register_craft({
output = "lamps:mese_lamp_small 8",
recipe = {
{"default:meselamp"}
}
})
core.register_craft({
output = "lamps:lamp_steel_wall",
recipe = {

BIN
textures/lamps_mese.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 343 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 332 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 348 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 587 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 585 B