added ids

This commit is contained in:
Chr1Z93 2023-11-07 16:07:28 +01:00
parent 99571be049
commit 93d917c2ea

View File

@ -145,6 +145,11 @@ function shouldSpawnTokens(card)
or metadata.type == "Enemy" or metadata.type == "Enemy"
or metadata.type == "Treachery" or metadata.type == "Treachery"
or metadata.weakness or metadata.weakness
-- hardcoded IDs for "Makeshift Trap" and "Shrine of the Moirai"
-- these cards are events with uses, that attach to encounter cards and thus will enter play in the playarea
-- TODO: probably turn this into a metadata field if we get more cards like that
or metadata.id == "07310"
or metadata.id == "09100"
end end
function onCollisionExit(collisionInfo) function onCollisionExit(collisionInfo)