mirror of
https://github.com/magefree/mage.git
synced 2026-01-25 20:59:14 -08:00
Fixed order of extra turns. Extra turns of a player were only performed before and after that players turn. That didn't handle the order of extra turns correctly.
This commit is contained in:
parent
0942e9140c
commit
7999126f61
3 changed files with 88 additions and 43 deletions
|
|
@ -65,9 +65,14 @@ public class LighthouseChronologist extends LevelerCard {
|
|||
|
||||
this.addAbility(new LevelUpAbility(new ManaCostsImpl("{U}")));
|
||||
|
||||
Abilities<Ability> abilities1 = new AbilitiesImpl<Ability>();
|
||||
// LEVEL 4-6
|
||||
// 2/4
|
||||
Abilities<Ability> abilities1 = new AbilitiesImpl<>();
|
||||
|
||||
Abilities<Ability> abilities2 = new AbilitiesImpl<Ability>();
|
||||
// LEVEL 7+
|
||||
// 3/5
|
||||
// At the beginning of each end step, if it's not your turn, take an extra turn after this one.
|
||||
Abilities<Ability> abilities2 = new AbilitiesImpl<>();
|
||||
abilities2.add(new LighthouseChronologistAbility());
|
||||
|
||||
LevelerCardBuilder.construct(this,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue