Moral Bottom Line

Team Stats

Name

GP

PPG

RPG

APG

SPG

BPG

3PG

TS%

FG%

2p%

3p%

FT%

Billy

7

10.43

3.57

1.71

0.57

0.00

1.4

52.1%

42.9%

44.7%

40.0%

56.3%

Boliang Zhang

6

12.50

7.67

1.50

1.33

0.50

1.5

43.5%

34.2%

35.4%

32.1%

60.9%

Evan Zhang

8

3.25

3.13

0.25

0.38

0.13

0.4

28.6%

23.8%

36.8%

13.0%

37.5%

Hanche Liu

7

2.00

2.14

0.29

0.29

0.14

0.6

50.0%

35.7%

33.3%

36.4%

#DIV/0!

Jiale Wei

7

2.14

5.00

0.43

0.14

0.14

0.4

30.0%

24.0%

27.3%

21.4%

#DIV/0!

Shan Huang

4

2.00

3.50

0.50

0.25

0.00

0.0

31.6%

30.0%

30.0%

#DIV/0!

33.3%

Wei Chen

8

0.88

1.50

0.38

0.13

0.00

0.1

18.4%

15.8%

20.0%

11.1%

#DIV/0!

李略

9

5.67

3.89

0.44

0.78

0.00

1.7

34.6%

23.6%

10.0%

28.8%

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