mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
[M20] fixed wrong texts
This commit is contained in:
parent
1dab4b23e3
commit
ec93f50bab
2 changed files with 3 additions and 3 deletions
|
|
@ -86,6 +86,6 @@ class WoodlandChampionTriggeredAbility extends TriggeredAbilityImpl {
|
|||
@Override
|
||||
public String getRule() {
|
||||
return "Whenever one or more tokens enter the battlefield under your control, " +
|
||||
"put that many +1/+1 counters on {this}";
|
||||
"put that many +1/+1 counters on {this}.";
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ import mage.cards.CardSetInfo;
|
|||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
import mage.filter.StaticFilters;
|
||||
import mage.target.TargetPermanent;
|
||||
import mage.target.common.TargetControlledPermanent;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
|
|
@ -27,7 +27,7 @@ public final class YaroksWavecrasher extends CardImpl {
|
|||
|
||||
// When Yarok’s Wavecrasher enters the battlefield, return another creature you control to its owner’s hand.
|
||||
Ability ability = new EntersBattlefieldTriggeredAbility(new ReturnToHandTargetEffect(), false);
|
||||
ability.addTarget(new TargetPermanent(StaticFilters.FILTER_CONTROLLED_ANOTHER_CREATURE));
|
||||
ability.addTarget(new TargetControlledPermanent(StaticFilters.FILTER_CONTROLLED_ANOTHER_CREATURE));
|
||||
this.addAbility(ability);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue