// Define Prompt interface inline to avoid import issues
type DifficultyLevel = 'easy' | 'medium' | 'hard' | 'extreme';
type PromptCategory = 'personal' | 'embarrassing' | 'relationships' | 'funny' | 'physical' | 'social' | 'intimate' | 'confession';

interface Prompt {
  id: string;
  text: string;
  contributor: string;
  difficulty: DifficultyLevel;
  category: PromptCategory;
}

export const truthPrompts: Prompt[] = [
  {
    id: "en_sfw_t001",
    text: "What's the last thing you lied about to your partner or best friend?",
    contributor: "kyrexiii",
    difficulty: "medium",
    category: "confession"
  },
  {
    id: "en_sfw_t002",
    text: "Have you ever stalked your crush's profile more than once in a day?",
    contributor: "kyrexiii",
    difficulty: "easy",
    category: "personal"
  },
  {
    id: "en_sfw_t003",
    text: "Have you ever sent a message and then panicked after sending it?",
    contributor: "kyrexiii",
    difficulty: "easy",
    category: "embarrassing"
  },
  {
    id: "en_sfw_t004",
    text: "Do you still check on someone you used to like?",
    contributor: "kyrexiii",
    difficulty: "medium",
    category: "confession"
  },
  {
    id: "en_sfw_t005",
    text: "Have you ever pretended to be offline to avoid someone?",
    contributor: "kyrexiii",
    difficulty: "easy",
    category: "funny"
  },
  {
    id: "en_sfw_t006",
    text: "What's one thing about your partner or crush that annoys you?",
    contributor: "kyrexiii",
    difficulty: "medium",
    category: "relationships"
  },
  {
    id: "en_sfw_t007",
    text: "Have you ever ignored a message even though you saw it instantly?",
    contributor: "kyrexiii",
    difficulty: "easy",
    category: "social"
  },
  {
    id: "en_sfw_t008",
    text: "What’s a harmless secret you've kept from your partner or friend?",
    contributor: "kyrexiii",
    difficulty: "medium",
    category: "confession"
  },
  {
    id: "en_sfw_t009",
    text: "Who’s someone you still think about from your past chats?",
    contributor: "kyrexiii",
    difficulty: "medium",
    category: "personal"
  },
  {
    id: "en_sfw_t010",
    text: "What's the last thing you searched on Google?",
    contributor: "kyrexiii",
    difficulty: "easy",
    category: "funny"
  },
  {
    id: "en_sfw_t011",
    text: "Have you ever removed someone's story/viewed list just to stalk them?",
    contributor: "kyrexiii",
    difficulty: "easy",
    category: "embarrassing"
  },
  {
    id: "en_sfw_t012",
    text: "Have you ever muted someone’s notifications and never told them?",
    contributor: "kyrexiii",
    difficulty: "medium",
    category: "confession"
  },
  {
    id: "en_sfw_t013",
    text: "What’s one thing your partner/friend does that you secretly find cringe?",
    contributor: "kyrexiii",
    difficulty: "medium",
    category: "personal"
  },
  {
    id: "en_sfw_t014",
    text: "What's a habit you want to change about yourself but keep ignoring?",
    contributor: "kyrexiii",
    difficulty: "medium",
    category: "personal"
  },
  {
    id: "en_sfw_t015",
    text: "Have you ever acted interested in a conversation just to be polite?",
    contributor: "kyrexiii",
    difficulty: "easy",
    category: "social"
  },
  {
    id: "en_sfw_t016",
    text: "Do you reply late to messages on purpose to seem busy?",
    contributor: "kyrexiii",
    difficulty: "medium",
    category: "confession"
  },
  {
    id: "en_sfw_t017",
    text: "Have you ever re-read old chats with your ex or crush just to feel something?",
    contributor: "kyrexiii",
    difficulty: "medium",
    category: "confession"
  },
  {
    id: "en_sfw_t018",
    text: "What's something you wish your online friends knew about you?",
    contributor: "kyrexiii",
    difficulty: "medium",
    category: "personal"
  },
  {
    id: "en_sfw_t019",
    text: "Who do you vent to when you’re mentally exhausted?",
    contributor: "kyrexiii",
    difficulty: "medium",
    category: "personal"
  },
  {
    id: "en_sfw_t020",
    text: "What emoji do you overuse to hide awkwardness?",
    contributor: "kyrexiii",
    difficulty: "easy",
    category: "funny"
  }
];
