Fixing Keeper of Isengard errata fierce not applying until regroup

This commit is contained in:
Christian 'ketura' McCarty
2021-03-09 12:57:21 -06:00
parent a1e98128f2
commit 862d90d42e
2 changed files with 4 additions and 1 deletions

View File

@@ -96,7 +96,8 @@
"effect": {
"type": "addKeyword",
"filter": "choose(uruk-hai)",
"keyword": "fierce"
"keyword": "fierce",
"until": "start(regroup)"
}
},
]

View File

@@ -110,5 +110,7 @@ public class Saruman_KoIErrataTests
assertEquals(0, scn.GetWoundsOn(uruk1));
assertEquals(1, scn.GetWoundsOn(saruman));
scn.SkipToPhase(Phase.ASSIGNMENT);
assertTrue(scn.HasKeyword(uruk1, Keyword.FIERCE));
}
}