"Strength of Valar" now adds +1 Strength
This commit is contained in:
@@ -24,6 +24,7 @@ import java.util.List;
|
||||
* Twilight Cost: 1
|
||||
* Type: Condition - Companion
|
||||
* Card Number: 1R74
|
||||
* Strength: +1
|
||||
* Game Text: Bearer must be Gandalf.
|
||||
* Gandalf takes no more than one wound in a skirmish. If you lose initiative, discard this condition and wound Gandalf.
|
||||
*/
|
||||
@@ -55,4 +56,9 @@ public class Card40_074 extends AbstractAttachable{
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getStrength() {
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -141,11 +141,6 @@ public abstract class AbstractLotroCardBlueprint implements LotroCardBlueprint {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<? extends AbstractExtraPlayCostModifier> getExtraCostToPlayModifiers(LotroGame game, PhysicalCard self) {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Race getRace() {
|
||||
return null;
|
||||
@@ -281,6 +276,11 @@ public abstract class AbstractLotroCardBlueprint implements LotroCardBlueprint {
|
||||
throw new UnsupportedOperationException("This method should not be called on this card");
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<? extends AbstractExtraPlayCostModifier> getExtraCostToPlayModifiers(LotroGame game, PhysicalCard self) {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getPotentialDiscount(LotroGame game, String playerId, PhysicalCard self) {
|
||||
return 0;
|
||||
|
||||
Reference in New Issue
Block a user