"Book of Mazarbul"

This commit is contained in:
marcins78@gmail.com
2011-09-30 07:28:13 +00:00
parent 423abbcf58
commit 45a98789a7

View File

@@ -0,0 +1,49 @@
package com.gempukku.lotro.cards.set3.dwarven;
import com.gempukku.lotro.cards.AbstractAttachable;
import com.gempukku.lotro.common.*;
import com.gempukku.lotro.filters.Filter;
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.DrawCardEffect;
import com.gempukku.lotro.logic.timing.EffectResult;
import java.util.Collections;
import java.util.List;
/**
* Set: Realms of Elf-lords
* Side: Free
* Culture: Dwarven
* Twilight Cost: 2
* Type: Possession
* Game Text: Tale. Bearer must be a Dwarf. At the start of each fellowship phase when the fellowship is at site 4
* or higher, you may draw a card for each Dwarf companion.
*/
public class Card3_001 extends AbstractAttachable {
public Card3_001() {
super(Side.FREE_PEOPLE, CardType.POSSESSION, 2, Culture.DWARVEN, null, "Book of Mazarbul", true);
addKeyword(Keyword.TALE);
}
@Override
protected Filter getValidTargetFilter(String playerId, LotroGame game, PhysicalCard self) {
return Filters.race(Race.DWARF);
}
@Override
public List<OptionalTriggerAction> getOptionalAfterTriggers(String playerId, LotroGame game, EffectResult effectResult, PhysicalCard self) {
if (effectResult.getType() == EffectResult.Type.START_OF_PHASE
&& game.getGameState().getCurrentPhase() == Phase.FELLOWSHIP
&& game.getGameState().getCurrentSiteNumber() >= 4) {
OptionalTriggerAction action = new OptionalTriggerAction(self);
int dwarfCompanions = Filters.countActive(game.getGameState(), game.getModifiersQuerying(), Filters.race(Race.DWARF), Filters.type(CardType.COMPANION));
action.appendEffect(
new DrawCardEffect(playerId, dwarfCompanions));
return Collections.singletonList(action);
}
return null;
}
}