Package com.garbagemule.MobArena.waves.ability

Examples of com.garbagemule.MobArena.waves.ability.Ability.execute()


        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());
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.