User guide update (#9115)

This commit is contained in:
tool4ever
2025-11-09 09:05:29 +01:00
committed by GitHub
parent 1be45d73dd
commit 3736a0392d
22 changed files with 242 additions and 58 deletions

View File

@@ -31,7 +31,7 @@ public class EarthbendEffect extends SpellAbilityEffect {
sb.append(amount).append(". (Target land you control becomes a 0/0 creature with haste that's still a land. Put ");
sb.append(Lang.nounWithNumeral(amount, "+1/+1 counter"));
sb.append(" on it. When it dies or is exiled, return it to the battlefield tapped.)");
sb.append(" on it. When it dies or is exiled, return it to the battlefield tapped under your control.)");
return sb.toString();
}
@@ -74,7 +74,7 @@ public class EarthbendEffect extends SpellAbilityEffect {
protected void buildTrigger(SpellAbility sa, Card c, String sbTrig, String zone) {
final Card source = sa.getHostCard();
final Game game = source.getGame();
String trigSA = "DB$ ChangeZone | Defined$ DelayTriggerRemembered | Origin$ " + zone + " | Destination$ Battlefield | Tapped$ True";
String trigSA = "DB$ ChangeZone | Defined$ DelayTriggerRemembered | Origin$ " + zone + " | Destination$ Battlefield | Tapped$ True | GainControl$ You";
final Trigger trig = TriggerHandler.parseTrigger(sbTrig, CardCopyService.getLKICopy(source), sa.isIntrinsic());
final SpellAbility newSa = AbilityFactory.getAbility(trigSA, sa.getHostCard());