talkshitgetdared
Version:
The truth will hurt. An open-source cursed-core engine for Truth & Dare prompts.
50 lines (47 loc) • 1.37 kB
text/typescript
// 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 darePrompts: Prompt[] = [
{
id: "es_sfw_d001",
text: "Escribe tu próximo mensaje con los ojos cerrados.",
contributor: "himanshu137",
difficulty: "easy",
category: "funny"
},
{
id: "es_sfw_d002",
text: "Envía un emoji que represente cómo te sientes ahora.",
contributor: "himanshu137",
difficulty: "easy",
category: "personal"
},
{
id: "es_sfw_d003",
text: "Graba un audio diciendo 'Estoy enamorado de mi almohada 🥲' como si fuera serio.",
contributor: "himanshu137",
difficulty: "medium",
category: "funny"
},
{
id: "es_sfw_d004",
text: "Envía tu última foto de galería (si no es privada).",
contributor: "himanshu137",
difficulty: "medium",
category: "embarrassing"
},
{
id: "es_sfw_d005",
text: "Cambia tu estado o nombre de usuario a algo ridículo por 5 minutos.",
contributor: "himanshu137",
difficulty: "medium",
category: "funny"
}
];