Revert "[WOE] Implement Embereth Veteran"

This reverts commit bd1b657e24.
This commit is contained in:
theelk801 2023-08-15 21:02:01 -04:00
parent bd1b657e24
commit e8e243db8c
6 changed files with 0 additions and 211 deletions

View file

@ -1,64 +0,0 @@
package mage.abilities.effects.common;
import mage.abilities.Ability;
import mage.abilities.Mode;
import mage.abilities.effects.OneShotEffect;
import mage.constants.Outcome;
import mage.constants.RoleType;
import mage.constants.SubType;
import mage.game.Game;
import mage.game.permanent.Permanent;
import mage.game.permanent.token.Token;
import java.util.UUID;
/**
* @author TheElk801
*/
public class CreateRoleAttachedTargetEffect extends OneShotEffect {
private final RoleType roleType;
public CreateRoleAttachedTargetEffect(RoleType roleType) {
super(Outcome.Benefit);
this.roleType = roleType;
}
private CreateRoleAttachedTargetEffect(final CreateRoleAttachedTargetEffect effect) {
super(effect);
this.roleType = effect.roleType;
}
@Override
public CreateRoleAttachedTargetEffect copy() {
return new CreateRoleAttachedTargetEffect(this);
}
@Override
public boolean apply(Game game, Ability source) {
Permanent permanent = game.getPermanent(getTargetPointer().getFirst(game, source));
if (permanent == null) {
return false;
}
Token token = roleType.createToken();
token.putOntoBattlefield(1, game, source);
for (UUID tokenId : token.getLastAddedTokenIds()) {
Permanent aura = game.getPermanent(tokenId);
if (aura == null || !aura.hasSubtype(SubType.AURA, game)) {
continue;
}
aura.getAbilities().get(0).getTargets().get(0).add(source.getFirstTarget(), game);
aura.getAbilities().get(0).getEffects().get(0).apply(game, aura.getAbilities().get(0));
}
return true;
}
@Override
public String getText(Mode mode) {
if (staticText != null && !staticText.isEmpty()) {
return staticText;
}
return "create a " + roleType.getName() + " Role token attached to " +
getTargetPointer().describeTargets(mode.getTargets(), "it");
}
}