mirror of
https://github.com/magefree/mage.git
synced 2026-01-09 12:22:10 -08:00
[CMB1] Implement Evil Boros Charm (#11142)
This commit is contained in:
parent
58fdbc9345
commit
ecf4b11d2e
3 changed files with 94 additions and 0 deletions
|
|
@ -0,0 +1,33 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.HasteAbility;
|
||||
import mage.abilities.keyword.LifelinkAbility;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
/**
|
||||
* @author Susucr
|
||||
*/
|
||||
public class SpiritEvilBorosCharmToken extends TokenImpl {
|
||||
|
||||
public SpiritEvilBorosCharmToken() {
|
||||
super("Spirit Token", "1/1 colorless Spirit creature token with lifelink and haste");
|
||||
cardType.add(CardType.CREATURE);
|
||||
subtype.add(SubType.SPIRIT);
|
||||
|
||||
power = new MageInt(1);
|
||||
toughness = new MageInt(1);
|
||||
addAbility(LifelinkAbility.getInstance());
|
||||
addAbility(HasteAbility.getInstance());
|
||||
}
|
||||
|
||||
private SpiritEvilBorosCharmToken(final SpiritEvilBorosCharmToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SpiritEvilBorosCharmToken copy() {
|
||||
return new SpiritEvilBorosCharmToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue