mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 21:42:07 -08:00
[KHM] Implemented Invasion of the Giants
This commit is contained in:
parent
aa6abe3045
commit
65ace87a83
5 changed files with 142 additions and 5 deletions
|
|
@ -12,7 +12,6 @@ import mage.constants.Zone;
|
|||
import mage.counters.CounterType;
|
||||
import mage.game.Game;
|
||||
import mage.game.events.GameEvent;
|
||||
import mage.game.events.GameEvent.EventType;
|
||||
import mage.game.permanent.Permanent;
|
||||
import mage.game.stack.StackAbility;
|
||||
import mage.game.stack.StackObject;
|
||||
|
|
@ -40,8 +39,8 @@ public class SagaAbility extends SimpleStaticAbility {
|
|||
this.maxChapter = ability.maxChapter;
|
||||
}
|
||||
|
||||
public void addChapterEffect(Card card, SagaChapter chapter, Effect effect) {
|
||||
addChapterEffect(card, chapter, chapter, effect);
|
||||
public void addChapterEffect(Card card, SagaChapter chapter, Effect... effects) {
|
||||
addChapterEffect(card, chapter, chapter, new Effects(effects));
|
||||
}
|
||||
|
||||
public void addChapterEffect(Card card, SagaChapter fromChapter, SagaChapter toChapter, Effect effect) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue