/**
 * Special Locations Database
 * Unique locations with special services and interactions
 */

export const specialLocations = [
  // ============ CONCERT HALLS ============
  {
    id: 'carnegie_hall',
    name: 'Carnegie Hall',
    type: 'concert_hall',
    era: '1960s',
    location: { city: 'New York', country: 'USA' },
    spawnChance: 0.12,
    features: {
      performanceBonus: 1.5,
      audienceCapacity: 2000,
      prestigeRequired: 50
    },
    services: [
      {
        type: 'perform_concert',
        cost: 0,
        benefit: 'Earn fans based on your performance (x1.5 multiplier)',
        requirement: { fans: 100 }
      },
      {
        type: 'practice',
        cost: 50,
        benefit: '+100 XP to any genre',
        requirement: null
      }
    ],
    visualTheme: 'ornate_red_velvet',
    icon: '🎭',
    description: 'Prestigious concert venue in New York City'
  },

  {
    id: 'royal_albert_hall',
    name: 'Royal Albert Hall',
    type: 'concert_hall',
    era: '1800s',
    location: { city: 'London', country: 'UK' },
    spawnChance: 0.1,
    features: {
      performanceBonus: 1.6,
      audienceCapacity: 5000,
      prestigeRequired: 100
    },
    services: [
      {
        type: 'perform_concert',
        cost: 0,
        benefit: 'Massive fan boost (+60%)',
        requirement: { fans: 500 }
      }
    ],
    visualTheme: 'royal_gold',
    icon: '🎭',
    description: 'Royal concert hall in London'
  },

  {
    id: 'red_rocks',
    name: 'Red Rocks Amphitheatre',
    type: 'concert_hall',
    era: '1970s',
    location: { city: 'Denver', country: 'USA' },
    spawnChance: 0.11,
    features: {
      performanceBonus: 1.4,
      audienceCapacity: 10000,
      prestigeRequired: 75
    },
    services: [
      {
        type: 'perform_concert',
        cost: 0,
        benefit: 'Outdoor performance bonus',
        requirement: { level: 3 }
      }
    ],
    visualTheme: 'natural_amphitheater',
    icon: '🎭',
    description: 'Iconic outdoor venue in Colorado'
  },

  // ============ RECORDING STUDIOS ============
  {
    id: 'abbey_road',
    name: 'Abbey Road Studios',
    type: 'recording_studio',
    era: '1960s',
    location: { city: 'London', country: 'UK' },
    spawnChance: 0.15,
    features: {
      recordingQuality: 1.5,
      engineerExpertise: 'legendary'
    },
    services: [
      {
        type: 'record_song',
        cost: 200,
        benefit: '+50% quality multiplier on next song',
        requirement: { credits: 200 }
      },
      {
        type: 'mix_master',
        cost: 100,
        benefit: 'Professional mixing service',
        requirement: { level: 3 }
      }
    ],
    visualTheme: 'iconic_zebra_crossing',
    icon: '🎙️',
    description: 'Where The Beatles recorded'
  },

  {
    id: 'sun_studio',
    name: 'Sun Studio',
    type: 'recording_studio',
    era: '1950s',
    location: { city: 'Memphis', country: 'USA' },
    spawnChance: 0.14,
    features: {
      recordingQuality: 1.3,
      vintage: true
    },
    services: [
      {
        type: 'record_song',
        cost: 150,
        benefit: 'Vintage rock/rockabilly bonus',
        requirement: { credits: 150 }
      }
    ],
    visualTheme: 'vintage_memphis',
    icon: '🎙️',
    description: 'Birthplace of rock and roll'
  },

  {
    id: 'motown_hitsville',
    name: 'Hitsville U.S.A.',
    type: 'recording_studio',
    era: '1960s',
    location: { city: 'Detroit', country: 'USA' },
    spawnChance: 0.13,
    features: {
      recordingQuality: 1.4,
      genreSpecialty: 'soul'
    },
    services: [
      {
        type: 'record_song',
        cost: 180,
        benefit: '+40% soul/R&B bonus',
        requirement: null
      }
    ],
    visualTheme: 'motown_blue',
    icon: '🎙️',
    description: 'Motown Records headquarters'
  },

  // ============ MUSIC SCHOOLS ============
  {
    id: 'juilliard',
    name: 'Juilliard School',
    type: 'music_school',
    era: '1960s',
    location: { city: 'New York', country: 'USA' },
    spawnChance: 0.1,
    features: {
      educationQuality: 'world_class'
    },
    services: [
      {
        type: 'take_lesson',
        cost: 100,
        benefit: '+150 XP to classical genre',
        requirement: null
      },
      {
        type: 'enroll_program',
        cost: 500,
        benefit: 'Permanent +10% classical bonus',
        requirement: { level: 4 }
      }
    ],
    visualTheme: 'academic_prestige',
    icon: '🎓',
    description: 'Prestigious performing arts conservatory'
  },

  {
    id: 'berklee',
    name: 'Berklee College of Music',
    type: 'music_school',
    era: '1970s',
    location: { city: 'Boston', country: 'USA' },
    spawnChance: 0.11,
    features: {
      educationQuality: 'excellent',
      genreSpecialty: 'jazz'
    },
    services: [
      {
        type: 'take_lesson',
        cost: 80,
        benefit: '+120 XP to jazz or contemporary',
        requirement: null
      },
      {
        type: 'jam_session',
        cost: 50,
        benefit: 'Learn from other students',
        requirement: { level: 2 }
      }
    ],
    visualTheme: 'modern_campus',
    icon: '🎓',
    description: 'Contemporary music college'
  },

  // ============ INSTRUMENT SHOPS ============
  {
    id: 'guitar_center',
    name: 'Guitar Center',
    type: 'instrument_shop',
    era: '1980s',
    location: { city: 'Los Angeles', country: 'USA' },
    spawnChance: 0.18,
    features: {
      inventory: 'extensive',
      priceRange: 'affordable'
    },
    services: [
      {
        type: 'buy_instrument',
        cost: 'varies',
        benefit: 'Purchase instruments at 10% discount',
        requirement: null
      },
      {
        type: 'repair',
        cost: 30,
        benefit: 'Repair damaged instruments',
        requirement: null
      },
      {
        type: 'trade_in',
        cost: 0,
        benefit: 'Trade instruments for materials',
        requirement: null
      }
    ],
    visualTheme: 'modern_retail',
    icon: '🛒',
    description: 'Major music retail chain'
  },

  {
    id: 'vintage_shop',
    name: 'Vintage Instruments',
    type: 'instrument_shop',
    era: '1970s',
    location: { city: 'Nashville', country: 'USA' },
    spawnChance: 0.12,
    features: {
      inventory: 'rare_vintage',
      priceRange: 'expensive'
    },
    services: [
      {
        type: 'buy_rare',
        cost: 'high',
        benefit: 'Epic and legendary instruments available',
        requirement: { level: 5 }
      }
    ],
    visualTheme: 'rustic_vintage',
    icon: '🛒',
    description: 'Rare and vintage instruments'
  },

  // ============ CLUBS & VENUES ============
  {
    id: 'cbgb',
    name: 'CBGB',
    type: 'underground_club',
    era: '1970s',
    location: { city: 'New York', country: 'USA' },
    spawnChance: 0.13,
    features: {
      vibe: 'punk',
      capacity: 200
    },
    services: [
      {
        type: 'perform_underground',
        cost: 0,
        benefit: '+25% punk/rock reputation',
        requirement: null
      },
      {
        type: 'meet_musicians',
        cost: 0,
        benefit: 'Rare punk musicians spawn here',
        requirement: null
      }
    ],
    visualTheme: 'grimy_punk',
    icon: '🎵',
    description: 'Legendary punk club'
  },

  {
    id: 'blue_note',
    name: 'Blue Note Jazz Club',
    type: 'jazz_club',
    era: '1960s',
    location: { city: 'New York', country: 'USA' },
    spawnChance: 0.14,
    features: {
      vibe: 'intimate_jazz',
      capacity: 150
    },
    services: [
      {
        type: 'jam_session',
        cost: 30,
        benefit: '+100 jazz XP',
        requirement: null
      },
      {
        type: 'perform',
        cost: 0,
        benefit: 'Build jazz reputation',
        requirement: { level: 2 }
      }
    ],
    visualTheme: 'smoky_jazz',
    icon: '🎵',
    description: 'Iconic jazz venue'
  },

  {
    id: 'apollo_theater',
    name: 'Apollo Theater',
    type: 'concert_hall',
    era: '1960s',
    location: { city: 'New York', country: 'USA' },
    spawnChance: 0.11,
    features: {
      performanceBonus: 1.4,
      historical: 'legendary',
      audienceCapacity: 1500
    },
    services: [
      {
        type: 'amateur_night',
        cost: 0,
        benefit: 'Win to gain massive soul/R&B reputation',
        requirement: { level: 3 }
      }
    ],
    visualTheme: 'harlem_renaissance',
    icon: '🎭',
    description: 'Historic Harlem venue'
  }
];

/**
 * Get location by ID
 */
export const getLocationById = (id) => {
  return specialLocations.find(l => l.id === id);
};

/**
 * Get locations by type
 */
export const getLocationsByType = (type) => {
  return specialLocations.filter(l => l.type === type);
};

/**
 * Get locations available in era/city
 */
export const getLocationsForEraAndCity = (era, city) => {
  return specialLocations.filter(l => 
    (!l.era || l.era === era) &&
    (!l.location.city || l.location.city === city)
  );
};

/**
 * Location types
 */
export const locationTypes = {
  concert_hall: { name: 'Concert Hall', icon: '🎭', color: '#e74c3c' },
  recording_studio: { name: 'Recording Studio', icon: '🎙️', color: '#3498db' },
  music_school: { name: 'Music School', icon: '🎓', color: '#9b59b6' },
  instrument_shop: { name: 'Instrument Shop', icon: '🛒', color: '#f39c12' },
  underground_club: { name: 'Underground Club', icon: '🎵', color: '#e67e22' },
  jazz_club: { name: 'Jazz Club', icon: '🎵', color: '#16a085' }
};

