mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
[SNC] a few additional text fixes
This commit is contained in:
parent
2adc1943e7
commit
faf806ef7d
4 changed files with 7 additions and 4 deletions
|
@ -28,7 +28,8 @@ public final class CabarettiCharm extends CardImpl {
|
||||||
|
|
||||||
// Choose one —
|
// Choose one —
|
||||||
// • Cabaretti Charm deals damage equal to the number of creatures you control to target creature or planeswalker.
|
// • 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().addTarget(new TargetCreatureOrPlaneswalker());
|
||||||
this.getSpellAbility().addHint(CreaturesYouControlHint.instance);
|
this.getSpellAbility().addHint(CreaturesYouControlHint.instance);
|
||||||
|
|
||||||
|
|
|
@ -28,7 +28,7 @@ import java.util.*;
|
||||||
*/
|
*/
|
||||||
public final class EvelynTheCovetous extends CardImpl {
|
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) {
|
public EvelynTheCovetous(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{U/B}{B}{B/R}");
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{2}{U/B}{B}{B/R}");
|
||||||
|
|
|
@ -36,7 +36,9 @@ public final class IlluminatorVirtuoso extends CardImpl {
|
||||||
this.addAbility(DoubleStrikeAbility.getInstance());
|
this.addAbility(DoubleStrikeAbility.getInstance());
|
||||||
|
|
||||||
// Whenever Illuminator Virtuoso becomes the target of a spell you control, it connives.
|
// 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) {
|
private IlluminatorVirtuoso(final IlluminatorVirtuoso card) {
|
||||||
|
|
|
@ -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.
|
// Whenever you attack with one or more creatures with counters on them, draw a card.
|
||||||
this.addAbility(new AttacksWithCreaturesTriggeredAbility(
|
this.addAbility(new AttacksWithCreaturesTriggeredAbility(
|
||||||
new DrawCardSourceControllerEffect(1), 1, filter
|
new DrawCardSourceControllerEffect(1), 1, filter
|
||||||
));
|
).setTriggerPhrase("Whenever you attack with one or more creatures with counters on them, "));
|
||||||
}
|
}
|
||||||
|
|
||||||
private MetropolisAngel(final MetropolisAngel card) {
|
private MetropolisAngel(final MetropolisAngel card) {
|
||||||
|
|
Loading…
Reference in a new issue