https://github.com/hover2pi/overpower_team_builder
Some modules to help build teams for the OverPower CCG
https://github.com/hover2pi/overpower_team_builder
Last synced: 8 months ago
JSON representation
Some modules to help build teams for the OverPower CCG
- Host: GitHub
- URL: https://github.com/hover2pi/overpower_team_builder
- Owner: hover2pi
- Created: 2025-08-01T15:21:13.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-08-01T16:49:47.000Z (11 months ago)
- Last Synced: 2025-08-01T17:38:12.683Z (11 months ago)
- Language: Python
- Size: 7.81 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# overpower_team_builder
Some modules to help build teams for the OverPower CCG.
The primary module allows a user to point to a CSV file of data with columns
'Character', 'Energy', 'Fighting', 'Strength', 'Intellect', 'Threat', and 'Special'
and specify a primary power stat for the team.
The code then builds all possible 16-rank teams of a given stat with at least 3 level-8 characters,
one level 7/8 character, and at least one character with an inherent ability or special card that
allows them to play from reserve.
## Usage
For example, to see all possible "Strength" teams, run:
```
from op_teams import make_overpower_teams
csvfile = 'data/characters.csv'
make_overpower_teams(csvfile, 'Strength')
```
Pass `save=True` to `make_overpower_teams` to save to a CSV file.