import { Card } from '../../../interfaces' import Set from '../Legendary Treasures' const card: Card = { name: { en: "Prinplup", }, illustrator: "Miki Tanaka", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 394, ], hp: 90, types: [ "Water", ], evolveFrom: { en: "Piplup", }, stage: "Stage1", attacks: [ { cost: [ "Water", "Colorless", ], name: { en: "Water Splash", }, effect: { en: "Flip a coin. If heads, this attack does 30 more damage.", }, damage: 20, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], retreat: 2 } export default card