[LTR] Implement Ringwraiths

This commit is contained in:
theelk801 2023-06-11 22:09:11 -04:00
parent bf5b93d1d6
commit d4307395b1
3 changed files with 94 additions and 1 deletions

View file

@ -12,7 +12,11 @@ import mage.game.events.GameEvent;
public class TheRingTemptsYouTriggeredAbility extends TriggeredAbilityImpl {
public TheRingTemptsYouTriggeredAbility(Effect effect) {
super(Zone.BATTLEFIELD, effect, false);
this(Zone.BATTLEFIELD, effect, false);
}
public TheRingTemptsYouTriggeredAbility(Zone zone, Effect effect, boolean optional) {
super(zone, effect, optional);
setTriggerPhrase("Whenever the Ring tempts you, ");
}