Esempio n. 1
0
 public static void AddGasGenerator(GameObject go)
 {
     ApplyExhaust.AddOutput(go, new CellOffset(2, 2), SimHashes.CarbonDioxide);
     ApplyExhaust.AddOutput(go, new CellOffset(1, 1), SimHashes.DirtyWater);
 }
Esempio n. 2
0
 public static void AddElectrolyzer(GameObject go)
 {
     ApplyExhaust.AddOutput(go, new CellOffset(1, 1), SimHashes.Oxygen);
     ApplyExhaust.AddOutput(go, new CellOffset(0, 1), SimHashes.Hydrogen);
 }
Esempio n. 3
0
 public static void AddWoodGenerator(GameObject go)
 {
     ApplyExhaust.AddOutput(go, new CellOffset(0, 1), SimHashes.CarbonDioxide);
 }
Esempio n. 4
0
 public static void AddRust(GameObject go)
 {
     ApplyExhaust.AddOutput(go, new CellOffset(1, 1), SimHashes.Oxygen);
     ApplyExhaust.AddOutput(go, new CellOffset(0, 0), SimHashes.ChlorineGas);
 }
Esempio n. 5
0
 public static void AddMineralDeoxidizer(GameObject go)
 {
     ApplyExhaust.AddOutput(go, new CellOffset(0, 1), SimHashes.Oxygen);
 }
Esempio n. 6
0
 internal static void AddGourmetCooking(GameObject go)
 {
     ApplyExhaust.AddOutput(go, new CellOffset(1, 2), SimHashes.CarbonDioxide);
 }
 public static void AddOilRefinery(GameObject go)
 {
     ApplyExhaust.AddOutput(go, new CellOffset(-1, 3), SimHashes.Methane);
 }
 public static void AddPolymer(GameObject go)
 {
     ApplyExhaust.AddOutput(go, new CellOffset(0, 1), SimHashes.CarbonDioxide);
     ApplyExhaust.AddOutput(go, new CellOffset(1, 0), SimHashes.Steam);
 }
 public static void AddEthanolDistillery(GameObject go)
 {
     ApplyExhaust.AddOutput(go, new CellOffset(2, 2), SimHashes.CarbonDioxide);
 }
Esempio n. 10
0
 public static void AddFertilizerMaker(GameObject go)
 {
     ApplyExhaust.AddOutput(go, new CellOffset(2, 2), SimHashes.Methane);
 }