mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
* Tezzeret the Schemer - Fixed that the -2 ability boost value was wrongly continuously changed with the number of controlled artifacts.
This commit is contained in:
parent
1d404ee57f
commit
cdd147ee61
1 changed files with 1 additions and 1 deletions
|
@ -74,7 +74,7 @@ public class TezzeretTheSchemer extends CardImpl {
|
|||
|
||||
// -2: Target creature gets +X/-X until end of turn, where X is the number of artifacts you control.
|
||||
DynamicValue count = new PermanentsOnBattlefieldCount(new FilterControlledArtifactPermanent("artifacts you control"));
|
||||
Effect effect = new BoostTargetEffect(count, new SignInversionDynamicValue(count), Duration.EndOfTurn);
|
||||
Effect effect = new BoostTargetEffect(count, new SignInversionDynamicValue(count), Duration.EndOfTurn, true);
|
||||
effect.setText("Target creature gets +X/-X until end of turn, where X is the number of artifacts you control");
|
||||
Ability ability = new LoyaltyAbility(effect, -2);
|
||||
ability.addTarget(new TargetCreaturePermanent());
|
||||
|
|
Loading…
Reference in a new issue