forked from External/mage
Introduce Duration.UntilYourNextUpkeepStep (#10600)
* add new Duration * refactor cards with new Duration. * fix both Durations and add unit tests. * fix text
This commit is contained in:
parent
14235b6320
commit
6a9340f1aa
14 changed files with 291 additions and 180 deletions
|
|
@ -13,7 +13,8 @@ public enum Duration {
|
|||
EndOfTurn("until end of turn", true, true),
|
||||
UntilYourNextTurn("until your next turn", true, true),
|
||||
UntilYourNextEndStep("until your next end step", true, true),
|
||||
UntilYourNextEndCombatStep("until your next end of combat step", false, true),
|
||||
UntilEndCombatOfYourNextTurn("until end of combat on your next turn", true, true),
|
||||
UntilYourNextUpkeepStep("until your next upkeep", true, true),
|
||||
UntilEndOfYourNextTurn("until the end of your next turn", true, true),
|
||||
UntilSourceLeavesBattlefield("until {this} leaves the battlefield", true, false), // supported for continuous layered effects
|
||||
EndOfCombat("until end of combat", true, true),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue