import { Card } from '../../../interfaces' import Set from '../Emerald' const card: Card = { name: { en: "Torchic", }, illustrator: "Midori Harada", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 255, ], hp: 50, types: [ "Fire", ], stage: "Basic", attacks: [ { cost: [ "Fire", ], name: { en: "Hypnotic Gaze", }, effect: { en: "The Defending Pokémon is now Asleep.", }, }, ], weaknesses: [ { type: "Water", value: "×2" }, ], } export default card