[SPM] implement Biorganic Carapace

This commit is contained in:
jmlundeen 2025-09-04 14:12:14 -05:00
parent 37cffc3895
commit d1b11cad4f
3 changed files with 70 additions and 2 deletions

View file

@ -143,8 +143,10 @@ public class GainAbilityAttachedEffect extends ContinuousEffectImpl {
return staticText;
}
StringBuilder sb = new StringBuilder();
sb.append(attachmentType.verb().toLowerCase());
sb.append(" " + targetObjectName + " ");
if (attachmentType != null) {
sb.append(attachmentType.verb().toLowerCase());
sb.append(" " + targetObjectName + " ");
}
if (duration == Duration.WhileOnBattlefield) {
sb.append("has ");
} else {