Merge pull request #464 from argonui/playarea-uses

Added uses spawning for Makeshift Trap and Shrine of the Moirai in the playarea
This commit is contained in:
Entrox-Licher 2023-11-11 10:11:20 -05:00 committed by GitHub
commit ef7cd1c908
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -145,6 +145,11 @@ function shouldSpawnTokens(card)
or metadata.type == "Enemy"
or metadata.type == "Treachery"
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
function onCollisionExit(collisionInfo)