Personality Archetypes

Swapped old code (was an AI-generated template, anyway) for the new PersonalityGen-based one.
This commit is contained in:
Tony Bark 2025-04-28 05:58:37 -04:00
parent 83784d2c00
commit eeb30cf67d
3 changed files with 40 additions and 56 deletions

View file

@ -6,7 +6,7 @@ public static class PersonalityGen
const int TotalBudget = 25;
static readonly Random rng = new();
public static PersonalityProfile GeneratePersonalityProfile()
public static PersonalityProfile GenerateRandom()
{
var profile = PersonalityProfile.Create();
var traits = new List<string> { "Outgoing", "Nice", "Playful", "Neat", "Active" };