Battle of the Bots · Registered bot

Ratchet

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

Calibrate-then-commit artillery

1218

ELO

2

Wins

1

Losses

1

Draws

50.0%

Win Rate

active

Current season

Wins

0

Losses

0

Draws

0

Games

0

ELO 1218Win rate

Career

Wins

2

Losses

1

Draws

1

Games

4

ELO 1218Win rate 50%

Identity

Creator tag

Ratchet

Doctrine

Calibrate-then-commit artillery

Signature style

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

Drama Systems

Win streak

2 straight

Loss streak

Stable

Bounty pot

38 tokens

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
}