[SNC] a few additional text fixes

This commit is contained in:
Evan Kranzler 2022-04-29 20:50:02 -04:00
parent 2adc1943e7
commit faf806ef7d
4 changed files with 7 additions and 4 deletions

View file

@ -28,7 +28,8 @@ public final class CabarettiCharm extends CardImpl {
// Choose one
// Cabaretti Charm deals damage equal to the number of creatures you control to target creature or planeswalker.
this.getSpellAbility().addEffect(new DamageTargetEffect(CreaturesYouControlCount.instance));
this.getSpellAbility().addEffect(new DamageTargetEffect(CreaturesYouControlCount.instance)
.setText("{this} deals damage equal to the number of creatures you control to target creature or planeswalker"));
this.getSpellAbility().addTarget(new TargetCreatureOrPlaneswalker());
this.getSpellAbility().addHint(CreaturesYouControlHint.instance);

View file

@ -28,7 +28,7 @@ import java.util.*;
*/
public final class EvelynTheCovetous extends CardImpl {
private static final FilterPermanent filter = new FilterPermanent(SubType.VAMPIRE, "{this} or another Vampire");
private static final FilterPermanent filter = new FilterPermanent(SubType.VAMPIRE, "Vampire");
public EvelynTheCovetous(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{U/B}{B}{B/R}");

View file

@ -36,7 +36,9 @@ public final class IlluminatorVirtuoso extends CardImpl {
this.addAbility(DoubleStrikeAbility.getInstance());
// Whenever Illuminator Virtuoso becomes the target of a spell you control, it connives.
this.addAbility(new BecomesTargetTriggeredAbility(new ConniveSourceEffect(), filter));
this.addAbility(new BecomesTargetTriggeredAbility(
new ConniveSourceEffect(), filter
).setTriggerPhrase("Whenever {this} becomes the target of a spell you control, "));
}
private IlluminatorVirtuoso(final IlluminatorVirtuoso card) {

View file

@ -39,7 +39,7 @@ public final class MetropolisAngel extends CardImpl {
// Whenever you attack with one or more creatures with counters on them, draw a card.
this.addAbility(new AttacksWithCreaturesTriggeredAbility(
new DrawCardSourceControllerEffect(1), 1, filter
));
).setTriggerPhrase("Whenever you attack with one or more creatures with counters on them, "));
}
private MetropolisAngel(final MetropolisAngel card) {