forked from External/mage
* Images: added Commander 2021 tokens;
This commit is contained in:
parent
03b012bc1e
commit
6a3f2ff420
49 changed files with 362 additions and 303 deletions
|
|
@ -0,0 +1,32 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
import java.util.Arrays;
|
||||
|
||||
/**
|
||||
* @author spjspj
|
||||
*/
|
||||
public final class Kraken99Token extends TokenImpl {
|
||||
|
||||
public Kraken99Token() {
|
||||
super("Kraken", "9/9 blue Kraken creature token");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setBlue(true);
|
||||
subtype.add(SubType.KRAKEN);
|
||||
power = new MageInt(9);
|
||||
toughness = new MageInt(9);
|
||||
|
||||
availableImageSetCodes = Arrays.asList("BNG", "C14", "DDO", "C21");
|
||||
}
|
||||
|
||||
public Kraken99Token(final Kraken99Token token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public Kraken99Token copy() {
|
||||
return new Kraken99Token(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue