This commit is contained in:
marcins78
2013-03-25 11:17:49 +00:00
parent f7703de186
commit 51f3677264
2 changed files with 10 additions and 10 deletions

View File

@@ -381,7 +381,7 @@ var set20 = {
'20_388': 'http://lotrtcg.org/coreset/shire/frodoer.jpg',
'20_389': 'http://lotrtcg.org/coreset/shire/frodospipe(r2).jpg',
'20_390': 'http://lotrtcg.org/coreset/shire/hamfastgamgeetg(r2).jpg',
'20_391': 'http://lotrtcg.org/coreset/shire/herbloreoftheshire.jpg',
'20_391': 'http://lotrtcg.org/coreset/shire/herbloreoftheshire(r2).jpg',
'20_392': 'http://lotrtcg.org/coreset/shire/hobbitpartyguest.jpg',
'20_393': 'http://lotrtcg.org/coreset/shire/hobbitsword.jpg',
'20_394': 'http://lotrtcg.org/coreset/shire/legendaryadventures.jpg',

View File

@@ -3,7 +3,7 @@ package com.gempukku.lotro.cards.set20.shire;
import com.gempukku.lotro.cards.AbstractPermanent;
import com.gempukku.lotro.cards.PlayConditions;
import com.gempukku.lotro.cards.effects.choose.ChooseAndAddUntilEOPStrengthBonusEffect;
import com.gempukku.lotro.cards.effects.choose.ChooseAndExertCharactersEffect;
import com.gempukku.lotro.cards.effects.choose.ChooseAndDiscardCardsFromPlayEffect;
import com.gempukku.lotro.cards.modifiers.evaluator.CountSpottableEvaluator;
import com.gempukku.lotro.common.*;
import com.gempukku.lotro.filters.Filters;
@@ -18,10 +18,10 @@ import java.util.List;
/**
* 2
* •Herblore of the Shire
* Shire Possession • Support Area
* Tale.
* To play, spot Merry.
* Skirmish: Exert a Hobbit Ally to make a Hobbit strength +1 for each pipe you can spot (limit +3).
* Possession • Support Area
* To play spot an unbound Hobbit.
* Skirmish: Discard a pipeweed possession to make a companion strength +1 for each pipe you can spot (limit +3).
* http://lotrtcg.org/coreset/shire/herbloreoftheshire(r2).jpg
*/
public class Card20_391 extends AbstractPermanent {
public Card20_391() {
@@ -32,19 +32,19 @@ public class Card20_391 extends AbstractPermanent {
@Override
public boolean checkPlayRequirements(String playerId, LotroGame game, PhysicalCard self, int withTwilightRemoved, int twilightModifier, boolean ignoreRoamingPenalty, boolean ignoreCheckingDeadPile) {
return super.checkPlayRequirements(playerId, game, self, withTwilightRemoved, twilightModifier, ignoreRoamingPenalty, ignoreCheckingDeadPile)
&& PlayConditions.canSpot(game, Filters.name("Merry"));
&& PlayConditions.canSpot(game, Filters.unboundCompanion, Race.HOBBIT);
}
@Override
protected List<? extends Action> getExtraPhaseActions(String playerId, LotroGame game, PhysicalCard self) {
if (PlayConditions.canUseFPCardDuringPhase(game, Phase.SKIRMISH, self)
&& PlayConditions.canExert(self, game, Race.HOBBIT, CardType.ALLY)) {
&& PlayConditions.canDiscardFromPlay(self, game, CardType.POSSESSION, Keyword.PIPEWEED)) {
ActivateCardAction action = new ActivateCardAction(self);
action.appendCost(
new ChooseAndExertCharactersEffect(action, playerId, 1, 1, Race.HOBBIT, CardType.ALLY));
new ChooseAndDiscardCardsFromPlayEffect(action, playerId, 1, 1, CardType.POSSESSION, Keyword.PIPEWEED));
action.appendEffect(
new ChooseAndAddUntilEOPStrengthBonusEffect(action, self, playerId,
new CountSpottableEvaluator(3, PossessionClass.PIPE), Race.HOBBIT));
new CountSpottableEvaluator(3, PossessionClass.PIPE), CardType.COMPANION));
return Collections.singletonList(action);
}
return null;