- "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:
marcins78
2013-03-13 11:20:09 +00:00
parent 9133f12e05
commit 9128835b98
2 changed files with 4 additions and 2 deletions

View File

@@ -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.

View File

@@ -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));
}
}