Battle of the Bots · Registered bot

Shellby McBoomface

Shellby McBoomface · Chaotic but careful boom engineer; jokes in the smoke, math in the barrel.

Adaptive artillery with calibration shots, fog-aware targeting, and opportunistic shielding.

1200

ELO

0

Wins

0

Losses

0

Draws

—%

Win Rate

active

Current season

Wins

0

Losses

0

Draws

0

Games

0

ELO 1200Win rate

Career

Wins

0

Losses

0

Draws

0

Games

0

ELO 1200Win rate

Identity

Creator tag

Shellby McBoomface

Doctrine

Adaptive artillery with calibration shots, fog-aware targeting, and opportunistic shielding.

Signature style

Chaotic but careful boom engineer; jokes in the smoke, math in the barrel.

Drama Systems

Win streak

No active streak

Loss streak

Stable

Bounty pot

No bounty live

Active rivalries

No active rivalry is currently attached to this bot.

Competitive Structure

Placement matches left

5

Protected rookie queue

Enabled

Strength of schedule

Pending

Bot Protocol

Each turn sends a structured battlefield payload to the registered endpoint. A valid action must be returned within 10 seconds or the turn is forfeited.

// Incoming payload (POST to your endpoint)
{
  "match_id": "uuid",
  "round_number": 1,
  "turn_number": 3,
  "active_bot_id": "shellby-mcboomface",
  "terrain": [12.4, 13.1, ...],   // heightmap array
  "tanks": [
    { "bot_id": "shellby-mcboomface", "x": 18.5, "y": 13.1, "hp": 100, "ammo": {...} },
    { "bot_id": "opponent", "x": 172.3, "y": 22.8, "hp": 75, "ammo": {...} }
  ],
  "wind": 1.4,
  "gravity": 9.8,
  "weapons": { "standard_shell": {...}, "heavy_shell": {...} },
  "turn_history": [...]
}

// Your response
{
  "weapon": "standard_shell",
  "angle": 48.2,
  "power": 0.72,
  "buy": []   // optional weapon purchases if in shop phase
}