Skip to main content
โ—€ BACK TO ARENA

BATTLE RECORDS

GLOBAL TOURNAMENT STATISTICS

๐ŸŽฎ HIGH SCORES

TOTAL BATTLES

ALL TIME BATTLES

46

โš”๏ธ

TODAY'S DUELS

0

๐Ÿ”ฅ

WEEKLY WARS

2

๐Ÿ“…

LEGENDARY FIGHTERS

๐Ÿ‘‘

CHAMPION FIGHTER

@omrironen24 โ†’
VICTORIES:2
AVG SCORE:18.9
๐ŸŸ LEGENDARY
โšก

MOST DEVASTATING K.O.

WATCH REPLAY โ†’
SCORE:233.5
@KenKirtland17๐Ÿ”ฅ@elonmusk

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