20_018
This commit is contained in:
@@ -16,7 +16,7 @@ var set20 = {
|
||||
'20_15': 'http://lotrtcg.org/coreset/dunland/hillmantribe(r1).png',
|
||||
'20_16': 'http://lotrtcg.org/coreset/dunland/hillmantorchbearer.png',
|
||||
'20_17': 'http://lotrtcg.org/coreset/dunland/hillmanprimitive(r1).png',
|
||||
'20_18': 'http://lotrtcg.org/coreset/dunland/hillmanpillager.png',
|
||||
'20_18': 'http://lotrtcg.org/coreset/dunland/hillmanpillager(r1).png',
|
||||
'20_19': 'http://lotrtcg.org/coreset/dunland/hillmanwarrior.png',
|
||||
'20_20': 'http://lotrtcg.org/coreset/dunland/frecaos.png',
|
||||
'20_21': 'http://lotrtcg.org/coreset/dunland/wulfwod.png',
|
||||
|
||||
@@ -17,24 +17,24 @@ import java.util.List;
|
||||
/**
|
||||
* 5
|
||||
* Hillman Pillager
|
||||
* Dunland Minion • Man
|
||||
* 13 1 3
|
||||
* Shadow: If stacked on a site you control, play Hillman Pillager; his twilight cost is -1 for each Free Peoples
|
||||
* possession you can spot.
|
||||
* Regroup: Spot Saruman or another [Dunland] Man to stack Hillman Pillager on a site you control.
|
||||
* Minion • Man
|
||||
* 11 1 3
|
||||
* Shadow: If stacked on a site you control, play this minion; his twilight cost is -1 for each Free Peoples possession
|
||||
* you can spot.
|
||||
* Regroup: Spot Saruman or another [Dunland] Man to stack this minion on a site you control.
|
||||
* http://lotrtcg.org/coreset/dunland/hillmanpillager(r1).png
|
||||
*/
|
||||
public class Card20_018 extends AbstractMinion {
|
||||
public Card20_018() {
|
||||
super(5, 13, 1, 3, Race.MAN, Culture.DUNLAND, "Hillman Pillager");
|
||||
super(5, 11, 1, 3, Race.MAN, Culture.DUNLAND, "Hillman Pillager");
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public List<? extends Action> getPhaseActionsFromStacked(String playerId, LotroGame game, PhysicalCard self) {
|
||||
if (PlayConditions.canUseStackedShadowCardDuringPhase(game, Phase.SHADOW, self, 0)
|
||||
&& PlayConditions.stackedOn(self, game, Filters.siteControlled(self.getOwner()))
|
||||
&& checkPlayRequirements(playerId, game, self, 0, -Filters.countActive(game.getGameState(), game.getModifiersQuerying(), Side.FREE_PEOPLE, CardType.POSSESSION), false, false)) {
|
||||
return Collections.singletonList(getPlayCardAction(playerId, game, self, -Filters.countActive(game.getGameState(), game.getModifiersQuerying(), Side.FREE_PEOPLE, CardType.POSSESSION), false));
|
||||
&& checkPlayRequirements(playerId, game, self, 0, -Filters.countSpottable(game.getGameState(), game.getModifiersQuerying(), Side.FREE_PEOPLE, CardType.POSSESSION), false, false)) {
|
||||
return Collections.singletonList(getPlayCardAction(playerId, game, self, -Filters.countSpottable(game.getGameState(), game.getModifiersQuerying(), Side.FREE_PEOPLE, CardType.POSSESSION), false));
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user