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

Commit

Permalink
balance the fuel and recipe
Browse files Browse the repository at this point in the history
  • Loading branch information
GlodBlock committed Apr 27, 2021
1 parent a15088f commit 1568fa6
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 11 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
modId = GoodGenerator
modGroup = GoodGenerator
modVersion = 0.0.2
modVersion = 0.0.2-QF1

minecraftVersion=1.7.10
forgeVersion=10.13.4.1614
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/GoodGenerator/Items/MyMaterial.java
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public class MyMaterial implements Runnable {
public static final Werkstoff thoriumBasedLiquidFuel = new Werkstoff(
new short[]{0x50,0x32,0x66},
"Thorium Based Liquid Fuel",
subscriptNumbers("Th864Li4D2Hg"),
subscriptNumbers("Th432Li4D2Hg"),
new Werkstoff.Stats().setRadioactive(true),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().addCells(),
Expand All @@ -86,7 +86,7 @@ public class MyMaterial implements Runnable {
public static final Werkstoff thoriumBasedLiquidFuelExcited = new Werkstoff(
new short[]{0x50,0x32,0x66},
"Thorium Based Liquid Fuel (Excited State)",
subscriptNumbers("*(Th864Li4D2Hg)*"),
subscriptNumbers("*(Th432Li4D2Hg)*"),
new Werkstoff.Stats().setRadioactive(true),
Werkstoff.Types.COMPOUND,
new Werkstoff.GenerationFeatures().disable().addCells(),
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/GoodGenerator/Loader/FuelRecipeLoader.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@

public class FuelRecipeLoader {
public static void RegisterFuel(){
MyRecipeAdder.instance.addLiquidMentalFuel(Materials.NaquadahEnriched.getMolten(1L),Materials.Naquadah.getMolten(1L),32768,1200);
MyRecipeAdder.instance.addLiquidMentalFuel(Materials.Naquadria.getMolten(1L),Materials.Naquadah.getMolten(1L),262144,100);
MyRecipeAdder.instance.addLiquidMentalFuel(Materials.NaquadahEnriched.getMolten(1L),Materials.Naquadah.getMolten(1L),32768,100);
MyRecipeAdder.instance.addLiquidMentalFuel(Materials.Naquadria.getMolten(1L),Materials.Naquadah.getMolten(1L),262144,120);
MyRecipeAdder.instance.addLiquidMentalFuel(MyMaterial.uraniumBasedLiquidFuelExcited.getFluidOrGas(1),MyMaterial.uraniumBasedLiquidFuelDepleted.getFluidOrGas(1),12960,100);
MyRecipeAdder.instance.addLiquidMentalFuel(MyMaterial.thoriumBasedLiquidFuelExcited.getFluidOrGas(1),MyMaterial.thoriumBasedLiquidFuelDepleted.getFluidOrGas(1),4320,500);
MyRecipeAdder.instance.addLiquidMentalFuel(MyMaterial.plutoniumBasedLiquidFuelExcited.getFluidOrGas(1),MyMaterial.plutoniumBasedLiquidFuelDepleted.getFluidOrGas(1),32400,150);
Expand Down
7 changes: 1 addition & 6 deletions src/main/java/GoodGenerator/Loader/RecipeLoader.java
Original file line number Diff line number Diff line change
@@ -1,14 +1,9 @@
package GoodGenerator.Loader;

import GoodGenerator.Items.MyMaterial;
import codechicken.nei.ItemStackSet;
import com.github.bartimaeusnek.bartworks.system.material.WerkstoffLoader;
import com.github.bartimaeusnek.bartworks.system.oredict.OreDictHandler;
import gregtech.api.GregTech_API;
import gregtech.api.enums.*;
import gregtech.api.util.GT_OreDictUnificator;
import net.minecraft.block.material.Material;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraftforge.fluids.FluidRegistry;
import net.minecraftforge.fluids.FluidStack;
Expand Down Expand Up @@ -187,7 +182,7 @@ public static void RecipeLoad(){
Materials.Helium.getPlasma(750L),
null,
MyMaterial.thoriumBasedLiquidFuelExcited.get(OrePrefixes.cell,1),
4500,
120,
3840
);

Expand Down

0 comments on commit 1568fa6

Please sign in to comment.