[FIN] Implement Al Bhed Salvagers

This commit is contained in:
theelk801 2025-05-14 15:55:06 -04:00
parent 0dc9a0d5c1
commit 500057c322
3 changed files with 51 additions and 1 deletions

View file

@ -29,7 +29,7 @@ public class DiesThisOrAnotherTriggeredAbility extends TriggeredAbilityImpl {
if (filterMessage.startsWith("a ")) {
filterMessage = filterMessage.substring(2);
}
setTriggerPhrase("Whenever {this} or another " + filterMessage + " dies, ");
setTriggerPhrase("Whenever {this} or " + (filterMessage.startsWith("another") ? "" : "another ") + filterMessage + " dies, ");
setLeavesTheBattlefieldTrigger(true);
}