[BLB] Beza the Bounding Spring, Bandit's Talent, Persistent Marshstalker, fix some existing BLB cards (#12629)

* Beza, the Bounding Spring

* Bandit's Talent, minor change to DrawCardSourceControllerEffect text generation

* Persistent Marshstalker

* Patchwork Banner fix controller requirement

* Fix FeatherOfFlight, LupinflowerVillage, HivespineWolverine, HazardrootHerbalist

* Fix missing Zone on Persistent Marshstalker ability
This commit is contained in:
ssk97 2024-08-07 23:46:49 -07:00 committed by GitHub
parent 3380d4b3c6
commit 570a2e9661
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 359 additions and 6 deletions

View file

@ -64,7 +64,9 @@ public class DrawCardSourceControllerEffect extends OneShotEffect {
}
String value = amount.toString();
sb.append(CardUtil.numberToText(value, "a"));
sb.append(value.equals("1") ? " card" : " cards");
if (!value.contains("card")) {
sb.append(value.equals("1") ? " card" : " cards");
}
String message = amount.getMessage();
if (!message.isEmpty()) {
sb.append(value.equals("X") ? ", where X is " : " for each ");