mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 20:58:03 +00:00
Added Tundra Kavu (Also added StackDescription to Pump and GenericChoice to allow correct stack description)
This commit is contained in:
@@ -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) {
|
||||
|
||||
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user