This commit is contained in:
marcins78
2013-03-19 10:05:57 +00:00
parent 631b85e9c8
commit 30bbd2204e
2 changed files with 12 additions and 4 deletions

View File

@@ -175,7 +175,7 @@ var set20 = {
'20_174': 'http://lotrtcg.org/coreset/gandalf/youshallnotpass.png',
'20_175': 'http://lotrtcg.org/coreset/gondor/aragorndr.png',
'20_176': 'http://lotrtcg.org/coreset/gondor/aragornuofp(r1).png',
'20_177': 'http://lotrtcg.org/coreset/gondor/aragornsbowsat.png',
'20_177': 'http://lotrtcg.org/coreset/gondor/aragornsbowsat(r1).png',
'20_178': 'http://lotrtcg.org/coreset/gondor/aragornspipe.png',
'20_179': 'http://lotrtcg.org/coreset/gondor/armor.png',
'20_180': 'http://lotrtcg.org/coreset/gondor/arrowsofthenorth.png',

View File

@@ -3,7 +3,9 @@ package com.gempukku.lotro.cards.set20.gondor;
import com.gempukku.lotro.cards.AbstractAttachableFPPossession;
import com.gempukku.lotro.cards.PlayConditions;
import com.gempukku.lotro.cards.TriggerConditions;
import com.gempukku.lotro.cards.effects.AddUntilEndOfPhaseModifierEffect;
import com.gempukku.lotro.cards.effects.choose.ChooseAndExertCharactersEffect;
import com.gempukku.lotro.cards.modifiers.DoesNotAddToArcheryTotalModifier;
import com.gempukku.lotro.common.*;
import com.gempukku.lotro.filters.Filters;
import com.gempukku.lotro.game.PhysicalCard;
@@ -20,9 +22,12 @@ import java.util.List;
/**
* 1
* •Aragorn's Bow, Swift and True
* Gondor Possession • Ranged Weapon
* Bearer must be Aragorn. He is an archer.
* At the beginning of the archery phase you may exert Aragorn to wound a minion.
* Possession • Ranged Weapon
* Bearer must be Aragorn.
* He is an archer.
* At the beginning of the archery phase you may exert Aragorn to wound a minion. If you do, Aragorn does not add
* to the fellowship archery total.
* http://lotrtcg.org/coreset/gondor/aragornsbowsat(r1).png
*/
public class Card20_177 extends AbstractAttachableFPPossession {
public Card20_177() {
@@ -49,6 +54,9 @@ public class Card20_177 extends AbstractAttachableFPPossession {
new ChooseAndExertCharactersEffect(action, playerId, 1, 1, Filters.aragorn));
action.appendEffect(
new ChooseAndWoundCharactersEffect(action, playerId, 1, 1, CardType.MINION));
action.appendEffect(
new AddUntilEndOfPhaseModifierEffect(
new DoesNotAddToArcheryTotalModifier(self, Filters.aragorn)));
return Collections.singletonList(action);
}
return null;