- Added Knight of Dusk.

This commit is contained in:
jendave
2011-08-06 21:49:09 +00:00
parent fc3875c557
commit ed03f95e64
4 changed files with 12 additions and 2 deletions

1
.gitattributes vendored
View File

@@ -3553,6 +3553,7 @@ res/cardsfolder/knight_errant.txt -text svneol=native#text/plain
res/cardsfolder/knight_exemplar.txt -text svneol=native#text/plain
res/cardsfolder/knight_of_cliffhaven.txt -text svneol=native#text/plain
res/cardsfolder/knight_of_dawn.txt -text svneol=native#text/plain
res/cardsfolder/knight_of_dusk.txt -text svneol=native#text/plain
res/cardsfolder/knight_of_meadowgrain.txt -text svneol=native#text/plain
res/cardsfolder/knight_of_new_alara.txt -text svneol=native#text/plain
res/cardsfolder/knight_of_stromgald.txt -text svneol=native#text/plain

View File

@@ -0,0 +1,9 @@
Name:Knight of Dusk
ManaCost:1 B B
Types:Creature Human Knight
Text:no text
PT:2/2
A:AB$ Destroy | Cost$ B B | ValidTgts$ Creature.blockingSource | TgtPrompt$ Select target creature blocking Knight of Dusk | SpellDescription$ Destroy target creature blocking CARDNAME.
SVar:Rarity:Uncommon
SVar:Picture:http://www.wizards.com/global/images/magic/general/knight_of_dusk.jpg
End

View File

@@ -2797,7 +2797,7 @@ public class Card extends MyObservable {
else if (Property.startsWith("notattacking")) { if(isAttacking()) return false;}
else if (Property.startsWith("blocking")) { if(!isBlocking()) return false;}
else if (Property.equals("blocking")) { if(!isBlocking()) return false;}
else if (Property.startsWith("blockingSource")) { if(!isBlocking(source)) return false;}