import { Card } from '../../../interfaces' import Set from '../Darkness Ablaze' const card: Card = { name: { en: "Panpour", fr: "Flotajou", es: "Panpour", it: "Panpour", pt: "Panpour", de: "Sodamak" }, illustrator: "ryoma uratsuka", rarity: "Common", category: "Pokemon", set: Set, hp: 60, types: [ "Water", ], attacks: [ { cost: [ "Water", ], name: { en: "Water Gun", fr: "Pistolet à O", es: "Pistola Agua", it: "Pistolacqua", pt: "Revólver d'Água", de: "Aquaknarre" }, damage: 10, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Bite", fr: "Morsure", es: "Mordisco", it: "Morso", pt: "Mordida", de: "Biss" }, damage: 20, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], retreat: 1, regulationMark: "D", variants: { normal: true, reverse: true, holo: false, firstEdition: false }, stage: "Basic", description: { en: "The water stored inside the tuft on its head is full of nutrients. Plants that receive its water grow large." } } export default card