def rec_score(stats, league)
    td_score = stats["ReceivingTouchdowns"].to_i * league.rec_td
    yards_score = (stats["ReceivingYards"].to_i / 10) * league.rec_yards
    two_pt_score = stats["TwoPointConversionReceptions"].to_i * league.rec_2pt
    total = td_score + yards_score + two_pt_score