- Fixed Orcish Veteran.

This commit is contained in:
Sloth
2011-09-19 18:52:26 +00:00
parent f03ec1eeae
commit f0e932adea
2 changed files with 2 additions and 6 deletions

View File

@@ -1,9 +1,9 @@
Name:Orcish Veteran
ManaCost:2 R
Types:Creature Orc
Text:no text
Text:CARDNAME can't block white creatures with power 2 or greater.
PT:2/2
K:CARDNAME can't block white creatures with power 2 or greater.
K:CantBlock Creature.White+powerGE2
A:AB$ Pump | Cost$ R | KW$ First Strike | SpellDescription$ CARDNAME gains first strike until end of turn.
SVar:Rarity:Common
SVar:Picture:http://www.wizards.com/global/images/magic/general/orcish_veteran.jpg

View File

@@ -357,10 +357,6 @@ public class CombatUtil {
if (!attacker.hasKeyword("Shadow")
&& blocker.hasKeyword("Shadow")) return false;
if (blocker.hasKeyword("CARDNAME can't block white creatures with power 2 or greater.")) {
if (attacker.isWhite() && attacker.getNetAttack() >= 2) return false;
}
if (blocker.hasKeyword("CARDNAME can't block black creatures.")) {
if (attacker.isBlack()) return false;
}