[NEO] Implemented Blade-Bllizzard Kitsune

This commit is contained in:
Evan Kranzler 2022-02-03 22:44:17 -05:00
parent 176bdd526a
commit ffb4ccb720
3 changed files with 43 additions and 0 deletions

View file

@ -0,0 +1,41 @@
package mage.cards.b;
import mage.MageInt;
import mage.abilities.keyword.DoubleStrikeAbility;
import mage.abilities.keyword.NinjutsuAbility;
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 BladeBlizzardKitsune extends CardImpl {
public BladeBlizzardKitsune(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{W}");
this.subtype.add(SubType.FOX);
this.subtype.add(SubType.NINJA);
this.power = new MageInt(2);
this.toughness = new MageInt(2);
// Ninjutsu {3}{W}
this.addAbility(new NinjutsuAbility("{3}{W}"));
// Double strike
this.addAbility(DoubleStrikeAbility.getInstance());
}
private BladeBlizzardKitsune(final BladeBlizzardKitsune card) {
super(card);
}
@Override
public BladeBlizzardKitsune copy() {
return new BladeBlizzardKitsune(this);
}
}

View file

@ -44,6 +44,7 @@ public final class KamigawaNeonDynasty extends ExpansionSet {
cards.add(new SetCardInfo("Befriending the Moths", 4, Rarity.COMMON, mage.cards.b.BefriendingTheMoths.class));
cards.add(new SetCardInfo("Behold the Unspeakable", 48, Rarity.UNCOMMON, mage.cards.b.BeholdTheUnspeakable.class));
cards.add(new SetCardInfo("Biting-Palm Ninja", 88, Rarity.RARE, mage.cards.b.BitingPalmNinja.class));
cards.add(new SetCardInfo("Blade-Blizzard Kitsune", 5, Rarity.UNCOMMON, mage.cards.b.BladeBlizzardKitsune.class));
cards.add(new SetCardInfo("Boon of Boseiju", 176, Rarity.UNCOMMON, mage.cards.b.BoonOfBoseiju.class));
cards.add(new SetCardInfo("Boseiju Reaches Skyward", 177, Rarity.UNCOMMON, mage.cards.b.BoseijuReachesSkyward.class));
cards.add(new SetCardInfo("Branch of Boseiju", 177, Rarity.UNCOMMON, mage.cards.b.BranchOfBoseiju.class));

View file

@ -43511,6 +43511,7 @@ Banishing Slash|Kamigawa: Neon Dynasty|3|U|{W}{W}|Sorcery|||Destroy up to one ta
Befriending the Moths|Kamigawa: Neon Dynasty|4|C|{3}{W}|Enchantment - Saga|||(As this Saga enters and after your draw step, add a lore counter.)$I, II — Target creature you control gets +1/+1 and gains flying until end of turn.$III — Exile this Saga, then return it to the battlefield transformed under your control.|
Imperial Moth|Kamigawa: Neon Dynasty|4|C||Enchantment Creature - Insect|2|4|Flying|
Born to Drive|Kamigawa: Neon Dynasty|6|U|{2}{W}|Enchantment - Aura|||Enchant artifact or creature$As long as enchanted permanent is a creature, it gets +1/+1 for each creature and/or Vehicle you control.$Channel — {2}{W}, Discard Born to Drive: Create two 1/1 coloress Pilot creature tokens with "This creature crews Vehicles as though its power were 2 greater."|
Blade-Blizzard Kitsune|Kamigawa: Neon Dynasty|5|U|{2}{W}|Creature - Fox Ninja|2|2|Ninjutsu {3}{W}$Double strike|
Brilliant Restoration|Kamigawa: Neon Dynasty|7|R|{3}{W}{W}{W}{W}|Sorcery|||Return all artifact and enchantment cards from your graveyard to the battlefield.|
Cloudsteel Kirin|Kamigawa: Neon Dynasty|8|R|{2}{W}|Artifact Creature - Equipment Kirin|3|2|Flying$Equipped creature has flying and "You can't lose the game and your opponents can't win the game."$Reconfigure {5}|
Eiganjo Exemplar|Kamigawa: Neon Dynasty|10|C|{1}{W}|Enchantment Creature - Human Samurai|2|1|Whenever a Samurai or Warrior you control attacks alone, it gets +1/+1 until end of turn.|