import { Card } from '../../../interfaces' import Set from '../BREAKthrough' const card: Card = { name: { en: "Piplup", fr: "Tiplouf", }, illustrator: "Kanako Eo", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 393, ], hp: 60, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Water", "Colorless", ], name: { en: "Wave Splash", fr: "Grosse Vague", }, damage: 30, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], retreat: 1, } export default card