[ONE] Implement Paladin of Predation

This commit is contained in:
theelk801 2023-01-18 19:51:57 -05:00
parent 07fc15d732
commit ddb8d23dc7
2 changed files with 42 additions and 0 deletions

View file

@ -0,0 +1,41 @@
package mage.cards.p;
import java.util.UUID;
import mage.MageInt;
import mage.abilities.keyword.DauntAbility;
import mage.constants.SubType;
import mage.abilities.keyword.ToxicAbility;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
/**
* @author TheElk801
*/
public final class PaladinOfPredation extends CardImpl {
public PaladinOfPredation(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{5}{G}{G}");
this.subtype.add(SubType.PHYREXIAN);
this.subtype.add(SubType.KNIGHT);
this.power = new MageInt(6);
this.toughness = new MageInt(7);
// Toxic 6
this.addAbility(new ToxicAbility(6));
// Paladin of Predation can't be blocked by creatures with power 2 or less.
this.addAbility(new DauntAbility());
}
private PaladinOfPredation(final PaladinOfPredation card) {
super(card);
}
@Override
public PaladinOfPredation copy() {
return new PaladinOfPredation(this);
}
}

View file

@ -52,6 +52,7 @@ public final class PhyrexiaAllWillBeOne extends ExpansionSet {
cards.add(new SetCardInfo("Nissa, Ascended Animist", 175, Rarity.MYTHIC, mage.cards.n.NissaAscendedAnimist.class));
cards.add(new SetCardInfo("Norn's Wellspring", 24, Rarity.RARE, mage.cards.n.NornsWellspring.class));
cards.add(new SetCardInfo("Ovika, Enigma Goliath", 213, Rarity.RARE, mage.cards.o.OvikaEnigmaGoliath.class));
cards.add(new SetCardInfo("Paladin of Predation", 178, Rarity.UNCOMMON, mage.cards.p.PaladinOfPredation.class));
cards.add(new SetCardInfo("Phyrexian Arena", 104, Rarity.RARE, mage.cards.p.PhyrexianArena.class));
cards.add(new SetCardInfo("Phyrexian Obliterator", 105, Rarity.MYTHIC, mage.cards.p.PhyrexianObliterator.class));
cards.add(new SetCardInfo("Plains", 272, Rarity.LAND, mage.cards.basiclands.Plains.class, NON_FULL_USE_VARIOUS));