mirror of
https://github.com/correl/mage.git
synced 2025-01-11 19:13:02 +00:00
[KHM] Implemented Battlefield Raptor
This commit is contained in:
parent
da136b0e40
commit
28151050dc
3 changed files with 42 additions and 0 deletions
40
Mage.Sets/src/mage/cards/b/BattlefieldRaptor.java
Normal file
40
Mage.Sets/src/mage/cards/b/BattlefieldRaptor.java
Normal file
|
@ -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);
|
||||
}
|
||||
}
|
|
@ -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));
|
||||
|
|
|
@ -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.|
|
||||
|
|
Loading…
Reference in a new issue