- "Balin's Revenge" now wounds up to 2 Goblins, not just one (per card text).

This commit is contained in:
marcins78
2013-03-15 17:34:51 +00:00
parent f8c5e61a4f
commit e8992220e8
2 changed files with 2 additions and 1 deletions

View File

@@ -3,6 +3,7 @@
- "Lothlorien" correctly requires to spot 2 elves, instead of just one to remove the burden.
- "Outer Wall" works on minions skirmishing ROHAN Man, not unbound companions (per card text).
- "Dunlending Horde" is no longer unique (per card text).
- "Balin's Revenge" now wounds up to 2 Goblins, not just one (per card text).
<b>14 Mar. 2013</b>
- "Into the Wild" now increases site number only based on sites in current region (per card text).

View File

@@ -35,7 +35,7 @@ public class Card20_039 extends AbstractEvent{
action.appendCost(
new ChooseAndExertCharactersEffect(action, playerId, 1, 1, Race.DWARF));
action.appendEffect(
new ChooseAndWoundCharactersEffect(action, playerId, 1, 1, Race.GOBLIN));
new ChooseAndWoundCharactersEffect(action, playerId, 1, 2, Race.GOBLIN));
return action;
}
}