Added Tundra Kavu (Also added StackDescription to Pump and GenericChoice to allow correct stack description)

This commit is contained in:
moomarc
2012-02-13 08:21:35 +00:00
parent 0bb4385f6c
commit a86c9553a9
2 changed files with 53 additions and 43 deletions

View File

@@ -1869,6 +1869,10 @@ public final class AbilityFactoryChoose {
sb.append(" ");
}
if (params.containsKey("StackDescription")) {
sb.append(params.get("StackDescription"));
}
else {
ArrayList<Player> tgtPlayers;
final Target tgt = sa.getTarget();
@@ -1882,6 +1886,7 @@ public final class AbilityFactoryChoose {
sb.append(p).append(" ");
}
sb.append("chooses from a list.");
}
final AbilitySub abSub = sa.getSubAbility();
if (abSub != null) {

View File

@@ -857,6 +857,10 @@ public class AbilityFactoryPump {
sb.append(name).append(" - ");
}
if (params.containsKey("StackDescription")) {
sb.append(params.get("StackDescription"));
}
else {
for (final GameEntity c : tgts) {
sb.append(c.getName()).append(" ");
}
@@ -898,6 +902,7 @@ public class AbilityFactoryPump {
sb.append("until end of turn.");
}
}
}
final AbilitySub abSub = sa.getSubAbility();
if (abSub != null) {