def rush_score(stats, league)
    td_score = stats["RushingTouchdowns"].to_i * league.rush_td
    yards_score = (stats["RushingYards"].to_i / 10) * league.rush_yards
    two_pt_score = stats["TwoPointConversionRuns"].to_i * league.rush_2pt
    total = td_score + yards_score + two_pt_score