Skip to content
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

Open
ShadwDrgn opened this issue Aug 28, 2022 · 8 comments
Open

All armor plating thermal recipes missing. (1.18) #85

ShadwDrgn opened this issue Aug 28, 2022 · 8 comments
Labels
1.18.x Minecraft 1.18.x bug Something isn't working

Comments

@ShadwDrgn
Copy link

Can't make any armor platings from thermal series in 1.18. This means no tier 5 jetpack :~(

@Krougal
Copy link

Krougal commented Sep 2, 2022

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).

@ShadwDrgn
Copy link
Author

image
The platings are there in JEI just no recipe. I'm not sure if those json files are culprits, as they do seem to be in my jar unless i'm looking at the wrong thing here.

@Krougal
Copy link

Krougal commented Sep 4, 2022

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.

@ShadwDrgn
Copy link
Author

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

@Krougal
Copy link

Krougal commented Sep 20, 2022

These are from 1.12.2
image
image
image
image
It's any hardened glass. Electrum and tin for cryotheum unit base, electrum and lumium for elevation unit.

@Tomson124 Tomson124 added bug Something isn't working 1.18.x Minecraft 1.18.x labels Sep 29, 2022
@Chaos02
Copy link

Chaos02 commented Jul 30, 2023

I believe this issue still persists?
Can you maybe share your KubeJS configuration that added those missing recipes?
Thanks in advance!

@mibbio
Copy link

mibbio commented Oct 20, 2023

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.

@Hojosa
Copy link

Hojosa commented Dec 8, 2023

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
1.18.x Minecraft 1.18.x bug Something isn't working
Projects
None yet
Development

No branches or pull requests

6 participants