Rhunish Helm
This commit is contained in:
@@ -470,5 +470,6 @@ var set20 = {
|
||||
'20_479': 'http://lotrtcg.org/coreset/shire/crossingthethreshold(r2).jpg',
|
||||
'20_480': 'http://lotrtcg.org/coreset/fallenrealms/easterlinggrunt(r3).jpg',
|
||||
'20_481': 'http://lotrtcg.org/coreset/fallenrealms/easterlingplotter(r3).jpg',
|
||||
'20_482': 'http://lotrtcg.org/coreset/fallenrealms/easterlingschemer(r3).jpg'
|
||||
'20_482': 'http://lotrtcg.org/coreset/fallenrealms/easterlingschemer(r3).jpg',
|
||||
'20_483': 'http://lotrtcg.org/coreset/fallenrealms/rhunishhelm(r3).jpg'
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
package com.gempukku.lotro.cards.set20.fallenRealms;
|
||||
|
||||
import com.gempukku.lotro.cards.AbstractAttachable;
|
||||
import com.gempukku.lotro.common.*;
|
||||
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.KeywordModifier;
|
||||
import com.gempukku.lotro.logic.modifiers.Modifier;
|
||||
|
||||
/**
|
||||
* ❶ Rhûnish Helm [Fal]
|
||||
* Possession • Helm
|
||||
* Toil 1. (When you play this card, you may reduce its twilight cost by 1. You do this by exerting one of your characters of the same culture as this card.)
|
||||
* Bearer must be an Easterling.
|
||||
* Bearer gains lurker.
|
||||
* <p/>
|
||||
* http://lotrtcg.org/coreset/fallenrealms/rhunishhelm(r3).jpg
|
||||
*/
|
||||
public class Card20_483 extends AbstractAttachable {
|
||||
public Card20_483() {
|
||||
super(Side.SHADOW, CardType.POSSESSION, 1, Culture.FALLEN_REALMS, PossessionClass.HELM, "Rhunish Helm");
|
||||
addKeyword(Keyword.TOIL, 1);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected Filterable getValidTargetFilter(String playerId, LotroGame game, PhysicalCard self) {
|
||||
return Keyword.EASTERLING;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Modifier getAlwaysOnModifier(LotroGame game, PhysicalCard self) {
|
||||
return new KeywordModifier(self, Filters.hasAttached(self), Keyword.LURKER);
|
||||
}
|
||||
}
|
||||
@@ -469,4 +469,5 @@
|
||||
20S479
|
||||
20S480
|
||||
20S481
|
||||
20S482
|
||||
20S482
|
||||
20S483
|
||||
Reference in New Issue
Block a user