"Harry Goatleaf"

This commit is contained in:
marcins78@gmail.com
2012-03-07 14:16:52 +00:00
parent 7377b71a77
commit 444853ac80

View File

@@ -0,0 +1,42 @@
package com.gempukku.lotro.cards.set18.men;
import com.gempukku.lotro.cards.AbstractMinion;
import com.gempukku.lotro.cards.modifiers.conditions.LocationCondition;
import com.gempukku.lotro.common.Culture;
import com.gempukku.lotro.common.Race;
import com.gempukku.lotro.filters.Filters;
import com.gempukku.lotro.game.PhysicalCard;
import com.gempukku.lotro.game.state.LotroGame;
import com.gempukku.lotro.logic.modifiers.Modifier;
import com.gempukku.lotro.logic.modifiers.StrengthModifier;
import java.util.LinkedList;
import java.util.List;
/**
* Set: Treachery & Deceit
* Side: Shadow
* Culture: Men
* Twilight Cost: 3
* Type: Minion • Man
* Strength: 6
* Vitality: 2
* Site: 3
* Game Text: While the fellowship is in region 1, this minion is strength +4. While the fellowship is in region 2,
* this minion is strength +2.
*/
public class Card18_068 extends AbstractMinion {
public Card18_068() {
super(3, 6, 2, 3, Race.MAN, Culture.MEN, "Harry Goatleaf");
}
@Override
public List<? extends Modifier> getAlwaysOnModifiers(LotroGame game, PhysicalCard self) {
List<Modifier> modifiers = new LinkedList<Modifier>();
modifiers.add(
new StrengthModifier(self, self, new LocationCondition(Filters.region(1)), 4));
modifiers.add(
new StrengthModifier(self, self, new LocationCondition(Filters.region(2)), 2));
return modifiers;
}
}