Extra Features
// The type value can be 1-3; 1 = normal meteor; 2 = exploding meteor; 3 = splitting meteor
MeteorShower.spawnMeteor(int type, Location spawn, Location target, int size);// You can also infect specified targets using this
BlackPlague.infect(LivingEntity entity);
// You can also cure an entity using this
BlackPlague.cureEntity(LivingEntity entity);Geyser geyser = new Geyser(1);
// Creates a water geyser at the location
geyser.createWater(Location location);
// Creates a lava geyser at the location
geyser.createLava(Location location);Last updated