- "Retribution" now only the owner of the Dwarf gets the option to use the "Retribution" effect, when that Dwarf wins

the skirmish.
This commit is contained in:
marcins78
2013-03-13 15:26:00 +00:00
parent 18c42b8751
commit fb6d970758
2 changed files with 4 additions and 1 deletions

View File

@@ -16,6 +16,8 @@
- "Goblin Howler" now gets the strength bonus, when a minion is played from condition, not the played minion. - "Goblin Howler" now gets the strength bonus, when a minion is played from condition, not the played minion.
- "Fall of Free Peoples" now correctly requires to exert a SAURON Orc. - "Fall of Free Peoples" now correctly requires to exert a SAURON Orc.
- "Gimli's Battle Axe, Weapon of Erebor" no longer gives vitality bonus (per card text). - "Gimli's Battle Axe, Weapon of Erebor" no longer gives vitality bonus (per card text).
- "Retribution" now only the owner of the Dwarf gets the option to use the "Retribution" effect, when that Dwarf wins
the skirmish.
<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.

View File

@@ -40,7 +40,8 @@ public class Card20_064 extends AbstractEvent {
new AbstractActionProxy() { new AbstractActionProxy() {
@Override @Override
public List<? extends OptionalTriggerAction> getOptionalAfterTriggers(String playerId, LotroGame game, EffectResult effectResult) { public List<? extends OptionalTriggerAction> getOptionalAfterTriggers(String playerId, LotroGame game, EffectResult effectResult) {
if (TriggerConditions.winsSkirmish(game, effectResult, selectedCharacter)) { if (TriggerConditions.winsSkirmish(game, effectResult, selectedCharacter)
&& playerId.equals(selectedCharacter.getOwner())) {
OptionalTriggerAction action = new OptionalTriggerAction(self); OptionalTriggerAction action = new OptionalTriggerAction(self);
action.setVirtualCardAction(true); action.setVirtualCardAction(true);
action.appendEffect( action.appendEffect(