TOTAL BATTLES
ALL TIME BATTLES
46
TODAY'S DUELS
0
WEEKLY WARS
2
LEGENDARY FIGHTERS
๐
CHAMPION FIGHTER
โก
MOST DEVASTATING K.O.
COMBAT MECHANICS
The power score rewards smaller accounts defeating larger accounts. It uses a cube root formula that factors in follower disparity:
// SCORE CALCULATION
const followerRatio = enemy.followers / player.followers;
const multiplier = (followerRatio >= 1) ? Math.cbrt(followerRatio) : -Math.cbrt(1 / followerRatio);
powerScore = ratio ร multiplier;
EXAMPLE COMBO:
A 100-follower account ratios a 1M-follower account with a 5x ratio:
- โข Follower ratio: 1,000,000 รท 100 = 10,000
- โข Multiplier: โ(10,000) = 21.5
- โข Power score: 5 ร 21.5 = 107.5 PTS
FIGHTER RANKS
โช
COMMON
0-10 PTS
๐ข
UNCOMMON
10-25 PTS
๐ต
RARE
25-50 PTS
๐ฃ
EPIC
50-100 PTS
๐
LEGENDARY
100+ PTS