Merge pull request #461 from MockingbirdME/patch-7

Fix: Ent Hoard not taking bloom of health modifiers into account
This commit is contained in:
Christian McCarty
2025-02-09 14:01:26 -06:00
committed by GitHub

View File

@@ -193,11 +193,21 @@
count: 2 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 type: modifyOwnCost
amount: { amount: {
type: forEachYouCanSpot type: forEachYouCanSpot
filter: or(ent,and(unbound,hobbit)) filter: ent
multiplier: -2
}
}
{
type: modifyOwnCost
amount: {
type: forEachYouCanSpot
filter: unbound,hobbit
multiplier: -2 multiplier: -2
} }
} }