[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,86 @@
package mage.cards.f;
import java.util.UUID;
import mage.abilities.Ability;
import mage.abilities.common.SagaAbility;
import mage.abilities.common.SimpleActivatedAbility;
import mage.abilities.costs.common.TapSourceCost;
import mage.abilities.effects.common.CreateTokenEffect;
import mage.abilities.effects.common.DestroyTargetEffect;
import mage.abilities.effects.common.continuous.GainAbilityAllEffect;
import mage.abilities.keyword.DoubleStrikeAbility;
import mage.constants.Duration;
import mage.constants.SagaChapter;
import mage.constants.SubType;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.filter.common.FilterControlledPermanent;
import mage.filter.common.FilterCreaturePermanent;
import mage.filter.predicate.ObjectSourcePlayer;
import mage.filter.predicate.ObjectSourcePlayerPredicate;
import mage.game.Game;
import mage.game.permanent.Permanent;
import mage.game.permanent.token.AngelWarriorVigilanceToken;
import mage.target.common.TargetCreaturePermanent;
/**
*
* @author weirddan455
*/
public final class FirjasRetribution extends CardImpl {
private static final FilterCreaturePermanent filter
= new FilterCreaturePermanent("creature with less power than this creature");
private static final FilterControlledPermanent filter2
= new FilterControlledPermanent(SubType.ANGEL, "Angels you control");
static {
filter.add(FirjasRetributionPredicate.instance);
}
public FirjasRetribution(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT}, "{1}{W}{W}{B}");
this.subtype.add(SubType.SAGA);
// (As this Saga enters and after your draw step, add a lore counter. Sacrifice after III.)
SagaAbility sagaAbility = new SagaAbility(this, SagaChapter.CHAPTER_III);
// I Create a 4/4 white Angel Warrior creature token with flying and vigilance.
sagaAbility.addChapterEffect(this, SagaChapter.CHAPTER_I, new CreateTokenEffect(new AngelWarriorVigilanceToken()));
// II Until end of turn, Angels you control gain "{T}: Destroy target creature with less power than this creature."
Ability ability = new SimpleActivatedAbility(new DestroyTargetEffect(), new TapSourceCost());
ability.addTarget(new TargetCreaturePermanent(filter));
sagaAbility.addChapterEffect(this, SagaChapter.CHAPTER_II, new GainAbilityAllEffect(
ability, Duration.EndOfTurn, filter2
));
// III Angels you control gain double strike until end of turn.
sagaAbility.addChapterEffect(this, SagaChapter.CHAPTER_III, new GainAbilityAllEffect(
DoubleStrikeAbility.getInstance(), Duration.EndOfTurn, filter2
));
this.addAbility(sagaAbility);
}
private FirjasRetribution(final FirjasRetribution card) {
super(card);
}
@Override
public FirjasRetribution copy() {
return new FirjasRetribution(this);
}
}
enum FirjasRetributionPredicate implements ObjectSourcePlayerPredicate<ObjectSourcePlayer<Permanent>> {
instance;
@Override
public boolean apply(ObjectSourcePlayer<Permanent> input, Game game) {
Permanent permanent = game.getPermanentOrLKIBattlefield(input.getSourceId());
return permanent != null && input.getObject().getPower().getValue() < permanent.getPower().getValue();
}
}

View file

@ -113,6 +113,7 @@ public final class Kaldheim extends ExpansionSet {
cards.add(new SetCardInfo("Fearless Liberator", 135, Rarity.UNCOMMON, mage.cards.f.FearlessLiberator.class));
cards.add(new SetCardInfo("Feed the Serpent", 95, Rarity.COMMON, mage.cards.f.FeedTheSerpent.class));
cards.add(new SetCardInfo("Fire Giant's Fury", 389, Rarity.UNCOMMON, mage.cards.f.FireGiantsFury.class));
cards.add(new SetCardInfo("Firja's Retribution", 210, Rarity.RARE, mage.cards.f.FirjasRetribution.class));
cards.add(new SetCardInfo("Firja, Judge of Valor", 209, Rarity.UNCOMMON, mage.cards.f.FirjaJudgeOfValor.class));
cards.add(new SetCardInfo("Forest", 398, Rarity.LAND, mage.cards.basiclands.Forest.class, NON_FULL_USE_VARIOUS));
cards.add(new SetCardInfo("Forging the Tyrite Sword", 211, Rarity.UNCOMMON, mage.cards.f.ForgingTheTyriteSword.class));

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