Southron Nomad
This commit is contained in:
@@ -133,7 +133,7 @@ var set20 = {
|
||||
'20_135': 'http://lotrtcg.org/coreset/fallenrealms/resolveofrhun(r1).jpg',
|
||||
'20_136': 'http://lotrtcg.org/coreset/fallenrealms/southronbandit.jpg',
|
||||
'20_137': 'http://lotrtcg.org/coreset/fallenrealms/southrondeadeye(r1).jpg',
|
||||
'20_138': 'http://lotrtcg.org/coreset/fallenrealms/southronnomad(r1).jpg',
|
||||
'20_138': 'http://lotrtcg.org/coreset/fallenrealms/southronnomad(r3).jpg',
|
||||
'20_139': 'http://lotrtcg.org/coreset/fallenrealms/southronpackmaster(r1).jpg',
|
||||
'20_140': 'http://lotrtcg.org/coreset/fallenrealms/southronrogue.jpg',
|
||||
'20_141': 'http://lotrtcg.org/coreset/fallenrealms/southronsharpshooter.jpg',
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
package com.gempukku.lotro.cards.set20.fallenRealms;
|
||||
|
||||
import com.gempukku.lotro.cards.AbstractMinion;
|
||||
import com.gempukku.lotro.cards.PlayConditions;
|
||||
import com.gempukku.lotro.cards.TriggerConditions;
|
||||
import com.gempukku.lotro.cards.effects.choose.ChooseAndExertCharactersEffect;
|
||||
import com.gempukku.lotro.common.Culture;
|
||||
@@ -9,20 +10,20 @@ import com.gempukku.lotro.common.Race;
|
||||
import com.gempukku.lotro.filters.Filters;
|
||||
import com.gempukku.lotro.game.PhysicalCard;
|
||||
import com.gempukku.lotro.game.state.LotroGame;
|
||||
import com.gempukku.lotro.logic.actions.RequiredTriggerAction;
|
||||
import com.gempukku.lotro.logic.actions.OptionalTriggerAction;
|
||||
import com.gempukku.lotro.logic.timing.EffectResult;
|
||||
|
||||
import java.util.Collections;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 2
|
||||
* Southron Nomad
|
||||
* ❷ Southron Nomad [Fal]
|
||||
* Minion • Man
|
||||
* 5 2 4
|
||||
* Southron. Ambush (1).
|
||||
* When you play this minion, the Free Peoples player must exert an unbound companion.
|
||||
* http://lotrtcg.org/coreset/fallenrealms/southronnomad(r1).png
|
||||
* Strength: 5 Vitality: 2 Roaming: 4
|
||||
* Ambush ❶. (When the Free Peoples player assigns one of his characters to skirmish this minion, the Shadow player who owns this minion may add ❶.) Southron.
|
||||
* When you play this minion, you may spot another Southron to make the Free Peoples player exert a companion.
|
||||
* <p/>
|
||||
* http://lotrtcg.org/coreset/fallenrealms/southronnomad(r3).jpg
|
||||
*/
|
||||
public class Card20_138 extends AbstractMinion {
|
||||
public Card20_138() {
|
||||
@@ -32,9 +33,10 @@ public class Card20_138 extends AbstractMinion {
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<RequiredTriggerAction> getRequiredAfterTriggers(LotroGame game, EffectResult effectResult, PhysicalCard self) {
|
||||
if (TriggerConditions.played(game, effectResult, self)) {
|
||||
RequiredTriggerAction action = new RequiredTriggerAction(self);
|
||||
public List<OptionalTriggerAction> getOptionalAfterTriggers(String playerId, LotroGame game, EffectResult effectResult, PhysicalCard self) {
|
||||
if (TriggerConditions.played(game, effectResult, self)
|
||||
&& PlayConditions.canSpot(game, Filters.not(self), Keyword.SOUTHRON)) {
|
||||
OptionalTriggerAction action = new OptionalTriggerAction(self);
|
||||
action.appendEffect(
|
||||
new ChooseAndExertCharactersEffect(action, game.getGameState().getCurrentPlayerId(), 1, 1, Filters.unboundCompanion));
|
||||
return Collections.singletonList(action);
|
||||
|
||||
Reference in New Issue
Block a user