Added noRegen=true

This commit is contained in:
L_J 2019-01-27 09:51:30 +01:00 committed by GitHub
parent ba5b87fae8
commit b49ead9bdb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -39,7 +39,7 @@ public final class KnightOfTheMists extends CardImpl {
// When Knight of the Mists enters the battlefield, you may pay {U}. If you don't, destroy target Knight and it can't be regenerated. // When Knight of the Mists enters the battlefield, you may pay {U}. If you don't, destroy target Knight and it can't be regenerated.
Ability ability = new EntersBattlefieldTriggeredAbility(new DoIfCostPaid( Ability ability = new EntersBattlefieldTriggeredAbility(new DoIfCostPaid(
new InfoEffect(""), new DestroyTargetEffect(), new ManaCostsImpl("{U}") new InfoEffect(""), new DestroyTargetEffect(true), new ManaCostsImpl("{U}")
).setText("you may pay {U}. If you don't, destroy target Knight and it can't be regenerated.")); ).setText("you may pay {U}. If you don't, destroy target Knight and it can't be regenerated."));
ability.addTarget(new TargetPermanent(filter)); ability.addTarget(new TargetPermanent(filter));
addAbility(ability); addAbility(ability);