- "Lurtz, Champion of the White Hand" now spots only Hobbit companions, instead of just Hobbits (per card text).
This commit is contained in:
@@ -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.
|
||||
|
||||
@@ -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));
|
||||
|
||||
Reference in New Issue
Block a user