From 16b1e549960a46737353b262b39eb1f79b5d4d90 Mon Sep 17 00:00:00 2001 From: Tanmaya Meher Date: Tue, 21 Feb 2017 16:01:35 +0530 Subject: [PATCH] Update crafts.lua --- crafts.lua | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) diff --git a/crafts.lua b/crafts.lua index 8b13789..fc7f87e 100644 --- a/crafts.lua +++ b/crafts.lua @@ -1 +1,51 @@ +--CRAFTING RECIPES FOR SCIFI NODES +--4 basic plastic from 9 homedecor plastic sheet +minetest.register_craft({ + output = "scifi_nodes:white2 4", + recipe = { + {"homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting"}, + {"homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting"}, + {"homedecor:plastic_sheeting", "homedecor:plastic_sheeting", "homedecor:plastic_sheeting"} + } +}) + +--4 plastic wall from 4 plastic +minetest.register_craft({ + output = "scifi_nodes:white 4", + recipe = { + {"scifi_nodes:white2", "scifi_nodes:white2", ""}, + {"scifi_nodes:white2", "scifi_nodes:white2", ""}, + {"", "", ""} + } +}) + +--4 white tile from 4 plastic +minetest.register_craft({ + output = "scifi_nodes:whitetile 4", + recipe = { + {"scifi_nodes:white2", "", "scifi_nodes:white2"}, + {"scifi_nodes:white2", "", "scifi_nodes:white2"}, + {"", "", ""} + } +}) + +--4 white tile2 from 4 plastic +minetest.register_craft({ + output = "scifi_nodes:whitetile 4", + recipe = { + {"scifi_nodes:white2", "", "scifi_nodes:white2"}, + {"", "", ""}, + {"scifi_nodes:white2", "", "scifi_nodes:white2"} + } +}) + +--4 white octagon from 4 plastic +minetest.register_craft({ + output = "scifi_nodes:whitetile 4", + recipe = { + {"", "scifi_nodes:white2", ""}, + {"scifi_nodes:white2", "", "scifi_nodes:white2"}, + {"", "scifi_nodes:white2", ""} + } +})