update commander rules to allow vehicles and spacecraft with P/T

This commit is contained in:
theelk801 2025-07-08 17:27:05 -04:00
parent c07c2cf1ac
commit ccaeabaeba
2 changed files with 19 additions and 3 deletions

View file

@ -52,6 +52,10 @@ public class StationLevelAbility extends StaticAbility {
.map(CardUtil::getTextWithFirstCharUpperCase)
.collect(Collectors.joining("<br>"));
}
public boolean hasPT() {
return this.getEffects().stream().anyMatch(StationLevelCreatureEffect.class::isInstance);
}
}
class StationLevelAbilityEffect extends ContinuousEffectImpl {