diff --git a/Mage.Sets/src/mage/cards/i/Infuriate.java b/Mage.Sets/src/mage/cards/i/Infuriate.java new file mode 100644 index 0000000000..7239e114d0 --- /dev/null +++ b/Mage.Sets/src/mage/cards/i/Infuriate.java @@ -0,0 +1,32 @@ +package mage.cards.i; + +import mage.abilities.effects.common.continuous.BoostTargetEffect; +import mage.cards.CardImpl; +import mage.cards.CardSetInfo; +import mage.constants.CardType; +import mage.target.common.TargetCreaturePermanent; + +import java.util.UUID; + +/** + * @author TheElk801 + */ +public final class Infuriate extends CardImpl { + + public Infuriate(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{R}"); + + // Target creature gets +3/+2 until end of turn. + this.getSpellAbility().addEffect(new BoostTargetEffect(3, 2)); + this.getSpellAbility().addTarget(new TargetCreaturePermanent()); + } + + private Infuriate(final Infuriate card) { + super(card); + } + + @Override + public Infuriate copy() { + return new Infuriate(this); + } +} diff --git a/Mage.Sets/src/mage/sets/CoreSet2020.java b/Mage.Sets/src/mage/sets/CoreSet2020.java index fc25e14d9d..18256a860c 100644 --- a/Mage.Sets/src/mage/sets/CoreSet2020.java +++ b/Mage.Sets/src/mage/sets/CoreSet2020.java @@ -37,6 +37,7 @@ public final class CoreSet2020 extends ExpansionSet { cards.add(new SetCardInfo("Disenchant", 14, Rarity.COMMON, mage.cards.d.Disenchant.class)); cards.add(new SetCardInfo("Dragon Mage", 135, Rarity.UNCOMMON, mage.cards.d.DragonMage.class)); cards.add(new SetCardInfo("Dread Presence", 96, Rarity.RARE, mage.cards.d.DreadPresence.class)); + cards.add(new SetCardInfo("Infuriate", 145, Rarity.COMMON, mage.cards.i.Infuriate.class)); cards.add(new SetCardInfo("Leyline of Sanctity", 26, Rarity.RARE, mage.cards.l.LeylineOfSanctity.class)); cards.add(new SetCardInfo("Unsummon", 78, Rarity.COMMON, mage.cards.u.Unsummon.class)); }