mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
[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:
parent
3380d4b3c6
commit
570a2e9661
10 changed files with 359 additions and 6 deletions
|
|
@ -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 ");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue