Fixing Naith Armaments targeting bearer. Hopefully fixing Let This Be The Hour not applying strength value.

This commit is contained in:
Christian 'ketura' McCarty
2024-09-07 00:18:09 -05:00
parent be373aaa6f
commit 97bf47a8bf
2 changed files with 10 additions and 7 deletions

View File

@@ -178,7 +178,7 @@
}
requires: {
type: CanSpot
filter: another, wounded, valiant, elf
filter: not(bearer), wounded, valiant, elf
}
cost: {
type: Exert
@@ -186,7 +186,7 @@
}
effect: {
type: Heal
select: choose(another, valiant, elf)
select: choose(not(bearer), valiant, elf)
}
}
]

View File

@@ -563,12 +563,15 @@
select: memory(exertedComp)
}
{
type: ModifyStrength
amount: {
type: ForEachYouCanSpot
filter: InSkirmishAgainst(memory(exertedComp))
type: AddModifier
modifier: {
type: ModifyStrength
amount: {
type: ForEachYouCanSpot
filter: InSkirmishAgainst(memory(exertedComp))
}
filter: memory(exertedComp)
}
select: memory(exertedComp)
until: start(regroup)
}
]