[DSC] Implement Rendmaw, Creaking Nest

This commit is contained in:
PurpleCrowbar 2025-01-18 01:30:37 +00:00
parent 10a25e3f21
commit e399e233d7
3 changed files with 165 additions and 0 deletions

View file

@ -0,0 +1,32 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.abilities.keyword.FlyingAbility;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author PurpleCrowbar
*/
public final class Black22BirdToken extends TokenImpl {
public Black22BirdToken() {
super("Bird Token", "2/2 black Bird creature token with flying");
cardType.add(CardType.CREATURE);
color.setBlack(true);
subtype.add(SubType.BIRD);
power = new MageInt(2);
toughness = new MageInt(2);
addAbility(FlyingAbility.getInstance());
}
private Black22BirdToken(final Black22BirdToken token) {
super(token);
}
@Override
public Black22BirdToken copy() {
return new Black22BirdToken(this);
}
}