- "Lurtz, Champion of the White Hand" now spots only Hobbit companions, instead of just Hobbits (per card text).

This commit is contained in:
marcins78
2013-03-13 11:35:19 +00:00
parent 9128835b98
commit da03c23876
2 changed files with 2 additions and 1 deletions

View File

@@ -6,6 +6,7 @@
- "Natural Advantages" is now unique (per card text).
- "Goblin Patrol" now has a correct name (instead of Patroller) and gets a discount for Goblin only, not just any card
(per card text).
- "Lurtz, Champion of the White Hand" now spots only Hobbit companions, instead of just Hobbits (per card text).
<b>12 Mar. 2013</b>
- "Flaming Brand" from set 20 should now correctly apply strength and damage bonus if bearer is skirmishing a Nazgul.

View File

@@ -43,7 +43,7 @@ public class Card20_226 extends AbstractMinion {
public List<RequiredTriggerAction> getRequiredAfterTriggers(LotroGame game, EffectResult effectResult, PhysicalCard self) {
if (TriggerConditions.winsSkirmish(game, effectResult, self)) {
RequiredTriggerAction action = new RequiredTriggerAction(self);
int count = Filters.countSpottable(game.getGameState(), game.getModifiersQuerying(), Race.HOBBIT);
int count = Filters.countSpottable(game.getGameState(), game.getModifiersQuerying(), Race.HOBBIT, CardType.COMPANION);
if (count > 0)
action.appendEffect(
new ChooseAndExertCharactersEffect(action, game.getGameState().getCurrentPlayerId(), count, count, CardType.COMPANION));