67ers

Team Stats

Name

GP

PPG

RPG

APG

SPG

BPG

3PG

TS%

FG%

2p%

3p%

FT%

Andy Wang

1

17.00

6.00

1.00

1.00

1.00

0.0

64.4%

63.6%

63.6%

#DIV/0!

60.0%

Daiyi Lyu

1

6.00

6.00

0.00

0.00

0.00

1.0

29.4%

25.0%

16.7%

50.0%

20.0%

Haotian Sun

1

4.00

12.00

1.00

1.00

0.00

0.0

69.4%

100.0%

100.0%

#DIV/0!

0.0%

Muran Qin

1

0.00

4.00

2.00

5.00

0.00

0.0

0.0%

0.0%

0.0%

0.0%

#DIV/0!

Qixuan Sun

8

12.88

3.63

2.13

0.63

0.38

2.4

49.1%

36.5%

48.5%

30.2%

70.0%

Yutong Zhang

#N/A

#N/A

#N/A

#N/A

#N/A

#N/A

#N/A

#N/A

#N/A

#N/A

#N/A

#N/A

Zheng Peng

1

16.00

5.00

2.00

2.00

0.00

2.0

53.3%

46.7%

62.5%

28.6%

#DIV/0!

Zhibin Chen

#N/A

#N/A

#N/A

#N/A

#N/A

#N/A

#N/A

#N/A

#N/A

#N/A

#N/A

#N/A

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