All armor plating thermal recipes missing. (1.18)
ShadwDrgn opened this issue · 8 comments
Can't make any armor platings from thermal series in 1.18. This means no tier 5 jetpack :~(
It would seem that armorplating_te2.json, armorplating_te3.json and armorplating_te4.json are missing as there are no recipes for bronze, invar or enderium plating. This is in current 1.16 and 1.18 builds and I'd suspect 1.17 as well (but don't have an installation).
No, those are the models.
\SimplyJetpacks2-1.18.2-2.8.0.1.jar\data\simplyjetpacks\recipes\thermal\ are where the recipes would be and there are recipes for 1 and 5. I would suspect because this mod was updated before Thermal Expansion was. Traditionaly the higher level platings are made by combining 10 ingots and the last level plating in the induction furnace.
any idea what the recipes for the elevation and cryotheum units used to be so i can fix those in kubejs too? Obviouslyi 'll have to find an alternative to cryotheum but i think just blizz powder will suffice
I believe this issue still persists?
Can you maybe share your KubeJS configuration that added those missing recipes?
Thanks in advance!
Here is a temporary solution with "KubeJS" + "KubeJS Thermal" that works for me:
onEvent('recipes', event => {
// Bronze Armor Plating
event.recipes.thermal.smelter('simplyjetpacks:armorplating_te2', ['simplyjetpacks:armorplating_te1', '10x #forge:ingots/bronze']);
// Invar Armor Plating
event.recipes.thermal.smelter('simplyjetpacks:armorplating_te3', ['simplyjetpacks:armorplating_te2', '10x #forge:ingots/invar']);
// Enderium Armor Plating
event.recipes.thermal.smelter('simplyjetpacks:armorplating_te4', ['simplyjetpacks:armorplating_te3', '10x #forge:ingots/enderium']);
// Glowstone Elevation Unit
event.recipes.thermal.bottler('simplyjetpacks:unit_glowstone', [Fluid.of('thermal:glowstone', 4000), 'simplyjetpacks:unit_glowstone_empty']).energy(1600);
// Cryotheum Coolant Unit
// Because there is no Cryotherum Dust & Gelid Cryothem in newer versions von Thermal
// it uses the available base resources for 4000mB Gelid Cryptheum (16x Blizz Powder + 8 Redstone)
// with the empty Cryotherum Coolant Unit in the Induction Smelter as workaround
// Snowballs are omitted because Smelter is limited to 3 inputs.
event.recipes.thermal.smelter('simplyjetpacks:unit_cryotheum', ['simplyjetpacks:unit_cryotheum_empty', '16x thermal:blizz_powder', '8x #forge:dusts/redstone']).energy(32000);
})
Made the energy consumption (and processing time) of the recipe for Cryotheum Cooling Unit a little higher as it shortcuts the original process.
i created a pull request for the missing recipes + a new recipe for the Cryotheum Cooling Unit. #96
Also, its possible to add the recipes via datapack in the meantime.