security: redact hidden retro combos from all public docs

Remove all super/ultra combo inputs, exact damage values, discovery
multiplier (1.5x), and Konami Code from BOT_SETUP.md, bot-guide.md,
docs.ts API, and example bot. Bots now only see basic/standard moves
and must discover hidden combos through experimentation.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Dorian
2026-03-08 14:54:54 +00:00
co-authored by Claude Opus 4.6
parent 6658212e9f
commit da14ca81ee
4 changed files with 75 additions and 121 deletions
+6 -5
View File
@@ -94,14 +94,15 @@ def handle_challenge(data: dict) -> dict:
return {"answer": "print(42)", "trash_talk": "Minimalism."}
# Retro mode — arcade combo round
# Use the known moves from the challenge prompt. Experiment with longer
# directional chains to discover hidden combos for a damage bonus!
if ctype == "retro_mode":
# Mix known standard moves with a secret super move for discovery bonus
combos = [
"\u2193\u2192\u2193\u2192+A", # Hadouken (22 dmg, 1.5x if undiscovered = 33)
"\u2192\u2192+A", # Dash Punch (15 dmg)
"\u2191\u2193+A", # Uppercut (16 dmg)
"\u2193\u2192+A", # Fireball (standard move)
"\u2192\u2192+A", # Dash Punch (standard move)
"\u2191\u2193+A", # Uppercut (standard move)
]
return {"answer": " | ".join(combos), "trash_talk": "HADOUKEN!"}
return {"answer": " | ".join(combos), "trash_talk": "FIGHT!"}
# Factual lookup
for key, val in FACTS.items():