import { Card } from '../../../interfaces' import Set from '../Sandstorm' const card: Card = { name: { en: "Lotad", fr: "Nenupiot" }, illustrator: "Tomokazu Komiya", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 270, ], hp: 40, types: [ "Water", ], stage: "Basic", abilities: [ { type: "Poke-BODY", name: { en: "Rain Dish", fr: "Cuvette" }, effect: { en: "At any time between turns, remove 1 damage counter from Lotad.", fr: "N'importe quand entre deux tours, retirez à Nenupiot un marqueur de dégât." }, }, ], attacks: [ { cost: [ "Colorless", ], name: { en: "Ram", fr: "Collision" }, damage: 10, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card