more refactoring of ConditionalInterveningIfTriggeredAbility

This commit is contained in:
theelk801 2025-06-07 12:28:14 -04:00
parent 24c9d5509e
commit baa52bc617
27 changed files with 179 additions and 317 deletions

View file

@ -34,6 +34,6 @@ public enum ControlACommanderCondition implements Condition {
@Override
public String toString() {
return "If you control a commander";
return "you control a commander";
}
}

View file

@ -16,6 +16,6 @@ public enum HellbentCondition implements Condition {
@Override
public String toString() {
return "if you have no cards in hand";
return "you have no cards in hand";
}
}

View file

@ -21,6 +21,6 @@ public enum RaidCondition implements Condition {
@Override
public String toString() {
return "if you attacked this turn";
return "you attacked this turn";
}
}