import { Card } from '../../../interfaces' import Set from '../Primal Clash' const card: Card = { name: { en: "Lombre", fr: "Lombre", }, illustrator: "Naoyo Kimura", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 271, ], hp: 80, types: [ "Grass", ], evolveFrom: { en: "Lotad", fr: "Nénupiot", }, stage: "Stage1", attacks: [ { cost: [ "Grass", ], name: { en: "Hook", fr: "Crochet", }, damage: 20, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Beat", fr: "Bataille", }, damage: 30, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], retreat: 2, } export default card