import { Card } from '../../../interfaces' import Set from '../Generations' const card: Card = { name: { en: "Gulpin", fr: "Gloupti", }, illustrator: "Tomokazu Komiya", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 316, ], hp: 60, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Starvin’", fr: "Affamé", }, effect: { en: "Flip a coin. If tails, this attack does nothing.", fr: "Lancez une pièce. Si c'est pile, cette attaque ne fait rien.", }, damage: 30, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], retreat: 2, } export default card