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:
parent
024440e645
commit
5274fc65f5
3 changed files with 22 additions and 12 deletions
|
|
@ -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"
|
||||
]);
|
||||
Loading…
Add table
Add a link
Reference in a new issue