Examples of LiquidTank


Examples of net.minecraftforge.liquids.LiquidTank

  private boolean _jammed;
 
  public TileEntitySewer()
  {
    super(Machine.Sewer);
    _tank = new LiquidTank(1 * LiquidContainerRegistry.BUCKET_VOLUME);
    _areaManager = new HarvestAreaManager(this, 0, 1, 0);
    _areaManager.setOverrideDirection(ForgeDirection.UP);
  }
View Full Code Here

Examples of net.minecraftforge.liquids.LiquidTank

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

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

Examples of net.minecraftforge.liquids.LiquidTank

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

Examples of net.minecraftforge.liquids.LiquidTank

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

Examples of net.minecraftforge.liquids.LiquidTank

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

Examples of net.minecraftforge.liquids.LiquidTank

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

Examples of net.minecraftforge.liquids.LiquidTank

  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

Examples of net.minecraftforge.liquids.LiquidTank

 
  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

Examples of net.minecraftforge.liquids.LiquidTank

  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
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.