"Sauron"
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
package com.gempukku.lotro.cards.set9.sauron;
|
||||
|
||||
import com.gempukku.lotro.cards.AbstractMinion;
|
||||
import com.gempukku.lotro.common.Culture;
|
||||
import com.gempukku.lotro.common.Keyword;
|
||||
import com.gempukku.lotro.common.Race;
|
||||
import com.gempukku.lotro.filters.Filters;
|
||||
import com.gempukku.lotro.game.PhysicalCard;
|
||||
import com.gempukku.lotro.game.state.GameState;
|
||||
import com.gempukku.lotro.logic.modifiers.ModifiersQuerying;
|
||||
|
||||
/**
|
||||
* Set: Reflections
|
||||
* Side: Shadow
|
||||
* Culture: Sauron
|
||||
* Twilight Cost: 18
|
||||
* Type: Minion • Maia
|
||||
* Strength: 24
|
||||
* Vitality: 5
|
||||
* Site: 6
|
||||
* Game Text: Damage +2. Enduring. Fierce. For each burden you spot, threat you spot, and site you control, Sauron's
|
||||
* twilight cost is -1.
|
||||
*/
|
||||
public class Card9_048 extends AbstractMinion {
|
||||
public Card9_048() {
|
||||
super(18, 24, 5, 6, Race.MAIA, Culture.SAURON, "Sauron", true);
|
||||
addKeyword(Keyword.DAMAGE, 2);
|
||||
addKeyword(Keyword.ENDURING);
|
||||
addKeyword(Keyword.FIERCE);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getTwilightCostModifier(GameState gameState, ModifiersQuerying modifiersQuerying, PhysicalCard self) {
|
||||
return -(gameState.getTwilightPool() + gameState.getThreats() + Filters.countSpottable(gameState, modifiersQuerying, Filters.siteControlled(self.getOwner())));
|
||||
}
|
||||
}
|
||||
@@ -3,7 +3,7 @@ package com.gempukku.lotro.common;
|
||||
public enum Race implements Filterable {
|
||||
BALROG("Balrog"), CREATURE("Creature"), WRAITH("Wraith"),
|
||||
ELF("Elf"), HOBBIT("Hobbit"), DWARF("Dwarf"), MAN("Man"), WIZARD("Wizard"), TREE("Tree"),
|
||||
URUK_HAI("Uruk-Hai"), NAZGUL("Nazgul"), ORC("Orc"), TROLL("Troll"), ENT("Ent"), SPIDER("Spider");
|
||||
URUK_HAI("Uruk-Hai"), NAZGUL("Nazgul"), ORC("Orc"), TROLL("Troll"), ENT("Ent"), SPIDER("Spider"), MAIA("Maia");
|
||||
|
||||
private String _humanReadable;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user