Package smack.down.moves

Examples of smack.down.moves.PlayMinion


  public Zapbot() {
    super("Zapbot", Faction.Robots, 2);
  }
 
  public void play(Base base, Callback callback) {
    getOwner().addMove(new PlayMinion(2));
  }
View Full Code Here


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

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

    super("Abduction", Faction.Aliens, Target.Minion);
  }
 
  public void play(Minion minion, Callback callback) {
    minion.returnToHand();
    getOwner().addMove(new PlayMinion());
  }
View Full Code Here

TOP

Related Classes of smack.down.moves.PlayMinion

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.