[ECL] Implement Appeal to Eirdu

This commit is contained in:
theelk801 2026-01-06 08:25:28 -05:00
parent b58b3d602e
commit 19f57b07f1
2 changed files with 37 additions and 0 deletions

View file

@ -0,0 +1,36 @@
package mage.cards.a;
import mage.abilities.effects.common.continuous.BoostTargetEffect;
import mage.abilities.keyword.ConvokeAbility;
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 AppealToEirdu extends CardImpl {
public AppealToEirdu(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{3}{W}");
// Convoke
this.addAbility(new ConvokeAbility());
// One or two target creatures each get +2/+1 until end of turn.
this.getSpellAbility().addEffect(new BoostTargetEffect(2, 1));
this.getSpellAbility().addTarget(new TargetCreaturePermanent(1, 2));
}
private AppealToEirdu(final AppealToEirdu card) {
super(card);
}
@Override
public AppealToEirdu copy() {
return new AppealToEirdu(this);
}
}

View file

@ -20,6 +20,7 @@ public final class LorwynEclipsed extends ExpansionSet {
this.blockName = "Lorwyn Eclipsed"; // for sorting in GUI
this.hasBasicLands = false; // temporary
cards.add(new SetCardInfo("Appeal to Eirdu", 5, Rarity.COMMON, mage.cards.a.AppealToEirdu.class));
cards.add(new SetCardInfo("Ashling's Command", 205, Rarity.RARE, mage.cards.a.AshlingsCommand.class, NON_FULL_USE_VARIOUS));
cards.add(new SetCardInfo("Ashling's Command", 330, Rarity.RARE, mage.cards.a.AshlingsCommand.class, NON_FULL_USE_VARIOUS));
cards.add(new SetCardInfo("Ashling, Rekindled", 124, Rarity.RARE, mage.cards.a.AshlingRekindled.class, NON_FULL_USE_VARIOUS));