fixed Chain to Memory boost count

This commit is contained in:
Evan Kranzler 2020-01-11 10:33:21 -05:00
parent dd0844b09f
commit 93d17f5f34

View file

@ -18,7 +18,7 @@ public final class ChainToMemory extends CardImpl {
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{U}");
// Target creature gets -4/-0 until end of turn. Scry 2.
this.getSpellAbility().addEffect(new BoostTargetEffect(-2, 0));
this.getSpellAbility().addEffect(new BoostTargetEffect(-4, 0));
this.getSpellAbility().addEffect(new ScryEffect(2).setText("Scry 2"));
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
}