import { TarotCard } from '../types/tarot.js';
export const majorArcana: TarotCard[] = [
{
id: 'fool',
name: 'The Fool',
arcana: 'major',
number: 0,
keywords: ['beginnings', 'innocence', 'spontaneity', 'free spirit'],
uprightMeaning: 'New beginnings, innocence, spontaneity, free spirit, adventure',
reversedMeaning: 'Recklessness, risk-taking, foolishness, naivety, poor judgment',
description: 'The Fool represents new beginnings and having faith in the future',
element: 'Air'
},
{
id: 'magician',
name: 'The Magician',
arcana: 'major',
number: 1,
keywords: ['manifestation', 'resourcefulness', 'power', 'inspired action'],
uprightMeaning: 'Manifestation, resourcefulness, power, inspired action, willpower',
reversedMeaning: 'Manipulation, poor planning, untapped talents, deception',
description: 'The Magician represents manifestation and resourcefulness',
element: 'Air',
astrology: 'Mercury'
},
{
id: 'high_priestess',
name: 'The High Priestess',
arcana: 'major',
number: 2,
keywords: ['intuition', 'sacred knowledge', 'divine feminine', 'subconscious'],
uprightMeaning: 'Intuition, sacred knowledge, divine feminine, the subconscious mind',
reversedMeaning: 'Secrets, disconnected from intuition, withdrawal, silence',
description: 'The High Priestess represents intuition and sacred knowledge',
element: 'Water',
astrology: 'Moon'
},
{
id: 'empress',
name: 'The Empress',
arcana: 'major',
number: 3,
keywords: ['femininity', 'beauty', 'nature', 'abundance'],
uprightMeaning: 'Femininity, beauty, nature, nurturing, abundance, creativity',
reversedMeaning: 'Creative block, dependence on others, emptiness, negligence',
description: 'The Empress represents femininity, beauty, nature, and abundance',
element: 'Earth',
astrology: 'Venus'
},
{
id: 'emperor',
name: 'The Emperor',
arcana: 'major',
number: 4,
keywords: ['authority', 'structure', 'control', 'father figure'],
uprightMeaning: 'Authority, establishment, structure, father figure, protection',
reversedMeaning: 'Tyranny, rigidity, coldness, excessive control, domination',
description: 'The Emperor represents authority, structure, and control',
element: 'Fire',
astrology: 'Aries'
},
{
id: 'hierophant',
name: 'The Hierophant',
arcana: 'major',
number: 5,
keywords: ['tradition', 'conformity', 'morality', 'ethics'],
uprightMeaning: 'Spiritual wisdom, tradition, conformity, morality, ethics',
reversedMeaning: 'Personal beliefs, freedom, challenging the status quo',
description: 'The Hierophant represents tradition and conventional values',
element: 'Earth',
astrology: 'Taurus'
},
{
id: 'lovers',
name: 'The Lovers',
arcana: 'major',
number: 6,
keywords: ['love', 'harmony', 'relationships', 'values alignment'],
uprightMeaning: 'Love, harmony, relationships, values alignment, choices',
reversedMeaning: 'Disharmony, imbalance, misalignment of values, conflict',
description: 'The Lovers represents relationships and choices',
element: 'Air',
astrology: 'Gemini'
},
{
id: 'chariot',
name: 'The Chariot',
arcana: 'major',
number: 7,
keywords: ['control', 'willpower', 'success', 'determination'],
uprightMeaning: 'Control, willpower, success, action, determination, victory',
reversedMeaning: 'Lack of control, lack of direction, aggression, obstacles',
description: 'The Chariot represents control, willpower and victory',
element: 'Water',
astrology: 'Cancer'
},
{
id: 'strength',
name: 'Strength',
arcana: 'major',
number: 8,
keywords: ['strength', 'courage', 'patience', 'control'],
uprightMeaning: 'Inner strength, courage, patience, control, compassion',
reversedMeaning: 'Self doubt, weakness, insecurity, lack of self-discipline',
description: 'Strength represents inner strength and courage',
element: 'Fire',
astrology: 'Leo'
},
{
id: 'hermit',
name: 'The Hermit',
arcana: 'major',
number: 9,
keywords: ['soul searching', 'introspection', 'inner guidance', 'wisdom'],
uprightMeaning: 'Soul searching, introspection, inner guidance, contemplation',
reversedMeaning: 'Isolation, loneliness, withdrawal, lost your way',
description: 'The Hermit represents soul searching and inner guidance',
element: 'Earth',
astrology: 'Virgo'
},
{
id: 'wheel_of_fortune',
name: 'Wheel of Fortune',
arcana: 'major',
number: 10,
keywords: ['good luck', 'karma', 'life cycles', 'destiny'],
uprightMeaning: 'Good luck, karma, life cycles, destiny, turning point',
reversedMeaning: 'Bad luck, resistance to change, breaking cycles',
description: 'The Wheel of Fortune represents cycles and destiny',
element: 'Fire',
astrology: 'Jupiter'
},
{
id: 'justice',
name: 'Justice',
arcana: 'major',
number: 11,
keywords: ['justice', 'fairness', 'truth', 'law'],
uprightMeaning: 'Justice, fairness, truth, cause and effect, law, balance',
reversedMeaning: 'Unfairness, lack of accountability, dishonesty, injustice',
description: 'Justice represents fairness, truth and law',
element: 'Air',
astrology: 'Libra'
},
{
id: 'hanged_man',
name: 'The Hanged Man',
arcana: 'major',
number: 12,
keywords: ['suspension', 'restriction', 'letting go', 'sacrifice'],
uprightMeaning: 'Suspension, restriction, letting go, sacrifice, new perspective',
reversedMeaning: 'Delays, resistance, indecision, stalling, avoiding sacrifice',
description: 'The Hanged Man represents suspension and letting go',
element: 'Water',
astrology: 'Neptune'
},
{
id: 'death',
name: 'Death',
arcana: 'major',
number: 13,
keywords: ['endings', 'transformation', 'transition', 'release'],
uprightMeaning: 'Endings, beginnings, change, transformation, transition',
reversedMeaning: 'Resistance to change, fear of new beginnings, repeating patterns',
description: 'Death represents transformation and new beginnings',
element: 'Water',
astrology: 'Scorpio'
},
{
id: 'temperance',
name: 'Temperance',
arcana: 'major',
number: 14,
keywords: ['balance', 'moderation', 'patience', 'purpose'],
uprightMeaning: 'Balance, moderation, patience, purpose, meaning, harmony',
reversedMeaning: 'Imbalance, excess, lack of long-term vision, extremes',
description: 'Temperance represents balance, moderation and patience',
element: 'Fire',
astrology: 'Sagittarius'
},
{
id: 'devil',
name: 'The Devil',
arcana: 'major',
number: 15,
keywords: ['bondage', 'addiction', 'sexuality', 'materialism'],
uprightMeaning: 'Bondage, addiction, sexuality, materialism, powerlessness',
reversedMeaning: 'Release, detachment, breaking free, power reclaimed',
description: 'The Devil represents bondage and material attachments',
element: 'Earth',
astrology: 'Capricorn'
},
{
id: 'tower',
name: 'The Tower',
arcana: 'major',
number: 16,
keywords: ['upheaval', 'chaos', 'revelation', 'awakening'],
uprightMeaning: 'Sudden upheaval, chaos, revelation, awakening, destruction',
reversedMeaning: 'Personal transformation, fear of change, averting disaster',
description: 'The Tower represents sudden upheaval and revelation',
element: 'Fire',
astrology: 'Mars'
},
{
id: 'star',
name: 'The Star',
arcana: 'major',
number: 17,
keywords: ['hope', 'faith', 'purpose', 'renewal'],
uprightMeaning: 'Hope, faith, purpose, renewal, spirituality, serenity',
reversedMeaning: 'Lack of faith, despair, disconnection, discouragement',
description: 'The Star represents hope, faith and renewal',
element: 'Air',
astrology: 'Aquarius'
},
{
id: 'moon',
name: 'The Moon',
arcana: 'major',
number: 18,
keywords: ['illusion', 'fear', 'anxiety', 'intuition'],
uprightMeaning: 'Illusion, fear, anxiety, subconscious, intuition, dreams',
reversedMeaning: 'Release of fear, repressed emotion, inner confusion',
description: 'The Moon represents illusion, fear and intuition',
element: 'Water',
astrology: 'Pisces'
},
{
id: 'sun',
name: 'The Sun',
arcana: 'major',
number: 19,
keywords: ['joy', 'success', 'vitality', 'positivity'],
uprightMeaning: 'Joy, success, celebration, positivity, vitality, confidence',
reversedMeaning: 'Inner child, feeling down, overly optimistic',
description: 'The Sun represents joy, success and positivity',
element: 'Fire',
astrology: 'Sun'
},
{
id: 'judgement',
name: 'Judgement',
arcana: 'major',
number: 20,
keywords: ['reflection', 'reckoning', 'awakening', 'renewal'],
uprightMeaning: 'Judgement, rebirth, inner calling, absolution, renewal',
reversedMeaning: 'Self-doubt, harsh criticism, inability to forgive',
description: 'Judgement represents reflection and renewal',
element: 'Fire',
astrology: 'Pluto'
},
{
id: 'world',
name: 'The World',
arcana: 'major',
number: 21,
keywords: ['completion', 'accomplishment', 'travel', 'unity'],
uprightMeaning: 'Completion, integration, accomplishment, travel, fulfillment',
reversedMeaning: 'Lack of closure, lack of achievement, delays, empty goals',
description: 'The World represents completion and accomplishment',
element: 'Earth',
astrology: 'Saturn'
}
];
const createMinorArcanaCard = (
suit: 'wands' | 'cups' | 'swords' | 'pentacles',
number: number,
name: string,
keywords: string[],
uprightMeaning: string,
reversedMeaning: string,
description: string,
element: string
): TarotCard => ({
id: `${number}_of_${suit}`,
name: `${name} of ${suit.charAt(0).toUpperCase() + suit.slice(1)}`,
arcana: 'minor',
number,
suit,
keywords,
uprightMeaning,
reversedMeaning,
description,
element
});
const wandsCards: TarotCard[] = [
createMinorArcanaCard('wands', 1, 'Ace', ['inspiration', 'new opportunities', 'growth'],
'Inspiration, new opportunities, growth, potential',
'Lack of energy, delays, no motivation',
'New creative spark and inspiration', 'Fire'),
createMinorArcanaCard('wands', 2, 'Two', ['planning', 'progress', 'decisions'],
'Planning, progress, decisions, discovery',
'Lack of planning, disorganization, fear of unknown',
'Planning and making decisions', 'Fire'),
createMinorArcanaCard('wands', 3, 'Three', ['expansion', 'foresight', 'leadership'],
'Expansion, foresight, overseas opportunities',
'Playing small, lack of foresight, delays',
'Looking ahead and expansion', 'Fire'),
createMinorArcanaCard('wands', 4, 'Four', ['celebration', 'harmony', 'homecoming'],
'Celebration, joy, harmony, relaxation',
'Lack of support, transience, home conflicts',
'Celebration and harmony', 'Fire'),
createMinorArcanaCard('wands', 5, 'Five', ['conflict', 'competition', 'tension'],
'Disagreements, competition, tension, diversity',
'Inner conflict, conflict avoidance, tension release',
'Conflict and competition', 'Fire'),
createMinorArcanaCard('wands', 6, 'Six', ['victory', 'success', 'recognition'],
'Success, public recognition, progress',
'Private achievement, personal definition of success',
'Victory and public recognition', 'Fire'),
createMinorArcanaCard('wands', 7, 'Seven', ['perseverance', 'defensive', 'challenge'],
'Perseverance, defensive, maintaining control',
'Exhaustion, giving up, overwhelmed',
'Standing your ground', 'Fire'),
createMinorArcanaCard('wands', 8, 'Eight', ['speed', 'action', 'movement'],
'Movement, fast paced change, action',
'Delays, frustration, internal alignment',
'Swift action and movement', 'Fire'),
createMinorArcanaCard('wands', 9, 'Nine', ['resilience', 'persistence', 'boundaries'],
'Resilience, persistence, test of faith',
'Exhaustion, overwhelm, defensive',
'Last stand and resilience', 'Fire'),
createMinorArcanaCard('wands', 10, 'Ten', ['burden', 'responsibility', 'duty'],
'Burden, extra responsibility, hard work',
'Inability to delegate, breakdown, martyrdom',
'Carrying heavy burdens', 'Fire')
];
const cupsCards: TarotCard[] = [
createMinorArcanaCard('cups', 1, 'Ace', ['love', 'new relationships', 'emotions'],
'Love, new relationships, compassion, creativity',
'Self-love, intuition, repressed emotions',
'New emotional beginning', 'Water'),
createMinorArcanaCard('cups', 2, 'Two', ['partnership', 'unity', 'attraction'],
'Unified love, partnership, mutual attraction',
'Imbalance, broken communication, tension',
'Partnership and unity', 'Water'),
createMinorArcanaCard('cups', 3, 'Three', ['friendship', 'community', 'celebration'],
'Friendship, creativity, collaborations',
'Independence, alone time, hardcore partying',
'Friendship and celebration', 'Water'),
createMinorArcanaCard('cups', 4, 'Four', ['contemplation', 'apathy', 'reevaluation'],
'Meditation, contemplation, apathy',
'Retreat, withdrawal, checking in',
'Contemplation and apathy', 'Water'),
createMinorArcanaCard('cups', 5, 'Five', ['loss', 'grief', 'disappointment'],
'Regret, failure, disappointment, pessimism',
'Personal setbacks, self-forgiveness',
'Loss and emotional challenges', 'Water'),
createMinorArcanaCard('cups', 6, 'Six', ['nostalgia', 'memories', 'innocence'],
'Revisiting the past, childhood memories',
'Living in the past, forgiveness',
'Nostalgia and happy memories', 'Water'),
createMinorArcanaCard('cups', 7, 'Seven', ['choices', 'illusion', 'opportunities'],
'Opportunities, choices, wishful thinking',
'Alignment, personal values, overwhelmed',
'Many choices and illusions', 'Water'),
createMinorArcanaCard('cups', 8, 'Eight', ['abandonment', 'withdrawal', 'escapism'],
'Disappointment, abandonment, withdrawal',
'Trying one more time, indecision',
'Walking away from situation', 'Water'),
createMinorArcanaCard('cups', 9, 'Nine', ['contentment', 'satisfaction', 'wishes fulfilled'],
'Contentment, satisfaction, gratitude',
'Inner happiness, materialism, dissatisfaction',
'Wish fulfillment and contentment', 'Water'),
createMinorArcanaCard('cups', 10, 'Ten', ['harmony', 'marriage', 'happiness'],
'Divine love, blissful relationships, harmony',
'Disconnection, misaligned values, struggling',
'Emotional fulfillment and harmony', 'Water')
];
const swordsCards: TarotCard[] = [
createMinorArcanaCard('swords', 1, 'Ace', ['clarity', 'breakthrough', 'new ideas'],
'Mental clarity, breakthrough, new ideas',
'Inner clarity, re-thinking an idea, clouded judgement',
'Mental clarity and breakthrough', 'Air'),
createMinorArcanaCard('swords', 2, 'Two', ['indecision', 'choices', 'stalemate'],
'Difficult decisions, weighing options',
'Indecision, confusion, information overload',
'Difficult decisions and stalemate', 'Air'),
createMinorArcanaCard('swords', 3, 'Three', ['heartbreak', 'sorrow', 'grief'],
'Heartbreak, emotional pain, sorrow',
'Negative self-talk, releasing pain, optimism',
'Heartbreak and emotional pain', 'Air'),
createMinorArcanaCard('swords', 4, 'Four', ['rest', 'restoration', 'contemplation'],
'Rest, restoration, contemplation',
'Exhaustion, burn-out, deep contemplation',
'Rest and recuperation', 'Air'),
createMinorArcanaCard('swords', 5, 'Five', ['conflict', 'disagreement', 'competition'],
'Conflict, disagreements, competition',
'Inner conflict, conflict avoidance, releasing tension',
'Conflict and disagreements', 'Air'),
createMinorArcanaCard('swords', 6, 'Six', ['transition', 'change', 'moving on'],
'Transition, change, rite of passage',
'Personal transition, resistance to change',
'Moving on to calmer waters', 'Air'),
createMinorArcanaCard('swords', 7, 'Seven', ['deception', 'strategy', 'sneakiness'],
'Betrayal, deception, getting away with something',
'Imposter syndrome, self-deceit, keeping secrets',
'Deception and sneaky behavior', 'Air'),
createMinorArcanaCard('swords', 8, 'Eight', ['restriction', 'imprisonment', 'victim'],
'Negative thoughts, self-imposed restriction',
'Self-limiting beliefs, inner critic, releasing',
'Feeling trapped and restricted', 'Air'),
createMinorArcanaCard('swords', 9, 'Nine', ['anxiety', 'worry', 'fear'],
'Anxiety, worry, fear, depression',
'Inner turmoil, deep-seated fears, secrets',
'Anxiety and nightmares', 'Air'),
createMinorArcanaCard('swords', 10, 'Ten', ['betrayal', 'defeat', 'crisis'],
'Betrayal, backstabbing, defeat',
'Recovery, regeneration, resisting ending',
'Painful endings and betrayal', 'Air')
];
const pentaclesCards: TarotCard[] = [
createMinorArcanaCard('pentacles', 1, 'Ace', ['opportunity', 'prosperity', 'new venture'],
'New financial opportunity, manifestation',
'Lost opportunity, lack of planning',
'Material and financial opportunity', 'Earth'),
createMinorArcanaCard('pentacles', 2, 'Two', ['balance', 'adaptability', 'juggling'],
'Multiple priorities, time management',
'Over-committed, disorganization, reprioritization',
'Juggling priorities and balance', 'Earth'),
createMinorArcanaCard('pentacles', 3, 'Three', ['teamwork', 'collaboration', 'learning'],
'Teamwork, collaboration, building',
'Disharmony, misalignment, working alone',
'Collaboration and teamwork', 'Earth'),
createMinorArcanaCard('pentacles', 4, 'Four', ['conservation', 'security', 'control'],
'Saving money, security, conservatism',
'Greed, materialism, self-protection',
'Financial security and control', 'Earth'),
createMinorArcanaCard('pentacles', 5, 'Five', ['hardship', 'loss', 'isolation'],
'Financial loss, poverty, lack mindset',
'Recovery, charity, improvement',
'Financial hardship and worry', 'Earth'),
createMinorArcanaCard('pentacles', 6, 'Six', ['generosity', 'charity', 'sharing'],
'Generosity, charity, community',
'Strings attached, stinginess, power dynamics',
'Generosity and sharing wealth', 'Earth'),
createMinorArcanaCard('pentacles', 7, 'Seven', ['patience', 'investment', 'reward'],
'Long-term view, sustainable results',
'Lack of long-term vision, limited success',
'Patience and long-term rewards', 'Earth'),
createMinorArcanaCard('pentacles', 8, 'Eight', ['apprenticeship', 'skill', 'craftsmanship'],
'Apprenticeship, repetitive tasks, mastery',
'Self-development, perfectionism, misdirected',
'Skill development and craftsmanship', 'Earth'),
createMinorArcanaCard('pentacles', 9, 'Nine', ['abundance', 'luxury', 'self-sufficiency'],
'Abundance, luxury, self-sufficiency',
'Self-worth, over-investment in work',
'Material abundance and comfort', 'Earth'),
createMinorArcanaCard('pentacles', 10, 'Ten', ['wealth', 'inheritance', 'legacy'],
'Wealth, financial security, family',
'Financial failure, loneliness, loss',
'Legacy and long-term success', 'Earth')
];
const courtCards: TarotCard[] = [
// Wands Court
{ id: 'page_of_wands', name: 'Page of Wands', arcana: 'minor', suit: 'wands', keywords: ['exploration', 'excitement', 'freedom'], uprightMeaning: 'Inspiration, ideas, discovery, limitless potential', reversedMeaning: 'Lack of direction, procrastination, creating conflict', description: 'Youthful energy and exploration', element: 'Fire' },
{ id: 'knight_of_wands', name: 'Knight of Wands', arcana: 'minor', suit: 'wands', keywords: ['action', 'adventure', 'fearlessness'], uprightMeaning: 'Energy, passion, adventure, impulsiveness', reversedMeaning: 'Anger, impulsiveness, recklessness, impatience', description: 'Adventurous and passionate action', element: 'Fire' },
{ id: 'queen_of_wands', name: 'Queen of Wands', arcana: 'minor', suit: 'wands', keywords: ['confidence', 'independence', 'determination'], uprightMeaning: 'Confidence, independence, determination, charisma', reversedMeaning: 'Selfishness, jealousy, insecurities, controlling', description: 'Confident and charismatic leadership', element: 'Fire' },
{ id: 'king_of_wands', name: 'King of Wands', arcana: 'minor', suit: 'wands', keywords: ['leadership', 'vision', 'entrepreneur'], uprightMeaning: 'Natural leader, vision, entrepreneur, honour', reversedMeaning: 'Impulsiveness, haste, ruthless, high expectations', description: 'Visionary leadership and entrepreneurship', element: 'Fire' },
// Cups Court
{ id: 'page_of_cups', name: 'Page of Cups', arcana: 'minor', suit: 'cups', keywords: ['creative', 'intuitive', 'dreamer'], uprightMeaning: 'Creative opportunities, intuitive messages', reversedMeaning: 'Emotional immaturity, insecurity, creative block', description: 'Creative and intuitive messages', element: 'Water' },
{ id: 'knight_of_cups', name: 'Knight of Cups', arcana: 'minor', suit: 'cups', keywords: ['romance', 'charm', 'imagination'], uprightMeaning: 'Creativity, romance, charm, imagination', reversedMeaning: 'Moodiness, emotional insecurity, disappointment', description: 'Romantic and imaginative pursuits', element: 'Water' },
{ id: 'queen_of_cups', name: 'Queen of Cups', arcana: 'minor', suit: 'cups', keywords: ['compassion', 'calm', 'intuitive'], uprightMeaning: 'Compassionate, caring, intuitive, nurturing', reversedMeaning: 'Inner feelings, self-care, self-compassion', description: 'Emotional intelligence and compassion', element: 'Water' },
{ id: 'king_of_cups', name: 'King of Cups', arcana: 'minor', suit: 'cups', keywords: ['emotional balance', 'diplomatic', 'compassionate'], uprightMeaning: 'Emotionally balanced, compassionate, diplomatic', reversedMeaning: 'Self-compassion, inner feelings, moodiness', description: 'Emotional maturity and balance', element: 'Water' },
// Swords Court
{ id: 'page_of_swords', name: 'Page of Swords', arcana: 'minor', suit: 'swords', keywords: ['curiosity', 'restlessness', 'mental energy'], uprightMeaning: 'New ideas, curiosity, thirst for knowledge', reversedMeaning: 'Self-expression, all talk no action, haste', description: 'Mental curiosity and new ideas', element: 'Air' },
{ id: 'knight_of_swords', name: 'Knight of Swords', arcana: 'minor', suit: 'swords', keywords: ['ambitious', 'fast-thinking', 'driven'], uprightMeaning: 'Ambitious, action-oriented, driven, fast-thinking', reversedMeaning: 'Restless, unfocused, impulsive, burn-out', description: 'Swift action and determination', element: 'Air' },
{ id: 'queen_of_swords', name: 'Queen of Swords', arcana: 'minor', suit: 'swords', keywords: ['independent', 'perceptive', 'clear boundaries'], uprightMeaning: 'Independent, unbiased judgement, clear boundaries', reversedMeaning: 'Overly-critical, cold-hearted, pessimistic', description: 'Clear thinking and independence', element: 'Air' },
{ id: 'king_of_swords', name: 'King of Swords', arcana: 'minor', suit: 'swords', keywords: ['intellectual', 'authority', 'truth'], uprightMeaning: 'Mental clarity, intellectual power, authority', reversedMeaning: 'Manipulative, tyrannical, abusive', description: 'Intellectual authority and truth', element: 'Air' },
// Pentacles Court
{ id: 'page_of_pentacles', name: 'Page of Pentacles', arcana: 'minor', suit: 'pentacles', keywords: ['manifestation', 'financial opportunity', 'skill development'], uprightMeaning: 'Manifestation, financial opportunity, new job', reversedMeaning: 'Lack of progress, procrastination, learn from failure', description: 'New financial opportunities', element: 'Earth' },
{ id: 'knight_of_pentacles', name: 'Knight of Pentacles', arcana: 'minor', suit: 'pentacles', keywords: ['efficiency', 'routine', 'conservatism'], uprightMeaning: 'Hard work, productivity, conservatism', reversedMeaning: 'Laziness, obsessiveness, work without reward', description: 'Methodical progress and hard work', element: 'Earth' },
{ id: 'queen_of_pentacles', name: 'Queen of Pentacles', arcana: 'minor', suit: 'pentacles', keywords: ['practicality', 'creature comforts', 'financial security'], uprightMeaning: 'Nurturing, practical, providing financially', reversedMeaning: 'Financial independence, self-care, smothering', description: 'Practical nurturing and abundance', element: 'Earth' },
{ id: 'king_of_pentacles', name: 'King of Pentacles', arcana: 'minor', suit: 'pentacles', keywords: ['wealth', 'business', 'leadership', 'security'], uprightMeaning: 'Wealth, business, leadership, security, abundance', reversedMeaning: 'Financially inept, obsessed with wealth', description: 'Material success and security', element: 'Earth' }
];
export const minorArcana: TarotCard[] = [
...wandsCards,
...cupsCards,
...swordsCards,
...pentaclesCards,
...courtCards
];
export const allCards: TarotCard[] = [...majorArcana, ...minorArcana];