Examples of GasTank


Examples of mekanism.api.gas.GasTank

    tier = type;
    inventory = new ItemStack[5+type.processes*2];
    progress = new int[type.processes];
    isActive = false;

    gasTank = new GasTank(TileEntityAdvancedElectricMachine.MAX_GAS*tier.processes);
  }
 
View Full Code Here

Examples of mekanism.api.gas.GasTank

    sideOutputs.add(new SideData(EnumColor.DARK_GREEN, new int[] {3}));
    sideOutputs.add(new SideData(EnumColor.ORANGE, new int[] {4}));

    sideConfig = new byte[] {2, 1, 0, 4, 5, 3};

    gasTank = new GasTank(MAX_GAS);

    inventory = new ItemStack[5];

    SECONDARY_ENERGY_PER_TICK = secondaryPerTick;
View Full Code Here

Examples of mekanism.api.gas.GasTank

  public TileEntityGasGenerator()
  {
    super("GasGenerator", Mekanism.FROM_H2*100, Mekanism.FROM_H2*2);
    inventory = new ItemStack[2];
    fuelTank = new GasTank(MAX_GAS);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.