Bay Area Broncos & Golden Dragon

Active Team Members

浩繁

SG

30

Broncos

Kevin Hsu

PG

15

Broncos

Jason

C

10

Broncos

舒予

SF

22

Broncos

Penny

SF

99

Broncos

Gary

SF

12

Coach

Eric

C

2

Golden Dragon

Powei Chen

PF

66

Golden Dragon

Ray

PG

3

Broncos

嘉豪

SF

26

Golden Dragon

Lucas Li

SF

8

Broncos

Daniel 黃

PF

41

Golden Dragon

Edward

PG

77

Broncos

Peter

SF

58

Golden Dragon

Hongliang Chen

PF

13

Broncos

Tablo

SG

23

Golden Dragon

洪若軒

PG

0

Golden Dragon

Stanley

SF

77

Golden Dragon

John Ho

PG

88

Golden Dragon

Steven

PF

7

Broncos

Team Stats

Name

GP

PPG

RPG

APG

SPG

BPG

3PG

TOs

TS%

FG%

2p%

3p%

FT%

46
5.77
3.11
0.81
0.83
0.15
0.2
0.93
52.4
49.6
58.1
19.6
63.5
45
6.89
2.85
3.15
1.07
0
1
1.89
39.8
29.3
34.3
24.7
71.6
43
5.75
8.14
1.23
0.86
0.56
0.3
1.55
35.1
32.3
35.4
21.1
46.4
35
11.69
4.14
1.2
0.83
0.26
1.8
2.06
50.4
39.8
50.3
30.8
68.1
27
8.54
3.43
1.36
1
0.04
1.9
3.04
38.7
30.1
28.9
30.9
61.5
24
7.52
3.12
1.68
0.33
0
0.6
2.12
43.5
39.9
46.1
24.6
72.7
23
5.7
8.48
1.13
1.17
0.13
0
2.48
38.7
37.7
38
0
41.5
21
3.76
3.57
0.38
0.38
0.14
0.1
0.9
49.4
46.2
51.9
18.2
50
18
4.39
2.39
2.22
1.11
0.06
0.9
0.94
52.7
41.3
56
34
15
1.73
1.87
0.2
0.13
0
0.2
0.93
27.7
23.9
40
11.5
50
14
14.14
4.64
2.64
1.07
0.36
2.7
1.07
50.2
36.6
50.9
30.2
81.3
13
2.08
3.46
0.46
0.31
0
0.4
0.69
23.1
17.6
12.5
26.3
23.5
13
9.23
3.23
2.08
1.31
0.08
1.2
2.77
45.7
38.6
44.7
29.4
70
13
3.85
3.54
0.69
0.38
0
0.3
0.85
34.3
29.7
39.5
15.4
40
13
4.77
11
2.15
1.92
0.46
0.1
1.15
50.7
50.9
51.9
33.3
35.7
4
6.25
4.25
1.75
1
0.25
0.5
3
35.3
31.4
50
11.8
100
3
3.67
1
1
0.33
0
0.3
2.67
33.7
26.7
33.3
16.7
66.7
3
9.67
9
2
2
0
0.3
3.67
55.3
54.2
60
25
40
3
13.33
5
2.33
1
0
1.3
2.33
65.8
61.5
75
40
40
2
2.5
3.5
1
1
0
0.5
0.5
31.3
25
25
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'; } }); });