Various fixes
- Fixing V2 Uruk Shield Wall blocking skirmish wounds - Fixing Denethor errata still being strength 5 - Fixing NRE for a certain card lookup
This commit is contained in:
@@ -15,7 +15,7 @@
|
||||
twilight: 2
|
||||
type: Companion
|
||||
race: Man
|
||||
strength: 5
|
||||
strength: 8
|
||||
vitality: 3
|
||||
signet: Aragorn
|
||||
resistance: 6
|
||||
|
||||
@@ -1142,18 +1142,27 @@
|
||||
filter: uruk-hai
|
||||
memorize: woundedUruk
|
||||
}
|
||||
requires: {
|
||||
type: IsEqual
|
||||
firstNumber: {
|
||||
type: TwilightCostInMemory
|
||||
memory: woundedUruk
|
||||
requires: [
|
||||
{
|
||||
type: IsEqual
|
||||
firstNumber: {
|
||||
type: TwilightCostInMemory
|
||||
memory: woundedUruk
|
||||
}
|
||||
secondNumber: {
|
||||
type: ForEachCultureToken
|
||||
filter: self
|
||||
culture: isengard
|
||||
}
|
||||
}
|
||||
secondNumber: {
|
||||
type: ForEachCultureToken
|
||||
filter: self
|
||||
culture: isengard
|
||||
{
|
||||
type: not
|
||||
requires: {
|
||||
type: phase
|
||||
phase: skirmish
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
effect: [
|
||||
{
|
||||
type: PreventWound
|
||||
|
||||
@@ -390,6 +390,9 @@ public class LotroCardBlueprintLibrary {
|
||||
|
||||
collectionReady.release();
|
||||
|
||||
if(bp == null)
|
||||
throw new CardNotFoundException(blueprintId + " was somehow null");
|
||||
|
||||
return bp;
|
||||
} catch (InterruptedException exp) {
|
||||
throw new RuntimeException("LotroCardBlueprintLibrary.getLotroCardBlueprint() interrupted: ", exp);
|
||||
|
||||
Reference in New Issue
Block a user