20_479
This commit is contained in:
@@ -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'
|
||||
}
|
||||
@@ -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;
|
||||
}
|
||||
}
|
||||
@@ -466,4 +466,5 @@
|
||||
20S475
|
||||
20S476
|
||||
20S477
|
||||
20S478
|
||||
20S478
|
||||
20S479
|
||||
Reference in New Issue
Block a user