mods: rebalance create new age, torchmaster, some of apotheosis, simplify the grist recipes another bit

This commit is contained in:
2025-05-30 18:20:02 +02:00
parent 1362fd4c46
commit 374c3578ef
14 changed files with 309 additions and 69 deletions

View File

@ -25,6 +25,10 @@ global.ingotItem = (material, qty) => {
return global.metalForm(material, 'ingots', 'ingot', qty);
}
global.plateItem = (material, qty) => {
return global.metalForm(material, 'plates', 'plate', qty);
}
global.gearItem = (material, qty) => {
return global.metalForm(material, 'gears', 'gear', qty);
}