- "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:
@@ -16,6 +16,8 @@
|
||||
- "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.
|
||||
- "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>
|
||||
- "Flaming Brand" from set 20 should now correctly apply strength and damage bonus if bearer is skirmishing a Nazgul.
|
||||
|
||||
@@ -40,7 +40,8 @@ public class Card20_064 extends AbstractEvent {
|
||||
new AbstractActionProxy() {
|
||||
@Override
|
||||
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);
|
||||
action.setVirtualCardAction(true);
|
||||
action.appendEffect(
|
||||
|
||||
Reference in New Issue
Block a user