Jon Solow
commited on
Commit
·
72cd17c
1
Parent(s):
599c549
Add defensive players for all teams
Browse files- src/domain/playoffs.py +32 -14
src/domain/playoffs.py
CHANGED
@@ -63,20 +63,38 @@ PLAYOFFS_TEAMS = {
|
|
63 |
}
|
64 |
|
65 |
PLAYOFF_TEAM_DEF_PLAYER: list[tuple[teams.NFLTeam, str]] = [
|
66 |
-
(teams.
|
67 |
-
(teams.miami_dolphins, "00-0033055"),
|
68 |
-
(teams.
|
69 |
-
(teams.
|
70 |
-
(teams.
|
71 |
-
(teams.
|
72 |
-
(teams.
|
73 |
-
(teams.
|
74 |
-
(teams.
|
75 |
-
(teams.
|
76 |
-
(teams.
|
77 |
-
(teams.
|
78 |
-
(teams.
|
79 |
-
(teams.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
80 |
]
|
81 |
|
82 |
SHORT_TEAM_NAMES_TO_DEFENSE_PLAYER_ID = {t.team_short_name: p for t, p in PLAYOFF_TEAM_DEF_PLAYER}
|
|
|
63 |
}
|
64 |
|
65 |
PLAYOFF_TEAM_DEF_PLAYER: list[tuple[teams.NFLTeam, str]] = [
|
66 |
+
(teams.buffalo_bills, "00-0036888"), # damar hamlin
|
67 |
+
(teams.miami_dolphins, "00-0033055"), # jalen ramsey
|
68 |
+
(teams.new_england_patriots, "00-0039147"), # christian gonzalez
|
69 |
+
(teams.new_york_jets, "00-0034384"), # d.j. reed
|
70 |
+
(teams.baltimore_ravens, "00-0038038"), # kyle hamilton
|
71 |
+
(teams.cincinnati_bengals, "00-0037753"), # cam taylor-britt
|
72 |
+
(teams.cleveland_browns, "00-0033868"), # myles garrett
|
73 |
+
(teams.pittsburgh_steelers, "00-0033886"), # t.j. watt
|
74 |
+
(teams.houston_texans, "00-0031565"), # danielle hunter
|
75 |
+
(teams.indianapolis_colts, "00-0036253"), # julian blackmon
|
76 |
+
(teams.jacksonville_jaguars, "00-0036974"), # tyson campbell
|
77 |
+
(teams.tennessee_titans, "00-0031608"), # quandre digg
|
78 |
+
(teams.denver_broncos, "00-0036874"), # pat surtain
|
79 |
+
(teams.kansas_city_chiefs, "00-0032762"), # chris jones
|
80 |
+
(teams.las_vegas_raiders, "00-0036871"), # nate hobbs
|
81 |
+
(teams.los_angeles_chargers, "00-0034790"), # derwin james
|
82 |
+
(teams.dallas_cowboys, "00-0036932"), # micah parsons
|
83 |
+
(teams.new_york_giants, "00-0035683"), # Dexter Lawrence
|
84 |
+
(teams.philadelphia_eagles, "00-0038386"), # jalen carter
|
85 |
+
(teams.washington_football_team, "00-0033523"), # Jonathan Allen
|
86 |
+
(teams.chicago_bears, "00-0038135"), # Jaquan Brisker
|
87 |
+
(teams.detroit_lions, "00-0037236"), # aidan hutchinson
|
88 |
+
(teams.green_bay_packers, "00-0034728"), # jaire alexander
|
89 |
+
(teams.minnesota_vikings, "00-0029606"), # Harrison Smith
|
90 |
+
(teams.atlanta_falcons, "00-0037034"), # Dee Alford
|
91 |
+
(teams.carolina_panthers, "00-0032889"), # A'Shawn Robinson
|
92 |
+
(teams.new_orleans_saints, "00-0030459"), # Tyrann Mathieu
|
93 |
+
(teams.tampa_bay_buccaneers, "00-0034773"), # vita vea
|
94 |
+
(teams.arizona_cardinals, "00-0035239"), # Sean Murphy-Bunting
|
95 |
+
(teams.los_angeles_rams, "00-0039852"), # jared verse
|
96 |
+
(teams.san_francisco_49ers, "00-0034815"), # fred warner
|
97 |
+
(teams.seattle_seahawks, "00-0031933"), # Leonard Williams
|
98 |
]
|
99 |
|
100 |
SHORT_TEAM_NAMES_TO_DEFENSE_PLAYER_ID = {t.team_short_name: p for t, p in PLAYOFF_TEAM_DEF_PLAYER}
|