Adding Nuclear Line on Mars (#1467)
* Adding the Nuclear Line CPU Wafer * merge * Revert "merge" This reverts commit b29b5e324f587042a7aad01a49cfdf63b33ab7b4. * revert * Revert "revert" This reverts commit 38376879b37a1150bd84dfa524621c2ffe6350db. * no change weird things happening to me * add fluid textures * Modification of nuclear line * fix conflict for fluids * first balance change * fix conflict with recipes.rocks * Nuclear Line * Add the bromine line and more fixes * Fully added back the bromine line * Add nuclear energy line and more fixes * fix conflit * Add back the recipes change to gtceu for nuclear * revert * fix conflict * One last try * Adjust Reactor rates * Added change to uranium dust commented out until Mars Update * Remove long rod from nuclear pellet
This commit is contained in:
parent
e83833bcf5
commit
3c72e94109
39 changed files with 1945 additions and 583 deletions
|
|
@ -1281,4 +1281,37 @@ const registerGTCEURecipes = (event) => {
|
|||
|
||||
event.shapeless(Item.of('gtceu:matchbox', '{usesLeft:8}'), ['minecraft:paper', '8x gtceu:matches'])
|
||||
.id('tfg:shapeless/matchbox')
|
||||
|
||||
// Nano CPU use Nuclear Tritiated Water COMMENTED UNTIL MARS IS OUT
|
||||
/*
|
||||
event.replaceInput({ id: 'gtceu:chemical_reactor/nano_cpu_wafer' }, Fluid.of('gtceu:glowstone'), Fluid.of('gtceu:tritiated_water'))
|
||||
event.replaceInput({ id: 'gtceu:large_chemical_reactor/nano_cpu_wafer' }, Fluid.of('gtceu:glowstone'), Fluid.of('gtceu:tritiated_water'))
|
||||
|
||||
// Remove Plutonium from centrifuging Uranium dust
|
||||
|
||||
event.remove({ id: 'gtceu:centrifuge/uranium_238_separation' })
|
||||
|
||||
event.recipes.gtceu.centrifuge('tfg:uranium_238_separation')
|
||||
.itemInputs('#forge:dusts/uranium')
|
||||
.chancedOutput('#forge:tiny_dusts/uranium_235', 2300, 0)
|
||||
.duration(20*40)
|
||||
.EUt(GTValues.VA[GTValues.HV])
|
||||
*/
|
||||
// Change the Large Centrifugal Unit to be craftable at EV
|
||||
|
||||
event.remove({ id: 'gtceu:shaped/large_centrifuge' })
|
||||
|
||||
event.shaped('gtceu:large_centrifuge', [
|
||||
'EFE',
|
||||
'ADA',
|
||||
'BCB'
|
||||
], {
|
||||
A: '#gtceu:circuits/iv',
|
||||
B: 'gtceu:ev_electric_motor',
|
||||
C: 'gtceu:aluminium_single_cable',
|
||||
D: 'gtceu:ev_centrifuge',
|
||||
E: 'gtceu:molybdenum_disilicide_spring',
|
||||
F: 'gtceu:stainless_steel_huge_fluid_pipe'
|
||||
}).id('tfg:shaped/large_centrifuge')
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -937,6 +937,8 @@ function registerGTCEuMachineRecipes(event) {
|
|||
.EUt(GTValues.VA[GTValues.ZPM])
|
||||
.circuit(2)
|
||||
|
||||
//#endregion
|
||||
|
||||
event.recipes.gtceu.mixer('gtceu:chipboard_composite_wax')
|
||||
.itemInputs('2x #tfg:wood_dusts',
|
||||
'1x #forge:wax')
|
||||
|
|
|
|||
|
|
@ -692,6 +692,9 @@ function removeGTCEURecipes(event) {
|
|||
event.remove({ id: 'gtceu:shaped/mortar_grind_steel' })
|
||||
event.remove({ id: 'gtceu:shaped/mortar_grind_wrought_iron' })
|
||||
|
||||
// Replace by the Heat Exchanger recipe for Mars
|
||||
event.remove({ id: 'gtceu:fluid_heater/formamide' })
|
||||
|
||||
// Snow Stuffs
|
||||
|
||||
event.remove({ id: 'gtceu:fluid_solidifier/snow_block' })
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue