Package smack.down

Examples of smack.down.Faction


  public SeaDogs() {
    super("Sea Dogs", Faction.Pirates, Target.Base);
  }
 
  public void play(Base base, Callback callback) {
    Faction faction = callback.selectFaction();
    Base destBase = callback.selectBaseInPlay("Select destination Base", false, Callback.anyOtherBase(base));
   
    for (Minion minion : base.getMinions())
      if (minion.getFaction() == faction)
        minion.setBase(destBase);
View Full Code Here

TOP

Related Classes of smack.down.Faction

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.