Package smack.down.moves

Examples of smack.down.moves.PlayAction


    move.play(this, callback);
  }
 
  public void beginTurn() {
    moves.add(new PlayMinion());
    moves.add(new PlayAction());
   
    for (Effect effect : effectsBeginTurnExpire)
      effect.expire();
   
    effectsBeginTurnExpire.clear();
View Full Code Here


  public Chronomage() {
    super("Chronomage", Faction.Wizards, 3);
  }
 
  public void play(Base base, Callback callback) {
    getOwner().addMove(new PlayAction());
  }
View Full Code Here

  public TimeLoop() {
    super("Time Loop", Faction.Wizards, Target.General);
  }
 
  public void play(Callback callback) {
    getOwner().addMove(new PlayAction());
    getOwner().addMove(new PlayAction());
  }
View Full Code Here

TOP

Related Classes of smack.down.moves.PlayAction

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.