Merge branch 'main' of github.com:PenguinOwl/QuidProQuo

This commit is contained in:
Edith Boles 2021-10-04 17:21:01 -07:00
commit 1f656b5cbb
2 changed files with 13 additions and 13 deletions

View File

@ -2,13 +2,13 @@ package top.penowl.quidproquo.rituals;
import org.bukkit.Location; import org.bukkit.Location;
import org.bukkit.Material; import org.bukkit.Material;
import org.bukkit.entity.Entity;
import org.bukkit.entity.EntityType; import org.bukkit.entity.EntityType;
import org.bukkit.entity.LivingEntity; import org.bukkit.entity.LivingEntity;
import org.bukkit.entity.Player; import org.bukkit.entity.Player;
import org.bukkit.entity.Slime; import org.bukkit.entity.Slime;
import org.bukkit.potion.PotionEffect; import org.bukkit.inventory.EntityEquipment;
import org.bukkit.potion.PotionEffectType; import org.bukkit.inventory.ItemStack;
import org.bukkit.inventory.meta.SkullMeta;
import java.util.Random; import java.util.Random;
@ -32,18 +32,17 @@ public class FakePlayerRitual extends Ritual {
int x = random.nextInt(51) - 25; int x = random.nextInt(51) - 25;
int y = random.nextInt(51) - 25; int y = random.nextInt(51) - 25;
int z = random.nextInt(51) - 25; int z = random.nextInt(51) - 25;
Entity fakePlayer = target.getWorld().spawnEntity(loc.clone().add(x, y, z), EntityType.SLIME); Slime slime = (Slime)target.getWorld().spawnEntity(loc.clone().add(x, y, z), EntityType.SLIME);
LivingEntity fp_livingEntity = (LivingEntity)fakePlayer; LivingEntity armorStand = (LivingEntity)target.getWorld().spawnEntity(loc.clone().add(x, y, z), EntityType.ARMOR_STAND);
fp_livingEntity.setMaxHealth(100.0);
fp_livingEntity.setHealth(100.0);
fp_livingEntity.addPotionEffect(new PotionEffect(PotionEffectType.DAMAGE_RESISTANCE, 200, 100));
fp_livingEntity.addPotionEffect(new PotionEffect(PotionEffectType.WITHER, 200, 1));
Entity armorStand = target.getWorld().spawnEntity(loc.clone().add(x, y, z), EntityType.ARMOR_STAND);
armorStand.setCustomName(caster.getName()); armorStand.setCustomName(caster.getName());
armorStand.setCustomNameVisible(true); armorStand.setCustomNameVisible(true);
fp_livingEntity.setPassenger(armorStand); slime.setPassenger(armorStand);
Slime fpSlime = (Slime)fp_livingEntity; slime.setSize(1);
fpSlime.setSize(1); EntityEquipment equipment = armorStand.getEquipment();
ItemStack skull = new ItemStack(Material.SKULL);
SkullMeta meta = (SkullMeta)skull;
meta.setOwner(caster.getName());
equipment.setHelmet(skull);
} }
} }

View File

@ -65,6 +65,7 @@ public class HerobrineRitual extends Ritual {
ItemStack skull = new ItemStack(Material.SKULL_ITEM, 1, (short) 3); ItemStack skull = new ItemStack(Material.SKULL_ITEM, 1, (short) 3);
SkullMeta meta = (SkullMeta) skull.getItemMeta(); SkullMeta meta = (SkullMeta) skull.getItemMeta();
meta.setOwner("MHF_Herobrine"); meta.setOwner("MHF_Herobrine");
meta.setDisplayName("Herobrine's Head");
skull.setItemMeta(meta); skull.setItemMeta(meta);
equipment.setHelmet(skull); equipment.setHelmet(skull);
equipment.setChestplate(new ItemStack(Material.DIAMOND_CHESTPLATE)); equipment.setChestplate(new ItemStack(Material.DIAMOND_CHESTPLATE));