mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 21:12:04 -08:00
C20 Gavi Nest Warden (#6452)
* C20 Gavi Nest Warden * remove unneeded predicate; set text in effect; remove unneeded constructor param for static ability * staticText * rebuild
This commit is contained in:
parent
a1118292f2
commit
f6872732f2
3 changed files with 146 additions and 0 deletions
|
|
@ -0,0 +1,27 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
public final class DinosaurCatToken extends TokenImpl {
|
||||
public DinosaurCatToken() {
|
||||
super("Dinosaur Cat", "2/2 red and white Dinosaur Cat creature token");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setRed(true);
|
||||
color.setWhite(true);
|
||||
subtype.add(SubType.DINOSAUR);
|
||||
subtype.add(SubType.CAT);
|
||||
power = new MageInt(2);
|
||||
toughness = new MageInt(2);
|
||||
}
|
||||
|
||||
public DinosaurCatToken(final DinosaurCatToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
@Override
|
||||
public DinosaurCatToken copy() {
|
||||
return new DinosaurCatToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue