Fission energy rework (#2931)

* everything should be fine

* Balance early power (#6)

* balance update

* Add textures

* last balance tweaks

* more balance

* Fix conflicts

* Balance early power (#8)

* balance update

* Add textures

* last balance tweaks

* Oupsi

* more fixes

* add changed quests

* push latest balance

* fix tallow

* add btx

* Update quests

* Oups

* Adding some nuclear stuffs so I can merge my branches

* Isotopic solvent stuff (#10)

* push

* fix iconset issue

* adding all the textures change

* add more stuffs

* Push recipes

* new stuffs

* add stuffs

* more changes

* add textures and some recipes

* tons of change

* fix texture

* add textures and other stuffs

* more recipes

* add recycling for fission rods

* more recipes

* fix fluid textures

* comment out FLiBe again and balance rods

* fix fluids

* some latest fix

* fix more texture

* more recipe changes

* more recipes

* some last minute balance changes

* add quests

* fix conflict

* more fixes

* fix components

* var to const

---------

Co-authored-by: Spicy Noodles <93035068+SpicyNoodle5@users.noreply.github.com>
This commit is contained in:
TomPlop 2026-02-01 11:52:11 -05:00 committed by GitHub
parent 45ac3cb2a4
commit 50eff2f5b9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
147 changed files with 2711 additions and 1113 deletions

View file

@ -79,7 +79,9 @@ const registerGTCEURecipes = (event) => {
//#endregion
// #region Move MV superconductor to mid-late MV instead of post-vac freezer
// #region Superconductor
// Move MV superconductor to mid-late MV instead of post-vac freezer
event.remove({ id: 'gtceu:shaped/mv_chemical_bath' })
event.shaped('gtceu:mv_chemical_bath', [
@ -111,6 +113,28 @@ const registerGTCEURecipes = (event) => {
.duration(400)
.EUt(GTValues.VA[GTValues.MV])
// Move EV to after Uranium Reactor
event.remove({ id: 'gtceu:mixer/uranium_triplatinum' })
event.recipes.gtceu.mixer('tfg:uranium_triplatinum')
.itemInputs(Item.of('gtceu:uranium_dust', 1), Item.of('gtceu:platinum_dust', 3))
.inputFluids(Fluid.of('gtceu:radon', 10))
.itemOutputs(Item.of('gtceu:uranium_triplatinum_dust', 4))
.duration(20*10)
.EUt(GTValues.VA[GTValues.EV])
.circuit(4)
// Move Superconductor to EV and make them cheap
event.remove({ id: 'gtceu:assembler/laser_cable' })
event.recipes.gtceu.assembler('tfg:laser_cable')
.itemInputs(Item.of('gtceu:laminated_glass', 1), Item.of('2x #forge:foils/ostrum_iodide', 2))
.itemOutputs(Item.of('gtceu:normal_laser_pipe', 16))
.inputFluids(Fluid.of('gtceu:polytetrafluoroethylene', 144))
.duration(20*5)
.EUt(GTValues.VA[GTValues.EV])
.cleanroom(CleanroomType.CLEANROOM)
// #endregion
//#region Voiding covers
@ -425,4 +449,5 @@ const registerGTCEURecipes = (event) => {
event.shapeless('gtceu:magnetic_iron_ingot', ['#forge:ingots/iron', '8x minecraft:redstone'])
event.shapeless('gtceu:magnetic_iron_plate', ['#forge:plates/iron', '8x minecraft:redstone'])
event.shapeless('gtceu:magnetic_iron_bolt', ['#forge:bolts/iron', '2x minecraft:redstone'])
}