[VOW] Implemented Sorin the Mirthless

This commit is contained in:
Daniel Bomar 2021-10-29 12:24:31 -05:00
parent 7da842a754
commit 096a2868a9
No known key found for this signature in database
GPG key ID: C86C8658F4023918
3 changed files with 124 additions and 0 deletions

View file

@ -0,0 +1,34 @@
package mage.game.permanent.token;
import mage.MageInt;
import mage.abilities.keyword.FlyingAbility;
import mage.abilities.keyword.LifelinkAbility;
import mage.constants.CardType;
import mage.constants.SubType;
/**
*
* @author weirddan455
*/
public class VampireLifelinkToken extends TokenImpl {
public VampireLifelinkToken() {
super("Vampire", "2/3 black Vampire creature token with flying and lifelink");
cardType.add(CardType.CREATURE);
color.setBlack(true);
subtype.add(SubType.VAMPIRE);
power = new MageInt(2);
toughness = new MageInt(3);
addAbility(FlyingAbility.getInstance());
addAbility(LifelinkAbility.getInstance());
}
private VampireLifelinkToken(final VampireLifelinkToken token) {
super(token);
}
@Override
public VampireLifelinkToken copy() {
return new VampireLifelinkToken(this);
}
}