Skip to content

Commit

Permalink
minor merge cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
xenohedron committed Feb 24, 2024
1 parent 4e24ef2 commit 41120a6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 15 deletions.
1 change: 0 additions & 1 deletion Mage.Sets/src/mage/cards/r/RedemptionArc.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ public RedemptionArc(UUID ownerId, CardSetInfo setInfo) {
// Enchanted creature has indestructible and is goaded.
Effect effect = new GainAbilityAttachedEffect(IndestructibleAbility.getInstance(),
AttachmentType.AURA, Duration.WhileOnBattlefield);
effect.setText("Enchanted creature has indestructible");
effect.setOutcome(Outcome.Benefit);

Effect effect2 = new GoadAttachedEffect();
Expand Down
6 changes: 2 additions & 4 deletions Mage.Sets/src/mage/cards/t/TribuneOfRot.java
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

package mage.cards.t;

import mage.MageInt;
Expand All @@ -12,11 +11,10 @@
import mage.constants.SubType;
import mage.filter.StaticFilters;
import mage.game.Game;
import mage.game.permanent.token.Token;
import mage.game.permanent.token.SaprolingToken;
import mage.game.permanent.token.Token;
import mage.players.Player;

import java.util.Objects;
import java.util.UUID;

/**
Expand Down Expand Up @@ -52,7 +50,7 @@ class TribuneOfRotEffect extends OneShotEffect {

TribuneOfRotEffect() {
super(Outcome.PutCreatureInPlay);
this.staticText = "For each creature card milled this way, create a 1/1 green Saproling creature token.";
this.staticText = "mill two cards. For each creature card milled this way, create a 1/1 green Saproling creature token";
}

private TribuneOfRotEffect(final TribuneOfRotEffect effect) {
Expand Down
14 changes: 4 additions & 10 deletions Mage.Sets/src/mage/cards/u/UnshakableTail.java
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ public UnshakableTail copy() {
class UnshakableTailSurveilTriggeredAbility extends TriggeredAbilityImpl {

UnshakableTailSurveilTriggeredAbility() {
super(Zone.BATTLEFIELD, new SurveilEffect(1));
super(Zone.BATTLEFIELD, new SurveilEffect(1, false));
setTriggerPhrase("When {this} enters the battlefield and at the beginning of your upkeep, ");
}

private UnshakableTailSurveilTriggeredAbility(final UnshakableTailSurveilTriggeredAbility ability) {
Expand All @@ -88,16 +89,13 @@ public boolean checkTrigger(GameEvent event, Game game) {
return game.isActivePlayer(getControllerId());
}

@Override
public String getRule() {
return "When {this} enters the battlefield and at the beginning of your upkeep, surveil 1.";
}
}

class UnshakableTailInvestigateTriggeredAbility extends TriggeredAbilityImpl {

public UnshakableTailInvestigateTriggeredAbility() {
UnshakableTailInvestigateTriggeredAbility() {
super(Zone.BATTLEFIELD, new InvestigateEffect(), false);
setTriggerPhrase("Whenever one or more creature cards are put into your graveyard from your library, ");
}

private UnshakableTailInvestigateTriggeredAbility(final UnshakableTailInvestigateTriggeredAbility ability) {
Expand Down Expand Up @@ -136,8 +134,4 @@ public UnshakableTailInvestigateTriggeredAbility copy() {
return new UnshakableTailInvestigateTriggeredAbility(this);
}

@Override
public String getRule() {
return "Whenever one or more creature cards are put into your graveyard from your library, investigate.";
}
}

0 comments on commit 41120a6

Please sign in to comment.