mirror of
https://github.com/magefree/mage.git
synced 2026-01-23 11:49:56 -08:00
BoostSourceEffect: format X like BoostTargetEffect
primarily to fix Chameleon Colossus and friends, but also updated Terra Ravager's ability to match the corrected format, and now both Source and Target support -X, for Death's Shadow.
This commit is contained in:
parent
7830dc1098
commit
eda5d1a1ef
4 changed files with 20 additions and 9 deletions
|
|
@ -106,6 +106,6 @@ class TerraRavagerLandCount implements DynamicValue {
|
|||
|
||||
@Override
|
||||
public String getMessage() {
|
||||
return "land defending player controls";
|
||||
return "the number of lands defending player controls";
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -55,7 +55,8 @@ public class DeathsShadow extends CardImpl {
|
|||
this.toughness = new MageInt(13);
|
||||
|
||||
// Death's Shadow gets -X/-X, where X is your life total.
|
||||
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new BoostSourceEffect(new SignInversionDynamicValue(new ControllerLifeCount()), new SignInversionDynamicValue(new ControllerLifeCount()), Duration.WhileOnBattlefield)));
|
||||
SignInversionDynamicValue x = new SignInversionDynamicValue(new ControllerLifeCount());
|
||||
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new BoostSourceEffect(x, x, Duration.WhileOnBattlefield)));
|
||||
}
|
||||
|
||||
public DeathsShadow(final DeathsShadow card) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue