add Champion Lancer (from Starter 1999)

This commit is contained in:
jendave
2011-08-06 09:35:28 +00:00
parent 074fa0d9f6
commit 59c7f96169
3 changed files with 12 additions and 0 deletions

1
.gitattributes vendored
View File

@@ -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

View File

@@ -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

View File

@@ -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;
}