2014-11-09 22:17:41 +03:00
|
|
|
|
2016-06-09 17:08:34 +03:00
|
|
|
local S = ethereal.intllib
|
|
|
|
|
2015-09-30 18:24:13 +03:00
|
|
|
-- mushroom soup (Heals 1 heart)
|
|
|
|
minetest.register_craftitem("ethereal:mushroom_soup", {
|
2016-06-09 17:08:34 +03:00
|
|
|
description = S("Mushroom Soup"),
|
2015-09-30 18:24:13 +03:00
|
|
|
inventory_image = "mushroom_soup.png",
|
|
|
|
on_use = minetest.item_eat(5, "ethereal:bowl"),
|
|
|
|
})
|
2015-05-29 12:25:35 +03:00
|
|
|
|
2015-09-30 18:24:13 +03:00
|
|
|
minetest.register_craft({
|
|
|
|
output = "ethereal:mushroom_soup",
|
|
|
|
recipe = {
|
|
|
|
{"flowers:mushroom_brown"},
|
|
|
|
{"flowers:mushroom_brown"},
|
2018-03-12 21:40:36 +03:00
|
|
|
{"group:food_bowl"},
|
2015-09-30 18:24:13 +03:00
|
|
|
}
|
|
|
|
})
|
2016-05-17 23:40:05 +03:00
|
|
|
|
|
|
|
-- 4x red mushrooms make mushroom block
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "ethereal:mushroom",
|
|
|
|
recipe = {
|
|
|
|
{"flowers:mushroom_red", "flowers:mushroom_red"},
|
|
|
|
{"flowers:mushroom_red", "flowers:mushroom_red"},
|
|
|
|
}
|
|
|
|
})
|