Fixed V2 Aragorn being 7 base strength instead of 8

This commit is contained in:
Christian 'ketura' McCarty
2024-11-24 12:11:02 -06:00
parent 1a5b4ff47e
commit 428e324f63
2 changed files with 3 additions and 4 deletions

View File

@@ -15,7 +15,7 @@
twilight: 4
type: Companion
race: Man
strength: 7
strength: 8
vitality: 4
signet: Gandalf
resistance: 6

View File

@@ -3,7 +3,6 @@ package com.gempukku.lotro.cards.unofficial.pc.vsets.set_v02;
import com.gempukku.lotro.cards.GenericCardTestHelper;
import com.gempukku.lotro.common.*;
import com.gempukku.lotro.game.CardNotFoundException;
import com.gempukku.lotro.game.PhysicalCardImpl;
import com.gempukku.lotro.logic.decisions.DecisionResultInvalidException;
import org.junit.Test;
@@ -45,7 +44,7 @@ public class Card_V2_016_Tests
* Twilight Cost: 4
* Type: Companion
* Subtype: Man
* Strength: 7
* Strength: 8
* Vitality: 4
* Resistance: 6
* Signet: Gandalf
@@ -67,7 +66,7 @@ public class Card_V2_016_Tests
assertEquals(Race.MAN, card.getBlueprint().getRace());
assertTrue(scn.hasKeyword(card, Keyword.VALIANT));
assertEquals(4, card.getBlueprint().getTwilightCost());
assertEquals(7, card.getBlueprint().getStrength());
assertEquals(8, card.getBlueprint().getStrength());
assertEquals(4, card.getBlueprint().getVitality());
assertEquals(6, card.getBlueprint().getResistance());
assertEquals(Signet.GANDALF, card.getBlueprint().getSignet());