mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
[BLB] Implement Builder's Talent
This commit is contained in:
parent
5768c9d43d
commit
b6bf126dd2
3 changed files with 117 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue