minor text edit to Nath of the Gilt Leaf, and update its token creation to use standard code instead of manually setting everything.

This commit is contained in:
jendave
2011-08-06 12:34:58 +00:00
parent b260ce4f79
commit 5c4743d710
2 changed files with 3 additions and 19 deletions

View File

@@ -330,24 +330,8 @@ public class GameAction {
for(int i = 0; i < opponentList.size(); i++) {
Card card = opponentList.get(i);
if(card.getName().equals("Nath of the Gilt-Leaf")) {
Card c = new Card();
c.setOwner(card.getController());
c.setController(card.getController());
c.setName("Elf Warrior");
c.setImageName("G 1 1 Elf Warrior");
c.setManaCost("G");
c.addColor("G");
c.setToken(true);
c.addType("Creature");
c.addType("Elf");
c.addType("Warrior");
c.setBaseAttack(1);
c.setBaseDefense(1);
opponentZone.add(c);
CardFactoryUtil.makeToken("Elf Warrior", "G 1 1 Elf Warrior", opponent, "G",
new String[] {"Creature", "Elf", "Warrior"}, 1, 1, new String[] {});
}
}
}