mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 04:52:07 -08:00
[OTJ] Implement Baron Bertram Graywater
This commit is contained in:
parent
da6cedf0b1
commit
ef6ee4d0ea
3 changed files with 96 additions and 0 deletions
|
|
@ -0,0 +1,32 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.LifelinkAbility;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
/**
|
||||
* @author Susucr
|
||||
*/
|
||||
public final class VampireRogueToken extends TokenImpl {
|
||||
|
||||
public VampireRogueToken() {
|
||||
super("Vampire Rogue Token", "black Vampire Rogue creature token with lifelink");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setBlack(true);
|
||||
subtype.add(SubType.VAMPIRE);
|
||||
subtype.add(SubType.ROGUE);
|
||||
power = new MageInt(1);
|
||||
toughness = new MageInt(1);
|
||||
this.addAbility(LifelinkAbility.getInstance());
|
||||
}
|
||||
|
||||
private VampireRogueToken(final VampireRogueToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
@Override
|
||||
public VampireRogueToken copy() {
|
||||
return new VampireRogueToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue