Tinybones, the Pickpocket and support (#4806)

* Tinybones, the Pickpocket and support

* Remove duplicated text
This commit is contained in:
tool4ever
2024-03-13 06:42:24 +01:00
committed by GitHub
parent f57eb7a3dc
commit 99040ad496
8 changed files with 34 additions and 28 deletions

View File

@@ -432,6 +432,10 @@ public class PlayEffect extends SpellAbilityEffect {
tgtSA.putParam("CastTransformed", "True");
}
if (sa.hasParam("ManaConversion")) {
tgtSA.putParam("ManaConversion", sa.getParam("ManaConversion"));
}
if (tgtSA.usesTargeting() && !optional) {
tgtSA.getTargetRestrictions().setMandatory(true);
}

View File

@@ -797,13 +797,6 @@ public class CardView extends GameEntityView {
sb.append(getRemembered());
PlayerView chosenPlayer = getChosenPlayer();
if (chosenPlayer != null) {
sb.append("\r\n[Chosen player: ");
sb.append(chosenPlayer);
sb.append("]\r\n");
}
Direction chosenDirection = getChosenDirection();
if (chosenDirection != null) {
sb.append("\r\n[Chosen direction: ");
@@ -837,7 +830,6 @@ public class CardView extends GameEntityView {
sb.append(" each combat.");
sb.append("\r\n");
}
}
Set<String> cantHaveKeyword = this.getCantHaveKeyword();