An open API service indexing awesome lists of open source software.

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

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
```