Get overview of your Gloomhaven character ability cards. See here: https://siims.github.io/gloomhaven-card-visualizer/
I love overviews and hate physical routine tasks. It takes some tedious work to lay out all ability cards to pick for scenario.
Either
a) create a pull request or
b) create an issue
node v8+ and npm 6+
npm install
npm run start
# open browser and visit http://localhost:3000/
- Add json data file to
src/data/(follow existing examples there) src/models/Character.tsadd new type to CharacterType type and CharacterTypes arraysrc/stores/CharacterDataStore.tsimport newly created data file and insert a line (this.setCharacter(this.transformToCharacter(yourCharData))) to methodloadCharacterData- get your character ability card png images
- character cards' pdf from https://drive.google.com/drive/folders/1pZulOYdbWcVbpArpU8AL39k2yDuqmon-
for f in QM.pdf; do pdftocairo $f -png -scale-to 350; done- rename all cards to have card's name
- copy images to
public/static/images/cards/ - that is all, enjoy!
There is a separate branch gh-pages that is served by github. Updating goes in 7 steps:
git checkout gh-pages
git merge master # have latest state
npm run build
rm -r static/ # cleanup previous build files
rsync -a build/* . # make page available on root, not under build
git add -A .
git commit -m "github pages build update"
git push origin gh-pages
@saizai for work with gloomhaven tabletop simulator assets (https://drive.google.com/drive/folders/1SiXb3u2mJbN-Dg2j3Rb-y5amnRJSXIDc) - I never would have bothered to do media processing.