mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 04:52:07 -08:00
Refactor - moved VampireKnightToken to shared area
This commit is contained in:
parent
c00692ffad
commit
ffd333c034
3 changed files with 22 additions and 16 deletions
|
|
@ -0,0 +1,19 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.LifelinkAbility;
|
||||
import mage.constants.CardType;
|
||||
|
||||
public class VampireKnightToken extends Token {
|
||||
|
||||
public VampireKnightToken() {
|
||||
super("Vampire Knight", "1/1 black Vampire Knight creature token with lifelink");
|
||||
cardType.add(CardType.CREATURE);
|
||||
subtype.add("Vampire");
|
||||
subtype.add("Knight");
|
||||
color.setBlack(true);
|
||||
power = new MageInt(1);
|
||||
toughness = new MageInt(1);
|
||||
addAbility(LifelinkAbility.getInstance());
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue