6
StarHorizon_Public/Tools/dump_patrons.ps1
2025-11-03 10:15:18 +03:00

9 lines
344 B
PowerShell
Executable File

#!/usr/bin/env pwsh
param([string]$csvPath)
# Dumps Patreon's CSV download into a YAML 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 | where-object Tier -ne "" | ConvertTo-Yaml