From cd62f29bb24233f9d4f1c449936d770839127fe2 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Fri, 10 Feb 2017 16:38:41 +0100 Subject: [PATCH] Add nether helper recipes --- mods/mcl_temp_helper_recipes/init.lua | 33 +++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/mods/mcl_temp_helper_recipes/init.lua b/mods/mcl_temp_helper_recipes/init.lua index 98e9e7768..2c499a31c 100644 --- a/mods/mcl_temp_helper_recipes/init.lua +++ b/mods/mcl_temp_helper_recipes/init.lua @@ -137,3 +137,36 @@ minetest.register_craft({ {"group:sand", "group:sand", "group:sand"}, } }) + +minetest.register_craft({ + output = "mcl_nether:nether_wart_item", + recipe = { + {"mcl_nether:soul_sand", "mcl_core:obsidian", "mcl_nether:soul_sand"}, + {"mcl_core:obsidian", "mcl_core:goldblock", "mcl_core:obsidian"}, + {"mcl_nether:soul_sand", "mcl_core:obsidian", "mcl_nether:soul_sand"}, + } +}) + +minetest.register_craft({ + type = "shapeless", + output = "mcl_nether:netherrack", + recipe = {"mcl_core:stone", "group:redsandstone"}, +}) + +minetest.register_craft({ + output = "mcl_nether:glowstone_dust", + recipe = { + {"mcl_torches:torch", "mcl_torches:torch", "mcl_torches:torch",}, + {"mcl_torches:torch", "mcl_core:coalblock", "mcl_torches:torch",}, + {"mcl_torches:torch", "mcl_torches:torch", "mcl_torches:torch",}, + }, +}) + +minetest.register_craft({ + output = "mcl_nether:soul_sand", + recipe = { + {"mcl_core:redsand","mcl_nether:netherrack","mcl_core:redsand"}, + {"mcl_nether:netherrack","mcl_core:redsand","mcl_nether:netherrack"}, + {"mcl_core:redsand","mcl_nether:netherrack","mcl_core:redsand"}, + }, +})