implement [MH3] Sorin of House Markov // Sorin, Ravenous Neonate

This commit is contained in:
Susucre 2024-05-16 21:17:21 +02:00
parent 8002cdf88f
commit 79165f269c
7 changed files with 338 additions and 0 deletions

View file

@ -7,6 +7,8 @@ import mage.game.Game;
import mage.watchers.common.PlayerGainedLifeWatcher;
/**
* Needs PlayerGainedLifeWatcher to work
* <p>
* Created by IGOUDT on 5-4-2017.
*/
public class YouGainedLifeCondition extends IntCompareCondition {

View file

@ -9,6 +9,7 @@ import mage.game.Game;
import mage.watchers.common.PlayerGainedLifeWatcher;
/**
* Needs PlayerGainedLifeWatcher to work.
* Amount of life the controller gained this turn.
*
* @author LevelX2

View file

@ -515,4 +515,10 @@ public abstract class ContinuousEffectImpl extends EffectImpl implements Continu
}
return true;
}
@Override
public ContinuousEffect setText(String staticText) {
super.setText(staticText);
return this;
}
}