neuralgia/kubejs/server_scripts/tfc_grooming_station/recipes.js
Jason Nash 5274fc65f5
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
2025-09-15 16:04:24 +01:00

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`)
})
}