neuralgia/kubejs/server_scripts/tfc_grooming_station/recipes.js
Pyritie ec2e3cd3c4
Alpha Release: 0.9.0 (#849)
Signed-off-by: Pyritie <pyritie@gmail.com>
Signed-off-by: TomPlop <tomdidome@gmail.com>
Co-authored-by: Xikaro <os.valerievich@ya.ru>
Co-authored-by: Nebby <78170922+Nebby1999@users.noreply.github.com>
Co-authored-by: Redeix <brayden.j.m.ford@gmail.com>
Co-authored-by: TomPlop <tomdidome@gmail.com>
Co-authored-by: aidie8 <aidenvanzuilen@gmail.com>
Co-authored-by: Xikaro <55663835+Xikaro@users.noreply.github.com>
Co-authored-by: Zleub <debray.arnaud@gmail.com>
2025-04-15 23:27:17 +05:00

27 lines
649 B
JavaScript

// priority: 0
const registerTFCGroomingStationRecipes = (event) => {
const materials = [
'copper',
'bismuth_bronze',
'bronze',
'black_bronze',
'wrought_iron',
'steel',
'black_steel',
'red_steel',
'blue_steel'
]
materials.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`)
})
}