[OTJ] Implement The Gitrog, Ravenous Ride

This commit is contained in:
theelk801 2024-04-02 16:01:29 -04:00
parent ba485d9ea3
commit 1d8aa446a5
7 changed files with 121 additions and 8 deletions

View file

@ -20,6 +20,7 @@ import mage.game.events.GameEvent;
import mage.game.permanent.Permanent;
import mage.target.Target;
import mage.target.common.TargetControlledCreaturePermanent;
import mage.watchers.common.SaddledMountWatcher;
import java.awt.*;
import java.util.Objects;
@ -39,6 +40,7 @@ public class SaddleAbility extends SimpleActivatedAbility {
this.value = value;
this.addHint(hint);
this.setTiming(TimingRule.SORCERY);
this.addWatcher(new SaddledMountWatcher());
}
private SaddleAbility(final SaddleAbility ability) {