[LTC] Implement Oarth Of Eorl (#10469)

Added one constructor for SagaAbility, accepting multiple effects and a target.
This commit is contained in:
Susucre 2023-06-19 04:38:18 +02:00 committed by GitHub
parent 1194feefd8
commit 720b2fe163
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 112 additions and 0 deletions

View file

@ -63,6 +63,10 @@ public class SagaAbility extends SimpleStaticAbility {
addChapterEffect(card, chapter, chapter, new Effects(effects));
}
public void addChapterEffect(Card card, SagaChapter chapter, Effects effects, Target target) {
addChapterEffect(card, chapter, chapter, effects, target);
}
public void addChapterEffect(Card card, SagaChapter chapter, Consumer<TriggeredAbility> applier) {
addChapterEffect(card, chapter, chapter, applier);
}