mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 04:22:01 -08:00
[KHM] Implemented Firja's Retribution (#7396)
This commit is contained in:
parent
0168453eed
commit
c510df37e4
3 changed files with 118 additions and 0 deletions
|
|
@ -0,0 +1,31 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.keyword.FlyingAbility;
|
||||
import mage.abilities.keyword.VigilanceAbility;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
|
||||
public final class AngelWarriorVigilanceToken extends TokenImpl {
|
||||
|
||||
public AngelWarriorVigilanceToken() {
|
||||
super("Angel Warrior", "4/4 white Angel Warrior creature token with flying and vigilance");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setWhite(true);
|
||||
subtype.add(SubType.ANGEL);
|
||||
subtype.add(SubType.WARRIOR);
|
||||
power = new MageInt(4);
|
||||
toughness = new MageInt(4);
|
||||
addAbility(FlyingAbility.getInstance());
|
||||
addAbility(VigilanceAbility.getInstance());
|
||||
}
|
||||
|
||||
private AngelWarriorVigilanceToken(final AngelWarriorVigilanceToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
@Override
|
||||
public AngelWarriorVigilanceToken copy() {
|
||||
return new AngelWarriorVigilanceToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue