add default tree grindings

fixes https://github.com/pandorabox-io/pandorabox.io/issues/376
This commit is contained in:
BuckarooBanzay 2019-12-16 07:28:11 +01:00
parent 5069207e71
commit a8f60af451

View File

@ -47,9 +47,15 @@ end
local rubber_tree_planks = moretrees and "moretrees:rubber_tree_planks"
local default_extract = dye and "dye:brown 2"
-- see: https://github.com/h-v-smacker/technic/blob/master/technic/machines/register/grindings.lua
local grinding_recipes = {
{"Common Tree", "group:tree", "group:wood", default_extract },
{"Rubber Tree", "moretrees:rubber_tree_trunk", rubber_tree_planks, "technic:raw_latex"}
{"Tree", "default:tree", "default:wood", default_extract },
{"Aspen", "default:aspen_tree", "default:aspen_wood", default_extract },
{"Jungletree", "default:jungletree", "default:junglewood", default_extract },
{"Pine", "default:pine_tree", "default:pine_wood", default_extract },
{"Rubber Tree", "moretrees:rubber_tree_trunk", rubber_tree_planks, "technic:raw_latex"},
{"Rubber Tree", "moretrees:rubber_tree_trunk_empty", nil, "technic:raw_latex"}
}
for _, data in pairs(grinding_recipes) do