implement [M3C] Bloodbraid Challenger

This commit is contained in:
Susucre 2024-05-22 20:30:39 +02:00
parent ba356ff6f8
commit a0d57d44a2
2 changed files with 49 additions and 0 deletions

View file

@ -0,0 +1,48 @@
package mage.cards.b;
import mage.MageInt;
import mage.abilities.keyword.CascadeAbility;
import mage.abilities.keyword.EscapeAbility;
import mage.abilities.keyword.HasteAbility;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.constants.SubType;
import java.util.UUID;
/**
* @author Susucr
*/
public final class BloodbraidChallenger extends CardImpl {
public BloodbraidChallenger(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{R}{G}");
this.subtype.add(SubType.ELF, SubType.BERSERKER);
this.power = new MageInt(4);
this.toughness = new MageInt(3);
// Cascade
this.addAbility(new CascadeAbility());
// Haste
this.addAbility(HasteAbility.getInstance());
// Escape-{3}{R}{G}, Exile three other cards from your graveyard.
this.addAbility(new EscapeAbility(this, "{3}{R}{G}", 3));
}
private BloodbraidChallenger(final BloodbraidChallenger card) {
super(card);
}
@Override
public BloodbraidChallenger copy() {
return new BloodbraidChallenger(this);
}
}

View file

@ -25,6 +25,7 @@ public final class ModernHorizons3Commander extends ExpansionSet {
cards.add(new SetCardInfo("Azlask, the Swelling Scourge", 9, Rarity.MYTHIC, mage.cards.a.AzlaskTheSwellingScourge.class, NON_FULL_USE_VARIOUS));
cards.add(new SetCardInfo("Azlask, the Swelling Scourge", 17, Rarity.MYTHIC, mage.cards.a.AzlaskTheSwellingScourge.class, NON_FULL_USE_VARIOUS));
cards.add(new SetCardInfo("Azlask, the Swelling Scourge", 25, Rarity.MYTHIC, mage.cards.a.AzlaskTheSwellingScourge.class, NON_FULL_USE_VARIOUS));
cards.add(new SetCardInfo("Bloodbraid Challenger", 70, Rarity.RARE, mage.cards.b.BloodbraidChallenger.class));
cards.add(new SetCardInfo("Cayth, Famed Mechanist", 6, Rarity.MYTHIC, mage.cards.c.CaythFamedMechanist.class));
cards.add(new SetCardInfo("Crib Swap", 168, Rarity.UNCOMMON, mage.cards.c.CribSwap.class));
cards.add(new SetCardInfo("Drowner of Hope", 182, Rarity.RARE, mage.cards.d.DrownerOfHope.class));