add Argothian Treefolk (from Antiquities)

This commit is contained in:
jendave
2011-08-06 09:35:20 +00:00
parent 9926bae930
commit 074fa0d9f6
3 changed files with 13 additions and 1 deletions

1
.gitattributes vendored
View File

@@ -223,6 +223,7 @@ res/cardsfolder/argivian_restoration.txt -text svneol=native#text/plain
res/cardsfolder/argothian_enchantress.txt -text svneol=native#text/plain res/cardsfolder/argothian_enchantress.txt -text svneol=native#text/plain
res/cardsfolder/argothian_pixies.txt -text svneol=native#text/plain res/cardsfolder/argothian_pixies.txt -text svneol=native#text/plain
res/cardsfolder/argothian_swine.txt -text svneol=native#text/plain res/cardsfolder/argothian_swine.txt -text svneol=native#text/plain
res/cardsfolder/argothian_treefolk.txt -text svneol=native#text/plain
res/cardsfolder/arid_mesa.txt -text svneol=native#text/plain res/cardsfolder/arid_mesa.txt -text svneol=native#text/plain
res/cardsfolder/ark_of_blight.txt -text svneol=native#text/plain res/cardsfolder/ark_of_blight.txt -text svneol=native#text/plain
res/cardsfolder/armadillo_cloak.txt -text svneol=native#text/plain res/cardsfolder/armadillo_cloak.txt -text svneol=native#text/plain

View File

@@ -0,0 +1,9 @@
Name:Argothian Treefolk
ManaCost:3 G G
Types:Creature Treefolk
Text:no text
PT:3/5
K:Prevent all damage that would be dealt to CARDNAME by artifacts.
SVar:Rarity:Common
SVar:Picture:http://www.wizards.com/global/images/magic/general/argothian_treefolk.jpg
End

View File

@@ -2628,7 +2628,9 @@ public class Card extends MyObservable {
//more specific prevents here: //more specific prevents here:
reduce = reduce || (getKeyword().contains("Prevent all damage that would be dealt to CARDNAME by artifact creatures.") reduce = reduce || (getKeyword().contains("Prevent all damage that would be dealt to CARDNAME by artifact creatures.")
&& source.isCreature() && source.isArtifact()); && source.isCreature() && source.isArtifact());
reduce = reduce || (getKeyword().contains("Prevent all damage that would be dealt to CARDNAME by artifacts.")
&& source.isArtifact());
return reduce; return reduce;
} }