function G_ClothesMgr:GetClothesByCreatureID(nCreatureId)
	local tbClothes = {}
	for nClothesId, _ in pairs( self.tbClothes ) do 
		local nCId = G_ClothesCfg:GetCreatureId(nClothesId)
		if nCreatureId == nCId then 
			if G_ClothesCfg:GetWeight(nClothesId) > 0 then 
				table.insert( tbClothes,  nClothesId)
			end
		end
	end