2021-10-04 18:14:56 -07:00

35 lines
1.1 KiB
Java

package top.penowl.quidproquo.rituals;
import org.bukkit.Location;
import org.bukkit.Material;
import org.bukkit.entity.EntityType;
import org.bukkit.entity.Player;
import org.bukkit.inventory.ItemStack;
import org.bukkit.potion.PotionEffect;
import org.bukkit.potion.PotionEffectType;
import top.penowl.quidproquo.Ritual;
public class QuicktimeRitual extends Ritual {
@Override
public void setup() {
addIngredient(Material.WHEAT, 64*2);
addIngredient(Material.POTION, 1);
addIngredient(Material.SPIDER_EYE, 1);
addSacrifice(EntityType.SPIDER, 1);
name = "quicktime";
health = 4;
backfire = 0.15;
description = "Force your enemy to undergo a quicktime event.";
}
@Override
public void execute(Player caster, Player target, Location location) {
target.addPotionEffect(new PotionEffect(PotionEffectType.POISON, 60, 2));
target.getWorld().dropItemNaturally(target.getLocation(), new ItemStack(Material.MILK_BUCKET, 1));
target.sendMessage("DRINK THE MILK IDIOT");
}
}