mirror of
https://github.com/magefree/mage.git
synced 2025-12-27 22:12:03 -08:00
[VOW] Implemented Sorin the Mirthless
This commit is contained in:
parent
7da842a754
commit
096a2868a9
3 changed files with 124 additions and 0 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue