Bay Area Broncos & Golden Dragon

Retired Team Members

Kehan

SG

Retired

Tommy

PF

29

Retired

Philip

SG

24

Retired

Jing Hu

PG

20

Retired

Devin

PF

Released

Daniel

SG

9

Released

Yifei

C

Retired

Tony

SF

32

Released

Chenxi Yang

C

34

Retired

Jerry

PF

69

Retired

David

SG

6

Retired

Harden

PG

14

Retired

Team Stats

Name

GP

PPG

RPG

APG

SPG

BPG

3PG

TOs

TS%

FG%

2p%

3p%

FT%

29
2.33
1.1
0.53
0.5
0
0.2
1.24
35.3
31.8
33.3
26.3
50
28
2.59
2.45
0.31
0.55
0.28
0.1
1.04
39.7
38.4
38.8
33.3
58.3
24
6
1.84
1.16
0.4
0.04
1.4
2.08
41.7
33.5
33.3
33.7
38.5
21
2.38
2.24
2.14
0.52
0
0.3
1.95
30.7
26
29.8
20
40
19
1.75
0.85
0.4
0.11
0.1
0.4
1
36.6
29.3
25
33.3
40
18
6
2
1.28
0.78
0
1.2
2.59
37.4
29.1
31.3
27.3
62.5
16
3.82
6
0.88
0.41
0
0.1
0.76
41.6
38.8
53.3
9.1
73.3
14
2.71
1.86
0.14
1
0.07
0.4
1
39.8
32.6
40.9
25
50
12
0.58
2.75
0.25
0.17
0.17
0
1.25
24.9
27.3
30
0
14.3
9
2.44
4.11
1.11
0.78
1
0
1.11
31.1
29.4
41.7
0
66.7
8
0.89
2.89
0.11
0.11
0
0
1.11
21.4
21.4
23.1
0
33.3
7
18.71
4.71
3.57
1.71
0.14
3.7
1.57
57.1
44
44.9
43.3
69.2
6
3.71
2.86
2
1.57
0.29
0
1.71
36.5
37
52.6
0
75
3
2.33
1.33
0.33
1
0
0
1
26.3
25
30
0
33.3
3
1.67
2.33
1.33
0.67
0
0
1.67
32.2
33.3
50
0
25

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'; } }); });