Slimefoot And Squee - fixed that it can't be activated without another target (#14089, #14088)

This commit is contained in:
ReSech 2025-11-15 20:10:31 +11:00 committed by GitHub
parent 25cd45c8b8
commit 49442b7caf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -58,7 +58,7 @@ public final class SlimefootAndSquee extends CardImpl {
ability.addCost(new SacrificeTargetCost(filter)); ability.addCost(new SacrificeTargetCost(filter));
ability.addEffect(new ReturnFromGraveyardToBattlefieldTargetEffect() ability.addEffect(new ReturnFromGraveyardToBattlefieldTargetEffect()
.setText("and up to one other target creature card from your graveyard to the battlefield")); .setText("and up to one other target creature card from your graveyard to the battlefield"));
ability.addTarget(new TargetCardInYourGraveyard(filter2)); ability.addTarget(new TargetCardInYourGraveyard(0, 1, filter2));
this.addAbility(ability); this.addAbility(ability);
} }