diff options
author | h-v-smacker <hans-von-smacker+github@gmail.com> | 2018-11-21 18:20:29 +0300 |
---|---|---|
committer | h-v-smacker <hans-von-smacker+github@gmail.com> | 2018-11-21 18:20:29 +0300 |
commit | 77446a2666c97f1b15de6220254aad8301109a75 (patch) | |
tree | c31c9230af9315558ea7bc12b239099a90b8b68b /nodes_furniture.lua | |
parent | b8af4fa46c4d43010feef0260a567a8d1fac1a5a (diff) |
recipes
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 } } }) |