Examples of LiquidTank


Examples of buildcraft.api.liquids.LiquidTank

  }
 
 
  @Override
  public LiquidTank[] getLiquidSlots() {
    return new LiquidTank[] { new LiquidTank(liquidId, liquidQty, MAX_LIQUID) };
  }
View Full Code Here

Examples of buildcraft.api.liquids.LiquidTank

  }
 
 
  @Override
  public LiquidTank[] getLiquidSlots() {
    return new LiquidTank[] { new LiquidTank(liquidId, liquidQty, MAX_LIQUID) };
  }
View Full Code Here

Examples of net.minecraftforge.liquids.LiquidTank

 
  public TileEntityRancher()
  {
    super(Machine.Rancher);
    _areaManager = new HarvestAreaManager(this, 2, 2, 1);
    _tank = new LiquidTank(4 * LiquidContainerRegistry.BUCKET_VOLUME);
  }
 
View Full Code Here

Examples of net.minecraftforge.liquids.LiquidTank

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

Examples of net.minecraftforge.liquids.LiquidTank

  public TileEntityLiquiCrafter()
  {
    super(Machine.LiquiCrafter);
    for(int i = 0; i < 9; i++)
    {
      _tanks[i] = new LiquidTank(LiquidContainerRegistry.BUCKET_VOLUME * 10);
    }
  }
 
View Full Code Here

Examples of net.minecraftforge.liquids.LiquidTank

  private static final int[] _outputValues = { 0, 5, 25, 70, 150, 275, 455, 700, 1020, 1425 };
 
  public TileEntityBioReactor()
  {
    super(Machine.BioReactor);
    _tank = new LiquidTank(LiquidContainerRegistry.BUCKET_VOLUME * 4);
  }
 
View Full Code Here

Examples of net.minecraftforge.liquids.LiquidTank

 
  public TileEntityHarvester()
  {
    super(Machine.Harvester);
    _areaManager = new HarvestAreaManager(this, 1, 0, 0);
    _tank = new LiquidTank(4 * LiquidContainerRegistry.BUCKET_VOLUME);
    _settings = new HashMap<String, Boolean>();
   
    _settings.put("silkTouch", false);
    _settings.put("harvestSmallMushrooms", false);
    _settings.put("harvestJungleWood", false);
View Full Code Here

Examples of net.minecraftforge.liquids.LiquidTank

  {
    super(Machine.AutoEnchanter);
    _rand = new Random();
   
    _targetLevel = 30;
    _tank = new LiquidTank(4 * LiquidContainerRegistry.BUCKET_VOLUME);
  }
 
View Full Code Here

Examples of net.minecraftforge.liquids.LiquidTank

  private int _tick;
 
  public TileEntitySludgeBoiler()
  {
    super(Machine.SludgeBoiler);
    _tank = new LiquidTank(4 * LiquidContainerRegistry.BUCKET_VOLUME);
   
    _rand = new Random();
  }
View Full Code Here

Examples of net.minecraftforge.liquids.LiquidTank

  public TileEntityLiquidRouter()
  {
    super(Machine.LiquidRouter);
    for(int i = 0; i < 6; i++)
    {
      _bufferTanks[i] = new LiquidTank(LiquidContainerRegistry.BUCKET_VOLUME);
      _bufferTanks[i].setTankPressure(-1);
    }
  }
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.