├── .gitignore ├── .github └── workflows │ ├── publish-catpkg.yml │ ├── ci.yml │ └── chatops.yml ├── README.md ├── Separatist_Alliance.cat ├── Galactic_Republic.cat ├── Galactic_Empire.cat └── Rebel_Alliance.cat /.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore everything 2 | * 3 | 4 | # Don't ignore .git* files 5 | !.gitignore 6 | !.gitattributes 7 | 8 | # Don't ignore catalogues and game system 9 | !*.cat 10 | !*.gst 11 | 12 | # Don't ignore docs 13 | !*.md 14 | 15 | # Don't ignore github files 16 | !/.github 17 | !/.github/** 18 | 19 | # Don't ignore .yml for CI build definitions 20 | !*.yml -------------------------------------------------------------------------------- /.github/workflows/publish-catpkg.yml: -------------------------------------------------------------------------------- 1 | # This workflow adds the necessary assets to every release 2 | # For more details, visit https://github.com/BSData/publish-catpkg 3 | name: Publish catpkg 4 | on: 5 | release: 6 | types: [ published, edited ] 7 | jobs: 8 | publish: 9 | runs-on: ubuntu-latest 10 | steps: 11 | - uses: actions/checkout@v2 12 | - uses: BSData/publish-catpkg@v1 13 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- 1 | # This action continuously checks all pushes and Pull requests 2 | # for validity, integrity and bugs in datafiles. 3 | # For details, visit https://github.com/BSData/check-datafiles 4 | name: CI 5 | on: [ push, pull_request ] 6 | jobs: 7 | build: 8 | runs-on: ubuntu-latest 9 | steps: 10 | - uses: actions/checkout@v2 11 | 12 | - uses: BSData/check-datafiles@v1 13 | id: check 14 | 15 | - uses: actions/upload-artifact@v1 16 | with: 17 | name: artifact 18 | path: ${{ steps.check.outputs.staging-path }} 19 | -------------------------------------------------------------------------------- /.github/workflows/chatops.yml: -------------------------------------------------------------------------------- 1 | # For details and description, see https://github.com/BSData/chatops 2 | name: ChatOps 3 | on: 4 | issue_comment: 5 | types: [created] 6 | jobs: 7 | dispatch: 8 | runs-on: ubuntu-latest 9 | if: startsWith(github.event.comment.body, '/') 10 | steps: 11 | - name: Checkout ChatOps repo 12 | uses: actions/checkout@v2 13 | with: 14 | repository: BSData/chatops 15 | path: chatops 16 | - name: /command dispatch 17 | uses: peter-evans/slash-command-dispatch@v2 18 | with: 19 | token: ${{ secrets.SLASH_COMMAND_DISPATCH_TOKEN }} 20 | config-from-file: chatops/commands.json 21 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Star Wars: Legion 2 | ================= 3 | 4 | #### Contents #### 5 | 6 | * [Overview][] 7 | * [Links][] 8 | 9 | ## Overview ## 10 | [Overview]: #overview 11 | 12 | __What's this?__ 13 | 14 | BSData organisation created this project. It's GitHub repository of datafiles. 15 | Maintained by community, in no way endorsed by BattleScribe. If you want 16 | to develop - cool! We need you! Take a look at [Getting Started wiki][] 17 | 18 | __Okay, nice project. Is it actually working?__ _I just want those files..._ 19 | 20 | Yeah! We have it hosted on AppSpot. Take a look: [BattleScribe Data on Appspot][] 21 | 22 | 23 | ## Links ## 24 | [Links]: #links 25 | 26 | * [BattleScribe homepage][] 27 | * [BattleScribe Data on Appspot][] 28 | * [Getting Started wiki][] 29 | 30 | 31 | [BattleScribe homepage]: http://www.battlescribe.net/ 32 | [BattleScribe Data on Appspot]: http://battlescribedata.appspot.com/#/repos 33 | [Getting Started wiki]: https://github.com/BSData/bsdata/wiki/Home#getting-started 34 | -------------------------------------------------------------------------------- /Separatist_Alliance.cat: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 21 | 48 | 65 | 85 | -------------------------------------------------------------------------------- /Galactic_Republic.cat: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 21 | 48 | 65 | 87 | -------------------------------------------------------------------------------- /Galactic_Empire.cat: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 21 | 38 | 65 | 92 | -------------------------------------------------------------------------------- /Rebel_Alliance.cat: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 31 | 48 | 65 | 95 | --------------------------------------------------------------------------------