https://github.com/johnarp/hero-creator
Create your own Marvel Rivals Hero concepts
https://github.com/johnarp/hero-creator
Last synced: 3 months ago
JSON representation
Create your own Marvel Rivals Hero concepts
- Host: GitHub
- URL: https://github.com/johnarp/hero-creator
- Owner: johnarp
- License: mit
- Created: 2026-04-07T15:46:09.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2026-04-08T18:50:15.000Z (3 months ago)
- Last Synced: 2026-04-08T20:26:01.918Z (3 months ago)
- Language: JavaScript
- Homepage: https://johnarp.github.io/hero-creator/
- Size: 306 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Notice: NOTICE
Awesome Lists containing this project
README
# Hero Creator
**Create your own Marvel Rivals Hero concepts.**

## To Do
- [x] Styling
- [x] Separate CSS & JS from HTML
- [x] Images
- [x] Improved UI
- [ ] Styled buttons for concept
- [ ] Templates/presets
## Structure
```powershell
hero-creator/
├── index.html ← shell: nav + #app div + script tags
├── css/
│ └── style.css ← all styles
├── js/
│ ├── storage.js ← localStorage, import/export JSON
│ ├── app.js ← view router (fetch-based), esc/starsStr helpers, init
│ ├── concepts.js ← grid, detail view, delete
│ └── edit.js ← create/edit form, addRow, save
└── views/
├── concepts.html ← just the grid div
├── detail.html ← banner + ability/teamup tables
├── edit.html ← the full edit form
└── settings.html ← import/export UI
```