From a6fc6e04ef8201fb8fdf4b45ce72b8a7165e340e Mon Sep 17 00:00:00 2001 From: Tanmaya Meher Date: Sat, 25 Feb 2017 22:54:06 +0530 Subject: [PATCH] Delete crafts.lua making new one and slowly uploading from my vim and command line because online git editor sucks :P --- crafts.lua | 51 --------------------------------------------------- 1 file changed, 51 deletions(-) delete mode 100644 crafts.lua diff --git a/crafts.lua b/crafts.lua deleted file mode 100644 index 68daf81..0000000 --- a/crafts.lua +++ /dev/null @@ -1,51 +0,0 @@ ---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:tile 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:whiteoct 4", - recipe = { - {"", "scifi_nodes:white2", ""}, - {"scifi_nodes:white2", "", "scifi_nodes:white2"}, - {"", "scifi_nodes:white2", ""} - } -})