renamed "can't be the target of spells or abilities your opponents control" to

hexproof (new evergreen keyword in Magic 2012).
master
melvin 2011-05-28 16:02:42 +08:00
parent 5eb169d021
commit fedd934946
3 changed files with 6 additions and 6 deletions

View File

@ -1359,7 +1359,7 @@ converted=2
cost={1}{G}
power=1
toughness=1
ability=can't be blocked except by creatures with flying,can't be the target of spells or abilities your opponent controls
ability=can't be blocked except by creatures with flying,hexproof
timing=fmain
>Simic Sky Swallower
@ -1583,7 +1583,7 @@ converted=3
cost={1}{G}{G}
power=3
toughness=2
ability=can't be the target of spells or abilities your opponent controls
ability=hexproof
timing=fmain
>Twinblade Slasher
@ -6920,7 +6920,7 @@ converted=4
cost={2}{G}{G}
power=4
toughness=4
ability=can't be countered,can't be the target of spells or abilities your opponent controls
ability=can't be countered,hexproof
timing=fmain
>Viridian Claw

View File

@ -4190,7 +4190,7 @@ converted=3
cost={2}{G}
power=3
toughness=1
ability=can't be the target of spells or abilities your opponent controls
ability=hexproof
timing=fmain
>Loxodon Partisan

View File

@ -9,7 +9,7 @@ public enum MagicAbility {
CannotBeBlockedByFlying("can't be blocked by creatures with flying",20),
CannotBeBlockedExceptWithFlying("can't be blocked except by creatures with flying",30),
CannotBeCountered("can't be countered",0),
CannotBeTheTarget("can't be the target of spells or abilities your opponent controls",80),
CannotBeTheTarget("hexproof",80),
Changeling("changeling",10),
Deathtouch("deathtouch",60),
Defender("defender",-100),
@ -185,4 +185,4 @@ public enum MagicAbility {
return count++;
}
}
}
}