import { Card } from '../../../interfaces' import Set from '../Primal Clash' const card: Card = { name: { en: "Lotad", fr: "Nénupiot", }, illustrator: "Kanako Eo", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 270, ], hp: 60, types: [ "Grass", ], stage: "Basic", attacks: [ { cost: [ "Colorless", "Colorless", ], name: { en: "Beat", fr: "Bataille", }, damage: 20, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], retreat: 1, } export default card