[WOE] Implement Welcome to Sweettooth (#10937)

This commit is contained in:
Susucre 2023-08-22 15:46:28 +02:00 committed by GitHub
parent 319e5df120
commit d789aea306
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 74 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, Effect effect, Target target) {
addChapterEffect(card, chapter, chapter, new Effects(effect), target);
}
public void addChapterEffect(Card card, SagaChapter chapter, Effects effects, Target target) {
addChapterEffect(card, chapter, chapter, effects, target);
}