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