"Memories of Khazad-dum"

This commit is contained in:
marcins78
2013-02-04 14:50:02 +00:00
parent f22b410a66
commit efb8cc3b8f

View File

@@ -0,0 +1,34 @@
package com.gempukku.lotro.cards.set20.moria;
import com.gempukku.lotro.cards.AbstractEvent;
import com.gempukku.lotro.cards.actions.PlayEventAction;
import com.gempukku.lotro.cards.effects.choose.ChooseAndAddUntilEOPStrengthBonusEffect;
import com.gempukku.lotro.cards.modifiers.evaluator.ConditionEvaluator;
import com.gempukku.lotro.common.Culture;
import com.gempukku.lotro.common.Phase;
import com.gempukku.lotro.common.Race;
import com.gempukku.lotro.common.Side;
import com.gempukku.lotro.game.PhysicalCard;
import com.gempukku.lotro.game.state.LotroGame;
import com.gempukku.lotro.logic.modifiers.SpotCondition;
/**
* 1
* Memories of Khazad-dum
* Moria Event • Skirmish
* Make a [Moria] Goblin strength +2 (or strength +3 if you can spot a Dwarf).
*/
public class Card20_277 extends AbstractEvent {
public Card20_277() {
super(Side.SHADOW, 1, Culture.MORIA, "Memories of Khazad-dum", Phase.SKIRMISH);
}
@Override
public PlayEventAction getPlayCardAction(String playerId, LotroGame game, PhysicalCard self, int twilightModifier, boolean ignoreRoamingPenalty) {
PlayEventAction action = new PlayEventAction(self);
action.appendEffect(
new ChooseAndAddUntilEOPStrengthBonusEffect(action, self, playerId,
new ConditionEvaluator(2, 3, new SpotCondition(Race.DWARF)), Culture.MORIA, Race.GOBLIN));
return action;
}
}