import { Card } from '../../../interfaces' import Set from '../Plasma Storm' const card: Card = { name: { en: "Lotad", fr: "Nénupiot", es: "Lotad", it: "Lotad", pt: "Lotad", de: "Loturzel" }, illustrator: "Midori Harada", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 270, ], hp: 60, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Water", "Colorless", ], name: { en: "Bubble Beam", fr: "Bulles d'O", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé.", }, damage: 20, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], retreat: 1, } export default card