forked from External/mage
Implement 6 cmc pws (except Teferi) and rin (#6611)
[M21] Implement 6 cmc pws (except Teferi) and rin
This commit is contained in:
parent
d1da9ad843
commit
a897df7c79
16 changed files with 681 additions and 134 deletions
|
|
@ -0,0 +1,31 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author htrajan
|
||||
*/
|
||||
public final class WhiteDogToken extends TokenImpl {
|
||||
|
||||
public WhiteDogToken() {
|
||||
super("Dog", "1/1 white Dog creature token");
|
||||
cardType.add(CardType.CREATURE);
|
||||
subtype.add(SubType.DOG);
|
||||
|
||||
color.setWhite(true);
|
||||
power = new MageInt(1);
|
||||
toughness = new MageInt(1);
|
||||
}
|
||||
|
||||
private WhiteDogToken(final WhiteDogToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public WhiteDogToken copy() {
|
||||
return new WhiteDogToken(this);
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue