mirror of
https://github.com/joe7575/techpack.git
synced 2024-11-26 00:53:44 +01:00
Added Cool Trees grinder recipes
This commit is contained in:
parent
774ff7ab29
commit
c5261fcbcf
@ -364,6 +364,7 @@ if minetest.get_modpath("underch") then
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
--Ethereal trees
|
||||||
if minetest.get_modpath("ethereal") then
|
if minetest.get_modpath("ethereal") then
|
||||||
for k,v in pairs({
|
for k,v in pairs({
|
||||||
["ethereal:sakura_trunk"] = "ethereal:sakura_leaves 8",
|
["ethereal:sakura_trunk"] = "ethereal:sakura_leaves 8",
|
||||||
@ -378,3 +379,30 @@ if minetest.get_modpath("ethereal") then
|
|||||||
["ethereal:olive_trunk"] = "ethereal:olive_leaves 8"}
|
["ethereal:olive_trunk"] = "ethereal:olive_leaves 8"}
|
||||||
) do tubelib.add_grinder_recipe({input=k, output=v}) end
|
) do tubelib.add_grinder_recipe({input=k, output=v}) end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
-- Cool Trees
|
||||||
|
for _,v in pairs({
|
||||||
|
"baldcypress",
|
||||||
|
"bamboo",
|
||||||
|
"birch",
|
||||||
|
"cherrytree",
|
||||||
|
"chestnuttree",
|
||||||
|
"clementinetree",
|
||||||
|
"ebony",
|
||||||
|
"hollytree",
|
||||||
|
"larch",
|
||||||
|
"lemontree",
|
||||||
|
"mahogany",
|
||||||
|
"maple",
|
||||||
|
"oak",
|
||||||
|
"palm",
|
||||||
|
"plumtree",
|
||||||
|
"pomegranate",
|
||||||
|
"willow"
|
||||||
|
}) do
|
||||||
|
if minetest.get_modpath(v) then tubelib.add_grinder_recipe({input=v .. ":trunk", output=v .. ":leaves 8"}) end
|
||||||
|
end
|
||||||
|
|
||||||
|
if minetest.get_modpath("jacaranda") then tubelib.add_grinder_recipe({input="jacaranda:trunk", output = "jacaranda:blossom_leaves 8"}) end
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user