- "Build Me an Army" now correctly adds Fierce (and Damage +1) modifiers.
This commit is contained in:
@@ -2,6 +2,7 @@
|
||||
<b>14 Mar. 2013</b>
|
||||
- "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).
|
||||
- "Build Me an Army" now correctly adds Fierce (and Damage +1) modifiers.
|
||||
|
||||
<b>13 Mar. 2013</b>
|
||||
- "Waylayed" now wounds 1 companion 4 times, instead of 4 companions once.
|
||||
|
||||
@@ -46,11 +46,11 @@ public class Card20_217 extends AbstractEvent {
|
||||
protected void afterCardPlayed(PhysicalCard cardPlayed) {
|
||||
action.appendEffect(
|
||||
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))
|
||||
action.appendEffect(
|
||||
new AddUntilStartOfPhaseModifierEffect(
|
||||
new KeywordModifier(self, cardPlayed, Keyword.DAMAGE, 1), Phase.MANEUVER));
|
||||
new KeywordModifier(self, cardPlayed, Keyword.DAMAGE, 1), Phase.REGROUP));
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user