MCPcopy Create free account
hub / github.com/GregTech6/gregtech6 / run

Method run

src/main/java/gregtech/loaders/a/Loader_Fluids.java:38–752  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

36
37public class Loader_Fluids implements Runnable {
38 @Override
39 public void run() {
40 FL.create("HeliumPlasma" , "Helium Plasma" , MT.He , 3, 1000, 10000).setLuminosity(15);
41 FL.create("NitrogenPlasma" , "Nitrogen Plasma" , MT.N , 3, 1000, 10000).setLuminosity(15);
42
43 //-----
44
45 FL.create("Propane" , null , MT.Propane , 2).setDensity(-1000);
46 FL.create("Butane" , null , MT.Butane , 2).setDensity(-1000);
47 FL.create("Propylene" , null , MT.Propylene , 2);
48 FL.create("Ethylene" , null , MT.Ethylene , 2);
49 FL.create("dragonbreath" , "Dragon's Breath" , null , 2, 1000, 300, IL.EtFu_Dragon_Breath.get(1), IL.Bottle_Empty.get(1), 250).setDensity(100).setLuminosity(5);
50 FL.create("netherair" , "Nether Air" , null , 2, 1000, 370).setDensity(0);
51 FL.create("enderair" , "Ender Air" , null , 2, 1000, 280).setDensity(0);
52 FL.create("Steam" , "Steam" , MT.H2O , 2, 160000, C+100).setDensity(-1000);
53 MT.Ice.mGas = MT.H2O.mGas;
54 MT.H2O.mGas.getFluid().setTemperature((int)(C+100)).setGaseous(T);
55 MT.Steam.gas(FL.Steam.make(160000));
56
57 //-----
58
59 FL.create("liquid_extra_heavy_oil" , "Very Heavy Oil" , null , 1).setDensity( 900);
60 FL.create("liquid_heavy_oil" , "Heavy Oil" , null , 1).setDensity( 800);
61 FL.create("liquid_medium_oil" , "Raw Oil" , null , 1).setDensity( 700);
62 FL.create("liquid_light_oil" , "Light Oil" , null , 1).setDensity( 600);
63 FL.create("soulsandoil" , "Soulsand Oil" , null , 1).setDensity( 650);
64 FL.create("gas_natural_gas" , "Natural Gas" , null , 2).setDensity(- 500); // ~95% methane, ~5% ethane and trace amounts of propane and butane
65
66 MT.O.gas(FL.Reikygen.make(1000));
67 MT.O.liquid(FL.Liquid_Reikygen.make(1000));
68 FL.create("liquidoxygen" , "Liquid Oxygen" , MT.O , 1, 1000, 85);
69
70 FL.create("chargedmatter" , "Charged Matter" , null , 1, 1, 1).setDensity(-5000).setLuminosity(15);
71 FL.create("neutralmatter" , "Neutral Matter" , null , 1, 1, 1).setDensity(-5000).setLuminosity(15);
72 FL.create("UUAmplifier" , null , MT.UUAmplifier , 1, 1, 100);
73 FL.create("ic2uumatter" , null , MT.UUMatter , 1, 1, 100);
74 FL.create("ic2constructionfoam" , null , MT.ConstructionFoam , 1, 100, 300);
75 FL.create("ic2distilledwater" , "Distilled Water" , MT.DistWater , 1);
76 FL.create("NitroFuel" , "Nitro Fuel" , MT.NitroFuel , 1);
77 FL.create("oil" , "Oil" , MT.Oil , 1);
78 FL.create("fuel" , "Fuel Oil" , MT.Fuel , 1);
79 FL.create("kerosene" , "Kerosene" , MT.Kerosine , 1);
80 FL.create("kerosine" , "Kerosine" , MT.Kerosine , 1);
81 FL.create("diesel" , "Diesel" , MT.Diesel , 1);
82 FL.create("petrol" , "Petrol" , MT.Petrol , 1);
83 FL.create("biomass" , "Biomass" , MT.Biomass , 1);
84 FL.create("ic2biomass" , "Biomass" , MT.Biomass , 1);
85 FL.create("ic2coolant" , "Industrial Coolant" , null , 1);
86 FL.create("ic2hotcoolant" , "Industrial Heatant" , null , 1, 1000, 1200);
87 FL.create("hotmoltensodium" , "Hot Molten Sodium" , null , 1, 1000, 1100);
88 FL.create("hotmoltentin" , "Hot Molten Tin" , null , 1, 1000, 2800);
89 FL.create("hotmoltenlicl" , "Hot Molten Lithium Chloride", null , 1, 1000, 1600);
90
91 FL.create("hotheavywater" , "Hot Heavy Water" , null , 1, 1000, 600);
92 FL.create("hotsemiheavywater" , "Hot Semiheavy Water" , null , 1, 1000, 550);
93 FL.create("hottritiatedwater" , "Hot Tritiated Water" , null , 1, 1000, 650);
94
95 FL.create("hotcarbondioxide" , "Hot Carbon Dioxide" , null , 1, 1000, 950);

Callers

nothing calls this directly

Calls 15

createMethod · 0.95
makeMethod · 0.95
createMoltenMethod · 0.95
makeMethod · 0.95
regMethod · 0.95
createLiquidMethod · 0.95
createGasMethod · 0.95
createVapourMethod · 0.95
createPlasmaMethod · 0.95
setDensityMethod · 0.80
getRGBaArrayMethod · 0.80
setExtinguishMethod · 0.80

Tested by

no test coverage detected