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

Commit

Permalink
did some work on polyethylene recipes
Browse files Browse the repository at this point in the history
  • Loading branch information
Trinsdar committed Aug 22, 2023
1 parent e6afd13 commit 8dc33a2
Showing 1 changed file with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,10 @@ public static void init() {

private static void addSimple() {
//POLYETHYLENE
CHEMICAL_REACTING.RB().fi(Oxygen.getGas(2000),Naphtha.getLiquid(144)).fo(Polyethylene.getLiquid(72)).add("ethylene_to_polyethylene",320, 30);
CHEMICAL_REACTING.RB().fi(Oxygen.getGas(1000),Ethylene.getGas(144)).fo(Polyethylene.getLiquid(216)).add("ethylene_to_polyethylene_1",160, 30);
CHEMICAL_REACTING.RB().fi(Oxygen.getGas(2000),Ethylene.getGas(288)).ii(INT_CIRCUITS.get(1).setNoConsume()).fo(Polyethylene.getLiquid(288)).add("polyethylene_2",320, 30);
CHEMICAL_REACTING.RB().fi(Oxygen.getGas(16000),Naphtha.getLiquid(1296)).ii(of(DUST_TINY.getMaterialTag(Titanium),1)).fo(Polyethylene.getLiquid(1296)).add("ethylene_to_polyethylene_3",640, 30);
CHEMICAL_REACTING.RB().fi(Oxygen.getGas(7000),Ethylene.getGas(1000)).ii(INT_CIRCUITS.get(2).setNoConsume()).fo(Polyethylene.getLiquid(1500)).add("ethylene_to_polyethylene_4",1120, 30);
CHEMICAL_REACTING.RB().fi(Air.getGas(4),Naphtha.getLiquid(L)).fo(Polyethylene.getLiquid(L / 2)).add("naphtha_to_polyethylene",320, 30);
CHEMICAL_REACTING.RB().fi(Oxygen.getGas(1),Ethylene.getGas(L)).fo(Polyethylene.getLiquid((long) (L * 1.5))).add("ethylene_to_polyethylene",160, 30);
CHEMICAL_REACTING.RB().fi(Air.getGas(2),Ethylene.getGas(L * 2)).fo(Polyethylene.getLiquid(L * 2)).add("ethylene_to_polyethylene_2",320, 30);
CHEMICAL_REACTING.RB().fi(Oxygen.getGas(16),Naphtha.getLiquid(L * 9)).ii(DUST_TINY.getMaterialIngredient(Titanium, 1).setNoConsume()).fo(Polyethylene.getLiquid(L * 9)).add("naphtha_to_polyethylene_2",640, 30);
//POLYVINYLCHLORIDE
CHEMICAL_REACTING.RB().fi(Oxygen.getGas(1000),VinylChloride.getGas(144)).fo(PolyvinylChloride.getLiquid(216)).add("vinylchloride_to_polyvinylchloride",160, 30);
CHEMICAL_REACTING.RB().fi(Oxygen.getGas(7000),VinylChloride.getGas(1000)).fo(PolyvinylChloride.getLiquid(1500)).add("vinylchloride_to_polyvinylchloride_1",1120, 30);
Expand Down

0 comments on commit 8dc33a2

Please sign in to comment.