import { Card } from '../../../interfaces' import Set from '../Legends Awakened' const card: Card = { name: { en: "Gulpin", fr: "Gloupti", }, illustrator: "Ken Sugimori", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 316, ], hp: 60, types: [ "Psychic", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Amnesia", fr: "Amnésie", }, effect: { en: "Choose 1 of the Defending Pokémon's attacks. That Pokémon can't use that attack during your opponent's next turn.", fr: "Choisissez 1 des attaques du Pokémon Défenseur. Il ne peut pas utiliser cette attaque lors du prochain tour de votre adversaire.", }, }, { cost: [ "Psychic", ], name: { en: "Gastro Acid", fr: "Suc Digestif", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé.", }, }, ], weaknesses: [ { type: "Psychic", value: "+10" }, ], retreat: 2, } export default card