diff --git a/res/cardsfolder/o/orcish_veteran.txt b/res/cardsfolder/o/orcish_veteran.txt index 032d843db43..65ae5932f18 100644 --- a/res/cardsfolder/o/orcish_veteran.txt +++ b/res/cardsfolder/o/orcish_veteran.txt @@ -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 diff --git a/src/main/java/forge/CombatUtil.java b/src/main/java/forge/CombatUtil.java index 5f37fedbcc5..a2908a6779b 100644 --- a/src/main/java/forge/CombatUtil.java +++ b/src/main/java/forge/CombatUtil.java @@ -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; }