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
|
Name:Orcish Veteran
|
||||||
ManaCost:2 R
|
ManaCost:2 R
|
||||||
Types:Creature Orc
|
Types:Creature Orc
|
||||||
Text:no text
|
Text:CARDNAME can't block white creatures with power 2 or greater.
|
||||||
PT:2/2
|
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.
|
A:AB$ Pump | Cost$ R | KW$ First Strike | SpellDescription$ CARDNAME gains first strike until end of turn.
|
||||||
SVar:Rarity:Common
|
SVar:Rarity:Common
|
||||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/orcish_veteran.jpg
|
SVar:Picture:http://www.wizards.com/global/images/magic/general/orcish_veteran.jpg
|
||||||
|
|||||||
@@ -357,10 +357,6 @@ public class CombatUtil {
|
|||||||
if (!attacker.hasKeyword("Shadow")
|
if (!attacker.hasKeyword("Shadow")
|
||||||
&& blocker.hasKeyword("Shadow")) return false;
|
&& 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 (blocker.hasKeyword("CARDNAME can't block black creatures.")) {
|
||||||
if (attacker.isBlack()) return false;
|
if (attacker.isBlack()) return false;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user