import { Card } from '../../../interfaces' import Set from '../XY' const card: Card = { name: { en: "Scatterbug", fr: "Lépidonille", }, illustrator: "5ban Graphics", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 664, ], hp: 40, types: [ "Grass", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Bug Bite", fr: "Piqûre", }, damage: 10, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], retreat: 1, } export default card