export const API_CONFIG = {
  baseUrl: 'https://cdn1.suno.ai/',
  jsonUrl: 'https://cdn1.suno.ai/neon230817/audio_files.json'
};

export const GAME_CONFIG = {
  gridSize: 7,
  defaultPlayerPosition: {
    x: Math.floor(7 / 2),
    y: Math.floor(7 / 2)
  }
};

export const PLAYER_LEVELS = {
  1: 'Aspiring Artist',
  2: 'Bedroom Producer',
  3: 'Local Performer',
  4: 'Rising Star',
  5: 'Established Artist'
};

export const CONFUCIUS_QUOTES = [
  {
    english: "Music produces a kind of pleasure which human nature cannot do without.",
    chinese: "音乐产生一种人类不可或缺的快乐。"
  },
  {
    english: "The superior man is modest in his speech, but exceeds in his actions.",
    chinese: "君子欲讷于言而敏于行。"
  },
  {
    english: "It does not matter how slowly you go as long as you do not stop.",
    chinese: "不怕慢，只怕站。"
  },
  {
    english: "Life is really simple, but we insist on making it complicated.",
    chinese: "人生本来很简单，但我们执意要把它变复杂。"
  },
  {
    english: "The man who moves a mountain begins by carrying away small stones.",
    chinese: "千里之行，始于足下。"
  },
  {
    english: "Everything has beauty, but not everyone sees it.",
    chinese: "万物皆有美，但并非每个人都能看到。"
  },
  {
    english: "Wheresoever you go, go with all your heart.",
    chinese: "无论你去哪里，都要全心全意。"
  },
  {
    english: "To be wronged is nothing, unless you continue to remember it.",
    chinese: "受辱不辱，唯忘忆为辱。"
  },
  {
    english: "He who learns but does not think, is lost! He who thinks but does not learn is in great danger.",
    chinese: "学而不思则罔，思而不学则殆。"
  },
  {
    english: "Real knowledge is to know the extent of one's ignorance.",
    chinese: "知之为知之，不知为不知，是知也。"
  }
];