[LTC] Implement Assemble the Entmoot (#10711)

* [LTC] Implement Assemble the Entmoot

* rename ControllerGotLifeCount -> ControllerGainedLifeCount
This commit is contained in:
Susucre 2023-08-01 05:50:29 +02:00 committed by GitHub
parent 8d938926b6
commit 63d9061f6a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
32 changed files with 183 additions and 72 deletions

View file

@ -34,7 +34,7 @@ public class SimpleActivatedAbility extends ActivatedAbilityImpl {
super(zone, effect, cost);
}
public SimpleActivatedAbility(SimpleActivatedAbility ability) {
protected SimpleActivatedAbility(SimpleActivatedAbility ability) {
super(ability);
}

View file

@ -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;
}

View file

@ -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);
}