Transmute keyword added. Dimir Infiltrator, Drift of Phantasms added. Tolaria West added, but transmute doesn't work - waiting for cycling/transmute keyword lands code.

Dimir Infiltrator broken HQ picture link corrected.
This commit is contained in:
jendave
2011-08-06 02:58:13 +00:00
parent ed83d3132d
commit 7b361c4189
6 changed files with 125 additions and 2 deletions

View File

@@ -17714,6 +17714,20 @@ return land.size() > 1 && CardFactoryUtil.AI_isMainPhase();
}
}//Cycling
if (hasKeyword(card, "Transmute") != -1)
{
int n = hasKeyword(card, "Transmute");
if (n != -1)
{
String parse = card.getKeyword().get(n).toString();
card.removeIntrinsicKeyword(parse);
String k[] = parse.split(":");
final String manacost = k[1];
card.addSpellAbility(CardFactoryUtil.ability_transmute(card, manacost));
}
}//transmute
return card;
}//getCard2