forked from External/mage
Reworking "as long as you control this" effects (WIP) (#8620)
* added WhileControlled duration, removed SourceOnBattlefieldControlUnchangedCondition * refactored effects which keep things tapped * a few additional missed cards * refactored cards which check for being controlled and tapped * [NEO] Implemented Kyodai, Soul of Kamigawa
This commit is contained in:
parent
0ca75806fe
commit
d030848552
36 changed files with 495 additions and 1239 deletions
|
|
@ -7,6 +7,7 @@ public enum Duration {
|
|||
OneUse("", true, true),
|
||||
EndOfGame("for the rest of the game", false, false),
|
||||
WhileOnBattlefield("", false, false),
|
||||
WhileControlled("for as long as you control {this}", true, false),
|
||||
WhileOnStack("", false, true),
|
||||
WhileInGraveyard("", false, false),
|
||||
EndOfTurn("until end of turn", true, true),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue