This commit is contained in:
marcins78
2013-03-25 11:09:19 +00:00
parent 02acad62e7
commit 4b408c10be
3 changed files with 46 additions and 2 deletions

View File

@@ -467,5 +467,6 @@ var set20 = {
'20_475': 'http://lotrtcg.org/coreset/shire/halflingdexterity.jpg',
'20_476': 'http://lotrtcg.org/coreset/isengard/stmtn(r1).jpg',
'20_477': 'http://lotrtcg.org/coreset/shire/dimpleboffinbots(r1).jpg',
'20_478': 'http://www.lotrtcg.org/coreset/isengard/torturedandmutilated(r2).jpg'
'20_478': 'http://www.lotrtcg.org/coreset/isengard/torturedandmutilated(r2).jpg',
'20_479': 'http://lotrtcg.org/coreset/shire/crossingthethreshold(r2).jpg'
}

View File

@@ -0,0 +1,42 @@
package com.gempukku.lotro.cards.set20.shire;
import com.gempukku.lotro.cards.AbstractEvent;
import com.gempukku.lotro.cards.actions.PlayEventAction;
import com.gempukku.lotro.cards.effects.PutOnTheOneRingEffect;
import com.gempukku.lotro.common.CardType;
import com.gempukku.lotro.common.Culture;
import com.gempukku.lotro.common.Phase;
import com.gempukku.lotro.common.Side;
import com.gempukku.lotro.filters.Filters;
import com.gempukku.lotro.game.PhysicalCard;
import com.gempukku.lotro.game.state.LotroGame;
import com.gempukku.lotro.logic.effects.WoundCharactersEffect;
/**
* 0
* Crossing the Threshold
* Event • Skirmish
* Put on The One Ring to wound each minion skirmishing the Ring-bearer.
* http://lotrtcg.org/coreset/shire/crossingthethreshold(r2).jpg
*/
public class Card20_479 extends AbstractEvent {
public Card20_479() {
super(Side.FREE_PEOPLE, 0, Culture.SHIRE, "Crossing the Threshold", Phase.SKIRMISH);
}
@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)
&& !game.getGameState().isWearingRing();
}
@Override
public PlayEventAction getPlayCardAction(String playerId, LotroGame game, PhysicalCard self, int twilightModifier, boolean ignoreRoamingPenalty) {
PlayEventAction action = new PlayEventAction(self);
action.appendCost(
new PutOnTheOneRingEffect());
action.appendEffect(
new WoundCharactersEffect(self, CardType.MINION, Filters.inSkirmishAgainst(Filters.ringBearer)));
return action;
}
}

View File

@@ -466,4 +466,5 @@
20S475
20S476
20S477
20S478
20S478
20S479