"Blade Tip"

This commit is contained in:
marcins78
2013-02-04 16:42:35 +00:00
parent c44acaa731
commit 783ecae7b3

View File

@@ -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<? extends ActivateCardAction> 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<RequiredTriggerAction> 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;
}
}