[DMU] Implemented Flowstone Infusion

This commit is contained in:
Evan Kranzler 2022-08-26 20:13:32 -04:00
parent eadb2112fc
commit 0467224eb3
2 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,32 @@
package mage.cards.f;
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 FlowstoneInfusion extends CardImpl {
public FlowstoneInfusion(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{R}");
// Target creature gets +2/-2 until end of turn.
this.getSpellAbility().addEffect(new BoostTargetEffect(2, -2));
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
}
private FlowstoneInfusion(final FlowstoneInfusion card) {
super(card);
}
@Override
public FlowstoneInfusion copy() {
return new FlowstoneInfusion(this);
}
}

View file

@ -78,6 +78,7 @@ public final class DominariaUnited extends ExpansionSet {
cards.add(new SetCardInfo("Evolved Sleeper", 93, Rarity.RARE, mage.cards.e.EvolvedSleeper.class));
cards.add(new SetCardInfo("Extinguish the Light", 94, Rarity.COMMON, mage.cards.e.ExtinguishTheLight.class));
cards.add(new SetCardInfo("Fires of Victory", 123, Rarity.UNCOMMON, mage.cards.f.FiresOfVictory.class));
cards.add(new SetCardInfo("Flowstone Infusion", 124, Rarity.COMMON, mage.cards.f.FlowstoneInfusion.class));
cards.add(new SetCardInfo("Flowstone Kavu", 125, Rarity.COMMON, mage.cards.f.FlowstoneKavu.class));
cards.add(new SetCardInfo("Forest", 274, Rarity.LAND, mage.cards.basiclands.Forest.class, NON_FULL_USE_VARIOUS));
cards.add(new SetCardInfo("Frostfist Strider", 51, Rarity.UNCOMMON, mage.cards.f.FrostfistStrider.class));