"Strength of Valar" now adds +1 Strength

This commit is contained in:
marcin.sciesinski
2019-08-13 11:19:43 -07:00
parent 9b03c17844
commit 22cfd47083
2 changed files with 11 additions and 5 deletions

View File

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

View File

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