renamed thorium

This commit is contained in:
Pyritie 2026-01-03 00:20:29 +00:00
parent 51cbadb505
commit 502751fb72
5 changed files with 6 additions and 2 deletions

View file

@ -11,6 +11,7 @@
- Ad astra and Create Deco lamps are now half as expensive to craft (#2581) @Xaligal
- Added alloy blast smelter recipes for black bronze and bismuth bronze (#2581) @Xaligal
- The alloy blast smelter recipe for glowstone has been adjusted (#2581) @Xaligal
- Renamed Thorium (the non-isotope one) to Thorianite to better indicate that it's only an ore @Pyritie
### Bug fixes
- Fixed missing crafting table recipes for greate gearboxes (#2577) @Pyritie
- Fixed crashing when attaching shafts to a steam engine (#2578, #2579) @Electrolyte220
@ -19,6 +20,7 @@
- Fixed not being able to use pickled eggs in sandwiches (#2551) @Pyritie
- Fixed how much aluminium silicate you get from mica, pollucite, and spodumene to more accurately reflect how much aluminium they have @Pyritie
- Fixed being able to put liquid metals into the new molds that didn't have a recipe @Pyritie
- Added some grain nutrition to oatmeal @Pyritie
### Translation updates
- Chinese (simplified) @jmecn
- Russian @Petr211071

View file

@ -147,6 +147,7 @@
"material.tfg.calorite": "Calorite",
"material.tfg.etrium": "Etrium",
"material.gtceu.tarkianite": "Tarkianite",
"material.gtceu.thorium": "Thorianite",
"material.gtceu.aluminium_silicate": "Aluminium Silicate",
"material.gtceu.rocket_alloy_t1": "R-Aluminosteel Rocket Alloy",
"material.gtceu.rocket_alloy_t2": "ASM 4914 Titanium Rocket Alloy",

View file

@ -76,7 +76,6 @@ function registerTFGNuclearRecipes(event) {
//#region Processing Fuels
event.recipes.gtceu.centrifuge('thorium_isotope')
//.inputFluids(Fluid.of('minecraft:water', 50))
.itemInputs('9x #forge:dusts/thorium')
.chancedOutput('#forge:dusts/thorium_230', 9000, 0)
.itemOutputs('8x #forge:dusts/thorium_232')

View file

@ -230,7 +230,8 @@ global.GTCEU_DISABLED_ITEMS = /** @type {const} */ ([
"gtceu:thorium_block",
"gtceu:thorium_plate",
"gtceu:double_thorium_plate",
"gtceu:thorium_rod"
"gtceu:thorium_rod",
"gtceu:thorium_bucket"
]);
//#endregion

View file

@ -459,4 +459,5 @@ const registerGTCEuMaterialModification = (event) => {
GTMaterials.CertusQuartz.setComponents('1x unknown', '1x silicon', '2x oxygen')
GTMaterials.GraniteRed.setComponents([])
GTMaterials.GraniteRed.setFormula("?")
GTMaterials.Thorium.setFormula('ThO2')
}