use of com.teamwizardry.wizardry.common.entity.EntitySpiritWight in project Wizardry by TeamWizardry.
the class BiomeUnderWorld method onTickPlayerTick.
@SubscribeEvent
public void onTickPlayerTick(TickEvent.PlayerTickEvent event) {
if (event.player.world.isRemote)
return;
if (!event.player.world.getGameRules().getBoolean("doMobSpawning"))
return;
if (RandUtil.nextInt(300) == 0 && getEntityCount(EntityFairy.class, event.player.getPosition(), event.player.world, 64) < 15) {
BlockPos pos = new BlockPos(event.player.posX + RandUtil.nextInt(-64, 64), RandUtil.nextInt(110, 150), event.player.posZ + RandUtil.nextInt(-64, 64));
if (event.player.world.getBiome(pos) == this && event.player.world.isAirBlock(pos)) {
EntityFairy entity = new EntityFairy(event.player.world);
entity.setPosition(pos.getX(), pos.getY(), pos.getZ());
event.player.world.spawnEntity(entity);
}
}
if (RandUtil.nextInt(500) == 0 && getEntityCount(EntitySpiritWight.class, event.player.getPosition(), event.player.world, 128) < 1) {
BlockPos pos = new BlockPos(event.player.posX + RandUtil.nextInt(-128, 128), event.player.posY + RandUtil.nextInt(-10, 10), event.player.posZ + RandUtil.nextInt(-128, 128));
if (event.player.world.getBiome(pos) == this && pos.getDistance((int) event.player.posX, (int) event.player.posY, (int) event.player.posZ) > 64) {
EntitySpiritWight entity = new EntitySpiritWight(event.player.world);
entity.setPosition(pos.getX(), pos.getY(), pos.getZ());
entity.enablePersistence();
event.player.world.spawnEntity(entity);
}
}
if (RandUtil.nextInt(500) == 0 && getEntityCount(EntityUnicorn.class, event.player.getPosition(), event.player.world, 64) < 3) {
BlockPos.MutableBlockPos pos = new BlockPos.MutableBlockPos((int) event.player.posX + RandUtil.nextInt(-64, 64), 100, (int) event.player.posZ + RandUtil.nextInt(-64, 64));
if (event.player.world.getBiome(pos) == this && pos.getDistance((int) event.player.posX, (int) event.player.posY, (int) event.player.posZ) > 30) {
boolean success = false;
for (int i = 150; i > 50; i--) {
if (!event.player.world.isAirBlock(pos.move(EnumFacing.DOWN, -1))) {
success = true;
break;
}
}
if (!success) {
BlockPos fixed = new BlockPos(pos.getX(), 100, pos.getZ());
for (int k = 100; k > 30; k--) {
for (int i = -20; i < 20; i++) {
for (int j = -20; j < 20; j++) {
if (!event.player.world.isAirBlock(pos.setPos(fixed).add(i, k, j))) {
success = true;
break;
}
}
}
}
}
if (success) {
pos.move(EnumFacing.UP, 2);
EntityUnicorn entity = new EntityUnicorn(event.player.world);
entity.setPosition(pos.getX(), pos.getY(), pos.getZ());
event.player.world.spawnEntity(entity);
}
}
}
}
Aggregations