blob: 97477963c7a421c07d681f82dea108aedf4b5910 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
package GoodGenerator.Loader;
import GoodGenerator.util.MyRecipeAdder;
import com.github.bartimaeusnek.bartworks.system.material.WerkstoffLoader;
import gregtech.api.enums.OrePrefixes;
import net.minecraft.item.ItemStack;
import net.minecraftforge.fluids.FluidStack;
import static GoodGenerator.Items.MyMaterial.*;
public class NeutronActivatorLoader {
public static void NARecipeLoad() {
MyRecipeAdder.instance.addNeutronActivatorRecipe(
new FluidStack[]{
thoriumBasedLiquidFuelExcited.getFluidOrGas(200)
},
null,
new FluidStack[]{
thoriumBasedLiquidFuelDepleted.getFluidOrGas(200)
},
null,
20000,
700,
500
);
}
}
|