mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 02:30:08 -08:00
fix verify failure
This commit is contained in:
parent
f0d83d3de9
commit
7d2e95cddd
1 changed files with 2 additions and 1 deletions
|
|
@ -9,6 +9,7 @@ import mage.abilities.effects.ContinuousEffectImpl;
|
|||
import mage.abilities.effects.common.BecomesMonarchTargetEffect;
|
||||
import mage.abilities.effects.common.continuous.BoostAllEffect;
|
||||
import mage.abilities.effects.common.continuous.GainControlTargetEffect;
|
||||
import mage.abilities.hint.common.MonarchHint;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.*;
|
||||
|
|
@ -51,7 +52,7 @@ public final class GarlandRoyalKidnapper extends CardImpl {
|
|||
// When Garland enters, target opponent becomes the monarch.
|
||||
Ability ability = new EntersBattlefieldTriggeredAbility(new BecomesMonarchTargetEffect());
|
||||
ability.addTarget(new TargetOpponent());
|
||||
this.addAbility(ability);
|
||||
this.addAbility(ability.addHint(MonarchHint.instance));
|
||||
|
||||
// Whenever an opponent becomes the monarch, gain control of target creature that player controls for as long as they're the monarch.
|
||||
this.addAbility(new GarlandRoyalKidnapperTriggeredAbility());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue