Integrate goblins and mobs.
This commit is contained in:
parent
6097e844cf
commit
182e32d231
68 changed files with 14500 additions and 13 deletions
28
nodes.lua
28
nodes.lua
|
@ -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'},
|
||||
}
|
||||
})
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue