- "Goblin Patrol" now has a correct name (instead of Patroller) and gets a discount for Goblin only, not just any card
(per card text).
This commit is contained in:
@@ -4,6 +4,8 @@
|
||||
- "Goblin Scrapper" has now correct stats - 6/2/4.
|
||||
- "Faramir's Cloak" can now be used only by Faramir (per card text).
|
||||
- "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).
|
||||
|
||||
<b>12 Mar. 2013</b>
|
||||
- "Flaming Brand" from set 20 should now correctly apply strength and damage bonus if bearer is skirmishing a Nazgul.
|
||||
|
||||
@@ -19,11 +19,11 @@ import com.gempukku.lotro.logic.modifiers.ModifiersQuerying;
|
||||
*/
|
||||
public class Card20_263 extends AbstractMinion {
|
||||
public Card20_263() {
|
||||
super(5, 11, 3, 4, Race.GOBLIN, Culture.MORIA, "Goblin Patroller");
|
||||
super(5, 11, 3, 4, Race.GOBLIN, Culture.MORIA, "Goblin Patrol");
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getTwilightCostModifier(GameState gameState, ModifiersQuerying modifiersQuerying, PhysicalCard self) {
|
||||
return -(new CountStackedEvaluator(Filters.and(Culture.MORIA, CardType.CONDITION), Filters.any).evaluateExpression(gameState, modifiersQuerying, self));
|
||||
return -(new CountStackedEvaluator(Filters.and(Culture.MORIA, CardType.CONDITION), Race.GOBLIN).evaluateExpression(gameState, modifiersQuerying, self));
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user