20_048
This commit is contained in:
@@ -46,7 +46,7 @@ var set20 = {
|
|||||||
'20_45': 'http://lotrtcg.org/coreset/dwarven/dwarvenbracers.png',
|
'20_45': 'http://lotrtcg.org/coreset/dwarven/dwarvenbracers.png',
|
||||||
'20_46': 'http://lotrtcg.org/coreset/dwarven/dwarvenfrenzy.png',
|
'20_46': 'http://lotrtcg.org/coreset/dwarven/dwarvenfrenzy.png',
|
||||||
'20_47': 'http://lotrtcg.org/coreset/dwarven/dwarvenire.png',
|
'20_47': 'http://lotrtcg.org/coreset/dwarven/dwarvenire.png',
|
||||||
'20_48': 'http://lotrtcg.org/coreset/dwarven/dwarvenvigor.png',
|
'20_48': 'http://lotrtcg.org/coreset/dwarven/dwarvenvigor(r1).png',
|
||||||
'20_49': 'http://lotrtcg.org/coreset/dwarven/enduranceofdwarves.png',
|
'20_49': 'http://lotrtcg.org/coreset/dwarven/enduranceofdwarves.png',
|
||||||
'20_50': 'http://lotrtcg.org/coreset/dwarven/farindoe.png',
|
'20_50': 'http://lotrtcg.org/coreset/dwarven/farindoe.png',
|
||||||
'20_51': 'http://lotrtcg.org/coreset/dwarven/festivefolk.png',
|
'20_51': 'http://lotrtcg.org/coreset/dwarven/festivefolk.png',
|
||||||
|
|||||||
@@ -13,14 +13,16 @@ import com.gempukku.lotro.logic.modifiers.StrengthModifier;
|
|||||||
import com.gempukku.lotro.logic.modifiers.evaluator.Evaluator;
|
import com.gempukku.lotro.logic.modifiers.evaluator.Evaluator;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 2
|
* 1
|
||||||
* •Dwarven Vigor
|
* Dwarven Vigor
|
||||||
* Dwarven Condition • Support Area
|
* Condition • Support Area
|
||||||
* While there is a [Dwarven] card stacked on this condition, each Dwarf is strength + 1 for each vitality he or she has.
|
* While there is a [Dwarven] card stacked on this condition, each Dwarf is strength +1 for each point of vitality
|
||||||
|
* over 3 that he has.
|
||||||
|
* http://lotrtcg.org/coreset/dwarven/dwarvenvigor(r1).png
|
||||||
*/
|
*/
|
||||||
public class Card20_048 extends AbstractPermanent {
|
public class Card20_048 extends AbstractPermanent {
|
||||||
public Card20_048() {
|
public Card20_048() {
|
||||||
super(Side.FREE_PEOPLE, 2, CardType.CONDITION, Culture.DWARVEN, Zone.SUPPORT, "Dwarven Vigor", null, true);
|
super(Side.FREE_PEOPLE, 1, CardType.CONDITION, Culture.DWARVEN, Zone.SUPPORT, "Dwarven Vigor");
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -34,7 +36,7 @@ public class Card20_048 extends AbstractPermanent {
|
|||||||
}, new Evaluator() {
|
}, new Evaluator() {
|
||||||
@Override
|
@Override
|
||||||
public int evaluateExpression(GameState gameState, ModifiersQuerying modifiersQuerying, PhysicalCard cardAffected) {
|
public int evaluateExpression(GameState gameState, ModifiersQuerying modifiersQuerying, PhysicalCard cardAffected) {
|
||||||
return modifiersQuerying.getVitality(gameState, cardAffected);
|
return Math.max(0, modifiersQuerying.getVitality(gameState, cardAffected)-3);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user