mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
Added noRegen=true
This commit is contained in:
parent
ba5b87fae8
commit
b49ead9bdb
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||||
|
|
Loading…
Reference in a new issue