[ECL] Implement Sun-Dappled Celebrant

This commit is contained in:
theelk801 2026-01-06 09:19:32 -05:00
parent e7f87761ec
commit b398d227bd
2 changed files with 42 additions and 0 deletions

View file

@ -0,0 +1,41 @@
package mage.cards.s;
import mage.MageInt;
import mage.abilities.keyword.ConvokeAbility;
import mage.abilities.keyword.VigilanceAbility;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.constants.SubType;
import java.util.UUID;
/**
* @author TheElk801
*/
public final class SunDappledCelebrant extends CardImpl {
public SunDappledCelebrant(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{4}{W}{W}");
this.subtype.add(SubType.TREEFOLK);
this.subtype.add(SubType.CLERIC);
this.power = new MageInt(5);
this.toughness = new MageInt(6);
// Convoke
this.addAbility(new ConvokeAbility());
// Vigilance
this.addAbility(VigilanceAbility.getInstance());
}
private SunDappledCelebrant(final SunDappledCelebrant card) {
super(card);
}
@Override
public SunDappledCelebrant copy() {
return new SunDappledCelebrant(this);
}
}

View file

@ -95,6 +95,7 @@ public final class LorwynEclipsed extends ExpansionSet {
cards.add(new SetCardInfo("Steam Vents", "348b", Rarity.RARE, mage.cards.s.SteamVents.class, NON_FULL_USE_VARIOUS));
cards.add(new SetCardInfo("Steam Vents", 267, Rarity.RARE, mage.cards.s.SteamVents.class, NON_FULL_USE_VARIOUS));
cards.add(new SetCardInfo("Steam Vents", 348, Rarity.RARE, mage.cards.s.SteamVents.class, NON_FULL_USE_VARIOUS));
cards.add(new SetCardInfo("Sun-Dappled Celebrant", 37, Rarity.COMMON, mage.cards.s.SunDappledCelebrant.class));
cards.add(new SetCardInfo("Swamp", 271, Rarity.LAND, mage.cards.basiclands.Swamp.class, NON_FULL_USE_VARIOUS));
cards.add(new SetCardInfo("Swamp", 276, Rarity.LAND, mage.cards.basiclands.Swamp.class, NON_FULL_USE_VARIOUS));
cards.add(new SetCardInfo("Swamp", 281, Rarity.LAND, mage.cards.basiclands.Swamp.class, NON_FULL_USE_VARIOUS));