From 28151050dc26434bef248bb8cbc82c77cdd1e2c4 Mon Sep 17 00:00:00 2001 From: Evan Kranzler Date: Fri, 15 Jan 2021 19:36:03 -0500 Subject: [PATCH] [KHM] Implemented Battlefield Raptor --- .../src/mage/cards/b/BattlefieldRaptor.java | 40 +++++++++++++++++++ Mage.Sets/src/mage/sets/Kaldheim.java | 1 + Utils/mtg-cards-data.txt | 1 + 3 files changed, 42 insertions(+) create mode 100644 Mage.Sets/src/mage/cards/b/BattlefieldRaptor.java diff --git a/Mage.Sets/src/mage/cards/b/BattlefieldRaptor.java b/Mage.Sets/src/mage/cards/b/BattlefieldRaptor.java new file mode 100644 index 00000000000..557e54d3f32 --- /dev/null +++ b/Mage.Sets/src/mage/cards/b/BattlefieldRaptor.java @@ -0,0 +1,40 @@ +package mage.cards.b; + +import mage.MageInt; +import mage.abilities.keyword.FirstStrikeAbility; +import mage.abilities.keyword.FlyingAbility; +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 BattlefieldRaptor extends CardImpl { + + public BattlefieldRaptor(UUID ownerId, CardSetInfo setInfo) { + super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{W}"); + + this.subtype.add(SubType.BIRD); + this.power = new MageInt(1); + this.toughness = new MageInt(2); + + // Flying + this.addAbility(FlyingAbility.getInstance()); + + // First strike + this.addAbility(FirstStrikeAbility.getInstance()); + } + + private BattlefieldRaptor(final BattlefieldRaptor card) { + super(card); + } + + @Override + public BattlefieldRaptor copy() { + return new BattlefieldRaptor(this); + } +} diff --git a/Mage.Sets/src/mage/sets/Kaldheim.java b/Mage.Sets/src/mage/sets/Kaldheim.java index 59e3f6d749b..1baaf6f2066 100644 --- a/Mage.Sets/src/mage/sets/Kaldheim.java +++ b/Mage.Sets/src/mage/sets/Kaldheim.java @@ -79,6 +79,7 @@ public final class Kaldheim extends ExpansionSet { cards.add(new SetCardInfo("Basalt Ravager", 122, Rarity.UNCOMMON, mage.cards.b.BasaltRavager.class)); cards.add(new SetCardInfo("Battle for Bretagard", 203, Rarity.RARE, mage.cards.b.BattleForBretagard.class)); cards.add(new SetCardInfo("Battle of Frost and Fire", 204, Rarity.RARE, mage.cards.b.BattleOfFrostAndFire.class)); + cards.add(new SetCardInfo("Battlefield Raptor", 3, Rarity.COMMON, mage.cards.b.BattlefieldRaptor.class)); cards.add(new SetCardInfo("Bearded Axe", 388, Rarity.UNCOMMON, mage.cards.b.BeardedAxe.class)); cards.add(new SetCardInfo("Behold the Multiverse", 46, Rarity.COMMON, mage.cards.b.BeholdTheMultiverse.class)); cards.add(new SetCardInfo("Beskir Shieldmate", 4, Rarity.COMMON, mage.cards.b.BeskirShieldmate.class)); diff --git a/Utils/mtg-cards-data.txt b/Utils/mtg-cards-data.txt index c568edbf76f..af69f25be7c 100644 --- a/Utils/mtg-cards-data.txt +++ b/Utils/mtg-cards-data.txt @@ -40020,6 +40020,7 @@ War Room|Commander Legends|716|R||Land|||{T}: Add {C}.${3}, {T}, Pay life equal Mana Confluence|Commander Legends|721|M||Land|||{T}, Pay 1 life: Add one mana of any color.| Sengir, the Dark Baron|Commander Legends|722|R|{4}{B}{B}|Legendary Creature - Vampire Noble|4|4|Flying$Whenever another creature dies, put two +1/+1 counters on Sengir, the Dark Baron.$Whenever another player loses the game, you gain life equal to that player's life total as the turn began.$Partner| Axgard Braggart|Kaldheim|1|C|{3}{W}|Creature - Dwarf Warrior|3|3|Boast — {1}{W}: Untap Axgard Braggart. Put a +1/+1 counter on it.| +Battlefield Raptor|Kaldheim|3|C|{W}|Creature - Bird|1|2|Flying, first strike| Beskir Shieldmate|Kaldheim|4|C|{1}{W}|Creature - Human Warrior|2|1|When Beskir Shieldmate dies, create a 1/1 white Human Warrior creature token.| Bound in Gold|Kaldheim|5|C|{2}{W}|Enchantment - Aura|||Enchant permanent$Enchanted permanent can't attack, block, or crew Vehicles, and its activated abilities can't be activated unless they're mana abilities.| Clarion Spirit|Kaldheim|6|U|{1}{W}|Creature - Spirit|2|2|Whenever you cast your second spell each turn, create a 1/1 white Spirit creature token with flying.|