- "Petrifying Fear" now grants -1, instead of +1 strength for each burden.

- "Galadriel, White Lady of Lorien" no longer is usable, only if you can also exert another elf (even though it is not
actually exering it).
This commit is contained in:
marcins78
2013-03-12 15:45:40 +00:00
parent 01502a1c03
commit 2addc9c489
3 changed files with 6 additions and 3 deletions

View File

@@ -32,6 +32,9 @@ Lady of Imladris" with completely different text (per card text).
- "Whip of Many Thongs, Ancient Serpentine Weapon" can now be born as an additional weapon (per card text).
- "A Ranger's Adaptability" now only spots a ranger (instead of exerts), exhausts the minion (instead of exerting twice)
and allows to do that to any minion if it's your site (per card text).
- "Petrifying Fear" now grants -1, instead of +1 strength for each burden.
- "Galadriel, White Lady of Lorien" no longer is usable, only if you can also exert another elf (even though it is not
actually exering it).
<b>11 Mar. 2013</b>
- Second Edition is playable now.

View File

@@ -48,8 +48,7 @@ public class Card20_084 extends AbstractAlly {
@Override
protected List<? extends Action> getExtraInPlayPhaseActions(final String playerId, LotroGame game, final PhysicalCard self) {
if (PlayConditions.canUseFPCardDuringPhase(game, Phase.SKIRMISH, self)
&& PlayConditions.canSelfExert(self, game)
&& PlayConditions.canExert(self, game, Filters.not(self), Race.ELF)) {
&& PlayConditions.canSelfExert(self, game)) {
final ActivateCardAction action =new ActivateCardAction(self);
action.appendCost(
new SelfExertEffect(action, self));

View File

@@ -6,6 +6,7 @@ import com.gempukku.lotro.cards.actions.PlayEventAction;
import com.gempukku.lotro.cards.effects.choose.ChooseAndAddUntilEOPStrengthBonusEffect;
import com.gempukku.lotro.cards.effects.choose.ChooseAndExertCharactersEffect;
import com.gempukku.lotro.cards.modifiers.evaluator.ForEachBurdenEvaluator;
import com.gempukku.lotro.cards.modifiers.evaluator.MultiplyEvaluator;
import com.gempukku.lotro.common.*;
import com.gempukku.lotro.filters.Filters;
import com.gempukku.lotro.game.PhysicalCard;
@@ -37,7 +38,7 @@ public class Card20_299 extends AbstractEvent {
protected void forEachCardExertedCallback(PhysicalCard character) {
action.appendEffect(
new ChooseAndAddUntilEOPStrengthBonusEffect(action, self, playerId,
new ForEachBurdenEvaluator(), CardType.COMPANION, Filters.inSkirmishAgainst(character)));
new MultiplyEvaluator(-1, new ForEachBurdenEvaluator()), CardType.COMPANION, Filters.inSkirmishAgainst(character)));
}
});
return action;