add shape_type and base_material attributes to item definition

This commit is contained in:
Alexander Weber 2017-03-12 21:48:19 +01:00
parent e9c6cef4dd
commit 0f09b6a8f2
5 changed files with 10 additions and 0 deletions

View File

@ -95,6 +95,8 @@ function stairsplus:register_micro(modname, subname, recipeitem, fields)
def.paramtype2 = def.paramtype2 or "facedir"
def.on_place = minetest.rotate_node
def.groups = stairsplus:prepare_groups(fields.groups)
def.base_material = recipeitem
def.shape_type = "micro"
def.description = desc
if fields.drop and not (type(fields.drop) == "table") then
def.drop = modname.. ":micro_" ..fields.drop..alternate

View File

@ -96,6 +96,8 @@ function stairsplus:register_panel(modname, subname, recipeitem, fields)
def.on_place = minetest.rotate_node
def.description = desc
def.groups = stairsplus:prepare_groups(fields.groups)
def.base_material = recipeitem
def.shape_type = "panel"
if fields.drop and not (type(fields.drop) == "table") then
def.drop = modname.. ":panel_" ..fields.drop..alternate
end

View File

@ -96,6 +96,8 @@ function stairsplus:register_slab(modname, subname, recipeitem, fields)
def.paramtype2 = def.paramtype2 or "facedir"
def.on_place = minetest.rotate_node
def.groups = stairsplus:prepare_groups(fields.groups)
def.base_material = recipeitem
def.shape_type = "slab"
if fields.drop and not (type(fields.drop) == "table") then
def.drop = modname.. ":slab_" .. fields.drop .. alternate
end

View File

@ -250,6 +250,8 @@ function stairsplus:register_slope(modname, subname, recipeitem, fields)
def.on_place = minetest.rotate_node
def.description = desc
def.groups = stairsplus:prepare_groups(fields.groups)
def.base_material = recipeitem
def.shape_type = "slope"
if fields.drop and not (type(fields.drop) == "table") then
def.drop = modname.. ":slope_" ..fields.drop..alternate
end

View File

@ -136,6 +136,8 @@ function stairsplus:register_stair(modname, subname, recipeitem, fields)
def.on_place = minetest.rotate_node
def.description = desc
def.groups = stairsplus:prepare_groups(fields.groups)
def.base_material = recipeitem
def.shape_type = "stair"
if fields.drop and not (type(fields.drop) == "table") then
def.drop = modname .. ":stair_" .. fields.drop .. alternate
end