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
All Time Awards
Team Awrards
All Pro Team
1st Team
2nd Team
3rd Team
Stat Leaders
Points
Rebounds
Assists
Steals
Blocks
3 Points
Team Awards
Team
Name
Season
Bay Area Broncos
Haofan,Kevin,Jason,Powei,Ray,嘉豪,Suhao,Gary,Kehan,Eric
S1
Matters
Brady Liu, Dui Lin, Haoming Zhang, Haozhen Wang, Hongpu Gong, Ming Jiang, Po-jen Lai, Ruoxi Zhang,Stan Zhou, Yanming Zhang, Yiyang Wang, Zichu Wang, Zirui li, 喻熹
S2
FMVP
Team
Name
Season
Bay Area Broncos
Haofan
S1
Matters
Stan Zhou
S2
All Pro 1st Team
Team
Name
Season
Bay Area Broncos
Haofan
S1
Matters
Hongpu
S1
Matters
Brady
S1, S2
Moral Bottom Line
Qixuan
S1
Brothers
Lucas
S1
Bay Area Golden Dragon
Jason
S2
Matters
Stan Zhou
S2
Bay Area Broncos
Hongliang Chen
S2
男模
David Liu
S2
All Pro 2nd Team
Team
Name
Season
Bay Area Broncos
Kevin
S1,S2
Moral Bottom Line
Boliang
S1
Bay Area Broncos
Jason
S1
Bay Area Broncos
Eric
S1
Bay Area Golden Dragon
Penny
S1
Matters
Hongpu
S2
Bay Area Golden Dragon
Shuyu
S2
男模
Wentao Wang
S2
男模
Michael Lu
S2
All Pro 3rd Team
Team
Name
Season
Moral Bottom Line
Qixuan Sun
S2
Bay Area Broncos
Ray
S2
Bay Area Golden Dragon
Lucas Li
S2
Matters
Haoming Zhang
S2
Bay Area Golden Dragon
Eric
S2
Bay Area Golden Dragon
Penny
S2
Stats Leaders- Points
Moral Bottom Line
Qixuan
S1
Matters
Brady
S2
Stats Leaders- Rebounds
Matters
Hongpu
S1
Bay Area Broncos
Hongliang Chen
S2
Stats Leaders- Assists
Bay Area Golden Dragon
Jing
S1
Matters
Stan Zhou
S2
Stats Leaders- Steals
Brothers
Ruichao
S1
男模
Michael Liu
S2
Stats Leaders- Blocks
Matters
Hongpu
S1
Moral Bottom Line
Xinyuan Liu
S2
Stats Leaders- 3 Points
Matters
Brady
S1, S2
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'; } }); });