Ability ability = abilities.get(counter++ % abilities.size());
// And make each boss in this boss wave use it!
for (MABoss boss : bosses) {
wave.announceAbility(ability, boss, arena);
ability.execute(arena, boss);
}
// Schedule for another run!
arena.scheduleTask(this, wave.getAbilityInterval());
}