* #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
17 lines
459 B
JavaScript
17 lines
459 B
JavaScript
// priority: 0
|
|
"use strict";
|
|
|
|
const registerTFCGroomingStationRecipes = (event) => {
|
|
|
|
global.TFC_EQUIPMENT_METALS.forEach(material => {
|
|
event.shaped(`tfcgroomer:${material}_grooming_station`, [
|
|
'ABA',
|
|
'AAA',
|
|
'C C'
|
|
], {
|
|
A: `#forge:plates/${material}`,
|
|
B: '#forge:tools/hammers',
|
|
C: 'tfc:wattle'
|
|
}).id(`tfcgroomer:${material}_grooming_station`)
|
|
})
|
|
}
|