mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
- Made the target mandatory for Kaervek the Merciless.
This commit is contained in:
parent
daf9a0c8f3
commit
3920f6a9c2
1 changed files with 1 additions and 1 deletions
|
@ -66,7 +66,7 @@ public class KaervekTheMerciless extends CardImpl<KaervekTheMerciless> {
|
||||||
|
|
||||||
// Whenever an opponent casts a spell, Kaervek the Merciless deals damage to target creature or player equal to that spell's converted mana cost.
|
// Whenever an opponent casts a spell, Kaervek the Merciless deals damage to target creature or player equal to that spell's converted mana cost.
|
||||||
Ability ability = new SpellCastOpponentTriggeredAbility(Zone.BATTLEFIELD, new KaervekTheMercilessEffect(), new FilterSpell(), false, SetTargetPointer.SPELL);
|
Ability ability = new SpellCastOpponentTriggeredAbility(Zone.BATTLEFIELD, new KaervekTheMercilessEffect(), new FilterSpell(), false, SetTargetPointer.SPELL);
|
||||||
ability.addTarget(new TargetCreatureOrPlayer());
|
ability.addTarget(new TargetCreatureOrPlayer(true));
|
||||||
this.addAbility(ability);
|
this.addAbility(ability);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue