mirror of
https://github.com/correl/mage.git
synced 2025-01-13 19:11:33 +00:00
[STX] Implemented Springmane Cervin
This commit is contained in:
parent
893f65a8fb
commit
fee5de1ea0
2 changed files with 38 additions and 0 deletions
37
Mage.Sets/src/mage/cards/s/SpringmaneCervin.java
Normal file
37
Mage.Sets/src/mage/cards/s/SpringmaneCervin.java
Normal file
|
@ -0,0 +1,37 @@
|
|||
package mage.cards.s;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.EntersBattlefieldTriggeredAbility;
|
||||
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 SpringmaneCervin extends CardImpl {
|
||||
|
||||
public SpringmaneCervin(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{G}");
|
||||
|
||||
this.subtype.add(SubType.ELK);
|
||||
this.power = new MageInt(3);
|
||||
this.toughness = new MageInt(2);
|
||||
|
||||
// When Springmane Cervin enters the battlefield, you gain 2 life.
|
||||
this.addAbility(new EntersBattlefieldTriggeredAbility(new GainLifeEffect(2)));
|
||||
}
|
||||
|
||||
private SpringmaneCervin(final SpringmaneCervin card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SpringmaneCervin copy() {
|
||||
return new SpringmaneCervin(this);
|
||||
}
|
||||
}
|
|
@ -163,6 +163,7 @@ public final class StrixhavenSchoolOfMages extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Spectacle Mage", 235, Rarity.COMMON, mage.cards.s.SpectacleMage.class));
|
||||
cards.add(new SetCardInfo("Spined Karok", 143, Rarity.COMMON, mage.cards.s.SpinedKarok.class));
|
||||
cards.add(new SetCardInfo("Spirit Summoning", 236, Rarity.COMMON, mage.cards.s.SpiritSummoning.class));
|
||||
cards.add(new SetCardInfo("Springmane Cervin", 144, Rarity.COMMON, mage.cards.s.SpringmaneCervin.class));
|
||||
cards.add(new SetCardInfo("Square Up", 238, Rarity.COMMON, mage.cards.s.SquareUp.class));
|
||||
cards.add(new SetCardInfo("Star Pupil", 30, Rarity.COMMON, mage.cards.s.StarPupil.class));
|
||||
cards.add(new SetCardInfo("Stonebinder's Familiar", 31, Rarity.UNCOMMON, mage.cards.s.StonebindersFamiliar.class));
|
||||
|
|
Loading…
Reference in a new issue