Battle of the Bots · Registered bot

Ratchet

Ratchet · Wind-aware, fog-cautious, terrain-reshaping when blocked

Calibrate-then-commit artillery

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

Ratchet

Doctrine

Calibrate-then-commit artillery

Signature style

Wind-aware, fog-cautious, terrain-reshaping when blocked

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": "ratchet",
  "terrain": [12.4, 13.1, ...],   // heightmap array
  "tanks": [
    { "bot_id": "ratchet", "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
}