diff --git a/.gitattributes b/.gitattributes index 842e1f19e3c..d72b2053939 100644 --- a/.gitattributes +++ b/.gitattributes @@ -705,6 +705,7 @@ res/cardsfolder/chainers_edict.txt -text svneol=native#text/plain res/cardsfolder/chalice_of_the_void.txt -text svneol=native#text/plain res/cardsfolder/chambered_nautilus.txt -text svneol=native#text/plain res/cardsfolder/chameleon_colossus.txt -text svneol=native#text/plain +res/cardsfolder/champion_lancer.txt -text svneol=native#text/plain res/cardsfolder/champions_drake.txt -text svneol=native#text/plain res/cardsfolder/chandler.txt -text svneol=native#text/plain res/cardsfolder/chandra_nalaar.txt -text svneol=native#text/plain diff --git a/res/cardsfolder/champion_lancer.txt b/res/cardsfolder/champion_lancer.txt new file mode 100644 index 00000000000..2858359f91c --- /dev/null +++ b/res/cardsfolder/champion_lancer.txt @@ -0,0 +1,9 @@ +Name:Champion Lancer +ManaCost:4 W W +Types:Creature Human Knight +Text:no text +PT:3/3 +K:Prevent all damage that would be dealt to CARDNAME by creatures. +SVar:Rarity:Rare +SVar:Picture:http://www.wizards.com/global/images/magic/general/champion_lancer.jpg +End diff --git a/src/forge/Card.java b/src/forge/Card.java index 50033a5c0a7..62d4b7a572c 100644 --- a/src/forge/Card.java +++ b/src/forge/Card.java @@ -2631,6 +2631,8 @@ public class Card extends MyObservable { && source.isCreature() && source.isArtifact()); reduce = reduce || (getKeyword().contains("Prevent all damage that would be dealt to CARDNAME by artifacts.") && source.isArtifact()); + reduce = reduce || (getKeyword().contains("Prevent all damage that would be dealt to CARDNAME by creatures.") + && source.isCreature()); return reduce; }