"Legolas", "Son of Thranduil"

This commit is contained in:
marcins78
2013-01-07 15:13:42 +00:00
parent 18944bd81d
commit 38b26089ec

View File

@@ -0,0 +1,32 @@
package com.gempukku.lotro.cards.set20.elven;
import com.gempukku.lotro.cards.AbstractCompanion;
import com.gempukku.lotro.cards.modifiers.ArcheryTotalModifier;
import com.gempukku.lotro.cards.modifiers.conditions.LocationCondition;
import com.gempukku.lotro.common.Culture;
import com.gempukku.lotro.common.Keyword;
import com.gempukku.lotro.common.Race;
import com.gempukku.lotro.common.Side;
import com.gempukku.lotro.filters.Filters;
import com.gempukku.lotro.game.PhysicalCard;
import com.gempukku.lotro.logic.modifiers.Modifier;
/**
* 2
* •Legolas, Son of Thranduil
* Elven Companion • Elf
* 6 3 8
* Archer.
* While Legolas is at a river or forest, add 1 to the fellowship archery total.
*/
public class Card20_090 extends AbstractCompanion {
public Card20_090() {
super(2, 6, 3, 8, Culture.ELVEN, Race.ELF, null, "Legolas", "Son of Thranduil", true);
addKeyword(Keyword.ARCHER);
}
@Override
public Modifier getAlwaysOnModifier(PhysicalCard self) {
return new ArcheryTotalModifier(self, Side.FREE_PEOPLE, new LocationCondition(Filters.or(Keyword.RIVER, Keyword.FOREST)), 1);
}
}