import { Card } from '../../../interfaces' import Set from '../POP Series 6' const card: Card = { name: { en: "Piplup", }, illustrator: "Atsuko Nishida", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 393, ], hp: 60, types: [ "Water", ], stage: "Basic", attacks: [ { name: { en: "Peck", }, damage: 10, }, { cost: [ "Water", "Colorless", ], name: { en: "Water Splash", }, effect: { en: "Flip a coin. If heads, this attack does 20 damage plus 10 more damage.", }, damage: 20, }, ], weaknesses: [ { type: "Lightning", value: "+10" }, ], } export default card