Examples of PlayMinion


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

Examples of smack.down.moves.PlayMinion

  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

Examples of smack.down.moves.PlayMinion

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

Examples of smack.down.moves.PlayMinion

    super("Abduction", Faction.Aliens, Target.Minion);
  }
 
  public void play(Minion minion, Callback callback) {
    minion.returnToHand();
    getOwner().addMove(new PlayMinion());
  }
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.