"Aragorn"

This commit is contained in:
marcins78@gmail.com
2011-11-02 13:54:37 +00:00
parent df0a9de9a3
commit 76335e49e5
2 changed files with 52 additions and 0 deletions

View File

@@ -240,6 +240,11 @@ public class PlayConditions {
});
}
public static boolean startOfPhase(LotroGame game, EffectResult effectResult, Phase phase) {
return (effectResult.getType() == EffectResult.Type.START_OF_PHASE
&& game.getGameState().getCurrentPhase() == phase);
}
public static boolean canExert(PhysicalCard source, GameState gameState, ModifiersQuerying modifiersQuerying, PhysicalCard card) {
return canExert(source, gameState, modifiersQuerying, Filters.sameCard(card));
}

View File

@@ -0,0 +1,47 @@
package com.gempukku.lotro.cards.set7.gondor;
import com.gempukku.lotro.cards.AbstractCompanion;
import com.gempukku.lotro.cards.PlayConditions;
import com.gempukku.lotro.common.*;
import com.gempukku.lotro.filters.Filters;
import com.gempukku.lotro.game.PhysicalCard;
import com.gempukku.lotro.game.state.LotroGame;
import com.gempukku.lotro.logic.actions.OptionalTriggerAction;
import com.gempukku.lotro.logic.effects.AddTwilightEffect;
import com.gempukku.lotro.logic.effects.ChooseAndHealCharactersEffect;
import com.gempukku.lotro.logic.timing.EffectResult;
import java.util.Collections;
import java.util.List;
/**
* Set: The Return of the King
* Side: Free
* Culture: Gondor
* Twilight Cost: 4
* Type: Companion • Man
* Strength: 8
* Vitality: 4
* Resistance: 6
* Signet: Aragorn
* Game Text: Knight. At the start of each fellowship phase, you may add (2) to heal another [GONDOR] companion.
*/
public class Card7_081 extends AbstractCompanion {
public Card7_081() {
super(4, 8, 4, Culture.GONDOR, Race.MAN, Signet.ARAGORN, "Aragorn", true);
addKeyword(Keyword.KNIGHT);
}
@Override
public List<OptionalTriggerAction> getOptionalAfterTriggers(String playerId, LotroGame game, EffectResult effectResult, PhysicalCard self) {
if (PlayConditions.startOfPhase(game, effectResult, Phase.FELLOWSHIP)) {
OptionalTriggerAction action = new OptionalTriggerAction(self);
action.appendCost(
new AddTwilightEffect(self, 2));
action.appendEffect(
new ChooseAndHealCharactersEffect(action, playerId, 1, 1, Culture.GONDOR, CardType.COMPANION, Filters.not(self)));
return Collections.singletonList(action);
}
return null;
}
}