"Morgul Creeper"
This commit is contained in:
@@ -0,0 +1,37 @@
|
|||||||
|
package com.gempukku.lotro.cards.set8.wraith;
|
||||||
|
|
||||||
|
import com.gempukku.lotro.cards.AbstractMinion;
|
||||||
|
import com.gempukku.lotro.cards.modifiers.ArcheryTotalModifier;
|
||||||
|
import com.gempukku.lotro.common.Culture;
|
||||||
|
import com.gempukku.lotro.common.Race;
|
||||||
|
import com.gempukku.lotro.common.Side;
|
||||||
|
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.SpotBurdensCondition;
|
||||||
|
|
||||||
|
import java.util.Collections;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set: Siege of Gondor
|
||||||
|
* Side: Shadow
|
||||||
|
* Culture: Wraith
|
||||||
|
* Twilight Cost: 3
|
||||||
|
* Type: Minion • Orc
|
||||||
|
* Strength: 8
|
||||||
|
* Vitality: 2
|
||||||
|
* Site: 4
|
||||||
|
* Game Text: While you can spot 3 burdens, the minion archery total is +2.
|
||||||
|
*/
|
||||||
|
public class Card8_075 extends AbstractMinion {
|
||||||
|
public Card8_075() {
|
||||||
|
super(3, 8, 2, 4, Race.ORC, Culture.WRAITH, "Morgul Creeper");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public List<? extends Modifier> getAlwaysOnModifiers(LotroGame game, PhysicalCard self) {
|
||||||
|
return Collections.singletonList(
|
||||||
|
new ArcheryTotalModifier(self, Side.SHADOW, new SpotBurdensCondition(3), 2));
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user