Jute net to be made with Flax (#1833)

* #1815 - Jute net to be made with Flax

* Revert "#1815 - Jute net to be made with Flax"

This reverts commit 60465d798d25b8b76bd2a617fe0a83abf758c0e0.

* #1815 - Jute net to be made with Flax

this time with the correct file

* Using `id` not `output`

* created global list of materials use for equipment

* updated to use `global.EQUIPMENT_METALS`

* updated horse armor to use burlap
This commit is contained in:
Jason Nash 2025-09-15 16:04:24 +01:00 committed by GitHub
parent 024440e645
commit 5274fc65f5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 22 additions and 12 deletions

View file

@ -1151,3 +1151,15 @@ global.calcAmountOfMetalProcessed = function (defaultAmount, percents) {
const value = defaultAmount * (percentPerItem / 100);
return value % 2 === 0 ? value : Math.round(value) - 1;
};
global.TFC_EQUIPMENT_METALS = /** @type {const} */ ([
"copper",
"bismuth_bronze",
"bronze",
"black_bronze",
"wrought_iron",
"steel",
"black_steel",
"red_steel",
"blue_steel"
]);