- "Held" will now corrupt Ring-bearer, only if it's attached to the Ring-bearer, and not if it's attached to non-Ring-bearer Frodo.

This commit is contained in:
marcins78@gmail.com
2012-05-22 11:08:05 +00:00
parent 7f1e4a36c9
commit ba843221fc
2 changed files with 4 additions and 1 deletions

View File

@@ -56,7 +56,8 @@ public class Card6_109 extends AbstractAttachable {
@Override
public List<RequiredTriggerAction> getRequiredAfterTriggers(LotroGame game, EffectResult effectResult, PhysicalCard self) {
if (TriggerConditions.movesTo(game, effectResult, Filters.siteNumber(9))) {
if (TriggerConditions.movesTo(game, effectResult, Filters.siteNumber(9))
&& PlayConditions.canSpot(game, Filters.ringBearer, Filters.hasAttached(self))) {
RequiredTriggerAction action = new RequiredTriggerAction(self);
action.appendEffect(
new CorruptRingBearerEffect());

View File

@@ -3,6 +3,8 @@
- "A Dragon's Tale" now makes shadow player exert one of his/her minions.
- "Sauron's Hatred" and other cards that play card without paying roaming penalty are now working correctly.
- "Isengard Siege Bow" now correctly gives both Vitality and Archer keyword (if at battleground) to it's bearer.
- "Held" will now corrupt Ring-bearer, only if it's attached to the Ring-bearer, and not if it's attached to
non-Ring-bearer Frodo.
<b>16 May 2012</b>
- "Glamdring, Elven Blade" now lets the shadow player to choose a minion to exert.