import { Card } from '../../../interfaces' import Set from '../Celestial Storm' const card: Card = { name: { en: "Lotad", fr: "Nénupiot", }, illustrator: "Atsuko Nishida", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 270, ], hp: 60, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Water", ], name: { en: "Surprise", fr: "Surprise", }, effect: { en: "Choose a random card from your opponent's hand. Your opponent reveals that card and shuffles it into their deck.", fr: "Choisissez une carte au hasard de la main de votre adversaire. Votre adversaire montre la carte choisie et la mélange avec son deck.", }, damage: 10, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], retreat: 1, } export default card