Fixed Skinbark, Fladrif and Host of Fangorn not taking Bloom of Health modifiers into account

This commit is contained in:
Christian 'ketura' McCarty
2024-12-21 14:24:45 -06:00
parent 707e641ea4
commit 478c907dc7

View File

@@ -391,12 +391,22 @@
count: 2
}
}
# These have to be split apart because the spot modifier only works
# if a filter has only 1 thing in it
{
type: modifyOwnCost
amount: {
type: forEachYouCanSpot
filter: or(ent,and(unbound,hobbit))
multiplier: -2
filter: ent
multiplier: -1
}
}
{
type: modifyOwnCost
amount: {
type: forEachYouCanSpot
filter: unbound,hobbit
multiplier: -1
}
}
]
@@ -526,11 +536,21 @@
vitality: 4
resistance: 6
effects: [
# These have to be split apart because the spot modifier only works
# if a filter has only 1 thing in it
{
type: modifyOwnCost
amount: {
type: forEachYouCanSpot
filter: or(ent,and(unbound,hobbit))
filter: ent
multiplier: -1
}
}
{
type: modifyOwnCost
amount: {
type: forEachYouCanSpot
filter: unbound,hobbit
multiplier: -1
}
}