- "Citadel of Minas Tirith" no longer allows you to heal companion if non-Gondor companion lost a skirmish.

This commit is contained in:
marcins78@gmail.com
2011-11-13 18:07:38 +00:00
parent 6bb050e3fd
commit f0d0218b5b
2 changed files with 3 additions and 4 deletions

View File

@@ -33,7 +33,7 @@ public class Card3_040 extends AbstractPermanent {
@Override
public List<RequiredTriggerAction> getRequiredAfterTriggers(LotroGame game, EffectResult effectResult, PhysicalCard self) {
if (PlayConditions.losesSkirmish(game.getGameState(), game.getModifiersQuerying(), effectResult, Filters.and(Filters.culture(Culture.GONDOR), Filters.type(CardType.COMPANION)))) {
if (PlayConditions.losesSkirmish(game.getGameState(), game.getModifiersQuerying(), effectResult, Filters.or(CardType.COMPANION, CardType.ALLY))) {
self.storeData(new Object());
}
return null;
@@ -42,9 +42,7 @@ public class Card3_040 extends AbstractPermanent {
@Override
public List<OptionalTriggerAction> getOptionalAfterTriggers(String playerId, LotroGame game, EffectResult effectResult, PhysicalCard self) {
if (effectResult.getType() == EffectResult.Type.END_OF_TURN) {
if (self.getData() != null) {
self.removeData();
} else {
if (self.getData() == null) {
OptionalTriggerAction action = new OptionalTriggerAction(self);
action.appendEffect(
new ChooseAndHealCharactersEffect(action, playerId, Filters.culture(Culture.GONDOR), Filters.type(CardType.COMPANION)));

View File

@@ -1,6 +1,7 @@
<pre style="font-size:80%">
<b>13 Nov. 2011</b>
- "Uruk Stormer" now allows to take control of a site, if any other Uruk-hai kills a companion or ally.
- "Citadel of Minas Tirith" no longer allows you to heal companion if non-Gondor companion lost a skirmish.
<b>11 Nov. 2011</b>
- "Eowyn, Daughter of Eomund" now allows to play possession from hand, rather than discard with her ability.