https://github.com/issung/wantedminigame
A web recreation of the "Wanted!" minigame from Super Mario 64 DS
https://github.com/issung/wantedminigame
Last synced: 12 months ago
JSON representation
A web recreation of the "Wanted!" minigame from Super Mario 64 DS
- Host: GitHub
- URL: https://github.com/issung/wantedminigame
- Owner: Issung
- Created: 2024-12-01T00:28:33.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-01T01:23:28.000Z (over 1 year ago)
- Last Synced: 2025-06-18T07:59:18.327Z (about 1 year ago)
- Language: TypeScript
- Size: 50.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Wanted! Minigame
A web recreation of the "Wanted!" minigame from Super Mario 64 DS
The game currently has no graphics, just plain squares to avoid copyright/legal issues with Nintendo.
## Development
The game works with HTML elements, e.g. each head is an `
`, rather than drawing everything to a canvas.
Levels are implemented as classes that implement the *Level* interface, they provide a desired headcount, initialise function & update function.
Everything is frame-rate independent by tracking elapsedTime/deltaTime and using it in movement calculations.
The game is built with dev dependencies vite & typescript but builds with no dependencies (and I want to keep it that way).
Main branch is deployed automatically via cloudflare pages at https://wantedminigame.pages.dev.
To run locally:
* `npm i`
* `npm run dev`