mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
[M20] fixed wrong texts
This commit is contained in:
parent
628b668ad3
commit
720c9849cb
5 changed files with 7 additions and 7 deletions
|
@ -38,7 +38,7 @@ public final class SavageGorger extends CardImpl {
|
|||
new BeginningOfEndStepTriggeredAbility(new AddCountersSourceEffect(
|
||||
CounterType.P1P1.createInstance()), TargetController.YOU, false
|
||||
), SavageGorgerCondition.instance, "At the beginning of your end step, " +
|
||||
"if an opponent lost life this turn, put a +1/+1 counter on {this}"
|
||||
"if an opponent lost life this turn, put a +1/+1 counter on {this}."
|
||||
));
|
||||
}
|
||||
|
||||
|
|
|
@ -76,6 +76,6 @@ class ScorchSpitterTriggeredAbility extends TriggeredAbilityImpl {
|
|||
|
||||
@Override
|
||||
public String getRule() {
|
||||
return "Whenever {this} attacks, it deals 1 damage to the player or planeswalker it’s attacking";
|
||||
return "Whenever {this} attacks, it deals 1 damage to the player or planeswalker it's attacking.";
|
||||
}
|
||||
}
|
||||
|
|
|
@ -54,7 +54,7 @@ public final class ThunderkinAwakener extends CardImpl {
|
|||
this.addAbility(HasteAbility.getInstance());
|
||||
|
||||
// Whenever Thunderkin Awakener attacks, choose target Elemental creature card in your graveyard
|
||||
// with toughness less than Thunderkin Awakener’s toughness. Return that card to the battlefield tapped and attacking.
|
||||
// with toughness less than Thunderkin Awakener's toughness. Return that card to the battlefield tapped and attacking.
|
||||
// Sacrifice it at the beginning of the next end step.
|
||||
Ability ability = new AttacksTriggeredAbility(new ThunderkinAwakenerEffect(), false);
|
||||
ability.addTarget(new TargetCardInYourGraveyard(filter));
|
||||
|
@ -86,7 +86,7 @@ class ThunderkinAwakenerEffect extends OneShotEffect {
|
|||
|
||||
ThunderkinAwakenerEffect() {
|
||||
super(Outcome.Benefit);
|
||||
staticText = "choose target Elemental creature card in your graveyard with toughness less than {this}’s toughness."
|
||||
staticText = "choose target Elemental creature card in your graveyard with toughness less than {this}'s toughness."
|
||||
+ " Return that card to the battlefield tapped and attacking. Sacrifice it at the beginning of the next end step";
|
||||
}
|
||||
|
||||
|
|
|
@ -84,7 +84,7 @@ class TomeboundLichTriggeredAbility extends TriggeredAbilityImpl {
|
|||
@Override
|
||||
public String getRule() {
|
||||
return "Whenever {this} enters the battlefield or deals combat damage " +
|
||||
"to a player, draw a card, then discard a card";
|
||||
"to a player, draw a card, then discard a card.";
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -38,11 +38,11 @@ public final class VeilOfSummer extends CardImpl {
|
|||
this.getSpellAbility().addEffect(new ConditionalOneShotEffect(
|
||||
new DrawCardSourceControllerEffect(1),
|
||||
VeilOfSummerCondition.instance, "Draw a card " +
|
||||
"if an opponent has cast a blue or black spell this turn."
|
||||
"if an opponent has cast a blue or black spell this turn"
|
||||
));
|
||||
this.getSpellAbility().addEffect(new CantBeCounteredControlledEffect(
|
||||
StaticFilters.FILTER_SPELL, Duration.EndOfTurn
|
||||
).setText("Spells you control can't be countered this turn."));
|
||||
).setText("Spells you control can't be countered this turn"));
|
||||
this.getSpellAbility().addEffect(new VeilOfSummerEffect());
|
||||
this.getSpellAbility().addWatcher(new VeilOfSummerWatcher());
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue