aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOch Noe <och_noe@forksworld.de>2020-07-02 06:41:06 +0200
committerOch Noe <och_noe@forksworld.de>2020-07-02 06:41:06 +0200
commit043169f7ba083f9ade99045db3988d08896d2f8a (patch)
tree0f30839b84e91ed17092b716f70edb1f5bd7c4f4
parentb0c74bb73df42e2a561fd59216880c57b060f737 (diff)
downloadmoreblocks-043169f7ba083f9ade99045db3988d08896d2f8a.tar.gz
moreblocks-043169f7ba083f9ade99045db3988d08896d2f8a.tar.bz2
moreblocks-043169f7ba083f9ade99045db3988d08896d2f8a.zip
recipes for the three permafrost nodes from default
-rw-r--r--crafting.lua71
1 files changed, 71 insertions, 0 deletions
diff --git a/crafting.lua b/crafting.lua
index 9e6f3b0..43800af 100644
--- a/crafting.lua
+++ b/crafting.lua
@@ -843,3 +843,74 @@ minetest.register_craft({
+
+
+-- -------------------------------------------------
+-- -------------------------------------------------
+-- (hopefully) temporary addition: permafrost nodes
+-- -------------------------------------------------
+-- 2020-07-02 Och Noe
+-- -------------------------------------------------
+-- -------------------------------------------------
+
+-- permafrost
+
+minetest.register_craft({
+ output = "default:permafrost 2",
+ recipe = {
+ {"default:snowblock","",""},
+ {"default:dirt","",""},
+ {"","",""},
+ },
+ })
+
+minetest.register_craft({
+ output = "default:permafrost 6",
+ recipe = {
+ {"default:ice","",""},
+ {"default:dirt","default:dirt","default:dirt",},
+ {"","",""},
+ },
+ })
+
+
+-- permafrost with stones
+
+minetest.register_craft({
+ output = "default:permafrost_with_stones 2",
+ recipe = {
+ {"default:snowblock","",""},
+ {"default:gravel","",""},
+ {"","",""},
+ },
+ })
+
+minetest.register_craft({
+ output = "default:permafrost_with_stones 6",
+ recipe = {
+ {"default:ice","",""},
+ {"default:gravel","default:gravel","default:gravel",},
+ {"","",""},
+ },
+ })
+
+
+-- permafrost with moss
+
+minetest.register_craft({
+ output = "default:permafrost_with_moss 2",
+ recipe = {
+ {"default:snowblock","",""},
+ {"default:dirt_with_grass","",""},
+ {"","",""},
+ },
+ })
+
+minetest.register_craft({
+ output = "default:permafrost_with_moss 6",
+ recipe = {
+ {"default:ice","",""},
+ {"default:dirt_with_grass","default:dirt_with_grass","default:dirt_with_grass"},
+ {"","",""},
+ },
+ })