Distinguish "blocks or becomes blocked" triggered abilities from "blocks or becomes blocked by a creature". Fixes #9347

This commit is contained in:
Alex W. Jackson 2022-09-25 02:53:07 -04:00
parent 8e67386628
commit c8c663b976
56 changed files with 431 additions and 753 deletions

View file

@ -0,0 +1,52 @@
package mage.abilities.effects.common;
import java.util.ArrayList;
import java.util.List;
import java.util.UUID;
import mage.abilities.Ability;
import mage.abilities.effects.OneShotEffect;
import mage.constants.Outcome;
import mage.constants.SubType;
import mage.game.Game;
import mage.game.permanent.Permanent;
import mage.filter.FilterPermanent;
/**
*
* @author awjackson
*/
public class DestroyAllAttachedToTargetEffect extends OneShotEffect {
private final FilterPermanent filter;
public DestroyAllAttachedToTargetEffect(FilterPermanent filter, String description) {
super(Outcome.DestroyPermanent);
this.filter = filter;
this.staticText = "destroy all " + filter.getMessage() + " attached to " + description;
}
public DestroyAllAttachedToTargetEffect(final DestroyAllAttachedToTargetEffect effect) {
super(effect);
this.filter = effect.filter;
}
@Override
public DestroyAllAttachedToTargetEffect copy() {
return new DestroyAllAttachedToTargetEffect(this);
}
@Override
public boolean apply(Game game, Ability source) {
Permanent targetPermanent = getTargetPointer().getFirstTargetPermanentOrLKI(game, source);
if (targetPermanent != null) {
List<UUID> attachments = new ArrayList<>(targetPermanent.getAttachments());
for (UUID attachmentId : attachments) {
Permanent attachment = game.getPermanent(attachmentId);
if (filter.match(attachment, source.getControllerId(), source, game)) {
attachment.destroy(source, game, false);
}
}
}
return true;
}
}