[TLA] Implement Planetarium of Wan Shi Tong

This commit is contained in:
theelk801 2025-10-31 12:29:05 -04:00
parent b7416356aa
commit d4b8c75619
4 changed files with 132 additions and 0 deletions

View file

@ -209,6 +209,12 @@ public abstract class TriggeredAbilityImpl extends AbilityImpl implements Trigge
return this;
}
@Override
public TriggeredAbility setOptional(boolean optional) {
this.optional = optional;
return this;
}
@Override
public TriggeredAbility withRuleTextReplacement(boolean replaceRuleText) {
this.replaceRuleText = replaceRuleText;