Alien Pinball Postmortem: Full Physics Pinball Game Built with Claude + AI Toolchain

A developer (u/Slackluster) posted a detailed postmortem on r/ClaudeAI about building Alien Pinball — a fully physics-driven browser pinball game — using Claude Code Max (Opus model), ChatGPT image gen, Suno music, and the LittleJS engine with Box2D WASM. The game features multiball, rollover multiplier, skill shots, combos, outlane gutter saves, and a wizard-mode centipede boss. Playable at itch.io/focaccai.
Key Workflow Details
- Code: Claude Code Max (Opus) for all game logic, custom Box2D parts (slingshots, drop targets, spinners, ramps, ball locks, break targets), and a full in-game table editor for drag/place/tuning.
- Art: ChatGPT image gen with prompts written by Claude — used a silhouette of collision geometry (walls, ramps, bumpers) as prompt input so the art matches physics exactly. Took multiple generations plus manual compositing.
- Music: Suno 5.5 — three tracks, prompts written by Claude.
- Sounds: ZzFX — all sounds generated procedurally at game start, no audio files. Claude tuned parameters iteratively.
- Engine: LittleJS + Box2D WASM. Small, fast, AI-friendly due to minimal API surface.
- Input: ~50% speech-to-text, rest manual typing + code editing.
Design Insights
- The bumpers being giant eyeballs came from an AI image generation — the developer ran with it.
- Claude acted as a pinball domain consultant: asked it questions like "what does a complete pinball table have?" and "how should wizard mode work?" to fill genre conventions.
- AI debug player auto-flips and knocks the ball around — useful for observation/ideation.
- Alien centipede boss worked first try: multi-segmented, loses tail segments on hit, speeds up and turns red.
Human-Only Parts
- Feel: Restitution values, flipper torque, ramp curvature, slingshot kick angles, peg bounce. Git log had many commits like "tweak peg bounce" and "1.49 → 1.491".
- Polish tail: Last week was sound passes, ramp angles, message priorities, and a multiball end-check race condition. All small, none optional.
The developer reports the experience felt like co-development rather than code generation — describing what they want, riffing with Claude, then diving in by hand to steer or clean up.
📖 Read the full source: r/ClaudeAI
👀 See Also

Claude Opus 4.6 Reverse Engineers Game Authentication in 7 Minutes Using Ghidra MCP
A developer used Claude Opus 4.6 with Ghidra's MCP server plugin to reverse engineer the authentication verification method for Command & Conquer: Kane's Wrath. The AI analyzed a clean binary, identified the verification function, created a patch, and renamed all functions and data structures in about 7 minutes.

Modified vLLM 0.17.0 runs on Tesla P40 for real-time transcription with Qwen3 ASR 1.7B
A developer modified vLLM 0.17.0 to run on Pascal architecture Tesla P40 GPUs, achieving near-complete hardware acceleration for real-time lecture transcription using the Qwen3 ASR 1.7B model. The fork is available on GitHub.

Rebuilding an Automated Video Production Pipeline with OpenClaw
A developer rebuilt an automated video production pipeline using OpenClaw, yt-dlp, ffmpeg, and ElevenLabs. The new version analyzes scripts to find relevant footage, syncs clips to voiceover timing, and caps clip length to prevent visible looping.

Using Claude, Gemini, and GPT for AI-Assisted Coding Tasks
Discover how combining Claude, Gemini, and GPT can enhance AI coding workflows by leveraging their unique access capabilities for specific tasks.