San Jose High

Matters Win

Jan.21, 2025 9:00

Moral Bottom Line
28
82
Matters

Team

Q1

Q2

Q3

Q4

OT

Total

Moral Bottom Line

13

6

4

5

28

Matters

25

19

21

17

82

Player of the Game

Name

Pts

Reb

ASts

Stls

Blks

EFF

Brady

34

13

3

1

0

34

Box Score

Moral Bottom Line

Player

Pts

2PM

2PA

2P%

3PM

3PA

3p%

FTM

FTA

FT%

ORB

DRB

TRB

AST

STL

BLK

TOV

EFF

Jiale Wei

7

2

4

50.0%

1

6

16.7%

0

0

2

11

13

1

0

0

3

11

Xinyuan Liu

0

0

2

0.0%

0

5

0.0%

0

0

1

9

10

2

2

1

0

8

李略

3

0

2

0.0%

1

8

12.5%

0

0

0

4

4

0

0

0

0

-2

Evan Zhang

2

1

4

25.0%

0

4

0.0%

0

2

0.00%

0

5

5

0

1

0

2

-3

Wei Chen

2

1

4

25.0%

0

2

0.0%

0

0

1

3

4

0

0

0

4

-3

Qixuan Sun

14

1

6

16.7%

3

10

30.0%

3

4

75.00%

0

3

3

1

1

0

9

-3

Total

28

5

22

22.7%

5

35

14.3%

3

6

50.00%

3

26

39

4

4

1

18

Box Score

Matters

Player

Pts

2PM

2PA

2P%

3PM

3PA

3p%

FTM

FTA

FT%

ORB

DRB

TRB

AST

STL

BLK

TOV

EFF

Brady Liu

34

9

15

60.0%

5

15

33.3%

1

2

50.00%

1

12

13

3

1

0

0

34

Stan Zhou

17

5

9

55.6%

2

7

28.6%

1

3

33.33%

2

9

11

9

5

0

2

29

Ruoxi Zhang

3

0

4

0.0%

1

4

25.0%

0

0

1

11

12

5

4

0

1

16

Haozhen Wang

20

5

9

55.6%

2

5

40.0%

4

5

80.00%

2

1

3

0

1

0

1

15

Zichu Wang

8

4

8

50.0%

0

1

0.0%

0

2

0.00%

1

4

5

2

5

1

1

13

Total

82

23

45

51.1%

10

32

31.3%

6

12

50.00%

6

25

44

19

16

1

5

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