-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
All armor plating thermal recipes missing. (1.18) #85
Comments
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. |
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? |
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. |
Can't make any armor platings from thermal series in 1.18. This means no tier 5 jetpack :~(
The text was updated successfully, but these errors were encountered: