import { Card } from '../../../interfaces' import Set from '../Sandstorm' const card: Card = { name: { en: "Lotad", fr: "Nenupiot" }, illustrator: "Mitsuhiro Arita", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 270, ], hp: 50, types: [ "Water", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Tackle", fr: "Charge" }, damage: 10, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Blot", fr: "Pâté" }, effect: { en: "Remove 1 damage counter from Lotad.", fr: "Retirez à Nenupiot un marqueur de dégât." }, damage: 20, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], } export default card