[LTR] Implement Gollum, Patient Plotter

This commit is contained in:
theelk801 2023-04-23 10:00:01 -04:00
parent d106426b21
commit 30a530cff0
3 changed files with 93 additions and 0 deletions

View file

@ -0,0 +1,32 @@
package mage.abilities.effects.keyword;
import mage.abilities.Ability;
import mage.abilities.effects.OneShotEffect;
import mage.constants.Outcome;
import mage.game.Game;
/**
* @author TheElk801
*/
public class TheRingTemptsYouEffect extends OneShotEffect {
public TheRingTemptsYouEffect() {
super(Outcome.Benefit);
staticText = "the Ring tempts you";
}
private TheRingTemptsYouEffect(final TheRingTemptsYouEffect effect) {
super(effect);
}
@Override
public TheRingTemptsYouEffect copy() {
return new TheRingTemptsYouEffect(this);
}
@Override
public boolean apply(Game game, Ability source) {
// TODO: Implement when we know what the mechanic does
return false;
}
}