[KHM] Implemented Firja's Retribution (#7396)

This commit is contained in:
Daniel Bomar 2021-01-15 16:47:18 -06:00 committed by GitHub
parent 0168453eed
commit c510df37e4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 118 additions and 0 deletions

View file

@ -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);
}
}