mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 12:31:59 -08:00
[LTR] Implement Gollum, Patient Plotter
This commit is contained in:
parent
d106426b21
commit
30a530cff0
3 changed files with 93 additions and 0 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue