diff --git a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/wraith/Card20_286.java b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/wraith/Card20_286.java new file mode 100644 index 000000000..e26d77da6 --- /dev/null +++ b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set20/wraith/Card20_286.java @@ -0,0 +1,63 @@ +package com.gempukku.lotro.cards.set20.wraith; + + +import com.gempukku.lotro.cards.AbstractPermanent; +import com.gempukku.lotro.cards.PlayConditions; +import com.gempukku.lotro.cards.TriggerConditions; +import com.gempukku.lotro.cards.effects.AddBurdenEffect; +import com.gempukku.lotro.cards.effects.TransferPermanentEffect; +import com.gempukku.lotro.common.*; +import com.gempukku.lotro.filters.Filters; +import com.gempukku.lotro.game.PhysicalCard; +import com.gempukku.lotro.game.state.LotroGame; +import com.gempukku.lotro.logic.actions.ActivateCardAction; +import com.gempukku.lotro.logic.actions.RequiredTriggerAction; +import com.gempukku.lotro.logic.effects.WoundCharactersEffect; +import com.gempukku.lotro.logic.timing.EffectResult; + +import java.util.Collections; +import java.util.List; + +/** + * 0 + * Blade Tip + * Ringwraith Condition • Support Area + * Response: If your Nazgul wins a skirmish, transfer this condition from your support area to the losing character. + * Limit 1 per character. + * Wound bearer at the start of each fellowship phase. (If bearer is the Ring-bearer, add a burden instead.) + */ +public class Card20_286 extends AbstractPermanent { + public Card20_286() { + super(Side.SHADOW, 0, CardType.CONDITION, Culture.WRAITH, Zone.SUPPORT, "Blade Tip"); + } + + @Override + public List getOptionalInPlayAfterActions(String playerId, LotroGame game, EffectResult effectResult, final PhysicalCard self) { + if (TriggerConditions.winsSkirmish(game, effectResult, Filters.and(Filters.owner(self.getOwner()), Race.NAZGUL)) + && self.getZone() == Zone.SUPPORT + && PlayConditions.isActive(game, Filters.character, Filters.inSkirmishAgainst(Race.NAZGUL), Filters.not(Filters.hasAttached(Filters.name(getName()))))) { + ActivateCardAction action = new ActivateCardAction(self); + action.appendEffect( + new TransferPermanentEffect(self, game.getGameState().getSkirmish().getFellowshipCharacter())); + return Collections.singletonList(action); + } + return null; + } + + @Override + public List getRequiredAfterTriggers(LotroGame game, EffectResult effectResult, PhysicalCard self) { + if (TriggerConditions.startOfPhase(game, effectResult, Phase.FELLOWSHIP) + && self.getZone() == Zone.ATTACHED) { + boolean ringBearer = game.getGameState().getRingBearer(game.getGameState().getCurrentPlayerId()) == self.getAttachedTo(); + RequiredTriggerAction action = new RequiredTriggerAction(self); + if (ringBearer) { + action.appendEffect(new AddBurdenEffect(self.getOwner(), self, 1)); + } else { + action.appendEffect(new WoundCharactersEffect(self, self.getAttachedTo())); + } + return Collections.singletonList(action); + } + return null; + } +} +