import { Card } from '../../../interfaces' import Set from '../Boundaries Crossed' const card: Card = { name: { en: "Psyduck", fr: "Psykokwak", es: "Psyduck", it: "Psyduck", pt: "Psyduck", de: "Enton" }, illustrator: "match", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 54, ], hp: 60, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Dazzle Dance", fr: "Danse Éblouissante", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Confused.", fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Confus.", }, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], retreat: 1, } export default card