foul-magics/Mage/src/main/java/mage/abilities/effects/common/DestroyEquippedEffect.java
2020-02-05 02:17:00 +04:00

51 lines
1.4 KiB
Java

/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package mage.abilities.effects.common;
import java.util.UUID;
import mage.abilities.Ability;
import mage.abilities.effects.OneShotEffect;
import mage.constants.Outcome;
import mage.game.Game;
import mage.game.permanent.Permanent;
/**
*
* @author LevelX2
*/
public class DestroyEquippedEffect extends OneShotEffect {
public DestroyEquippedEffect() {
super(Outcome.DestroyPermanent);
staticText = "destroy that permanent";
}
public DestroyEquippedEffect(final DestroyEquippedEffect effect) {
super(effect);
}
@Override
public DestroyEquippedEffect copy() {
return new DestroyEquippedEffect(this);
}
@Override
public boolean apply(Game game, Ability source) {
Permanent equipment = game.getPermanent(source.getSourceId());
if (equipment != null && equipment.getAttachedTo() != null) {
UUID uuid = getTargetPointer().getFirst(game, source);
Permanent permanent = game.getPermanent(uuid);
if (permanent == null) {
permanent = game.getPermanent(equipment.getAttachedTo());
}
if (permanent != null) {
return permanent.destroy(source.getSourceId(), game, false);
}
}
return false;
}
}