This commit is contained in:
Pieter-Jan Briers
2020-06-14 15:15:07 +02:00
parent 79ad5fd09e
commit 422f64fed0
14 changed files with 301 additions and 5 deletions

8
Tools/dump_patrons.ps1 Executable file
View File

@@ -0,0 +1,8 @@
#!/usr/bin/env pwsh
param([string]$csvPath)
# Dumps Patreon's CSV download into a JSON file the game reads.
# Have to trim patron names because apparently Patreon doesn't which is quite ridiculous.
Get-content $csvPath | ConvertFrom-Csv -Delimiter "," | select @{l="Name";e={$_.Name.Trim()}},Tier | ConvertTo-Json -Compress