import { Card } from '../../../interfaces' import Set from '../Lost Thunder' const card: Card = { name: { en: "Popplio", fr: "Otaquin", }, illustrator: "Hitoshi Ariga", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 728, ], hp: 60, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Water", "Colorless", ], name: { en: "Disarming Voice", fr: "Voix Enjôleuse", }, effect: { en: "Flip a coin. If heads, your opponent's Active Pokémon is now Confused.", fr: "Lancez une pièce. Si c’est face, le Pokémon Actif de votre adversaire est maintenant Confus.", }, damage: 20, }, ], weaknesses: [ { type: "Grass", value: "×2" }, ], retreat: 1, } export default card