diff --git a/PersonaForge.csproj b/PersonaForge.csproj index c1b130b..2e18e02 100644 --- a/PersonaForge.csproj +++ b/PersonaForge.csproj @@ -2,7 +2,7 @@ Exe - 0.4.101 + 0.4.102 net9.0 enable enable diff --git a/Program.cs b/Program.cs index 80901dd..4631eb2 100644 --- a/Program.cs +++ b/Program.cs @@ -18,7 +18,7 @@ foreach (var archetype in archetypeList) archetypeDict.Add(archetype.Name, archetype.TraitBiases); } -Console.Write("Enter archetype: "); +Console.Write("Choose an Archetype (or 'Random'): "); string archetypeInput = Console.ReadLine() ?? "Random"; if (!archetypeDict.ContainsKey(archetypeInput)) { @@ -26,6 +26,7 @@ if (!archetypeDict.ContainsKey(archetypeInput)) archetypeInput = "Random"; } +Console.WriteLine($"{Environment.NewLine}Generating {archetypeInput} profile..."); var qualities = PersonalityGen.GenerateRandom(archetypeDict[archetypeInput]); var profile = new PersonaProfile { @@ -34,7 +35,7 @@ var profile = new PersonaProfile Archetype = archetypeInput }; -Console.WriteLine($"{name}'s Profile{Environment.NewLine}{PersonaProfile.ToJson(profile)}"); +Console.WriteLine($"{Environment.NewLine}--- Generated Profile ---{Environment.NewLine}{PersonaProfile.ToJson(profile)}"); Console.Write("Save profile? (y/n): "); var saveInput = Console.ReadLine()?.Trim().ToLowerInvariant();