- "Build Me an Army" now correctly adds Fierce (and Damage +1) modifiers.

This commit is contained in:
marcins78
2013-03-14 10:45:35 +00:00
parent cadce2bb54
commit 085f8d846a
2 changed files with 3 additions and 2 deletions

View File

@@ -2,6 +2,7 @@
<b>14 Mar. 2013</b> <b>14 Mar. 2013</b>
- "Into the Wild" now increases site number only based on sites in current region (per card text). - "Into the Wild" now increases site number only based on sites in current region (per card text).
- "To Whatever End" is now a Skirmish event, instead of Regroup event (per card text). - "To Whatever End" is now a Skirmish event, instead of Regroup event (per card text).
- "Build Me an Army" now correctly adds Fierce (and Damage +1) modifiers.
<b>13 Mar. 2013</b> <b>13 Mar. 2013</b>
- "Waylayed" now wounds 1 companion 4 times, instead of 4 companions once. - "Waylayed" now wounds 1 companion 4 times, instead of 4 companions once.

View File

@@ -46,11 +46,11 @@ public class Card20_217 extends AbstractEvent {
protected void afterCardPlayed(PhysicalCard cardPlayed) { protected void afterCardPlayed(PhysicalCard cardPlayed) {
action.appendEffect( action.appendEffect(
new AddUntilStartOfPhaseModifierEffect( new AddUntilStartOfPhaseModifierEffect(
new KeywordModifier(self, cardPlayed, Keyword.FIERCE), Phase.MANEUVER)); new KeywordModifier(self, cardPlayed, Keyword.FIERCE), Phase.REGROUP));
if (Filters.canSpot(game.getGameState(), game.getModifiersQuerying(), 6, CardType.COMPANION)) if (Filters.canSpot(game.getGameState(), game.getModifiersQuerying(), 6, CardType.COMPANION))
action.appendEffect( action.appendEffect(
new AddUntilStartOfPhaseModifierEffect( new AddUntilStartOfPhaseModifierEffect(
new KeywordModifier(self, cardPlayed, Keyword.DAMAGE, 1), Phase.MANEUVER)); new KeywordModifier(self, cardPlayed, Keyword.DAMAGE, 1), Phase.REGROUP));
} }
}); });
} }