- attempt to fix a few issues with threaten
- removed Lands from M10 boosters (use rarity=L instead of Rarity=C)
This commit is contained in:
wagic.the.homebrew@gmail.com
2009-08-01 06:14:36 +00:00
parent 01f4797de8
commit 4570879624
3 changed files with 22 additions and 21 deletions

View File

@@ -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

View File

@@ -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

View File

@@ -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;