- "Ring of Asperity" can now wound an unwounded companion when played.

This commit is contained in:
marcins78@gmail.com
2011-11-24 15:06:23 +00:00
parent bddc8f1fe6
commit 0f5014e812
2 changed files with 15 additions and 0 deletions

View File

@@ -1,12 +1,15 @@
package com.gempukku.lotro.cards.set9.wraith;
import com.gempukku.lotro.cards.AbstractAttachable;
import com.gempukku.lotro.cards.TriggerConditions;
import com.gempukku.lotro.cards.effects.ReturnCardsToHandEffect;
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.OptionalTriggerAction;
import com.gempukku.lotro.logic.effects.ChooseAndWoundCharactersEffect;
import com.gempukku.lotro.logic.modifiers.Modifier;
import com.gempukku.lotro.logic.modifiers.StrengthModifier;
import com.gempukku.lotro.logic.timing.Action;
@@ -41,6 +44,17 @@ public class Card9_042 extends AbstractAttachable {
new StrengthModifier(self, Filters.hasAttached(self), 1));
}
@Override
public List<OptionalTriggerAction> getOptionalAfterTriggers(String playerId, LotroGame game, EffectResult effectResult, PhysicalCard self) {
if (TriggerConditions.played(game, effectResult, self)) {
OptionalTriggerAction action = new OptionalTriggerAction(self);
action.appendEffect(
new ChooseAndWoundCharactersEffect(action, playerId, 1, 1, CardType.COMPANION, Filters.unwounded));
return Collections.singletonList(action);
}
return null;
}
@Override
public List<? extends Action> getOptionalInPlayAfterActions(String playerId, LotroGame game, EffectResult effectResult, PhysicalCard self) {
if (effectResult.getType() == EffectResult.Type.RECONCILE) {

View File

@@ -4,6 +4,7 @@
- "Saved From the Fire" now allows to take only cards of the companions chosen culture into hand from deck and only one
at a time (because of the Rule of 4 rule).
- "It's Mine" should now correctly return the card from discard to hand if it's WRAITH of GOLLUM culture.
- "Ring of Asperity" can now wound an unwounded companion when played.
<b>23 Nov. 2011</b>
- "Jarnsmid" now modifies the twilight cost of the itmes by -1, rather than +1.