import { Card } from '../../../interfaces' import Set from '../Hidden Legends' const card: Card = { name: { en: "Gulpin", }, illustrator: "Yuka Morii", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 316, ], hp: 50, types: [ "Grass", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Yawn", }, effect: { en: "The Defending Pokémon is now Asleep.", }, }, { cost: [ "Grass", ], name: { en: "Spit Poison", }, effect: { en: "The Defending Pokémon is now Poisoned.", }, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card