forked from External/mage
changed Hound to Dog
This commit is contained in:
parent
6980fb1690
commit
74b6626020
82 changed files with 101 additions and 124 deletions
29
Mage/src/main/java/mage/game/permanent/token/DogToken.java
Normal file
29
Mage/src/main/java/mage/game/permanent/token/DogToken.java
Normal 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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue