import { FoodData } from '../types';

export const FOOD_DATABASE: Record<string, FoodData> = {
  'rice': {
    keywords: ['rice', '밥', '쌀', 'bap', 'rice bowl', 'grain'],
    calories: 130,
    standardPortion: 200,
  },
  'noodles': {
    keywords: ['noodles', '라면', '면', 'ramen', 'noodle', 'pasta', 'spaghetti'],
    calories: 200,
    standardPortion: 300,
  },
  // ... 기존 데이터베이스 항목들
};

export const PLATE_SIZE_CONSTANTS = {
  SMALL_PLATE: 20,
  MEDIUM_PLATE: 25,
  LARGE_PLATE: 30,
};

export const FOOD_LABELS = [
  'guacamole', 'consomme', 'hot pot', 'trifle', 'ice cream', 'ice lolly',
  // ... 기존 라벨들
]; 