Lexi Bender
Alexandra "Lexi" Bender (born July 22, 1993) is an American professional ice hockey player for the Boston Pride of the National Women's Hockey League (NWHL).
Lexi Bender | |||
---|---|---|---|
Lexi Bender playing for the Boston Pride in 2017 | |||
Born |
Snohomish, Washington, U.S. | July 22, 1993||
Height | 5 ft 8 in (173 cm) | ||
Position | Defense | ||
NWHL team | Boston Pride | ||
Playing career | 2016–present |
Personal life
During college, Bender played in the NCAA for Boston College in the women's ice hockey team.[1]
NWHL
Bender was drafted 15th overall in the 2015 NWHL draft by the Boston Pride. In 2016, Bender signed a one-year, $10,000 contract to play for the Boston Pride in the 2016/17 season.[2] Bender appeared in all 17 regular season games for the franchise, and two postseason games.[3]
On May 23, 2017, it was announced that Bender had re-signed to play with the Boston Pride for their 2017/18 season.[4] Bender participated in the 3rd NWHL All-Star Game.[5]
gollark: If it had a list of "visible entities" the rendering would be much faster. There isn't one.
gollark: You can't just trust clients.
gollark: ```javascriptconst getEnemy = (x, y) => { for (let i = 0; i < enemies.length; i++) { let other = enemies[i] if (other.x == x && other.y == y) return i } return -1}const getPlayer = (x, y) => { for (let i = 0; i < active_players.length; i++) { if (active_players[i]) { if (players[i].x == x && players[i].y == y) return i } } return -1}const getBonus = (x, y) => { for (let i = 0; i < bonuses.length; i++) { if (x == bonuses[i].x && y == bonuses[i].y) return i } return -1}```
gollark: This is for rendering the area around a player.
gollark: ```javascriptconst renderPlayer = (player) => { let str = "" for (let y = player.y - 5; y <= player.y + 5; y++) { for (let x = player.x - 10; x <= player.x + 10; x++) { let wallCol = getWallColor(x, y) if (x >= WIDTH) { str += wallCol } else if (y >= HEIGHT) { str += wallCol } else if (x < 0) { str += wallCol } else if (y < 0) { str += wallCol } else { let id = getEnemy(x, y) if (id != -1) { str += enemy_icons[enemies[id].id] } else { let id = getPlayer(x, y) if (id != -1) { str += players[id].icon } else { let id = getBonus(x, y) if (id != -1) { str += "?" } else { str += " " } } } } } str += "\n" } return str}```
References
- Myhre, Rich (December 27, 2016). "Snohomish native Bender inspires local women's hockey players". HeraldNet. Retrieved June 11, 2017.
- NWHL (May 2, 2016). "Pride Add Third Round Pick Lexi Bender". NWHL.Co. Retrieved June 11, 2017.
- Oliver, Nathaniel (May 24, 2017). "Pride Ink Their First Three RFAs". The Hockey Writers. Retrieved June 11, 2017.
- Berestecki, Laura (May 23, 2017). "Lexi Bender Re-Signs With Boston Pride". SB Nation. BC Interruption. Retrieved June 11, 2017.
- "Media Guide for the 2018 NWHL All-Star Game". NWHL.zone. Archived from the original on February 15, 2018. Retrieved February 14, 2018.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.