mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 05:22:02 -08:00
[VOW] Implemented Edgar, Charmed Groom / Edgar Markov's Coffin
This commit is contained in:
parent
10185a0999
commit
8856d0a0ea
6 changed files with 223 additions and 18 deletions
|
|
@ -21,6 +21,7 @@ public enum CounterType {
|
|||
AWAKENING("awakening"),
|
||||
BLAZE("blaze"),
|
||||
BLOOD("blood"),
|
||||
BLOODLINE("bloodline"),
|
||||
BOOK("book"),
|
||||
BOUNTY("bounty"),
|
||||
BRIBERY("bribery"),
|
||||
|
|
|
|||
|
|
@ -0,0 +1,31 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.LifelinkAbility;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class EdgarMarkovsCoffinToken extends TokenImpl {
|
||||
|
||||
public EdgarMarkovsCoffinToken() {
|
||||
super("Vampire", "1/1 white and black Vampire creature token with lifelink");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setWhite(true);
|
||||
color.setBlack(true);
|
||||
subtype.add(SubType.VAMPIRE);
|
||||
power = new MageInt(1);
|
||||
toughness = new MageInt(1);
|
||||
this.addAbility(LifelinkAbility.getInstance());
|
||||
}
|
||||
|
||||
public EdgarMarkovsCoffinToken(final EdgarMarkovsCoffinToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public EdgarMarkovsCoffinToken copy() {
|
||||
return new EdgarMarkovsCoffinToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue