Morgul Destroyer pump from +4 -> +3

This commit is contained in:
Christian 'ketura' McCarty
2023-06-05 17:05:36 -05:00
parent 288595f96e
commit aef4efb3e5
2 changed files with 3 additions and 3 deletions

View File

@@ -74,7 +74,7 @@
effect: {
type: ModifyStrength
filter: self
amount: 4
amount: 3
}
}
]

View File

@@ -142,7 +142,7 @@ public class Card_07_190_ErrataTests
}
@Test
public void DestroyerSkirmishActionRemovesAThreatToPump4() throws DecisionResultInvalidException, CardNotFoundException {
public void DestroyerSkirmishActionRemovesAThreatToPump3() throws DecisionResultInvalidException, CardNotFoundException {
//Pre-game setup
var scn = GetScenario();
@@ -164,6 +164,6 @@ public class Card_07_190_ErrataTests
assertEquals(6, scn.GetStrength(destroyer));
scn.ShadowUseCardAction(destroyer);
assertEquals(1, scn.GetThreats());
assertEquals(10, scn.GetStrength(destroyer));
assertEquals(9, scn.GetStrength(destroyer));
}
}