Last-minute tracker keyword on the Uruk Raider errata

This commit is contained in:
Christian 'ketura' McCarty
2025-04-17 23:28:52 -05:00
parent 61ea65a8a4
commit c53a1483c4
2 changed files with 7 additions and 3 deletions

View File

@@ -615,7 +615,10 @@
strength: 6
vitality: 2
site: 5
keywords: Damage+1
keywords: [
Tracker
Damage+1
]
effects: [
{
type: modifier
@@ -663,7 +666,7 @@
}
}
]
gametext: Damage +1.<br>While an ally is in the dead pile, this minion is strength +3 and <b>fierce</b>.<br>Each time an ally exerts, you may spot another [isengard] card and exert this minion to wound that ally.
gametext: Tracker. Damage +1.<br>While an ally is in the dead pile, this minion is strength +3 and <b>fierce</b>.<br>Each time an ally exerts, you may spot another [isengard] card and exert this minion to wound that ally.
lore: "'There is no safety where Saruman's emblem is shown.'"
promotext: ""
alts: {

View File

@@ -43,7 +43,7 @@ public class Card_03_074_ErrataTests
* Strength: 6
* Vitality: 2
* Site Number: 5
* Game Text: Damage +1.
* Game Text: Tracker. Damage +1.
* While an ally is in the dead pile, this minion is strength +3 and <b>fierce</b>.
* Each time an ally exerts, you may spot another [isengard] card and exert this minion to wound that ally.
*/
@@ -59,6 +59,7 @@ public class Card_03_074_ErrataTests
assertEquals(Culture.ISENGARD, card.getBlueprint().getCulture());
assertEquals(CardType.MINION, card.getBlueprint().getCardType());
assertEquals(Race.URUK_HAI, card.getBlueprint().getRace());
assertTrue(scn.hasKeyword(card, Keyword.TRACKER));
assertTrue(scn.hasKeyword(card, Keyword.DAMAGE));
assertEquals(1, scn.GetKeywordCount(card, Keyword.DAMAGE));
assertEquals(2, card.getBlueprint().getTwilightCost());