This is not how you require a module:
local card_prop = "card/cardglue"
In my previous post I outlined how to do it:
local card_prop = require "path.to.card_prop"
I am guessing your module is called cardglue.lua and stored in a folder called card. In that case:
local card_prop = require "card.cardglue"