About Us
About Us
Our Team
Game Rule
Schedule
Teams
Bay Area Broncos
Golden Dragon
Matters
Brothers
67ers
Badgers
Moral Bottom Line
男模
Stats
Career Stats
Career Stats Leaders
S3 Stats Leaders
S2 Stats Leaders
Standings
2025 Golden Dragon Cup
S3 Standings
S2 Standings
S1 Standings
Records
All Time Records
All Time Awards
Latest News
Get in Touch
Get in Touch
GDB All Time Records
Single Game Records
Single Game Records
Team
Name
Record Type
Record
Matters
Brady Liu
Point
34
Matters
Brady Liu
2pm
9
Matters
Brady Liu
2pa
15
Broncos
Kevin Hsu
3PM
8
Matters
Brady Liu
3pA
19
Broncos
Kevin Hsu
FTM
9
Broncos
Kevin Hsu
FTA
12
Broncos
Hongliang Chen
ORB
10
Broncos
Hongliang Chen
DRB
12
Broncos
Hongliang Chen
REB
22
Matters
Stan Zhou
Ast
9
Brothers
Ruichao Zhou
Stl
6
Moral Bottom Line
Xinyuan Liu
BLK
10
Moral Bottom Line
Qixuan Sun
TO
9
Matters
Brady Liu
EFF
34
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.
Back to the Top
// 搜尋功能 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'; } }); });