diff --git a/projects/mtg/bin/Res/sets/10E/_cards.dat b/projects/mtg/bin/Res/sets/10E/_cards.dat index 7a31bc2d7..cde697718 100644 --- a/projects/mtg/bin/Res/sets/10E/_cards.dat +++ b/projects/mtg/bin/Res/sets/10E/_cards.dat @@ -2859,6 +2859,7 @@ text=Untap target creature and gain control of it until end of turn. That creatu id=129767 target=creature auto=haste +auto=untap name=Threaten rarity=U color=Red diff --git a/projects/mtg/bin/Res/sets/M10/_cards.dat b/projects/mtg/bin/Res/sets/M10/_cards.dat index 01e785fb8..8098f01f1 100644 --- a/projects/mtg/bin/Res/sets/M10/_cards.dat +++ b/projects/mtg/bin/Res/sets/M10/_cards.dat @@ -631,7 +631,7 @@ type=Basic Land subtype=Forest text=G auto={T}:Add{G} -rarity=C +rarity=L [/card] [card] id=191406 @@ -640,7 +640,7 @@ type=Basic Land subtype=Forest text=G auto={T}:Add{G} -rarity=C +rarity=L [/card] [card] id=191405 @@ -649,7 +649,7 @@ type=Basic Land subtype=Forest text=G auto={T}:Add{G} -rarity=C +rarity=L [/card] [card] id=191409 @@ -658,7 +658,7 @@ type=Basic Land subtype=Forest text=G auto={T}:Add{G} -rarity=C +rarity=L [/card] [card] id=193754 @@ -854,7 +854,7 @@ auto={T}:Add{U} type=Basic Land subtype=Island text=U -rarity=C +rarity=L [/card] [card] id=191389 @@ -863,7 +863,7 @@ auto={T}:Add{U} type=Basic Land subtype=Island text=U -rarity=C +rarity=L [/card] [card] id=191400 @@ -872,7 +872,7 @@ auto={T}:Add{U} type=Basic Land subtype=Island text=U -rarity=C +rarity=L [/card] [card] id=191390 @@ -881,7 +881,7 @@ auto={T}:Add{U} type=Basic Land subtype=Island text=U -rarity=C +rarity=L [/card] [card] id=191073 @@ -1122,7 +1122,7 @@ auto={T}:Add{R} type=Basic Land subtype=Mountain text=R -rarity=C +rarity=L [/card] [card] id=191401 @@ -1131,7 +1131,7 @@ auto={T}:Add{R} type=Basic Land subtype=Mountain text=R -rarity=C +rarity=L [/card] [card] id=191404 @@ -1140,7 +1140,7 @@ auto={T}:Add{R} type=Basic Land subtype=Mountain text=R -rarity=C +rarity=L [/card] [card] id=191403 @@ -1149,7 +1149,7 @@ auto={T}:Add{R} type=Basic Land subtype=Mountain text=R -rarity=C +rarity=L [/card] [card] id=189896 @@ -1267,7 +1267,7 @@ auto={T}:Add{W} type=Basic Land subtype=Plains text=W -rarity=C +rarity=L [/card] [card] id=191395 @@ -1276,7 +1276,7 @@ auto={T}:Add{W} type=Basic Land subtype=Plains text=W -rarity=C +rarity=L [/card] [card] id=191396 @@ -1285,7 +1285,7 @@ auto={T}:Add{W} type=Basic Land subtype=Plains text=W -rarity=C +rarity=L [/card] [card] id=191385 @@ -1294,7 +1294,7 @@ auto={T}:Add{W} type=Basic Land subtype=Plains text=W -rarity=C +rarity=L [/card] [card] id=191599 @@ -1604,7 +1604,7 @@ auto={T}:Add{B} type=Basic Land subtype=Swamp text=B -rarity=C +rarity=L [/card] [card] id=191391 @@ -1613,7 +1613,7 @@ auto={T}:Add{B} type=Basic Land subtype=Swamp text=B -rarity=C +rarity=L [/card] [card] id=191381 @@ -1622,7 +1622,7 @@ auto={T}:Add{B} type=Basic Land subtype=Swamp text=B -rarity=C +rarity=L [/card] [card] id=191399 @@ -1631,7 +1631,7 @@ auto={T}:Add{B} type=Basic Land subtype=Swamp text=B -rarity=C +rarity=L [/card] [card] id=190564 diff --git a/projects/mtg/src/MTGAbility.cpp b/projects/mtg/src/MTGAbility.cpp index d7b30bf45..68b469acf 100644 --- a/projects/mtg/src/MTGAbility.cpp +++ b/projects/mtg/src/MTGAbility.cpp @@ -2086,7 +2086,7 @@ InstantAbility::InstantAbility(int _id, MTGCardInstance * source, Damageable * _ //Instant abilities last generally until the end of the turn int InstantAbility::testDestroy(){ int newPhase = game->getCurrentGamePhase(); - if (newPhase != currentPhase && newPhase == Constants::MTG_PHASE_UNTAP) return 1; + if (newPhase != currentPhase && newPhase == Constants::MTG_PHASE_AFTER_EOT) return 1; currentPhase = newPhase; return 0;