use of com.skelril.skree.content.zone.group.catacombs.instruction.CatacombsHealthInstruction in project Skree by Skelril.
the class CatacombsInstance method spawnStrong.
private Boss<Zombie, CatacombsBossDetail> spawnStrong(Location<World> loc) {
Zombie zombie = spawnZombie(loc);
Boss<Zombie, CatacombsBossDetail> boss = new Boss<>(zombie, new CatacombsBossDetail(this, wave * 2));
List<Instruction<BindCondition, Boss<Zombie, CatacombsBossDetail>>> bindProcessor = boss.getBindProcessor();
bindProcessor.add(new CatacombsHealthInstruction(25));
bindProcessor.add(new NamedBindInstruction<>("Wrathful Zombie"));
return boss;
}
use of com.skelril.skree.content.zone.group.catacombs.instruction.CatacombsHealthInstruction in project Skree by Skelril.
the class CatacombsInstance method spawnNormal.
private Boss<Zombie, CatacombsBossDetail> spawnNormal(Location<World> loc) {
Zombie zombie = spawnZombie(loc);
Boss<Zombie, CatacombsBossDetail> boss = new Boss<>(zombie, new CatacombsBossDetail(this, wave));
List<Instruction<BindCondition, Boss<Zombie, CatacombsBossDetail>>> bindProcessor = boss.getBindProcessor();
bindProcessor.add(new CatacombsHealthInstruction(20));
bindProcessor.add(new NamedBindInstruction<>("Guardian Zombie"));
return boss;
}
use of com.skelril.skree.content.zone.group.catacombs.instruction.CatacombsHealthInstruction in project Skree by Skelril.
the class CatacombsManager method setUpBoss.
private void setUpBoss() {
Sponge.getEventManager().registerListeners(SkreePlugin.inst(), new BossListener<>(bossManager, Zombie.class));
List<Instruction<BindCondition, Boss<Zombie, CatacombsBossDetail>>> bindProcessor = bossManager.getBindProcessor();
bindProcessor.add(new NamedBindInstruction<>("Necromancer"));
bindProcessor.add(new CatacombsHealthInstruction(200));
List<Instruction<UnbindCondition, Boss<Zombie, CatacombsBossDetail>>> unbindProcessor = bossManager.getUnbindProcessor();
unbindProcessor.add(new CheckedSpawnWave());
unbindProcessor.add(new WaveDropInstruction(2));
List<Instruction<DamageCondition, Boss<Zombie, CatacombsBossDetail>>> damageProcessor = bossManager.getDamageProcessor();
damageProcessor.add(new WaveDamageModifier());
}
Aggregations