diff options
Diffstat (limited to 'nodes_furniture.lua')
-rw-r--r-- | nodes_furniture.lua | 33 |
1 files changed, 30 insertions, 3 deletions
diff --git a/nodes_furniture.lua b/nodes_furniture.lua index 47aeb5c..fa3e24b 100644 --- a/nodes_furniture.lua +++ b/nodes_furniture.lua @@ -862,9 +862,36 @@ minetest.register_craft({ minetest.register_craft({ output = "cottages:shelf", recipe = { - {cottages.craftitem_stick, cottages.craftitem_wood, cottages.craftitem_stick, }, - {cottages.craftitem_stick, cottages.craftitem_wood, cottages.craftitem_stick, }, - {cottages.craftitem_stick, "", cottages.craftitem_stick} + {cottages.craftitem_stick, cottages.craftitem_wood, cottages.craftitem_stick, }, + {cottages.craftitem_stick, cottages.craftitem_chest, cottages.craftitem_stick, }, + {cottages.craftitem_stick, "", cottages.craftitem_stick } + } +}) + +minetest.register_craft({ + output = "cottages:cabinet", + recipe = { + {cottages.craftitem_wood, cottages.craftitem_wood, cottages.craftitem_wood, }, + {cottages.craftitem_wood, cottages.craftitem_chest, cottages.craftitem_wood, }, + {cottages.craftitem_stick, "", cottages.craftitem_stick } + } +}) + +minetest.register_craft({ + output = "cottages:bedside_table", + recipe = { + {cottages.craftitem_wood, cottages.craftitem_wood, cottages.craftitem_wood, }, + {cottages.craftitem_wood, cottages.craftitem_chest, cottages.craftitem_wood, }, + {cottages.craftitem_slab_wood, "", cottages.craftitem_slab_wood } + } +}) + +minetest.register_craft({ + output = "cottages:sturdy_table", + recipe = { + {cottages.craftitem_wood, cottages.craftitem_wood, cottages.craftitem_wood, }, + {cottages.craftitem_stick, "", cottages.craftitem_stick, }, + {cottages.craftitem_stick, "", cottages.craftitem_stick } } }) |