42 lines
1.3 KiB
Java
42 lines
1.3 KiB
Java
package org.bukkit.craftbukkit.entity;
|
|
|
|
import java.util.Collection;
|
|
import net.minecraft.server.EntityPotion;
|
|
import net.minecraft.server.MobEffect;
|
|
import net.minecraft.server.PotionUtil;
|
|
|
|
import org.apache.commons.lang.Validate;
|
|
import org.bukkit.Material;
|
|
import org.bukkit.craftbukkit.CraftServer;
|
|
import org.bukkit.craftbukkit.inventory.CraftItemStack;
|
|
import org.bukkit.craftbukkit.potion.CraftPotionUtil;
|
|
import org.bukkit.entity.EntityType;
|
|
import org.bukkit.entity.ThrownPotion;
|
|
import org.bukkit.inventory.ItemStack;
|
|
import org.bukkit.potion.PotionEffect;
|
|
|
|
import com.google.common.collect.ImmutableList;
|
|
|
|
public abstract class CraftThrownPotion extends CraftProjectile implements ThrownPotion {
|
|
public CraftThrownPotion(CraftServer server, EntityPotion entity) {
|
|
super(server, entity);
|
|
}
|
|
|
|
public Collection<PotionEffect> getEffects() {
|
|
ImmutableList.Builder<PotionEffect> builder = ImmutableList.builder();
|
|
for (MobEffect effect : PotionUtil.getEffects(getHandle().getItem())) {
|
|
builder.add(CraftPotionUtil.toBukkit(effect));
|
|
}
|
|
return builder.build();
|
|
}
|
|
|
|
public ItemStack getItem() {
|
|
return CraftItemStack.asBukkitCopy(getHandle().getItem());
|
|
}
|
|
|
|
@Override
|
|
public EntityPotion getHandle() {
|
|
return (EntityPotion) entity;
|
|
}
|
|
}
|