From 1d99e50fbda24873603318cfba2a76b2e86e1d41 Mon Sep 17 00:00:00 2001 From: PhallenCassidy Date: Tue, 11 Dec 2018 08:30:33 -0500 Subject: [PATCH] Errata for "Azog, The Defiler" The Free Peoples must now exert a [DWARVEN] companion --- .../com/gempukku/lotro/cards/set31/gundabad/Card31_023.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set31/gundabad/Card31_023.java b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set31/gundabad/Card31_023.java index 10e902544..b1ac87255 100644 --- a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set31/gundabad/Card31_023.java +++ b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set31/gundabad/Card31_023.java @@ -24,8 +24,9 @@ import java.util.List; * Strength: 9 * Vitality: 3 * Site: 3 - * Game Text: Damage +1. Each time you play a mount, you may make the Free Peoples player exert a companion. + * Game Text: Damage +1. Each time you play a mount, you may make the Free Peoples player exert a [DWARVEN] companion. */ + public class Card31_023 extends AbstractMinion { public Card31_023() { super(4, 9, 3, 3, Race.ORC, Culture.GUNDABAD, "Azog", "The Defiler", true); @@ -38,7 +39,7 @@ public class Card31_023 extends AbstractMinion { if (TriggerConditions.played(game, effectResult, PossessionClass.MOUNT)) { OptionalTriggerAction action = new OptionalTriggerAction(self); action.appendEffect( - new ChooseAndExertCharactersEffect(action, game.getGameState().getCurrentPlayerId(), 1, 1, CardType.COMPANION)); + new ChooseAndExertCharactersEffect(action, game.getGameState().getCurrentPlayerId(), 1, 1, CardType.COMPANION, Culture.DWARVEN)); return Collections.singletonList(action); } return null;