- "Goblin Howler" now gets the strength bonus, when a minion is played from condition, not the played minion.

This commit is contained in:
marcins78
2013-03-13 12:41:04 +00:00
parent 8ee50fb0f4
commit 69d209d24b
2 changed files with 2 additions and 2 deletions

View File

@@ -13,6 +13,7 @@
- FP player wins now in Second Edition, when Shadow player reconciles during regroup on site 9.
- "Ulaire Cantea, Morgul Predator"'s trigger is now an optional one (power-level adjustment).
- "Farin, Dwarf of Erebor" no longer has the extra activated ability of the old version.
- "Goblin Howler" now gets the strength bonus, when a minion is played from condition, not the played minion.
<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

@@ -32,10 +32,9 @@ public class Card20_261 extends AbstractMinion{
if (TriggerConditions.playedFromZone(game, effectResult, Zone.STACKED, Culture.MORIA, CardType.MINION)
&& Filters.and(Culture.MORIA, CardType.CONDITION).accepts(game.getGameState(), game.getModifiersQuerying(), ((PlayCardResult) effectResult).getAttachedOrStackedPlayedFrom())) {
OptionalTriggerAction action = new OptionalTriggerAction(self);
PhysicalCard playedCard = ((PlayCardResult) effectResult).getPlayedCard();
action.appendEffect(
new AddUntilStartOfPhaseModifierEffect(
new StrengthModifier(self, playedCard, 1), Phase.REGROUP));
new StrengthModifier(self, self, 1), Phase.REGROUP));
return Collections.singletonList(action);
}
return null;