forked from External/mage
[OTJ] Implement Plot mechanic (+8 cards) (#12017)
[OTJ] Implement Aloe Alchemist [OTJ] Implement Aven Interrupter [OTJ] Implement Longhorn Shapshooter [OTJ] Implement Kellan Joins Up [OTJ] Implement Make Your Own Luck [OTJ] Implement Jace Reawakened [OTJ] Implement Lilah, Undefeated Slickshot [OTJ] Implement Doc Aurlock, Grizzled Genius
This commit is contained in:
parent
ed3d6e3078
commit
97ab8074b3
19 changed files with 1476 additions and 25 deletions
|
|
@ -21,7 +21,8 @@ public enum SpellAbilityCastMode {
|
|||
DISGUISE("Disguise", false, true),
|
||||
TRANSFORMED("Transformed", true),
|
||||
DISTURB("Disturb", true),
|
||||
MORE_THAN_MEETS_THE_EYE("More than Meets the Eye", true);
|
||||
MORE_THAN_MEETS_THE_EYE("More than Meets the Eye", true),
|
||||
PLOT("Plot");
|
||||
|
||||
private final String text;
|
||||
|
||||
|
|
@ -91,6 +92,7 @@ public enum SpellAbilityCastMode {
|
|||
case MADNESS:
|
||||
case FLASHBACK:
|
||||
case DISTURB:
|
||||
case PLOT:
|
||||
case MORE_THAN_MEETS_THE_EYE:
|
||||
// it changes only cost, so keep other characteristics
|
||||
// TODO: research - why TRANSFORMED here - is it used in this.isTransformed code?!
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue