- "Old Differences" now correctly applies the strength penalty to the elf or dwarf.

This commit is contained in:
marcins78@gmail.com
2011-12-19 13:50:41 +00:00
parent afe506f4de
commit d862b9cd09
2 changed files with 4 additions and 1 deletions

View File

@@ -36,7 +36,9 @@ public class Card2_069 extends AbstractOldEvent {
public PlayEventAction getPlayCardAction(String playerId, final LotroGame game, final PhysicalCard self, int twilightModifier, boolean ignoreRoamingPenalty) {
final PlayEventAction action = new PlayEventAction(self);
action.appendEffect(
new ChooseActiveCardEffect(self, playerId, "Choose Elf or Dwarf", Filters.inSkirmishAgainst(Filters.or(Race.ELF, Race.DWARF))) {
new ChooseActiveCardEffect(self, playerId, "Choose Elf or Dwarf",
Filters.or(Race.ELF, Race.DWARF),
Filters.inSkirmishAgainst(Culture.MORIA, Race.ORC)) {
@Override
protected void cardSelected(LotroGame game, PhysicalCard elfOrDwarf) {
boolean canSpotElf = Filters.canSpot(game.getGameState(), game.getModifiersQuerying(), Race.ELF);

View File

@@ -6,6 +6,7 @@
- "Southron Commander" should now display a proper text to the FP player when used.
- Fixed a problem, where if a card was played with a discount and also had Toil, the toil could not be played and card
playing was cancelled and put into discard.
- "Old Differences" now correctly applies the strength penalty to the elf or dwarf.
<b>15 Dec. 2011</b>
- "Legolas Bow" now correctly allows to heal when Legolas bearing it is exerted to play an event or condition.