From 10888f7a0d5a0f9cc4d1fe462ef3eca181b3174c Mon Sep 17 00:00:00 2001 From: "marcins78@gmail.com" Date: Wed, 21 Sep 2011 12:43:40 +0000 Subject: [PATCH] Adding card affects card to rings. --- .../src/main/java/com/gempukku/lotro/cards/set1/Card1_001.java | 2 ++ .../src/main/java/com/gempukku/lotro/cards/set1/Card1_002.java | 2 ++ 2 files changed, 4 insertions(+) diff --git a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set1/Card1_001.java b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set1/Card1_001.java index 4a49e85aa..f45ee653e 100644 --- a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set1/Card1_001.java +++ b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set1/Card1_001.java @@ -67,6 +67,7 @@ public class Card1_001 extends AbstractAttachable { DefaultCostToEffectAction action = new DefaultCostToEffectAction(self, Keyword.RESPONSE, "Put on The One Ring until the Regroup phase"); action.addCost(new PreventWoundEffect(woundEffect, self.getAttachedTo())); + action.addEffect(new CardAffectsCardEffect(self, self.getAttachedTo())); action.addEffect(new AddBurdenEffect(playerId)); action.addEffect(new AddBurdenEffect(playerId)); action.addEffect(new PutOnTheOneRingEffect()); @@ -101,6 +102,7 @@ public class Card1_001 extends AbstractAttachable { if (woundEffect.getCardsToBeWounded(game).contains(self.getAttachedTo())) { RequiredTriggerAction action = new RequiredTriggerAction(self, null, "Add 2 burdens instead of taking a wound"); action.addCost(new PreventWoundEffect(woundEffect, self.getAttachedTo())); + action.addEffect(new CardAffectsCardEffect(self, self.getAttachedTo())); action.addEffect(new AddBurdenEffect(self.getOwner())); action.addEffect(new AddBurdenEffect(self.getOwner())); return Collections.singletonList(action); diff --git a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set1/Card1_002.java b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set1/Card1_002.java index ca0a04fa2..f2da5bc5e 100644 --- a/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set1/Card1_002.java +++ b/gemp-lotr/gemp-lotr-cards/src/main/java/com/gempukku/lotro/cards/set1/Card1_002.java @@ -66,6 +66,7 @@ public class Card1_002 extends AbstractAttachable { DefaultCostToEffectAction action = new DefaultCostToEffectAction(self, Keyword.RESPONSE, "Put on The One Ring until the Regroup phase"); action.addCost(new PreventWoundEffect(woundEffect, self.getAttachedTo())); + action.addEffect(new CardAffectsCardEffect(self, self.getAttachedTo())); action.addEffect(new AddBurdenEffect(playerId)); action.addEffect(new PutOnTheOneRingEffect()); action.addEffect(new AddUntilStartOfPhaseActionProxyEffect( @@ -100,6 +101,7 @@ public class Card1_002 extends AbstractAttachable { List actions = new LinkedList(); RequiredTriggerAction action = new RequiredTriggerAction(self, null, "Add a burden instead of taking a wound"); action.addCost(new PreventWoundEffect(woundEffect, self.getAttachedTo())); + action.addEffect(new CardAffectsCardEffect(self, self.getAttachedTo())); action.addEffect(new AddBurdenEffect(self.getOwner())); return actions; }