mirror of
https://github.com/correl/mage.git
synced 2024-12-26 11:09:27 +00:00
- Trigger is not optional.
This commit is contained in:
parent
e16276a3cd
commit
8ab774e403
1 changed files with 2 additions and 1 deletions
|
@ -52,6 +52,7 @@ import mage.constants.Duration;
|
|||
import mage.constants.Outcome;
|
||||
import mage.constants.Rarity;
|
||||
import mage.constants.Zone;
|
||||
import mage.filter.FilterPlayer;
|
||||
import mage.game.ExileZone;
|
||||
import mage.game.Game;
|
||||
import mage.game.stack.Spell;
|
||||
|
@ -77,7 +78,7 @@ public class GrimoireThief extends CardImpl {
|
|||
this.toughness = new MageInt(2);
|
||||
|
||||
// Whenever Grimoire Thief becomes tapped, exile the top three cards of target opponent's library face down.
|
||||
Ability ability = new BecomesTappedTriggeredAbility(new GrimoireThiefExileEffect(), true);
|
||||
Ability ability = new BecomesTappedTriggeredAbility(new GrimoireThiefExileEffect(), false);
|
||||
ability.addTarget(new TargetOpponent());
|
||||
this.addAbility(ability);
|
||||
|
||||
|
|
Loading…
Reference in a new issue