Large Refactor - Move all tokens into Mage/src/main/java/mage/game/permanent/token

This commit is contained in:
spjspj 2017-05-01 20:20:33 +10:00
parent 0d0fccc105
commit 1754a69f9b
484 changed files with 13394 additions and 4637 deletions

View file

@ -0,0 +1,32 @@
package mage.game.permanent.token;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import mage.MageInt;
import mage.abilities.keyword.FirstStrikeAbility;
import mage.constants.CardType;
/**
*
* @author spjspj
*/
public class HuntedDragonKnightToken extends Token {
final static private List<String> tokenImageSets = new ArrayList<>();
static {
tokenImageSets.addAll(Arrays.asList("ORI", "RTR", "C15"));
}
public HuntedDragonKnightToken() {
super("Knight", "2/2 white Knight creature tokens with first strike");
cardType.add(CardType.CREATURE);
color.setWhite(true);
subtype.add("Knight");
power = new MageInt(2);
toughness = new MageInt(2);
this.addAbility(FirstStrikeAbility.getInstance());
}
}