forked from External/mage
Implemented "Until your next end step" duration (#8831)
* initial implementation of until next end step duration * added test, reworked effect duration
This commit is contained in:
parent
1807565ef0
commit
6e65db284c
8 changed files with 160 additions and 90 deletions
|
|
@ -12,6 +12,7 @@ public enum Duration {
|
|||
WhileInGraveyard("", false, false),
|
||||
EndOfTurn("until end of turn", true, true),
|
||||
UntilYourNextTurn("until your next turn", true, true),
|
||||
UntilYourNextEndStep("until your next end step", 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