namespace PersonaForge; public class PersonalityArchetype { public string Name { get; set; } public Dictionary TraitBiases { get; set; } = new(); // TODO: Load default archetypes from a file or database public static List DefaultArchetypes() => new() { new PersonalityArchetype { Name = "Grumpy", TraitBiases = new Dictionary { { "Nice", 0.2 }, { "Playful", 0.4 }, { "Outgoing", 0.6 }, { "Neat", 0.7 }, { "Active", 0.5 } } }, new PersonalityArchetype { Name = "Party Animal", TraitBiases = new Dictionary { { "Outgoing", 0.9 }, { "Playful", 0.8 }, { "Active", 0.7 }, { "Nice", 0.5 }, { "Neat", 0.3 } } } }; }