mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
[VOC] Implemented Breathkeeper Seraph
This commit is contained in:
parent
d587eb3278
commit
a64ff322f4
2 changed files with 58 additions and 0 deletions
57
Mage.Sets/src/mage/cards/b/BreathkeeperSeraph.java
Normal file
57
Mage.Sets/src/mage/cards/b/BreathkeeperSeraph.java
Normal file
|
@ -0,0 +1,57 @@
|
|||
package mage.cards.b;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.DiesSourceTriggeredAbility;
|
||||
import mage.abilities.common.SimpleStaticAbility;
|
||||
import mage.abilities.common.delayed.AtTheBeginOfNextUpkeepDelayedTriggeredAbility;
|
||||
import mage.abilities.effects.common.CreateDelayedTriggeredAbilityEffect;
|
||||
import mage.abilities.effects.common.ReturnSourceFromGraveyardToBattlefieldEffect;
|
||||
import mage.abilities.effects.common.continuous.GainAbilityPairedEffect;
|
||||
import mage.abilities.keyword.FlyingAbility;
|
||||
import mage.abilities.keyword.SoulbondAbility;
|
||||
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 BreathkeeperSeraph extends CardImpl {
|
||||
|
||||
public BreathkeeperSeraph(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{4}{W}{W}");
|
||||
|
||||
this.subtype.add(SubType.ANGEL);
|
||||
this.power = new MageInt(4);
|
||||
this.toughness = new MageInt(4);
|
||||
|
||||
// Flying
|
||||
this.addAbility(FlyingAbility.getInstance());
|
||||
|
||||
// Soulbond
|
||||
this.addAbility(new SoulbondAbility());
|
||||
|
||||
// As long as Breathkeeper Seraph is paired with another creature, each of those creatures has "When this creature dies, you may return it to the battlefield under its owner's control at the beginning of your next upkeep."
|
||||
this.addAbility(new SimpleStaticAbility(new GainAbilityPairedEffect(
|
||||
new DiesSourceTriggeredAbility(
|
||||
new CreateDelayedTriggeredAbilityEffect(new AtTheBeginOfNextUpkeepDelayedTriggeredAbility(
|
||||
new ReturnSourceFromGraveyardToBattlefieldEffect()
|
||||
)).setText("return it to the battlefield under its owner's control at the beginning of your next upkeep"), true
|
||||
).setTriggerPhrase("When this creature dies, "), "As long as {this} is paired with " +
|
||||
"another creature, each of those creatures has \"When this creature dies, you may return " +
|
||||
"it to the battlefield under its owner's control at the beginning of your next upkeep.\""
|
||||
)));
|
||||
}
|
||||
|
||||
private BreathkeeperSeraph(final BreathkeeperSeraph card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public BreathkeeperSeraph copy() {
|
||||
return new BreathkeeperSeraph(this);
|
||||
}
|
||||
}
|
|
@ -39,6 +39,7 @@ public final class CrimsonVowCommander extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Bloodtracker", 122, Rarity.RARE, mage.cards.b.Bloodtracker.class));
|
||||
cards.add(new SetCardInfo("Boreas Charger", 79, Rarity.RARE, mage.cards.b.BoreasCharger.class));
|
||||
cards.add(new SetCardInfo("Breath of the Sleepless", 11, Rarity.RARE, mage.cards.b.BreathOfTheSleepless.class));
|
||||
cards.add(new SetCardInfo("Breathkeeper Seraph", 31, Rarity.RARE, mage.cards.b.BreathkeeperSeraph.class));
|
||||
cards.add(new SetCardInfo("Butcher of Malakir", 123, Rarity.RARE, mage.cards.b.ButcherOfMalakir.class));
|
||||
cards.add(new SetCardInfo("Bygone Bishop", 80, Rarity.RARE, mage.cards.b.BygoneBishop.class));
|
||||
cards.add(new SetCardInfo("Champion of Dusk", 124, Rarity.RARE, mage.cards.c.ChampionOfDusk.class));
|
||||
|
|
Loading…
Reference in a new issue