Added a fake player ritual
This commit is contained in:
parent
222b0b0732
commit
7c6e6ce9e5
44
src/main/java/top/penowl/quidproquo/rituals/FakePlayer.java
Normal file
44
src/main/java/top/penowl/quidproquo/rituals/FakePlayer.java
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
package top.penowl.quidproquo.rituals;
|
||||||
|
|
||||||
|
import org.bukkit.Location;
|
||||||
|
import org.bukkit.Material;
|
||||||
|
import org.bukkit.entity.Entity;
|
||||||
|
import org.bukkit.entity.EntityType;
|
||||||
|
import org.bukkit.entity.LivingEntity;
|
||||||
|
import org.bukkit.entity.Player;
|
||||||
|
import org.bukkit.entity.Slime;
|
||||||
|
import org.bukkit.potion.PotionEffect;
|
||||||
|
import org.bukkit.potion.PotionEffectType;
|
||||||
|
|
||||||
|
import java.util.Random;
|
||||||
|
|
||||||
|
import top.penowl.quidproquo.Ritual;
|
||||||
|
|
||||||
|
public class FakePlayer extends Ritual {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void setup() {
|
||||||
|
addIngredient(Material.WHEAT, 32);
|
||||||
|
addIngredient(Material.LEAVES, 32);
|
||||||
|
name = "player illusion";
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void execute(Player caster, Player target, Location location) {
|
||||||
|
Location loc = target.getLocation();
|
||||||
|
Random random = new Random();
|
||||||
|
int x = random.nextInt(51) - 25;
|
||||||
|
int y = random.nextInt(51) - 25;
|
||||||
|
int z = random.nextInt(51) - 25;
|
||||||
|
Entity fakePlayer = target.getWorld().spawnEntity(loc.clone().add(x, y, z), EntityType.SLIME);
|
||||||
|
fakePlayer.setCustomName(caster.getName());
|
||||||
|
LivingEntity fp_livingEntity = (LivingEntity)fakePlayer;
|
||||||
|
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));
|
||||||
|
Slime fpSlime = (Slime)fp_livingEntity;
|
||||||
|
fpSlime.setSize(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -19,7 +19,7 @@ public class HardPenorRitual extends Ritual {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void execute(Player caster, Player target, Location location) {
|
public void execute(Player caster, Player target, Location location) {
|
||||||
Block shaft = target.getLocation().getBlock();
|
Block shaft = caster.getLocation().getBlock();
|
||||||
Block ball1 = shaft.getRelative(2, -1, 0);
|
Block ball1 = shaft.getRelative(2, -1, 0);
|
||||||
Block ball2 = shaft.getRelative(-2,-1,0);
|
Block ball2 = shaft.getRelative(-2,-1,0);
|
||||||
//TODO USE ELEGANT MATHEMATICS INSTEAD OF SCUFFED IF STATEMENTS
|
//TODO USE ELEGANT MATHEMATICS INSTEAD OF SCUFFED IF STATEMENTS
|
||||||
|
Loading…
x
Reference in New Issue
Block a user