[WOC] Implement Court of Embereth (#10971)

* Clean text generation of ConditionalOneShotEffect to prevent "if if"

* [WOC] Implement Court of Embereth
This commit is contained in:
Susucre 2023-09-09 05:57:36 +02:00 committed by GitHub
parent 26012ee135
commit 249e7bf31b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 106 additions and 3 deletions

View file

@ -18,4 +18,10 @@ public abstract class OneShotEffect extends EffectImpl {
protected OneShotEffect(final OneShotEffect effect) {
super(effect);
}
@Override
public OneShotEffect setText(String staticText) {
super.setText(staticText);
return this;
}
}