Add support for Lignumis

This commit is contained in:
Simon Brodtmann 2025-06-10 09:41:20 +02:00
parent 587eb39f83
commit eb3b358626

View file

@ -3,14 +3,12 @@ local Recipe = require("__cf-lib__/data/Recipe")
if not mods["lignumis"] then return end
Recipe:new("mini-locomotive")
:replaceIngredient("steel-plate", 10)
:addIngredient("lumber", 10)
:replaceIngredient("steel-plate", "lumber", 10)
:addIngredient("iron-plate", 20)
Recipe:new("mini-cargo-wagon")
:replaceIngredient("steel-plate", 5)
:addIngredient("lumber", 5)
:replaceIngredient("steel-plate", "lumber", 5)
Recipe:new("mini-fluid-wagon")
:replaceIngredient("steel-plate", 5)
:addIngredient("lumber", 5)
:replaceIngredient("steel-plate", "lumber", 5)
:addIngredient("iron-plate", 10)