From d3e47abe36950c3e0637ae51d4382c9004fda4d3 Mon Sep 17 00:00:00 2001 From: B1G-FUNGUS Date: Fri, 1 Oct 2021 21:22:00 -0700 Subject: [PATCH] Making The Herobrine Spawn More Complex AAAAAAAAAAAAAA I HATE PROGRAMMING I HATE PROGRAMMING --- .../quidproquo/rituals/HerobrineRitual.java | 44 +++++++++++++++++-- 1 file changed, 40 insertions(+), 4 deletions(-) diff --git a/src/main/java/top/penowl/quidproquo/rituals/HerobrineRitual.java b/src/main/java/top/penowl/quidproquo/rituals/HerobrineRitual.java index cf3e8e9..b8b4a9d 100644 --- a/src/main/java/top/penowl/quidproquo/rituals/HerobrineRitual.java +++ b/src/main/java/top/penowl/quidproquo/rituals/HerobrineRitual.java @@ -2,14 +2,22 @@ package top.penowl.quidproquo.rituals; import org.bukkit.Location; import org.bukkit.entity.Player; +import org.bukkit.inventory.EntityEquipment; +import org.bukkit.inventory.ItemStack; +import org.bukkit.inventory.meta.ItemMeta; +import org.bukkit.inventory.meta.SkullMeta; +import org.bukkit.potion.PotionEffect; +import org.bukkit.potion.PotionEffectType; import org.bukkit.Material; -import org.bukkit.World; import org.bukkit.block.Block; +import org.bukkit.entity.Entity; import org.bukkit.entity.EntityType; +import org.bukkit.entity.LivingEntity; import top.penowl.quidproquo.Ritual; public class HerobrineRitual extends Ritual { + final static int LONGTIME = 10000000; @Override public void setup() { @@ -21,16 +29,44 @@ public class HerobrineRitual extends Ritual { } @Override public void execute(Player caster, Player target, Location location) { + Entity herobrine; Location targetLocation = target.getLocation(); Block block = targetLocation.clone().add(0, 1, 0).getBlock(); for (int x = -5; x <= 5; x++) { for (int z = -5; z <= 5; z++) { - if(block.getRelative(x, 0, z).getType() == Material.AIR) { - targetLocation.getWorld().spawnEntity(targetLocation.clone().add(x, 1, z), EntityType.ZOMBIE); + Material footblock = block.getRelative(x, 0, z).getType(); + Material headblock = block.getRelative(x, 1, z).getType(); + if(( (footblock == Material.AIR) || (footblock == Material.WATER) ) && + ( (headblock == Material.AIR) || (footblock == Material.WATER) )) { + herobrine = targetLocation.getWorld().spawnEntity(targetLocation.clone().add(x, 0, z), EntityType.ZOMBIE); + brine(herobrine); return; } } } + herobrine = targetLocation.getWorld().spawnEntity(targetLocation, EntityType.ZOMBIE); + brine(herobrine); + } + private static void brine(Entity herobrine) { + LivingEntity heroBine = (LivingEntity)herobrine; + heroBine.setCustomName("Herobrine"); + heroBine.setMaxHealth(40.0); + heroBine.setHealth(40.0); + PotionEffect resistance = new PotionEffect(PotionEffectType.DAMAGE_RESISTANCE, LONGTIME, 2); + PotionEffect fireResistance = new PotionEffect(PotionEffectType.FIRE_RESISTANCE, LONGTIME, 1); + PotionEffect speed = new PotionEffect(PotionEffectType.SPEED, LONGTIME, 1); + heroBine.addPotionEffect(resistance); + heroBine.addPotionEffect(fireResistance); + heroBine.addPotionEffect(speed); + EntityEquipment equipment = heroBine.getEquipment(); + ItemStack headStack = new ItemStack(Material.SKULL); + ItemMeta headMeta = headStack.getItemMeta(); + SkullMeta skullMeta = (SkullMeta)headMeta; + skullMeta.setOwner("Herobrine"); + equipment.setHelmet(headStack); + equipment.setChestplate(new ItemStack(Material.DIAMOND_CHESTPLATE)); + equipment.setLeggings(new ItemStack(Material.DIAMOND_LEGGINGS)); + equipment.setBoots(new ItemStack(Material.DIAMOND_BOOTS)); + equipment.setItemInHand(new ItemStack(Material.DIAMOND_SWORD)); } - }