import { Card } from '../../../interfaces' import Set from '../Next Destinies' const card: Card = { name: { en: "Panpour", fr: "Flotajou", }, illustrator: "Reiko Tanoue", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 515, ], hp: 70, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Water", "Colorless", ], name: { en: "Water Gun", fr: "Pistolet à O", }, damage: 30, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], retreat: 1, } export default card