Skip to content
This repository has been archived by the owner on May 26, 2024. It is now read-only.

Commit

Permalink
Add Alternative Recipe in LFTR Chain to Avoid Cells (#754)
Browse files Browse the repository at this point in the history
* Add chemplant alternative to EBF recipe with cells

-  Add a recipe for LFTR Fuel Base (LiFBeF2UF4), for the Chemical Plant, instead of the EBF, which can use the same inputs and outputs but without any cells.

* Add comment to explain recipe

* Apply spotless
  • Loading branch information
Steelux8 authored Sep 22, 2023
1 parent 1a2c422 commit 1925c00
Showing 1 changed file with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,17 @@ public static void generate() {
300 * 10,
MaterialUtils.getVoltageForTier(5),
5400);
// Alternative recipe to the above, for chemplant, to not use cells
CORE.RA.addChemicalPlantRecipe(
new ItemStack[] {},
new FluidStack[] { FLUORIDES.URANIUM_HEXAFLUORIDE.getFluidStack(1000),
NUCLIDE.LiFBeF2.getFluidStack(1000), ELEMENT.getInstance().HYDROGEN.getFluidStack(2000) },
new ItemStack[] {},
new FluidStack[] { NUCLIDE.LiFBeF2UF4.getFluidStack(3000),
FluidUtils.getFluidStack("hydrofluoricacid", 2000) },
300 * 10,
MaterialUtils.getVoltageForTier(5),
4);

// LiFBeF2ZrF4U235 - We can't add both ZrF4 and U235 here, so best we leave this disabled.
/*
Expand Down

0 comments on commit 1925c00

Please sign in to comment.