2014-11-09 11:17:41 -08:00
|
|
|
|
2015-09-30 08:24:13 -07:00
|
|
|
-- mushroom soup (Heals 1 heart)
|
|
|
|
minetest.register_craftitem("ethereal:mushroom_soup", {
|
|
|
|
description = "Mushroom Soup",
|
|
|
|
inventory_image = "mushroom_soup.png",
|
|
|
|
on_use = minetest.item_eat(5, "ethereal:bowl"),
|
|
|
|
})
|
2015-05-29 02:25:35 -07:00
|
|
|
|
2015-09-30 08:24:13 -07:00
|
|
|
minetest.register_craft({
|
|
|
|
output = "ethereal:mushroom_soup",
|
|
|
|
recipe = {
|
|
|
|
{"flowers:mushroom_brown"},
|
|
|
|
{"flowers:mushroom_brown"},
|
|
|
|
{"ethereal:bowl"},
|
|
|
|
}
|
|
|
|
})
|
2016-05-17 13:40:05 -07: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"},
|
|
|
|
}
|
|
|
|
})
|