Package com.jcloisterzone.game.capability.PlagueCapability

Examples of com.jcloisterzone.game.capability.PlagueCapability.PlagueSource


    }

    @Override
    public void enter() {
        if (getTile().hasTrigger(TileTrigger.PLAGUE)) {
            PlagueSource source = new PlagueSource(getTile().getPosition());
            plagueCap.getPlagueSources().add(source);
        } else {
            List<Position> sources = plagueCap.getActiveSources();
            if (!sources.isEmpty()) {
                //TODO spread flea
View Full Code Here

TOP

Related Classes of com.jcloisterzone.game.capability.PlagueCapability.PlagueSource

Copyright © 2018 www.massapicom. 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.