Integrate goblins and mobs.

This commit is contained in:
Duane Robertson 2016-04-25 22:15:21 -05:00
parent 6097e844cf
commit 182e32d231
68 changed files with 14500 additions and 13 deletions

View file

@ -62,6 +62,27 @@ minetest.register_craft({
}
})
minetest.register_craft({
output = "mobs:leather",
recipe = {
{"fun_caves:giant_mushroom_cap"}
}
})
minetest.register_craft({
output = "dye:red",
recipe = {
{"flowers:mushroom_red"}
}
})
--minetest.register_craft({
-- output = "dye:yellow",
-- recipe = {
-- {"flowers:mushroom_brown"}
-- }
--})
-- Caps can be cooked and eaten.
minetest.register_node("fun_caves:mushroom_steak", {
description = "Mushroom Steak",
@ -542,3 +563,10 @@ minetest.register_abm({
end
})
minetest.register_craft({
output = 'default:paper 6',
recipe = {
{'fun_caves:giant_mushroom_stem', 'fun_caves:giant_mushroom_stem', 'fun_caves:giant_mushroom_stem'},
}
})