import { Card } from '../../../interfaces' import Set from '../Sandstorm' const card: Card = { name: { en: "Lotad", }, 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", }, effect: { en: "At any time between turns, remove 1 damage counter from Lotad.", }, }, ], attacks: [ { cost: [ "Colorless", ], name: { en: "Ram", }, damage: 10, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card