changed Hound to Dog

This commit is contained in:
Evan Kranzler 2020-06-05 20:17:41 -04:00
parent 6980fb1690
commit 74b6626020
82 changed files with 101 additions and 124 deletions

View file

@ -0,0 +1,29 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author spjspj
*/
public final class DogToken extends TokenImpl {
public DogToken() {
super("Dog", "1/1 green Dog creature token");
cardType.add(CardType.CREATURE);
subtype.add(SubType.DOG);
color.setGreen(true);
power = new MageInt(1);
toughness = new MageInt(1);
}
private DogToken(final DogToken token) {
super(token);
}
public DogToken copy() {
return new DogToken(this);
}
}