An easy-to-use collection of data and images from the Imperial Assault game by Fantasy Flight Games.
In the data
directory you will find all the data for the game in JSON formatted files.
The data structure loosely mimics that of a relational database.
For example, with the .data/source-contents.json
file you can determine the contents of a particular product by filtering the entries by source_id
.
You can find an example on how to do this in the ./examples
folder, along with other examples.
All entries have an associated image (or 2) that you can find inside the ./images/large
(for high resolution images) and the ./images/small
folder (for low resolution images).
The images rotated and aligned so that they are not askew, and they all have consistent sizes (check the Image Sizes section for more on this).
There are several ways you could include this in your project.
git submodule add https://github.com/lvisintini/imperial-assault-data.git
I do not know what would be the best way to distribute these assets, as they are meant to be cross platform.
I this regard, the project is open to suggestions
Please open a ticket on Github.
git checkout -b my-new-feature
git commit -m 'Add some feature'
git push origin my-new-feature
When adding images please use TinyPNG to reduce their file size as much as possible without affecting image quality.
If you want to contribute to the project and you know how to program in python, you may be interesting on setting up a development environment, although this is optional.
git clone git@github.com:lvisintini/imperial-assault-data.git
cd ./imperial-assault-data
sudo add-apt-repository ppa:jonathonf/python-3.6
sudo apt update
sudo apt install python3.6
sudo apt install python3.6-dev virtualwrapper
mkvirtualenv --python=/usr/bin/python3.6 imperial-assault-data
pip install -r requirements.txt
py.test
Each change in the dataset is checked against a multitude of test that are meant to preserve the integrity of the data. This is done automatically for each code change on this repo.
Alternatively, you can also run the test suit yourself by setting up your environment and running py.test
This project uses SemVer. Given a MAJOR.MINOR.PATCH
version number, we will increment the:
MAJOR
version when existing content is changed in such a way that it can break consumers of the dataMINOR
version when new content is added in a backwards-compatible manner, or existing content is changed in a backwards-compatible mannerPATCH
version when fixing mistakes in existing contentThe initial load of images and data was put together by scraping http://cards.boardwars.eu/, I do not know this guys personally, but I'm grateful to them for putting together such a great source of data.
What follows is a list of all the image types and their sizes for large and small.
Large | Small | |
---|---|---|
Source | 300x300 | 300x300 |
Standard | 476x740 | 301x470 |
Mini | 424x657 | 293x454 |
Mini (Flipped) | 657x424 | 454x293 |
Hero Sheet | 1490x1186 | 650x515 |
The table bellow shows you the expected sizes for all the different images included in this data set.
Source | Standard | Mini | Mini (Flipped) | Hero Sheet | Any | |
---|---|---|---|---|---|---|
sources.image | ✔ | |||||
skirmish-maps.image | ✔ | |||||
agenda-cards.image | ✔ | |||||
command-cards.image | ✔ | |||||
condition-cards.image | ✔ | |||||
deployment-cards.image | ✔ | |||||
heroes.healthy | ✔ | |||||
heroes.wounded | ✔ | |||||
hero-class-cards.image | ✔ | |||||
imperial-class-cards.image | ✔ | |||||
supply-cards.image | ✔ | |||||
story-mission-cards.image | ✔ | |||||
side-mission-cards.image | ✔ | |||||
reward-cards.image | ✔ | |||||
companion-cards.image | ✔ | |||||
upgrade-cards.image | ✔ | |||||
threat-mission-cards.image | ✔ | |||||
form-cards.image | ✔ | |||||
card-backs.image(agenda-decks) | ✔ | |||||
card-backs.image(command-cards) | ✔ | |||||
card-backs.image(companion-cards) | ✔ | |||||
card-backs.image(condition-cards) | ✔ | |||||
card-backs.image(deployment-cards) | ✔ | |||||
card-backs.image(imperial-classes) | ✔ | |||||
card-backs.image(heroes) | ✔ | |||||
card-backs.image(upgrade-cards) | ✔ | |||||
card-backs.image(reward-cards) | ✔ | |||||
card-backs.image(supply-cards) | ✔ | |||||
card-backs.image(side-mission-cards) | ✔ | |||||
card-backs.image(story-mission-cards) | ✔ | |||||
card-backs.image(threat-mission-cards) | ✔ | |||||
card-backs.image(form-cards) | ✔ |
This project is not produced, endorsed, supported, or affiliated with Fantasy Flight Games.
The copyrightable portions of Star Wars: Imperial Assault and its expansions are © 2014 - 2018 Fantasy Flight Publishing, Inc. Star Wars, and the characters, items, events and places therein are trademarks or registered trademarks of Lucas Film Limited and are used, under license, by Fantasy Flight Games.
All Rights Reserved to their respective owners.