mirror of
https://github.com/correl/mage.git
synced 2025-01-11 19:13:02 +00:00
[KHM] Implemented Raven Wings
This commit is contained in:
parent
1dc5fa7ec5
commit
34eeb3ad72
3 changed files with 52 additions and 0 deletions
50
Mage.Sets/src/mage/cards/r/RavenWings.java
Normal file
50
Mage.Sets/src/mage/cards/r/RavenWings.java
Normal file
|
@ -0,0 +1,50 @@
|
|||
package mage.cards.r;
|
||||
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.SimpleStaticAbility;
|
||||
import mage.abilities.effects.common.continuous.AddCardSubtypeAttachedEffect;
|
||||
import mage.abilities.effects.common.continuous.BoostEquippedEffect;
|
||||
import mage.abilities.effects.common.continuous.GainAbilityAttachedEffect;
|
||||
import mage.abilities.keyword.EquipAbility;
|
||||
import mage.abilities.keyword.FlyingAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.AttachmentType;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.Duration;
|
||||
import mage.constants.SubType;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class RavenWings extends CardImpl {
|
||||
|
||||
public RavenWings(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT}, "{2}");
|
||||
|
||||
this.subtype.add(SubType.EQUIPMENT);
|
||||
|
||||
// Equipped creature gets +1/+0, has flying, and is a Bird in addition to its other types.
|
||||
Ability ability = new SimpleStaticAbility(new BoostEquippedEffect(1, 0));
|
||||
ability.addEffect(new GainAbilityAttachedEffect(
|
||||
FlyingAbility.getInstance(), AttachmentType.AURA
|
||||
).setText(", has flying"));
|
||||
ability.addEffect(new AddCardSubtypeAttachedEffect(
|
||||
SubType.BIRD, Duration.WhileOnBattlefield, AttachmentType.AURA
|
||||
).setText("and is a Bird in addition to its other types"));
|
||||
|
||||
// Equip {2}
|
||||
this.addAbility(new EquipAbility(2));
|
||||
}
|
||||
|
||||
private RavenWings(final RavenWings card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public RavenWings copy() {
|
||||
return new RavenWings(this);
|
||||
}
|
||||
}
|
|
@ -186,6 +186,7 @@ public final class Kaldheim extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Raise the Draugr", 105, Rarity.COMMON, mage.cards.r.RaiseTheDraugr.class));
|
||||
cards.add(new SetCardInfo("Rally the Ranks", 20, Rarity.RARE, mage.cards.r.RallyTheRanks.class));
|
||||
cards.add(new SetCardInfo("Rampage of the Valkyries", 393, Rarity.UNCOMMON, mage.cards.r.RampageOfTheValkyries.class));
|
||||
cards.add(new SetCardInfo("Raven Wings", 2, Rarity.COMMON, mage.cards.r.RavenWings.class));
|
||||
cards.add(new SetCardInfo("Ravenform", 72, Rarity.COMMON, mage.cards.r.Ravenform.class));
|
||||
cards.add(new SetCardInfo("Realmwalker", 188, Rarity.RARE, mage.cards.r.Realmwalker.class));
|
||||
cards.add(new SetCardInfo("Reckless Crew", 148, Rarity.RARE, mage.cards.r.RecklessCrew.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.|
|
||||
Raven Wings|Kaldheim|2|C|{2}|Artifact - Equipment|||Equipped creature gets +1/+0, has flying, and is a Bird in addition to its other types.$Equip {2}|
|
||||
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.|
|
||||
|
|
Loading…
Reference in a new issue