implement [PIP] Screeching Scorchbeast

This commit is contained in:
Susucre 2024-05-01 20:56:07 +02:00
parent 7c3bbed8f3
commit 53898eeb8b
4 changed files with 194 additions and 0 deletions

View file

@ -0,0 +1,30 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author Susucr
*/
public final class ZombieMutantToken extends TokenImpl {
public ZombieMutantToken() {
super("Zombie Mutant Token", "2/2 black Zombie Mutant creature token");
cardType.add(CardType.CREATURE);
color.setBlack(true);
subtype.add(SubType.ZOMBIE);
subtype.add(SubType.MUTANT);
power = new MageInt(2);
toughness = new MageInt(2);
}
private ZombieMutantToken(final ZombieMutantToken token) {
super(token);
}
@Override
public ZombieMutantToken copy() {
return new ZombieMutantToken(this);
}
}