import { Card } from '../../../interfaces' import Set from '../FireRed & LeafGreen' const card: Card = { name: { en: "Bellsprout", fr: "Chétiflor" }, illustrator: "Tomokazu Komiya", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 69, ], hp: 50, types: [ "Grass", ], stage: "Basic", attacks: [ { cost: [ "Grass", ], name: { en: "Vine Whip", fr: "Fouet lianes" }, damage: 10, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], } export default card