[40K] Implement The Horus Heresy

This commit is contained in:
theelk801 2023-04-29 19:52:06 -04:00
parent dd4b1684c8
commit f959b87cdc
3 changed files with 172 additions and 0 deletions

View file

@ -75,6 +75,10 @@ public class SagaAbility extends SimpleStaticAbility {
addChapterEffect(card, chapter, chapter, new Effects(effects));
}
public void addChapterEffect(Card card, SagaChapter chapter, Consumer<TriggeredAbility> applier) {
addChapterEffect(card, chapter, chapter, applier);
}
public void addChapterEffect(Card card, SagaChapter fromChapter, SagaChapter toChapter, Effect effect) {
addChapterEffect(card, fromChapter, toChapter, new Effects(effect), (Target) null);
}