This commit is contained in:
marcins78
2013-03-15 18:03:53 +00:00
parent a7780b02b9
commit 4330141874
2 changed files with 9 additions and 7 deletions

View File

@@ -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',

View File

@@ -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);
} }
}); });
} }