import { Card } from '../../../interfaces' import Set from '../Lost Thunder' const card: Card = { name: { en: "Popplio", fr: "Otaquin", }, illustrator: "Yusuke Ohmura", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 728, ], hp: 70, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Water", ], name: { en: "Blot", fr: "Pâté", }, effect: { en: "Heal 10 damage from this Pokémon.", fr: "Soignez 10 dégâts à ce Pokémon.", }, damage: 10, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], retreat: 1, } export default card