numerology/additional-meanings.ts
rpriven fd6e171586
Add comprehensive numerology calculator with 10 specialized tools
- Core calculations (Life Path, Expression, Soul Urge, Birthday)
- Advanced numbers (Maturity, Personality, Hidden Passion, Karmic Lessons)
- Timing cycles and optimal days finder
- Compatibility analysis and name optimizer
- Telos integration for personal development
- Professional PDF report generation
- Profile management system
- Security fix: Add .claude/ to .gitignore

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-01 14:00:15 -06:00

301 lines
20 KiB
TypeScript

/**
* Additional Numerology Number Meanings
*
* Meanings for Maturity, Personality, Hidden Passion, Karmic Lessons, and Balance numbers
*/
export interface AdditionalMeaning {
keywords: string[];
description: string;
interpretation: string;
}
// Maturity Number - Who you become in later life (after age 40)
export const maturityMeanings: Record<number, AdditionalMeaning> = {
1: {
keywords: ['Independent', 'Leader', 'Self-reliant', 'Confident'],
description: 'You become increasingly independent and self-directed with age',
interpretation: 'Your mature years bring growing confidence in your ability to lead and pioneer. You develop strong self-reliance and the courage to stand alone when necessary. You may find yourself taking on leadership roles or starting new ventures later in life.'
},
2: {
keywords: ['Diplomatic', 'Cooperative', 'Peacemaker', 'Supportive'],
description: 'You become a skilled mediator and relationship builder in your mature years',
interpretation: 'With age comes deep wisdom about relationships and cooperation. You excel at bringing people together and creating harmony. Your diplomatic skills and patience become your greatest assets as you mature.'
},
3: {
keywords: ['Creative', 'Expressive', 'Joyful', 'Communicative'],
description: 'Your creative and communicative abilities flourish in later life',
interpretation: 'Your mature years bring heightened creativity and self-expression. You may discover hidden artistic talents or find new ways to communicate your ideas. Joy and optimism become your hallmarks as you age.'
},
4: {
keywords: ['Stable', 'Organized', 'Practical', 'Builder'],
description: 'You become a pillar of stability and practical wisdom',
interpretation: 'Maturity brings appreciation for structure, order, and hard work. You build lasting legacies and systems. Your practical wisdom and dedication to tangible results define your later years.'
},
5: {
keywords: ['Adventurous', 'Free', 'Adaptable', 'Progressive'],
description: 'Your thirst for freedom and new experiences grows with age',
interpretation: 'Your mature years are marked by continued adventure and adaptability. You remain young at heart, always seeking new experiences. Change and variety keep you energized as you age.'
},
6: {
keywords: ['Nurturing', 'Responsible', 'Devoted', 'Harmonious'],
description: 'You become the family and community caretaker in later life',
interpretation: 'Maturity brings deep satisfaction from service and responsibility. You create beautiful, harmonious environments and take care of those you love. Your nurturing nature reaches its fullest expression.'
},
7: {
keywords: ['Wise', 'Spiritual', 'Introspective', 'Analytical'],
description: 'You become increasingly philosophical and spiritually aware',
interpretation: 'Your mature years bring deep spiritual insight and wisdom. You seek truth and understanding, often becoming a teacher or spiritual guide. Solitude and contemplation become increasingly valuable.'
},
8: {
keywords: ['Successful', 'Authoritative', 'Prosperous', 'Powerful'],
description: 'You achieve material success and positions of authority',
interpretation: 'Maturity brings financial success and recognition. You step into positions of power and authority, using your business acumen to create abundance. Your leadership in material matters defines your later years.'
},
9: {
keywords: ['Humanitarian', 'Compassionate', 'Wise', 'Universal'],
description: 'You become deeply humanitarian and universally compassionate',
interpretation: 'Your mature years are dedicated to serving humanity. You develop profound compassion and understanding for all people. Your wisdom and charitable nature become your legacy.'
},
11: {
keywords: ['Inspirational', 'Intuitive', 'Illuminating', 'Visionary'],
description: 'You become an inspiring spiritual teacher and visionary',
interpretation: 'Maturity activates your master number energy fully. You inspire and illuminate others with your intuitive wisdom. Your later years may involve spiritual teaching or visionary leadership.'
},
22: {
keywords: ['Master Builder', 'Visionary', 'Practical Idealist', 'Legacy Creator'],
description: 'You build lasting structures and legacies that serve humanity',
interpretation: 'Your mature years bring the power to manifest great visions into reality. You combine practical skill with idealistic vision to create lasting works. Your legacy serves generations.'
},
33: {
keywords: ['Master Teacher', 'Healer', 'Selfless', 'Compassionate Leader'],
description: 'You become a selfless healer and teacher of universal love',
interpretation: 'Maturity brings the highest expression of service and compassion. You teach and heal at the highest level, often sacrificing personal needs for the greater good. Your mature years radiate unconditional love.'
}
};
// Personality Number - How others see you (the mask you wear)
export const personalityMeanings: Record<number, AdditionalMeaning> = {
1: {
keywords: ['Confident', 'Strong', 'Independent', 'Leader'],
description: 'Others see you as confident, strong, and natural leader',
interpretation: 'You project an aura of confidence and independence. People perceive you as capable, strong-willed, and someone who takes charge. Your outer personality commands respect and attention.'
},
2: {
keywords: ['Gentle', 'Diplomatic', 'Friendly', 'Approachable'],
description: 'Others see you as gentle, diplomatic, and easy to approach',
interpretation: 'You appear gentle, tactful, and considerate to others. People feel comfortable around you and seek your counsel. Your outer personality is non-threatening and supportive.'
},
3: {
keywords: ['Charming', 'Expressive', 'Social', 'Creative'],
description: 'Others see you as charming, expressive, and socially engaging',
interpretation: 'You come across as charismatic, creative, and fun-loving. People are drawn to your expressive nature and social skills. Your outer personality sparkles with charm and creativity.'
},
4: {
keywords: ['Solid', 'Dependable', 'Traditional', 'Serious'],
description: 'Others see you as solid, dependable, and grounded',
interpretation: 'You project stability, reliability, and practicality. People perceive you as trustworthy and down-to-earth. Your outer personality communicates competence and dedication.'
},
5: {
keywords: ['Dynamic', 'Exciting', 'Unconventional', 'Free-spirited'],
description: 'Others see you as dynamic, exciting, and full of life',
interpretation: 'You appear energetic, adventurous, and unconventional. People find you exciting and unpredictable. Your outer personality radiates freedom and vitality.'
},
6: {
keywords: ['Warm', 'Caring', 'Responsible', 'Protective'],
description: 'Others see you as warm, caring, and responsible',
interpretation: 'You project warmth, compassion, and reliability. People see you as nurturing and trustworthy. Your outer personality invites others to lean on you for support.'
},
7: {
keywords: ['Mysterious', 'Dignified', 'Reserved', 'Intellectual'],
description: 'Others see you as mysterious, dignified, and intellectually deep',
interpretation: 'You come across as somewhat reserved and mysterious. People perceive you as intelligent and refined. Your outer personality maintains a certain distance and dignity.'
},
8: {
keywords: ['Powerful', 'Successful', 'Authoritative', 'Impressive'],
description: 'Others see you as powerful, successful, and commanding',
interpretation: 'You project power, authority, and material success. People perceive you as someone who has it together financially. Your outer personality commands respect and admiration.'
},
9: {
keywords: ['Compassionate', 'Worldly', 'Idealistic', 'Magnetic'],
description: 'Others see you as compassionate, worldly, and idealistic',
interpretation: 'You appear understanding, compassionate, and globally aware. People sense your humanitarian nature. Your outer personality attracts those seeking wisdom and acceptance.'
},
11: {
keywords: ['Inspiring', 'Electric', 'Charismatic', 'Illuminating'],
description: 'Others see you as inspiring, charismatic, and spiritually aware',
interpretation: 'You project an electric, inspiring presence. People sense something special about you. Your outer personality naturally uplifts and inspires those around you.'
},
22: {
keywords: ['Impressive', 'Visionary', 'Capable', 'Commanding'],
description: 'Others see you as impressively capable and visionary',
interpretation: 'You appear as someone capable of great things. People sense your ability to turn visions into reality. Your outer personality combines practical competence with inspiring vision.'
},
33: {
keywords: ['Nurturing', 'Healing', 'Selfless', 'Radiant'],
description: 'Others see you as nurturing, healing, and selflessly devoted',
interpretation: 'You project profound compassion and healing energy. People naturally seek your guidance and comfort. Your outer personality radiates unconditional love and understanding.'
}
};
// Hidden Passion - Your deepest hidden talent
export const hiddenPassionMeanings: Record<number, AdditionalMeaning> = {
1: {
keywords: ['Leadership', 'Independence', 'Innovation', 'Courage'],
description: 'Your hidden passion is to lead, innovate, and stand independently',
interpretation: 'You have a deep, often unconscious drive to be first, to lead, and to forge your own path. This number appearing frequently in your name suggests leadership is your secret talent, even if you don\'t always recognize it.'
},
2: {
keywords: ['Harmony', 'Partnership', 'Diplomacy', 'Cooperation'],
description: 'Your hidden passion is creating harmony and building partnerships',
interpretation: 'You\'re secretly driven to bring people together and create peace. Cooperation and partnership are your hidden strengths, even when you don\'t consciously pursue them.'
},
3: {
keywords: ['Creativity', 'Self-expression', 'Communication', 'Joy'],
description: 'Your hidden passion is creative expression and joyful communication',
interpretation: 'Deep within, you\'re driven to create, express, and communicate. Creativity is your secret superpower, whether or not you currently use it. This is where your joy lies.'
},
4: {
keywords: ['Building', 'Organization', 'Systems', 'Practical Achievement'],
description: 'Your hidden passion is building lasting structures and systems',
interpretation: 'You have a deep drive to create order, build systems, and make things concrete. Your hidden talent is turning chaos into organized, practical reality.'
},
5: {
keywords: ['Freedom', 'Adventure', 'Change', 'Versatility'],
description: 'Your hidden passion is experiencing freedom and variety',
interpretation: 'You\'re secretly driven by a need for freedom, adventure, and change. Variety and new experiences fuel your soul, even if you don\'t always pursue them actively.'
},
6: {
keywords: ['Service', 'Nurturing', 'Responsibility', 'Beauty'],
description: 'Your hidden passion is serving others and creating beauty',
interpretation: 'Deep within, you\'re driven to care for others and create harmonious environments. Service and responsibility are your hidden strengths and sources of fulfillment.'
},
7: {
keywords: ['Truth', 'Wisdom', 'Understanding', 'Spirituality'],
description: 'Your hidden passion is seeking truth and spiritual understanding',
interpretation: 'You have a deep drive to understand life\'s mysteries and seek truth. Your hidden talent is analytical and spiritual insight. Wisdom-seeking is your secret passion.'
},
8: {
keywords: ['Achievement', 'Success', 'Power', 'Material Mastery'],
description: 'Your hidden passion is achieving material success and power',
interpretation: 'You\'re secretly driven to succeed materially and wield power effectively. Business acumen and the ability to manifest abundance are your hidden talents.'
},
9: {
keywords: ['Compassion', 'Humanitarianism', 'Universal Love', 'Completion'],
description: 'Your hidden passion is serving humanity with compassion',
interpretation: 'Deep within, you\'re driven to help all of humanity. Universal compassion and the ability to let go are your hidden strengths. Service to the greater good calls to you.'
}
};
// Karmic Lessons - Missing numbers represent areas to develop
export const karmicLessonMeanings: Record<number, AdditionalMeaning> = {
1: {
keywords: ['Independence', 'Courage', 'Leadership', 'Initiative'],
description: 'Learn to be independent, courageous, and take initiative',
interpretation: 'You\'re here to develop independence and courage. Learning to stand alone and take the initiative are key lessons. Don\'t wait for others - practice being your own leader.'
},
2: {
keywords: ['Cooperation', 'Patience', 'Tact', 'Partnership'],
description: 'Learn cooperation, patience, and how to work with others',
interpretation: 'You need to develop patience, tact, and the ability to cooperate. Learning to work in partnership and consider others\' needs are important lessons for you.'
},
3: {
keywords: ['Expression', 'Communication', 'Creativity', 'Joy'],
description: 'Learn to express yourself creatively and communicate openly',
interpretation: 'You\'re here to learn self-expression and communication. Developing your creative side and learning to share your thoughts and feelings are key lessons.'
},
4: {
keywords: ['Discipline', 'Organization', 'Hard Work', 'Practical Skills'],
description: 'Learn discipline, organization, and practical application',
interpretation: 'You need to develop discipline, organizational skills, and follow-through. Learning practical skills and the value of hard work are important lessons.'
},
5: {
keywords: ['Adaptability', 'Freedom', 'Change', 'Flexibility'],
description: 'Learn to embrace change, adapt, and find constructive freedom',
interpretation: 'You\'re here to learn adaptability and how to handle change. Developing flexibility and using freedom constructively are key lessons for you.'
},
6: {
keywords: ['Responsibility', 'Service', 'Balance', 'Compassion'],
description: 'Learn responsibility, service to others, and balanced caring',
interpretation: 'You need to develop responsibility and the ability to serve others without losing yourself. Learning balance between self-care and caring for others is key.'
},
7: {
keywords: ['Faith', 'Trust', 'Inner Work', 'Spiritual Development'],
description: 'Learn to trust your intuition and develop spiritual awareness',
interpretation: 'You\'re here to develop faith, trust, and spiritual awareness. Learning to go within and trust your intuition are important lessons for you.'
},
8: {
keywords: ['Material Mastery', 'Power', 'Authority', 'Business Sense'],
description: 'Learn to handle material success, power, and authority wisely',
interpretation: 'You need to learn proper use of power and material resources. Developing business sense and handling authority responsibly are key lessons.'
},
9: {
keywords: ['Letting Go', 'Compassion', 'Forgiveness', 'Universal Love'],
description: 'Learn compassion, forgiveness, and how to let go gracefully',
interpretation: 'You\'re here to learn universal compassion and the art of letting go. Developing forgiveness and understanding that endings are natural are important lessons.'
}
};
// Balance Number - How you handle crisis and maintain equilibrium
export const balanceMeanings: Record<number, AdditionalMeaning> = {
1: {
keywords: ['Take Action', 'Be Decisive', 'Lead', 'Assert Yourself'],
description: 'In crisis, you restore balance by taking decisive action',
interpretation: 'When stressed, you handle problems best by taking immediate action. Don\'t overthink - trust your instincts and move forward decisively. Lead the situation rather than waiting.'
},
2: {
keywords: ['Find Compromise', 'Cooperate', 'Stay Calm', 'Seek Support'],
description: 'In crisis, you restore balance through cooperation and patience',
interpretation: 'When stressed, seek support and work with others. Find compromise and middle ground. Stay calm and patient - rushing will make things worse. Let others help you.'
},
3: {
keywords: ['Express Feelings', 'Stay Positive', 'Communicate', 'Find Joy'],
description: 'In crisis, you restore balance by expressing yourself and staying optimistic',
interpretation: 'When stressed, talk it out. Express your feelings creatively or verbally. Maintain optimism and look for the positive. Communication and creative outlets restore your equilibrium.'
},
4: {
keywords: ['Make a Plan', 'Get Organized', 'Work Systematically', 'Be Practical'],
description: 'In crisis, you restore balance through organization and practical planning',
interpretation: 'When stressed, create a systematic plan and work through it step by step. Organization and practical action restore your balance. Break problems into manageable pieces.'
},
5: {
keywords: ['Stay Flexible', 'Adapt', 'Change Perspective', 'Seek Freedom'],
description: 'In crisis, you restore balance by adapting and changing your approach',
interpretation: 'When stressed, stay flexible and be willing to change course. Try different approaches. Sometimes stepping back and gaining perspective through physical movement or change of scenery helps most.'
},
6: {
keywords: ['Take Responsibility', 'Serve Others', 'Create Harmony', 'Beautify'],
description: 'In crisis, you restore balance by taking responsibility and helping others',
interpretation: 'When stressed, focus on service and responsibility. Helping others or creating beauty in your environment restores your balance. Taking care of home and family grounds you.'
},
7: {
keywords: ['Retreat and Reflect', 'Analyze', 'Meditate', 'Seek Truth'],
description: 'In crisis, you restore balance by withdrawing to reflect and analyze',
interpretation: 'When stressed, take time alone to think things through. Analysis, meditation, and spiritual practice restore your equilibrium. Don\'t rush - allow time for deep reflection.'
},
8: {
keywords: ['Take Charge', 'Be Efficient', 'Focus on Solutions', 'Use Authority'],
description: 'In crisis, you restore balance by taking charge and being efficient',
interpretation: 'When stressed, take control of the situation. Focus on efficient, businesslike solutions. Your ability to organize and delegate helps restore balance. Be authoritative but fair.'
},
9: {
keywords: ['Let Go', 'Forgive', 'Look at Big Picture', 'Be Compassionate'],
description: 'In crisis, you restore balance by letting go and seeing the bigger picture',
interpretation: 'When stressed, step back and view the situation with compassion. Sometimes letting go is the answer. Forgiveness (of self and others) and understanding the bigger picture restore your balance.'
},
11: {
keywords: ['Trust Intuition', 'Inspire Others', 'Stay Spiritual', 'Illuminate'],
description: 'In crisis, you restore balance through intuition and spiritual connection',
interpretation: 'When stressed, trust your intuition deeply. Connect with spiritual sources and inspire others with your vision. Your ability to illuminate the path forward restores balance.'
},
22: {
keywords: ['Build Solutions', 'Think Big', 'Manifest Answers', 'Lead Practically'],
description: 'In crisis, you restore balance by building practical solutions to big problems',
interpretation: 'When stressed, focus on building practical solutions. Think big but stay grounded. Your ability to manifest solutions and lead others through difficulty restores balance.'
},
33: {
keywords: ['Heal and Teach', 'Show Compassion', 'Serve Selflessly', 'Guide Others'],
description: 'In crisis, you restore balance by healing and teaching others',
interpretation: 'When stressed, focus on compassionate service. Teaching and healing others actually restores your own balance. Your selfless guidance helps everyone, including yourself.'
}
};