"Home and Hearth"

This commit is contained in:
marcins78@gmail.com
2011-12-13 17:57:52 +00:00
parent 8513e38517
commit e6d590d78e

View File

@@ -0,0 +1,45 @@
package com.gempukku.lotro.cards.set12.shire;
import com.gempukku.lotro.cards.AbstractPermanent;
import com.gempukku.lotro.cards.PlayConditions;
import com.gempukku.lotro.cards.TriggerConditions;
import com.gempukku.lotro.cards.effects.RemoveBurdenEffect;
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.ChooseAndHealCharactersEffect;
import com.gempukku.lotro.logic.timing.EffectResult;
import java.util.Collections;
import java.util.List;
/**
* Set: Black Rider
* Side: Free
* Culture: Shire
* Twilight Cost: 0
* Type: Condition • Support Area
* Game Text: Each time you play a Hobbit, you may remove a burden. Then, if the fellowship is at a dwelling site, heal
* the Ring-bearer.
*/
public class Card12_122 extends AbstractPermanent {
public Card12_122() {
super(Side.FREE_PEOPLE, 0, CardType.CONDITION, Culture.SHIRE, Zone.SUPPORT, "Home and Hearth");
}
@Override
public List<OptionalTriggerAction> getOptionalAfterTriggers(String playerId, LotroGame game, EffectResult effectResult, PhysicalCard self) {
if (TriggerConditions.played(game, effectResult, Race.HOBBIT)) {
OptionalTriggerAction action = new OptionalTriggerAction(self);
action.appendEffect(
new RemoveBurdenEffect(playerId, self, 1));
if (PlayConditions.location(game, Keyword.DWELLING))
action.appendEffect(
new ChooseAndHealCharactersEffect(action, playerId, 1, 1, Filters.ringBearer));
return Collections.singletonList(action);
}
return null;
}
}