simplified default saga constructor

This commit is contained in:
Evan Kranzler 2022-01-31 08:22:43 -05:00
parent 75d0e6b71b
commit 87d74a4cf9
48 changed files with 51 additions and 47 deletions

View file

@ -28,6 +28,10 @@ public class SagaAbility extends SimpleStaticAbility {
private final SagaChapter maxChapter;
public SagaAbility(Card card) {
this(card, SagaChapter.CHAPTER_III);
}
public SagaAbility(Card card, SagaChapter maxChapter) {
super(Zone.ALL, new AddCountersSourceEffect(CounterType.LORE.createInstance()));
this.maxChapter = maxChapter;