Added bowl and bowl with coals(light source)

This commit is contained in:
sda97ghb 2013-07-29 11:29:21 +06:00
parent 11a255a733
commit 3cb1bcca7c
2 changed files with 68 additions and 4 deletions

View File

@ -281,8 +281,27 @@ for _, mineral in ipairs(decor_minerals) do
sounds = default.node_sound_stone_defaults(),
})
minetest.register_node("decorations:"..mineral[1].."_vase_with_coals", {
description = mineral[2].." Vase With Coals",
minetest.register_node("decorations:"..mineral[1].."_bowl", {
description = mineral[2].." Bowl",
drawtype = "nodebox",
paramtype = "light",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.35, -0.5, -0.4, 0, 0.5},
{-0.5, -0.35, 0.4, 0.5, 0, 0.5},
{-0.5, -0.35, -0.5, 0.5, 0, -0.4},
{0.4, -0.35, -0.5, 0.5, 0, 0.5},
{-0.4, -0.5, -0.4, 0.4, -0.35, 0.4},
},
},
tiles = {"decorations_"..mineral[1]..".png"},
groups = {cracky=3, oddly_breakable_by_hand = 2},
sounds = default.node_sound_stone_defaults(),
})
minetest.register_node("decorations:"..mineral[1].."_bowl_with_coals", {
description = mineral[2].." Bowl With Coals",
drawtype = "nodebox",
paramtype = "light",
light_source = 14,
@ -303,8 +322,6 @@ for _, mineral in ipairs(decor_minerals) do
sounds = default.node_sound_stone_defaults(),
})
minetest.register_craft({
output = "decorations:"..mineral[1].."_casket",
recipe = {
@ -385,6 +402,53 @@ for _, mineral in ipairs(decor_minerals) do
{"","minerals:"..mineral[1],""},
}
})
minetest.register_craft({
output = "decorations:"..mineral[1].."_bowl",
recipe = {
{"minerals:"..mineral[1],"","minerals:"..mineral[1]},
{"","minerals:"..mineral[1],""},
}
})
minetest.register_craft({
output = "decorations:"..mineral[1].."_bowl_with_coals",
recipe = {
{"minerals:charcoal"},
{"decorations:"..mineral[1].."_bowl"},
}
})
minetest.register_craft({
output = "decorations:"..mineral[1].."_bowl_with_coals",
recipe = {
{"minerals:charcoal"},
{"decorations:"..mineral[1].."_bowl"},
}
})
minetest.register_craft({
output = "decorations:"..mineral[1].."_bowl_with_coals",
recipe = {
{"minerals:bituminous_coal"},
{"decorations:"..mineral[1].."_bowl"},
}
})
minetest.register_craft({
output = "decorations:"..mineral[1].."_bowl_with_coals",
recipe = {
{"minerals:lignite"},
{"decorations:"..mineral[1].."_bowl"},
}
})
minetest.register_craft({
output = "decorations:"..mineral[1].."_bowl_with_coals",
recipe = {
{"minerals:anthracite"},
{"decorations:"..mineral[1].."_bowl"},
}
})
end
for i, tree_name in ipairs(realtest.registered_trees_list) do

Binary file not shown.

Before

Width:  |  Height:  |  Size: 738 B

After

Width:  |  Height:  |  Size: 1.9 KiB