mirror of
https://github.com/correl/mage.git
synced 2024-12-26 19:16:54 +00:00
[NEO] Implemented Dokuchi Shadow-Walker
This commit is contained in:
parent
c6968391e5
commit
0ea310b4af
2 changed files with 38 additions and 0 deletions
37
Mage.Sets/src/mage/cards/d/DokuchiShadowWalker.java
Normal file
37
Mage.Sets/src/mage/cards/d/DokuchiShadowWalker.java
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
package mage.cards.d;
|
||||||
|
|
||||||
|
import mage.MageInt;
|
||||||
|
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 DokuchiShadowWalker extends CardImpl {
|
||||||
|
|
||||||
|
public DokuchiShadowWalker(UUID ownerId, CardSetInfo setInfo) {
|
||||||
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{4}{B}{B}");
|
||||||
|
|
||||||
|
this.subtype.add(SubType.OGRE);
|
||||||
|
this.subtype.add(SubType.NINJA);
|
||||||
|
this.power = new MageInt(5);
|
||||||
|
this.toughness = new MageInt(5);
|
||||||
|
|
||||||
|
// Ninjutsu {3}{B}
|
||||||
|
this.addAbility(new NinjutsuAbility("{3}{B}"));
|
||||||
|
}
|
||||||
|
|
||||||
|
private DokuchiShadowWalker(final DokuchiShadowWalker card) {
|
||||||
|
super(card);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public DokuchiShadowWalker copy() {
|
||||||
|
return new DokuchiShadowWalker(this);
|
||||||
|
}
|
||||||
|
}
|
|
@ -23,6 +23,7 @@ public final class KamigawaNeonDynasty extends ExpansionSet {
|
||||||
this.numBoosterDoubleFaced = 1; // temporary test fix
|
this.numBoosterDoubleFaced = 1; // temporary test fix
|
||||||
|
|
||||||
cards.add(new SetCardInfo("Atsushi, the Blazing Sky", 134, Rarity.MYTHIC, mage.cards.a.AtsushiTheBlazingSky.class));
|
cards.add(new SetCardInfo("Atsushi, the Blazing Sky", 134, Rarity.MYTHIC, mage.cards.a.AtsushiTheBlazingSky.class));
|
||||||
|
cards.add(new SetCardInfo("Dokuchi Shadow-Walker", 94, Rarity.COMMON, mage.cards.d.DokuchiShadowWalker.class));
|
||||||
cards.add(new SetCardInfo("Forest", 301, Rarity.LAND, mage.cards.basiclands.Forest.class, FULL_ART_BFZ_VARIOUS));
|
cards.add(new SetCardInfo("Forest", 301, Rarity.LAND, mage.cards.basiclands.Forest.class, FULL_ART_BFZ_VARIOUS));
|
||||||
cards.add(new SetCardInfo("Goro-Goro, Disciple of Ryusei", 145, Rarity.RARE, mage.cards.g.GoroGoroDiscipleOfRyusei.class));
|
cards.add(new SetCardInfo("Goro-Goro, Disciple of Ryusei", 145, Rarity.RARE, mage.cards.g.GoroGoroDiscipleOfRyusei.class));
|
||||||
cards.add(new SetCardInfo("Hidetsugu, Devouring Chaos", 99, Rarity.RARE, mage.cards.h.HidetsuguDevouringChaos.class));
|
cards.add(new SetCardInfo("Hidetsugu, Devouring Chaos", 99, Rarity.RARE, mage.cards.h.HidetsuguDevouringChaos.class));
|
||||||
|
|
Loading…
Reference in a new issue