forked from VoxeLibre/VoxeLibre
Add crafting recipe for dragon's breath
This commit is contained in:
parent
ed6604ee56
commit
3deac5a1c6
|
@ -352,7 +352,6 @@ local awkward_table = {
|
||||||
["mcl_mobitems:ghast_tear"] = "mcl_potions:regeneration",
|
["mcl_mobitems:ghast_tear"] = "mcl_potions:regeneration",
|
||||||
["mcl_mobitems:spider_eye"] = "mcl_potions:poison",
|
["mcl_mobitems:spider_eye"] = "mcl_potions:poison",
|
||||||
["mcl_mobitems:rabbit_foot"] = "mcl_potions:leaping",
|
["mcl_mobitems:rabbit_foot"] = "mcl_potions:leaping",
|
||||||
["mcl_end:chorus_flower"] = "mcl_potions:dragon_breath", -- temporary until dragon's breath is obtainable
|
|
||||||
}
|
}
|
||||||
|
|
||||||
local output_table = {
|
local output_table = {
|
||||||
|
|
|
@ -116,3 +116,11 @@ minetest.register_craft({
|
||||||
output = "mcl_core:gold_ingot 9",
|
output = "mcl_core:gold_ingot 9",
|
||||||
recipe = {{ "mcl_core:emerald" }},
|
recipe = {{ "mcl_core:emerald" }},
|
||||||
})
|
})
|
||||||
|
|
||||||
|
minetest.register_craft({
|
||||||
|
output = "mcl_potions:dragon_breath 3",
|
||||||
|
recipe = {
|
||||||
|
{"","mcl_end:chorus_flower",""},
|
||||||
|
{"mcl_potions:glass_bottle","mcl_potions:glass_bottle","mcl_potions:glass_bottle"},
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
Loading…
Reference in New Issue