mirror of
https://github.com/correl/mage.git
synced 2025-01-13 19:11:33 +00:00
some text fixes for exile graveyards
This commit is contained in:
parent
83d44b3e66
commit
b286d70447
2 changed files with 4 additions and 4 deletions
|
@ -1,7 +1,5 @@
|
|||
|
||||
package mage.abilities.effects.common;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.effects.OneShotEffect;
|
||||
import mage.cards.Cards;
|
||||
|
@ -14,8 +12,9 @@ import mage.filter.StaticFilters;
|
|||
import mage.game.Game;
|
||||
import mage.players.Player;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Jgod
|
||||
*/
|
||||
public class ExileGraveyardAllPlayersEffect extends OneShotEffect {
|
||||
|
@ -25,6 +24,7 @@ public class ExileGraveyardAllPlayersEffect extends OneShotEffect {
|
|||
|
||||
public ExileGraveyardAllPlayersEffect() {
|
||||
this(StaticFilters.FILTER_CARD_CARDS);
|
||||
this.staticText = "exile all graveyards";
|
||||
}
|
||||
|
||||
public ExileGraveyardAllPlayersEffect(FilterCard filter) {
|
||||
|
|
|
@ -16,7 +16,7 @@ public class ExileGraveyardAllTargetPlayerEffect extends OneShotEffect {
|
|||
|
||||
public ExileGraveyardAllTargetPlayerEffect() {
|
||||
super(Outcome.Exile);
|
||||
staticText = "exile all cards from target player's graveyard";
|
||||
staticText = "exile target player's graveyard";
|
||||
}
|
||||
|
||||
private ExileGraveyardAllTargetPlayerEffect(final ExileGraveyardAllTargetPlayerEffect effect) {
|
||||
|
|
Loading…
Reference in a new issue