import { Card } from '../../../interfaces' import Set from '../BREAKthrough' const card: Card = { name: { en: "Piplup", fr: "Tiplouf", es: "Piplup", it: "Piplup", pt: "Piplup", de: "Plinfa" }, 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", es: "Chapoteo Ondulante", it: "Schizzi d'Onda", pt: "Onda Borrifante", de: "Wellenplatscher" }, damage: 30, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], retreat: 1, } export default card