Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 1.36 KB

File metadata and controls

31 lines (21 loc) · 1.36 KB

bga-zerodown

Board Game Arena adaptation of the card game ZeroDown (aka. Zero, aka. CatAssTrophy)

Reminders

Create sprite of cards

  1. Install inkscape CLI (included in the GUI)
  2. Install magick CLI (for Mac: brew install imagemagick)
  3. Create *.png images from *.svg files:
    inkscape -w 150 -h 232 --export-type="png" $(ls *.svg)
  4. Create cards.png sprite from *.png images:
    magick montage $(ls *_blue_*.png) $(ls *_brown_*.png) $(ls *_gray_*.png) $(ls *_green_*.png) $(ls *_pink_*.png) $(ls *_red_*.png) $(ls *_yellow_*.png) $(ls *_back.png) -tile 8x8 -geometry +0+0 -mode concatenate -background none oliboy50_cards.png
  5. Reduce production images size by ~90% (using https://tinypng.com or https://compresspng.com if the file is too large)

License

Original board game

See ZeroDown on BoardGameGeek to see who designed/published the original card game.

Board Game Arena adaptation (this repository)

What is contained in the second git commit (named feat: init project from BGA generated code) is licensed under LICENCE_BGA file (this is the source code generated by the Board Game Arena framework).

The rest is licensed under GPLv3, credits go to the git commits author. - See LICENSE.md file.