[STX] Implemented Witherbloom Pledgemage

This commit is contained in:
Evan Kranzler 2021-04-03 08:11:41 -04:00
parent 538ee3bdf3
commit ad24bafb2a
2 changed files with 39 additions and 0 deletions

View file

@ -0,0 +1,38 @@
package mage.cards.w;
import mage.MageInt;
import mage.abilities.common.MagecraftAbility;
import mage.abilities.effects.common.GainLifeEffect;
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 WitherbloomPledgemage extends CardImpl {
public WitherbloomPledgemage(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{B/G}{B/G}");
this.subtype.add(SubType.TREEFOLK);
this.subtype.add(SubType.WARRIOR);
this.power = new MageInt(5);
this.toughness = new MageInt(5);
// Magecraft Whenever you cast or copy an instant or sorcery spell, you gain 1 life.
this.addAbility(new MagecraftAbility(new GainLifeEffect(1)));
}
private WitherbloomPledgemage(final WitherbloomPledgemage card) {
super(card);
}
@Override
public WitherbloomPledgemage copy() {
return new WitherbloomPledgemage(this);
}
}

View file

@ -193,6 +193,7 @@ public final class StrixhavenSchoolOfMages extends ExpansionSet {
cards.add(new SetCardInfo("Witherbloom Apprentice", 247, Rarity.UNCOMMON, mage.cards.w.WitherbloomApprentice.class));
cards.add(new SetCardInfo("Witherbloom Campus", 275, Rarity.COMMON, mage.cards.w.WitherbloomCampus.class));
cards.add(new SetCardInfo("Witherbloom Command", 248, Rarity.RARE, mage.cards.w.WitherbloomCommand.class));
cards.add(new SetCardInfo("Witherbloom Pledgemage", 249, Rarity.COMMON, mage.cards.w.WitherbloomPledgemage.class));
}
@Override