import { Card } from '../../../interfaces' import Set from '../Macdonald\'s Collection 2021' const card: Card = { name: { en: "Popplio", fr: "Otaquin", }, illustrator: "Kouki Saitou", rarity: "None", category: "Pokemon", set: Set, dexId: [ 728, ], hp: 70, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Water", ], name: { en: "Pound", fr: "Écras’Face", }, damage: 10, }, { cost: [ "Water", "Colorless", ], name: { en: "Water Gun", fr: "Pistolet à O", }, damage: 20, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], retreat: 1, description: { en: "This Pokémon snorts body fluids from its nose, blowing balloons to smash into its foes. It’s famous for being a hard worker." }, variants: { normal: true, reverse: false, holo: true, firstEdition: false } } export default card