GDB Career Stats

*minimum GP>=2

Team

Name

Pos

GP

PPG

RPG

APG

SPG

BPG

3PG

TO

TS%

FG%

2p%

3p%

FT%

2PM

2PA

3PM

3PA

FTM

FTA

EFF

Moral Bottom Line
SF
7
2
2.14
0.29
0.29
0.14
0.6
0.86

50.0%

35.7%

33.3%

36.4%

#DIV/0!

0.14

0.43

0.57

1.57

0

0

2.71

Brothers
SG
5
2
1.2
0.2
0.4
0
0.4
0.2

31.3%

25.0%

22.2%

28.6%

#DIV/0!

0.4

1.8

0.4

1.4

0

0

1.2

Matters
PF
8
1.88
4.5
0.38
0.25
0
0.1
0.63

33.0%

23.8%

33.3%

11.1%

100.0%

0.5

1.5

0.13

1.13

0.5

0.5

4.38

男模
G
6
1.83
1.83
0.83
0.83
0.33
0.5
0.83

26.3%

20.0%

14.3%

23.1%

0.0%

0.17

1.17

0.5

2.17

0

0.33

1.83

男模
G
4
1.25
1.5
0.75
0.5
0
0.3
0.75

42.5%

40.0%

25.0%

100.0%

0.0%

0.25

1

0.25

0.25

0

0.5

2

Matters
PG
4
1.25
1
1.25
0.75
0.25
0.3
0.75

22.7%

18.2%

33.3%

12.5%

#DIV/0!

0.25

0.75

0.25

2

0

0

1.5

Matters
PG
9
1.22
2.78
0.89
1.11
0.11
0
0.89

21.4%

20.8%

23.8%

0.0%

25.0%

0.56

2.33

0

0.33

0.11

0.44

2.78

Brothers
PF
5
1.2
1.6
0.4
0.6
0
0
0.4

69.4%

66.7%

66.7%

#DIV/0!

66.7%

0.4

0.6

0

0

0.4

0.6

3

Broncos
C
7
1
3.14
0.43
0.29
0.29
0
1

34.3%

37.5%

37.5%

#DIV/0!

20.0%

0.43

1.14

0

0

0.14

0.71

2.86

Brothers
PG
5
1
1.4
1
1.4
0
0
1.8

10.9%

9.1%

15.4%

0.0%

50.0%

0.4

2.6

0

1.8

0.2

0.4

-1.2

Moral Bottom Line
F
8
0.88
1.5
0.38
0.13
0
0.1
1.25

18.4%

15.8%

20.0%

11.1%

#DIV/0!

0.25

1.25

0.13

1.13

0

0

-0.38

Brothers
SG
4
0.75
1.25
0.25
0
0
0.3
1

13.6%

9.1%

0.0%

12.5%

#DIV/0!

0

0.75

0.25

2

0

0

-1.25

Matters
PG
3
0.67
1.33
0.67
0.67
0
0
0.67

15.5%

16.7%

25.0%

0.0%

0.0%

0.33

1.33

0

0.67

0

0.33

0.67

男模
PG
6
0.67
1.33
0.17
0.33
0
0
0.5

16.7%

16.7%

25.0%

0.0%

#DIV/0!

0.33

1.33

0

0.67

0

0

0.33

// 搜尋功能 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'; } }); });