diff options
-rw-r--r-- | technic/machines/register/compressor_recipes.lua | 1 | ||||
-rw-r--r-- | technic/machines/register/grindings.lua | 10 | ||||
-rw-r--r-- | technic/textures/technic_aspen_grindings.png | bin | 0 -> 282 bytes | |||
-rw-r--r-- | technic/textures/technic_jungletree_grindings.png | bin | 0 -> 273 bytes | |||
-rw-r--r-- | technic/textures/technic_pine_grindings.png | bin | 0 -> 285 bytes | |||
-rw-r--r-- | technic/textures/technic_tree_grindings.png | bin | 0 -> 226 bytes |
6 files changed, 9 insertions, 2 deletions
diff --git a/technic/machines/register/compressor_recipes.lua b/technic/machines/register/compressor_recipes.lua index 021c393..3339981 100644 --- a/technic/machines/register/compressor_recipes.lua +++ b/technic/machines/register/compressor_recipes.lua @@ -84,4 +84,3 @@ table.insert(recipes, {"vessels:steel_bottle", "technic:lox"}) for _, data in pairs(recipes) do technic.register_compressor_recipe({input = {data[1]}, output = data[2]}) end - diff --git a/technic/machines/register/grindings.lua b/technic/machines/register/grindings.lua index 018eed9..3d9a698 100644 --- a/technic/machines/register/grindings.lua +++ b/technic/machines/register/grindings.lua @@ -48,11 +48,18 @@ local rubber_tree_planks = moretrees and "moretrees:rubber_tree_planks" local default_extract = dye and "dye:brown 2" local grinding_recipes = { - {"Common Tree", "group:tree", "group:wood", default_extract }, +-- group-based recipes appear to be not working +-- {"Common Tree", "group:tree", "group:wood", default_extract }, + {"Tree", "default:tree", "default:wood", default_extract }, + {"Acacia", "default:acacia_tree", "default:acacia_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",rubber_tree_planks, "technic:raw_latex"} } + for _, data in pairs(grinding_recipes) do register_tree_grinding(unpack(data)) end @@ -61,3 +68,4 @@ if moretrees and dye then -- https://en.wikipedia.org/wiki/Catechu ancient brown dye from the wood of acacia trees register_tree_grinding("Acacia", "moretrees:acacia_trunk", "moretrees:acacia_planks", "dye:brown 8") end + diff --git a/technic/textures/technic_aspen_grindings.png b/technic/textures/technic_aspen_grindings.png Binary files differnew file mode 100644 index 0000000..c4d2ce1 --- /dev/null +++ b/technic/textures/technic_aspen_grindings.png diff --git a/technic/textures/technic_jungletree_grindings.png b/technic/textures/technic_jungletree_grindings.png Binary files differnew file mode 100644 index 0000000..2c43686 --- /dev/null +++ b/technic/textures/technic_jungletree_grindings.png diff --git a/technic/textures/technic_pine_grindings.png b/technic/textures/technic_pine_grindings.png Binary files differnew file mode 100644 index 0000000..c75ce98 --- /dev/null +++ b/technic/textures/technic_pine_grindings.png diff --git a/technic/textures/technic_tree_grindings.png b/technic/textures/technic_tree_grindings.png Binary files differnew file mode 100644 index 0000000..e17bb69 --- /dev/null +++ b/technic/textures/technic_tree_grindings.png |