Skip to content

Commit

Permalink
Decayed ability - improved rules text (#13296)
Browse files Browse the repository at this point in the history
  • Loading branch information
PurpleCrowbar authored Feb 7, 2025
1 parent 25a2ea6 commit aa5c227
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Mage/src/main/java/mage/abilities/keyword/DecayedAbility.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public DecayedAbility() {
super(Zone.BATTLEFIELD, new CantBlockSourceEffect(Duration.WhileOnBattlefield));
this.addSubAbility(new AttacksTriggeredAbility(new CreateDelayedTriggeredAbilityEffect(
new AtTheEndOfCombatDelayedTriggeredAbility(new SacrificeSourceEffect())
).setText("sacrifice it at end of combat")).setTriggerPhrase("When {this} attacks, "));
).setText("sacrifice it at end of combat")).setTriggerPhrase("When {this} attacks, ").setRuleVisible(false));
}

private DecayedAbility(final DecayedAbility ability) {
Expand All @@ -32,6 +32,6 @@ public DecayedAbility copy() {

@Override
public String getRule() {
return "decayed";
return "decayed <i>(This creature can't block. When it attacks, sacrifice it at end of combat.)</i>";
}
}

0 comments on commit aa5c227

Please sign in to comment.