Package smack.down

Examples of smack.down.Effect


  public Assassination() {
    super("Assassination", Faction.Ninjas, Target.Minion);
  }
 
  public void play(final Minion minion, Callback callback) {
    Effect killAtEndOfTurn = new Effect() {
      public void expire() {
        minion.destroy();
      }
    };
   
View Full Code Here

TOP

Related Classes of smack.down.Effect

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.