Attachment stats and other stuff for Deadline.
Contains information about stats, gameplay, mechanics, and more.
https://github.com/recoil-group/deadline-balancing/wiki
Master balancing sheet. Should always be up to date with the latest changes.
Testing sheet. Gets imported into dev branch when updated.
Folder containing all change sheets. These are used to balance groups of attachments to then be ported into balancing.csv
.
Folder containing all generated changelog markdown files.
Folder containing all balancing sheets from previous versions. These are used to generate changelogs.
Script to port changes from a change sheet into balancing.csv
or testing.csv
. Usage:
python port.py (change sheet) (target sheet) [header row]
python port.py "changes/changes.csv" "testing.csv" 2
name
column, make sure those are included in the change sheet.[header row]
is the row # of the column headers in the change sheet. Useful for extra labels or dates above the headers. Optional, defaults to 1.Script to compare two sheets and output a changelog. Usage:
python changelog.py (old sheet) (new sheet)
python changelog.py "archive/old-sheet.csv" "balancing.csv"
changelogs/version-changelog.md
.name
column.pretty_name
column for display in the changelog, falling back to name
.Basically changelog.py but for comparing smaller change sheets. Usage:
python diff.py (old sheet) (new sheet)
python diff.py "old-sheet.csv" "changes/new-sheet.csv"
diffs/new-sheet.md
.name
column.pretty_name
column for display in the changelog, falling back to name
.