import { Card } from '../../../interfaces' import Set from '../Fossil' const card: Card = { name: { en: "Psyduck", }, illustrator: "Kagemaru Himeno", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 54, ], hp: 50, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Psychic", ], name: { en: "Headache", }, effect: { en: "Your opponent can't play Trainer cards during his or her next turn.", }, }, { cost: [ "Water", ], name: { en: "Fury Swipes", }, effect: { en: "Flip 3 coins. This attack does 10 damage times the number of heads.", }, damage: 10, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card