mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 12:18:00 +00:00
- Fixed Orcish Veteran.
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user