From 141dad63c5993dde68c460a89389804be660a08d Mon Sep 17 00:00:00 2001 From: tchncs Date: Tue, 29 Mar 2016 12:55:38 +0200 Subject: [PATCH] replaced teleport_potion:potion recipe --- crafting.lua | 19 +++++++++++++++++++ depends.txt | 2 ++ 2 files changed, 21 insertions(+) diff --git a/crafting.lua b/crafting.lua index e6d595b..23b8c28 100644 --- a/crafting.lua +++ b/crafting.lua @@ -211,3 +211,22 @@ minetest.register_craft({ }, }) +-- teleport portal recipe + +minetest.register_craft({ + output = 'teleport_potion:potion 0', + recipe = { + {"", "default:diamond", ""}, + {"default:diamond", "vessels:glass_bottle", "default:diamond"}, + {"", "default:diamond", ""}, + }, +}) + +minetest.register_craft({ + output = 'teleport_potion:potion', + recipe = { + {"mobs_slimes:lava_slime", "farming_plus:rhubarb_item", "mobs_slimes:green_slimeball"}, + {"", "mobs_sandworm:spice", ""}, + {"", "default:mese_crystal", ""}, + }, +}) diff --git a/depends.txt b/depends.txt index 4ad96d5..b8b00c4 100644 --- a/depends.txt +++ b/depends.txt @@ -1 +1,3 @@ default +mobs_slimes ? +mobs_sandworm ?