Bay Area Broncos

Team Stats

Name

GP

PPG

RPG

APG

SPG

BPG

3PG

TS%

FG%

2p%

3p%

FT%

4

14.75

4.50

1.00

0.75

0.75

1.8

43.3%

36.9%

51.5%

21.9%

57.1%

6

3.50

2.17

0.17

1.17

0.17

0.7

52.8%

42.1%

36.4%

50.0%

50.0%

8

8.25

1.50

1.88

1.13

0.00

1.8

39.4%

30.5%

28.9%

31.8%

50.0%

9

5.67

2.11

1.67

1.56

0.11

1.2

51.0%

40.0%

50.0%

34.4%

#DIV/0!

7

1.00

3.14

0.43

0.29

0.29

0.0

34.3%

37.5%

37.5%

#DIV/0!

20.0%

8

8.00

9.63

1.75

0.75

0.88

0.6

35.2%

28.8%

30.0%

25.0%

52.0%

8

12.38

3.13

1.13

0.50

0.25

2.1

55.1%

39.7%

45.2%

36.2%

74.1%

8

10.00

3.25

1.50

1.50

0.00

0.6

50.3%

44.4%

57.4%

20.0%

64.7%

9

11.33

3.33

3.00

1.22

0.00

1.8

40.8%

26.2%

23.5%

28.6%

73.2%

8

12.00

4.88

1.00

0.75

0.38

1.1

46.0%

33.7%

44.2%

20.9%

66.7%

6

3.67

1.00

0.67

0.50

0.00

0.3

34.3%

27.6%

27.3%

28.6%

57.1%

4

6.75

15.25

2.00

1.75

0.25

0.0

47.1%

46.2%

48.0%

0.0%

50.0%

Subscribe to our newsletter to be in touch with latest news.

Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
// 搜尋功能 document.getElementById('searchInput').addEventListener('input', function () { const filter = this.value.toLowerCase(); const items = document.querySelectorAll('Players Detail'); items.forEach(item => { const name = item.querySelector('.Name').innerText.toLowerCase(); if (name.includes(filter)) { item.style.display = 'block'; } else { item.style.display = 'none'; } }); }); // 篩選功能 document.getElementById('teamFilter').addEventListener('change', function () { const selectedTeam = this.value.toLowerCase(); const items = document.querySelectorAll('Players Detail'); items.forEach(item => { const team = item.querySelector('Team').innerText.toLowerCase(); if (selectedTeam === 'all' || team === selectedTeam) { item.style.display = 'block'; } else { item.style.display = 'none'; } }); });