mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
more text fixes
This commit is contained in:
parent
2f05346434
commit
78e1e90356
7 changed files with 7 additions and 7 deletions
|
|
@ -52,7 +52,7 @@ class DoppelgangEffect extends OneShotEffect {
|
|||
|
||||
DoppelgangEffect() {
|
||||
super(Outcome.Benefit);
|
||||
staticText = "create X tokens that are copies of that permanent";
|
||||
staticText = "for each of X target permanents, create X tokens that are copies of that permanent";
|
||||
}
|
||||
|
||||
private DoppelgangEffect(final DoppelgangEffect effect) {
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@ public final class EliminateTheImpossible extends CardImpl {
|
|||
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{1}{U}");
|
||||
|
||||
// Investigate. Creatures your opponents control get -2/-0 until end of turn. If any of them are suspected, they're no longer suspected.
|
||||
this.getSpellAbility().addEffect(new InvestigateEffect());
|
||||
this.getSpellAbility().addEffect(new InvestigateEffect().setText("investigate"));
|
||||
this.getSpellAbility().addEffect(new BoostAllEffect(
|
||||
-2, 0, Duration.EndOfTurn,
|
||||
StaticFilters.FILTER_OPPONENTS_PERMANENT_CREATURES, false
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@ public final class Festerleech extends CardImpl {
|
|||
|
||||
// Whenever Festerleech deals combat damage to a player, you mill two cards.
|
||||
this.addAbility(new DealsCombatDamageToAPlayerTriggeredAbility(
|
||||
new MillCardsControllerEffect(2), true
|
||||
new MillCardsControllerEffect(2), false
|
||||
));
|
||||
|
||||
// {1}{B}: Festerleech gets +2/+2 until end of turn. Activate only once each turn.
|
||||
|
|
|
|||
|
|
@ -37,7 +37,7 @@ public final class InsidiousRoots extends CardImpl {
|
|||
|
||||
// Whenever one or more creature cards leave your graveyard, create a 0/1 green Plant creature token, then put a +1/+1 counter on each Plant you control.
|
||||
Ability ability = new CardsLeaveGraveyardTriggeredAbility(
|
||||
new CreateTokenEffect(new PlantToken()), StaticFilters.FILTER_CARD_CREATURE
|
||||
new CreateTokenEffect(new PlantToken()), StaticFilters.FILTER_CARD_CREATURES
|
||||
);
|
||||
ability.addEffect(new AddCountersAllEffect(
|
||||
CounterType.P1P1.createInstance(), filter
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@ import java.util.UUID;
|
|||
public final class PrivateEye extends CardImpl {
|
||||
|
||||
private static final FilterCreaturePermanent filter = new FilterCreaturePermanent(SubType.DETECTIVE, "Detectives");
|
||||
private static final FilterPermanent filter2 = new FilterPermanent(SubType.DETECTIVE, "Deteective");
|
||||
private static final FilterPermanent filter2 = new FilterPermanent(SubType.DETECTIVE, "Detective");
|
||||
|
||||
public PrivateEye(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{1}{W}{U}");
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@ public final class RotFarmMortipede extends CardImpl {
|
|||
// Whenever one or more creature cards leave your graveyard, Rot Farm Mortipede gets +1/+0 and gains menace and lifelink until end of turn.
|
||||
Ability ability = new CardsLeaveGraveyardTriggeredAbility(new BoostSourceEffect(
|
||||
1, 0, Duration.EndOfTurn
|
||||
).setText("{this} gets +1/+0"), StaticFilters.FILTER_CARD_CREATURE);
|
||||
).setText("{this} gets +1/+0"), StaticFilters.FILTER_CARD_CREATURES);
|
||||
ability.addEffect(new GainAbilitySourceEffect(
|
||||
new MenaceAbility(false), Duration.EndOfTurn
|
||||
).setText("and gains menace"));
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ import mage.constants.Zone;
|
|||
public final class VoiceOfResurgenceToken extends TokenImpl {
|
||||
|
||||
public VoiceOfResurgenceToken() {
|
||||
super("Elemental Token", "green and white Elemental creature token with \"This creature's power and toughness are each equal to the number of creatures you control.");
|
||||
super("Elemental Token", "green and white Elemental creature token with \"This creature's power and toughness are each equal to the number of creatures you control.\"");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setGreen(true);
|
||||
color.setWhite(true);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue