Package net.minecraftforge.liquids

Examples of net.minecraftforge.liquids.LiquidTank


  private LiquidTank _tank;
 
  public TileEntityComposter()
  {
    super(Machine.Composter);
    _tank = new LiquidTank(4 * LiquidContainerRegistry.BUCKET_VOLUME);
  }
 
View Full Code Here


  private ItemStack _output;
 
  public TileEntityAutoAnvil()
  {
    super(Machine.AutoAnvil);
    _tank = new LiquidTank(LiquidContainerRegistry.BUCKET_VOLUME * 4);
  }
 
View Full Code Here

  private boolean _spawnExact = false;
 
  public TileEntityAutoSpawner()
  {
    super(Machine.AutoSpawner);
    _tank = new LiquidTank(LiquidContainerRegistry.BUCKET_VOLUME * 4);
  }
 
View Full Code Here

    _liquidConsumedPerTick = liquidConsumedPerTick;
    _powerProducedPerConsumption = powerProducedPerConsumption;
    _ticksBetweenConsumption = ticksBetweenConsumption;
    _outputPulseSize = machine.getActivationEnergyMJ() * TileEntityFactoryPowered.energyPerMJ;
   
    _tank = new LiquidTank(LiquidContainerRegistry.BUCKET_VOLUME * 4);
  }
 
View Full Code Here

  private LiquidTank _tank;
 
  public TileEntityWeather()
  {
    super(Machine.WeatherCollector);
    _tank = new LiquidTank(4 * LiquidContainerRegistry.BUCKET_VOLUME);
  }
 
View Full Code Here

  private Map<String, ItemStack> _preferredOutputs = new HashMap<String, ItemStack>();
 
  public TileEntityUnifier()
  {
    super(Machine.Unifier);
    _tank = new LiquidTank(LiquidContainerRegistry.BUCKET_VOLUME * 4);
    _roundingCompensation = 1;
  }
View Full Code Here

 
  protected TileEntityGrinder(Machine machine)
  {
    super(machine);
    _areaManager = new HarvestAreaManager(this, 2, 2, 1);
    _tank = new LiquidTank(4 * LiquidContainerRegistry.BUCKET_VOLUME);
    _rand = new Random();
  }
View Full Code Here

  protected TileEntityLiquidFabricator(int liquidId, int liquidFabPerTick, Machine machine)
  {
    super(machine, machine.getActivationEnergyMJ() * liquidFabPerTick);
    _liquidId = liquidId;
    _liquidFabPerTick = liquidFabPerTick;
    _tank = new LiquidTank(LiquidContainerRegistry.BUCKET_VOLUME);
  }
View Full Code Here

TOP

Related Classes of net.minecraftforge.liquids.LiquidTank

Copyright © 2018 www.massapicom. 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.