[BLB] Implement Builder's Talent

This commit is contained in:
theelk801 2024-07-23 17:38:27 -04:00
parent 5768c9d43d
commit b6bf126dd2
3 changed files with 117 additions and 0 deletions

View file

@ -0,0 +1,32 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.abilities.keyword.DefenderAbility;
import mage.constants.CardType;
import mage.constants.SubType;
/**
* @author TheElk801
*/
public final class WallWhiteToken extends TokenImpl {
public WallWhiteToken() {
super("Wall Token", "0/4 white Wall artifact creature token with defender");
cardType.add(CardType.ARTIFACT);
cardType.add(CardType.CREATURE);
subtype.add(SubType.WALL);
color.setWhite(true);
power = new MageInt(0);
toughness = new MageInt(4);
addAbility(DefenderAbility.getInstance());
}
private WallWhiteToken(final WallWhiteToken token) {
super(token);
}
public WallWhiteToken copy() {
return new WallWhiteToken(this);
}
}