- Added Nucklavee.

- Made etbReturnTgt a while loop.
This commit is contained in:
jendave
2011-08-06 09:34:22 +00:00
parent 50eac1654a
commit e8e64694a7
3 changed files with 12 additions and 1 deletions

1
.gitattributes vendored
View File

@@ -2917,6 +2917,7 @@ res/cardsfolder/nova_chaser.txt -text svneol=native#text/plain
res/cardsfolder/novablast_wurm.txt -text svneol=native#text/plain
res/cardsfolder/novijen_heart_of_progress.txt -text svneol=native#text/plain
res/cardsfolder/noxious_hatchling.txt -text svneol=native#text/plain
res/cardsfolder/nucklavee.txt -text svneol=native#text/plain
res/cardsfolder/nullmage_shepherd.txt -text svneol=native#text/plain
res/cardsfolder/nut_collector.txt -text svneol=native#text/plain
res/cardsfolder/nyxathid.txt -text svneol=native#text/plain

View File

@@ -0,0 +1,10 @@
Name:Nucklavee
ManaCost:4 UR UR
Types:Creature Beast
Text:When Nucklavee enters the battlefield, you may return target red sorcery card from your graveyard to your hand.\r\nWhen Nucklavee enters the battlefield, you may return target blue instant card from your graveyard to your hand.
PT:4/4
K:etbReturnTgt:1:Sorcery.Red:Hand
K:etbReturnTgt:1:Instant.Blue:Hand
SVar:Rarity:Uncommon
SVar:Picture:http://www.wizards.com/global/images/magic/general/nucklavee.jpg
End

View File

@@ -3919,7 +3919,7 @@ public class CardFactory implements NewConstants {
*
* Buyback and X Count/Costs are not yet implemented.
*/
if (hasKeyword(card, "etbReturnTgt") != -1) {
while (hasKeyword(card, "etbReturnTgt") != -1) {
int n = hasKeyword(card, "etbReturnTgt");
String parse = card.getKeyword().get(n).toString();