男模

Team Stats

Name

GP

PPG

RPG

APG

SPG

BPG

3PG

TS%

FG%

2p%

3p%

FT%

Aoran Xu

5

7.00

4.20

1.20

0.40

0.00

0.6

36.5%

31.9%

42.9%

15.8%

100.0%

Bowen Yang

2

2.00

1.50

1.00

1.00

0.00

0.0

22.2%

22.2%

22.2%

#DIV/0!

#DIV/0!

Han Sun

#N/A

#N/A

#N/A

#N/A

#N/A

#N/A

#N/A

#N/A

#N/A

#N/A

#N/A

#N/A

Michael Lu

5

8.20

3.60

3.00

3.00

0.00

0.4

54.1%

53.3%

58.3%

33.3%

38.9%

Qingli Yang

4

1.25

1.50

0.75

0.50

0.00

0.3

42.5%

40.0%

25.0%

100.0%

0.0%

Sherwin Xia

1

2.00

6.00

0.00

0.00

0.00

0.0

50.0%

50.0%

50.0%

#DIV/0!

#DIV/0!

Tairan Jin

6

0.67

1.33

0.17

0.33

0.00

0.0

16.7%

16.7%

25.0%

0.0%

#DIV/0!

Wentao Wang

5

9.00

7.20

1.40

1.00

1.60

0.6

44.9%

42.6%

56.7%

17.6%

28.6%

Xintao 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

Yang Song

#N/A

#N/A

#N/A

#N/A

#N/A

#N/A

#N/A

#N/A

#N/A

#N/A

#N/A

#N/A

You Yao

5

2.60

2.00

0.60

0.40

0.00

0.2

28.3%

26.1%

25.0%

33.3%

#DIV/0!

Yunlu Li

6

2.83

4.17

0.83

0.83

0.50

0.0

34.3%

31.3%

33.3%

0.0%

35.0%

Yuxiang Chen

2

5.50

1.00

0.00

0.50

0.00

0.5

29.1%

22.2%

23.1%

20.0%

100.0%

Zhirong dai

#N/A

#N/A

#N/A

#N/A

#N/A

#N/A

#N/A

#N/A

#N/A

#N/A

#N/A

#N/A

Zihanni

4

6.00

3.75

2.25

1.00

0.25

0.5

47.6%

43.5%

57.1%

22.2%

40.0%

qing zhong

6

1.83

1.83

0.83

0.83

0.33

0.5

26.3%

20.0%

14.3%

23.1%

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