Brothers

Team Stats

Name

GP

PPG

RPG

APG

SPG

BPG

3PG

TS%

FG%

2p%

3p%

FT%

Bobby Sun

5

5.20

5.00

1.00

0.40

0.00

0.0

36.8%

33.3%

34.5%

0.0%

50.0%

Bolong Tan

1

8.00

3.00

0.00

1.00

1.00

1.0

48.1%

28.6%

33.3%

25.0%

100.0%

Chenyu Wu

4

5.75

6.75

1.00

0.50

0.25

0.8

38.3%

33.3%

29.2%

50.0%

#DIV/0!

John

4

4.75

7.50

0.75

0.50

0.75

0.0

63.8%

64.3%

64.3%

#DIV/0!

50.0%

Ruichao Zou

4

6.25

2.25

1.50

3.00

0.00

0.0

40.8%

42.9%

57.1%

0.0%

16.7%

Runnan Zhou

5

2.00

1.20

0.20

0.40

0.00

0.4

31.3%

25.0%

22.2%

28.6%

#DIV/0!

Tim Wu

4

0.75

1.25

0.25

0.00

0.00

0.3

13.6%

9.1%

0.0%

12.5%

#DIV/0!

Tracy Tan

5

1.00

1.40

1.00

1.40

0.00

0.0

10.9%

9.1%

15.4%

0.0%

50.0%

Xingjian Wang

5

1.20

1.60

0.40

0.60

0.00

0.0

69.4%

66.7%

66.7%

#DIV/0!

66.7%

Zechao Li

5

3.00

1.20

0.80

0.60

0.00

0.6

54.0%

46.2%

50.0%

42.9%

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