mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
Fix Talion, the Kindly Lord
This commit is contained in:
parent
1cd4971b21
commit
43b2b112fc
1 changed files with 2 additions and 2 deletions
|
|
@ -6,7 +6,7 @@ import mage.abilities.common.AsEntersBattlefieldAbility;
|
|||
import mage.abilities.common.SpellCastOpponentTriggeredAbility;
|
||||
import mage.abilities.effects.OneShotEffect;
|
||||
import mage.abilities.effects.common.DrawCardSourceControllerEffect;
|
||||
import mage.abilities.effects.common.LoseLifeTargetControllerEffect;
|
||||
import mage.abilities.effects.common.LoseLifeTargetEffect;
|
||||
import mage.abilities.keyword.FlyingAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
|
|
@ -50,7 +50,7 @@ public final class TalionTheKindlyLord extends CardImpl {
|
|||
|
||||
// Whenever an opponent casts a spell with mana value, power, or toughness equal to the chosen number, that player loses 2 life and you draw a card.
|
||||
Ability ability = new SpellCastOpponentTriggeredAbility(
|
||||
Zone.BATTLEFIELD, new LoseLifeTargetControllerEffect(2)
|
||||
Zone.BATTLEFIELD, new LoseLifeTargetEffect(2)
|
||||
.setText("that player loses 2 life"),
|
||||
filter, false, SetTargetPointer.PLAYER
|
||||
);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue