added support for doubling cube, recoded the curses to follow the rules better, with the exception of 1 which can not quite be supported

Curse of Oblivion moved back to unsupported.
added support for targeting a zone by targeting a player...
any time you have targeted a player, you can access items in thier zones by using 
targetedpersonsZONE
targetedpersonsbattlefield for example...
added "targetedplayer" as a targetchooser and who.
added "mycurses" targetchooser.
added "targetedcurses" word variable.
This commit is contained in:
omegablast2002@yahoo.com
2012-03-15 06:18:08 +00:00
parent d7cef8398f
commit a497ef49c8
9 changed files with 144 additions and 88 deletions
+6
View File
@@ -30,6 +30,7 @@ class MTGGameZone {
TARGET_CONTROLLER_GRAVEYARD = 14,
GRAVEYARD = 15,
OWNER_GRAVEYARD = 16,
TARGETED_PLAYER_GRAVEYARD = 17,
MY_BATTLEFIELD = 21,
OPPONENT_BATTLEFIELD = 22,
@@ -37,6 +38,7 @@ class MTGGameZone {
TARGET_CONTROLLER_BATTLEFIELD = 24,
BATTLEFIELD = 25,
OWNER_BATTLEFIELD = 26,
TARGETED_PLAYER_BATTLEFIELD = 27,
MY_HAND = 31,
OPPONENT_HAND = 32,
@@ -44,6 +46,7 @@ class MTGGameZone {
TARGET_CONTROLLER_HAND = 34,
HAND = 35,
OWNER_HAND = 36,
TARGETED_PLAYER_HAND = 37,
MY_EXILE = 41,
OPPONENT_EXILE = 42,
@@ -51,6 +54,7 @@ class MTGGameZone {
TARGET_CONTROLLER_EXILE = 44,
EXILE = 45,
OWNER_EXILE = 46,
TARGETED_PLAYER_EXILE = 47,
MY_LIBRARY = 51,
OPPONENT_LIBRARY = 52,
@@ -58,6 +62,7 @@ class MTGGameZone {
TARGET_CONTROLLER_LIBRARY = 54,
LIBRARY = 55,
OWNER_LIBRARY = 56,
TARGETED_PLAYER_LIBRARY = 57,
MY_STACK = 61,
OPPONENT_STACK = 62,
@@ -65,6 +70,7 @@ class MTGGameZone {
TARGET_CONTROLLER_STACK = 64,
STACK = 65,
OWNER_STACK = 66,
TARGETED_PLAYER_STACK = 67,
};