mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 13:19:18 -08:00
* Yuriko, the Tiger's Shadow - Fixed that Ninjutsu was no Commander ninjutsu (fixes #5226).
This commit is contained in:
parent
deb675a74a
commit
6276eca082
1 changed files with 3 additions and 3 deletions
|
|
@ -9,14 +9,14 @@ import mage.abilities.effects.OneShotEffect;
|
||||||
import mage.abilities.effects.common.LoseLifeOpponentsEffect;
|
import mage.abilities.effects.common.LoseLifeOpponentsEffect;
|
||||||
import mage.abilities.keyword.NinjutsuAbility;
|
import mage.abilities.keyword.NinjutsuAbility;
|
||||||
import mage.cards.Card;
|
import mage.cards.Card;
|
||||||
import mage.constants.SubType;
|
|
||||||
import mage.constants.SuperType;
|
|
||||||
import mage.cards.CardImpl;
|
import mage.cards.CardImpl;
|
||||||
import mage.cards.CardSetInfo;
|
import mage.cards.CardSetInfo;
|
||||||
import mage.cards.CardsImpl;
|
import mage.cards.CardsImpl;
|
||||||
import mage.constants.CardType;
|
import mage.constants.CardType;
|
||||||
import mage.constants.Outcome;
|
import mage.constants.Outcome;
|
||||||
import mage.constants.SetTargetPointer;
|
import mage.constants.SetTargetPointer;
|
||||||
|
import mage.constants.SubType;
|
||||||
|
import mage.constants.SuperType;
|
||||||
import mage.constants.TargetController;
|
import mage.constants.TargetController;
|
||||||
import mage.constants.Zone;
|
import mage.constants.Zone;
|
||||||
import mage.filter.common.FilterCreaturePermanent;
|
import mage.filter.common.FilterCreaturePermanent;
|
||||||
|
|
@ -47,7 +47,7 @@ public final class YurikoTheTigersShadow extends CardImpl {
|
||||||
this.toughness = new MageInt(3);
|
this.toughness = new MageInt(3);
|
||||||
|
|
||||||
// Commander ninjutsu {U}{B}
|
// Commander ninjutsu {U}{B}
|
||||||
this.addAbility(new NinjutsuAbility(new ManaCostsImpl("{U}{B}")));
|
this.addAbility(new NinjutsuAbility(new ManaCostsImpl("{U}{B}"), true));
|
||||||
|
|
||||||
// Whenever a Ninja you control deals combat damage to a player, reveal the top card of your library and put that card into your hand. Each opponent loses life equal to that card's converted mana cost.
|
// Whenever a Ninja you control deals combat damage to a player, reveal the top card of your library and put that card into your hand. Each opponent loses life equal to that card's converted mana cost.
|
||||||
this.addAbility(new DealsDamageToAPlayerAllTriggeredAbility(
|
this.addAbility(new DealsDamageToAPlayerAllTriggeredAbility(
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue