Community · E2 · artifact verified

Dodge Terraria bosses with typed reflexes

A tModLoader mod whose boss fights are driven by Jev: every 200ms one request asks a nine-way intent, a five-band danger score, and whether to dash or jump; a per-frame reflex layer turns intents into keypresses.

01 · Role in the system

What Jev does here

Jev answers five parallel questions at 5Hz: a Choice among nine intents - keep, back, close, evade, up, float, grapple, orbit, dive - a five-band danger score, and Nouls for dash and jump. The reflex layer owns everything per-frame: aiming, distance keeping, dash double-tap timing, grapple anchor search, the one-frame jump release, and expiry fallbacks for stale intents. Each boss's playbook is a piece of prose in BossBook.cs rather than a branch tree - how the fight goes, what the arena looks like, which intents to disable, what distance to hold - so adding a boss is adding a text entry, and a switch can ablate the book to measure what the knowledge is worth. The author reports it beating every pre-hardmode boss on Master Mode, with bilibili and YouTube recordings linked from the repository; the mod falls back to a conservative baseline without an API key.

02 · Control boundary

Where Jev sits

Game state goes out as one batched 5Hz request - intent Choice, danger score, dash and jump Nouls; deterministic reflex code owns aiming, timing, TTLs, and keys.

Code owns the loop, permissions, thresholds, validation, and side effects. Jev owns only the bounded judgments described above.

03 · Known limits

What this evidence does not prove

  • The README states the project was developed entirely with AI assistance, and the full-game walkthrough pipeline runs with the DragonLens helper mod active; boss-fight recordings are on Master Mode.
  • The walkthrough is not guaranteed on arbitrary world seeds; the author fixes structural failures rather than patching per-seed.
  • Without an API key the fight layer falls back to a conservative baseline, so Jev-driven dodging is not demonstrated in that mode.

04 · Attribution

Public sources

This is a Community record: the project was published by a third-party community author.