- "Goblin Howler" now gets the strength bonus, when a minion is played from condition, not the played minion.
This commit is contained in:
@@ -13,6 +13,7 @@
|
|||||||
- FP player wins now in Second Edition, when Shadow player reconciles during regroup on site 9.
|
- 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).
|
- "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.
|
- "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>
|
<b>12 Mar. 2013</b>
|
||||||
- "Flaming Brand" from set 20 should now correctly apply strength and damage bonus if bearer is skirmishing a Nazgul.
|
- "Flaming Brand" from set 20 should now correctly apply strength and damage bonus if bearer is skirmishing a Nazgul.
|
||||||
|
|||||||
@@ -32,10 +32,9 @@ public class Card20_261 extends AbstractMinion{
|
|||||||
if (TriggerConditions.playedFromZone(game, effectResult, Zone.STACKED, Culture.MORIA, CardType.MINION)
|
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())) {
|
&& Filters.and(Culture.MORIA, CardType.CONDITION).accepts(game.getGameState(), game.getModifiersQuerying(), ((PlayCardResult) effectResult).getAttachedOrStackedPlayedFrom())) {
|
||||||
OptionalTriggerAction action = new OptionalTriggerAction(self);
|
OptionalTriggerAction action = new OptionalTriggerAction(self);
|
||||||
PhysicalCard playedCard = ((PlayCardResult) effectResult).getPlayedCard();
|
|
||||||
action.appendEffect(
|
action.appendEffect(
|
||||||
new AddUntilStartOfPhaseModifierEffect(
|
new AddUntilStartOfPhaseModifierEffect(
|
||||||
new StrengthModifier(self, playedCard, 1), Phase.REGROUP));
|
new StrengthModifier(self, self, 1), Phase.REGROUP));
|
||||||
return Collections.singletonList(action);
|
return Collections.singletonList(action);
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
|
|||||||
Reference in New Issue
Block a user