local ____exports = {}
--- The possible effects that the Mysterious Paper trinket can grant.
-- 
-- This enum has hard-coded values because they correspond to the specific in-game frame count of
-- the player.
____exports.MysteriousPaperEffect = {}
____exports.MysteriousPaperEffect.POLAROID = 0
____exports.MysteriousPaperEffect[____exports.MysteriousPaperEffect.POLAROID] = "POLAROID"
____exports.MysteriousPaperEffect.NEGATIVE = 1
____exports.MysteriousPaperEffect[____exports.MysteriousPaperEffect.NEGATIVE] = "NEGATIVE"
____exports.MysteriousPaperEffect.MISSING_PAGE = 2
____exports.MysteriousPaperEffect[____exports.MysteriousPaperEffect.MISSING_PAGE] = "MISSING_PAGE"
____exports.MysteriousPaperEffect.MISSING_POSTER = 3
____exports.MysteriousPaperEffect[____exports.MysteriousPaperEffect.MISSING_POSTER] = "MISSING_POSTER"
return ____exports
