Package forestry.apiculture.genetics

Source Code of forestry.apiculture.genetics.AlleleEffectPotion

/*******************************************************************************
* Copyright (c) 2011-2014 SirSengir.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Lesser Public License v3
* which accompanies this distribution, and is available at
* http://www.gnu.org/licenses/lgpl-3.0.txt
*
* Various Contributors including, but not limited to:
* SirSengir (original work), CovertJaguar, Player, Binnie, MysteriousAges
******************************************************************************/
package forestry.apiculture.genetics;

import java.util.List;

import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.potion.Potion;
import net.minecraft.potion.PotionEffect;
import net.minecraft.util.AxisAlignedBB;

import forestry.api.apiculture.IBeeGenome;
import forestry.api.apiculture.IBeeHousing;
import forestry.api.genetics.IEffectData;

public class AlleleEffectPotion extends AlleleEffectThrottled {

  private int potionId = 0;
  private final int duration;

  public AlleleEffectPotion(String uid, String name, boolean isDominant, Potion potion, int duration, boolean requiresWorking) {
    super(uid, name, isDominant, 200, requiresWorking, false);
    potionId = potion.getId();
    this.duration = duration;
  }

  @Override
  public IEffectData doEffect(IBeeGenome genome, IEffectData storedData, IBeeHousing housing) {

    if (isHalted(storedData, housing))
      return storedData;

    AxisAlignedBB beatifyBox = getBounding(genome, housing, 1.0f);
    @SuppressWarnings("rawtypes")
    List list = housing.getWorld().getEntitiesWithinAABB(EntityPlayer.class, beatifyBox);

    for (Object obj : list) {
      EntityPlayer player = (EntityPlayer) obj;
      player.addPotionEffect(new PotionEffect(potionId, duration, 0));
    }

    return storedData;
  }

}
TOP

Related Classes of forestry.apiculture.genetics.AlleleEffectPotion

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.