forked from External/mage
[LTC] Implement Assemble the Entmoot (#10711)
* [LTC] Implement Assemble the Entmoot * rename ControllerGotLifeCount -> ControllerGainedLifeCount
This commit is contained in:
parent
8d938926b6
commit
63d9061f6a
32 changed files with 183 additions and 72 deletions
|
|
@ -34,7 +34,7 @@ public class SimpleActivatedAbility extends ActivatedAbilityImpl {
|
|||
super(zone, effect, cost);
|
||||
}
|
||||
|
||||
public SimpleActivatedAbility(SimpleActivatedAbility ability) {
|
||||
protected SimpleActivatedAbility(SimpleActivatedAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,11 +9,11 @@ import mage.game.Game;
|
|||
import mage.watchers.common.PlayerGainedLifeWatcher;
|
||||
|
||||
/**
|
||||
* Amount of life the controller got this turn.
|
||||
* Amount of life the controller gained this turn.
|
||||
*
|
||||
* @author LevelX2
|
||||
*/
|
||||
public enum ControllerGotLifeCount implements DynamicValue {
|
||||
public enum ControllerGainedLifeCount implements DynamicValue {
|
||||
instance;
|
||||
|
||||
private static final Hint hint = new ValueHint("Life gained this turn", instance);
|
||||
|
|
@ -28,7 +28,7 @@ public enum ControllerGotLifeCount implements DynamicValue {
|
|||
}
|
||||
|
||||
@Override
|
||||
public ControllerGotLifeCount copy() {
|
||||
public ControllerGainedLifeCount copy() {
|
||||
return instance;
|
||||
}
|
||||
|
||||
|
|
@ -22,7 +22,7 @@ public final class SylvanOfferingTreefolkToken extends TokenImpl {
|
|||
toughness = new MageInt(xValue);
|
||||
}
|
||||
|
||||
public SylvanOfferingTreefolkToken(final SylvanOfferingTreefolkToken token) {
|
||||
private SylvanOfferingTreefolkToken(final SylvanOfferingTreefolkToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue