namespace PersonaForge; public class Archetypes { 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 Archetypes { Name = "Grumpy", TraitBiases = new Dictionary { { "Nice", 0.2 }, { "Playful", 0.4 }, { "Outgoing", 0.6 }, { "Neat", 0.7 }, { "Active", 0.5 } } }, new Archetypes { Name = "Party Animal", TraitBiases = new Dictionary { { "Outgoing", 0.9 }, { "Playful", 0.8 }, { "Active", 0.7 }, { "Nice", 0.5 }, { "Neat", 0.3 } } }, new Archetypes { Name = "Lazy", TraitBiases = new Dictionary { { "Nice", 0.8 }, { "Playful", 0.6 }, { "Outgoing", 0.4 }, { "Neat", 0.2 }, { "Active", 0.1 } } }, new Archetypes { Name = "Shy", TraitBiases = new Dictionary { { "Nice", 0.9 }, { "Playful", 0.7 }, { "Outgoing", 0.3 }, { "Neat", 0.5 }, { "Active", 0.2 } } }, new Archetypes { Name = "Energetic", TraitBiases = new Dictionary { { "Nice", 0.7 }, { "Playful", 0.6 }, { "Outgoing", 0.5 }, { "Neat", 0.4 }, { "Active", 0.3 } } }, new Archetypes { Name = "Random", TraitBiases = new() } }; }