ANIMALS: readonly [{
    name: "rat";
    mate: readonly ["ox", "dragon", "monkey"];
    traits: readonly ["Intelligent", "Adaptable", "Quick-witted", "Charming", "Artistic", "Sociable"];
}, {
    name: "ox";
    mate: readonly ["rat", "snake", "rooster"];
    traits: readonly ["Loyal", "Reliable", "Thorough", "Strong", "Reasonable", "Steady", "Determined"];
}, {
    name: "tiger";
    mate: readonly ["dragon", "horse", "dog"];
    traits: readonly ["Enthusiastic", "Courageous", "Ambitious", "Leadership", "Confidence", "Charismatic"];
}, {
    name: "rabbit";
    mate: readonly ["sheep", "monkey", "dog", "pig"];
    traits: readonly ["Trustworthy", "Empathic", "Modest", "Diplomatic", "Sincere", "Sociable", "Caretakers"];
    alias: "cat";
}, {
    name: "dragon";
    mate: readonly ["rooster", "rat", "monkey"];
    traits: readonly ["Lucky", "Flexible", "Eccentric", "Imaginative", "Artistic", "Spiritual", "Charismatic"];
}, {
    name: "snake";
    mate: readonly ["dragon", "rooster"];
    traits: readonly ["Philosophical", "Organized", "Intelligent", "Intuitive", "Elegant", "Attentive", "Decisive"];
}, {
    name: "horse";
    mate: readonly ["tiger", "sheep", "rabbit"];
    traits: readonly ["Adaptable", "Loyal", "Courageous", "Ambitious", "Intelligent", "Adventurous", "Strong"];
}, {
    name: "sheep";
    mate: readonly ["rabbit", "horse", "pig"];
    traits: readonly ["Tasteful", "Crafty", "Warm", "Elegant", "Charming", "Intuitive", "Sensitive", "Calm"];
}, {
    name: "monkey";
    mate: readonly ["ox", "rabbit"];
    traits: readonly ["Quick-witted", "Charming", "Lucky", "Adaptable", "Bright", "Versatile", "Lively", "Smart"];
}, {
    name: "rooster";
    mate: readonly ["ox", "snake"];
    traits: readonly ["Honest", "Energetic", "Intelligent", "Flamboyant", "Flexible", "Diverse", "Confident"];
}, {
    name: "dog";
    mate: readonly ["rabbit", "tiger"];
    traits: readonly ["Loyal", "Sociable", "Courageous", "Diligent", "Steady", "Lively", "Adaptable", "Smart"];
}, {
    name: "pig";
    mate: readonly ["tiger", "rabbit", "sheep"];
    traits: readonly ["Honorable", "Philanthropic", "Determined", "Optimistic", "Sincere", "Sociable"];
}] = ...

The data comes from davisnatalie

export const ANIMALS = [
{
name: 'rat',
mate: ['ox', 'dragon', 'monkey'],
traits: ['Intelligent', 'Adaptable', 'Quick-witted', 'Charming', 'Artistic', 'Sociable'],
},
{
name: 'ox',
mate: ['rat', 'snake', 'rooster'],
traits: ['Loyal', 'Reliable', 'Thorough', 'Strong', 'Reasonable', 'Steady', 'Determined'],
},
{
name: 'tiger',
mate: ['dragon', 'horse', 'dog'],
traits: ['Enthusiastic', 'Courageous', 'Ambitious', 'Leadership', 'Confidence', 'Charismatic'],
},
{
name: 'rabbit',
mate: ['sheep', 'monkey', 'dog', 'pig'],
traits: ['Trustworthy', 'Empathic', 'Modest', 'Diplomatic', 'Sincere', 'Sociable', 'Caretakers'],
alias: 'cat', // Vietnamese
},
{
name: 'dragon',
mate: ['rooster', 'rat', 'monkey'],
traits: ['Lucky', 'Flexible', 'Eccentric', 'Imaginative', 'Artistic', 'Spiritual', 'Charismatic'],
},
{
name: 'snake',
mate: ['dragon', 'rooster'],
traits: ['Philosophical', 'Organized', 'Intelligent', 'Intuitive', 'Elegant', 'Attentive', 'Decisive'],
},
{
name: 'horse',
mate: ['tiger', 'sheep', 'rabbit'],
traits: ['Adaptable', 'Loyal', 'Courageous', 'Ambitious', 'Intelligent', 'Adventurous', 'Strong'],
},
{
name: 'sheep',
mate: ['rabbit', 'horse', 'pig'],
traits: ['Tasteful', 'Crafty', 'Warm', 'Elegant', 'Charming', 'Intuitive', 'Sensitive', 'Calm'],
},
{
name: 'monkey',
mate: ['ox', 'rabbit'],
traits: ['Quick-witted', 'Charming', 'Lucky', 'Adaptable', 'Bright', 'Versatile', 'Lively', 'Smart'],
},
{
name: 'rooster',
mate: ['ox', 'snake'],
traits: ['Honest', 'Energetic', 'Intelligent', 'Flamboyant', 'Flexible', 'Diverse', 'Confident'],
},
{
name: 'dog',
mate: ['rabbit', 'tiger'],
traits: ['Loyal', 'Sociable', 'Courageous', 'Diligent', 'Steady', 'Lively', 'Adaptable', 'Smart'],
},
{
name: 'pig',
mate: ['tiger', 'rabbit', 'sheep'],
traits: ['Honorable', 'Philanthropic', 'Determined', 'Optimistic', 'Sincere', 'Sociable'],
},
] as const;