import { Card } from '../../../interfaces' import Set from '../Unbroken Bonds' const card: Card = { name: { en: "Bellsprout", fr: "Chétiflor", es: "Bellsprout", it: "Bellsprout", pt: "Bellsprout", de: "Knofensa" }, illustrator: "Ken Sugimori", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 69, ], hp: 50, types: [ "Grass", ], stage: "Basic", attacks: [ { cost: [ "Grass", ], name: { en: "Razor Leaf", fr: "Tranch’Herbe", es: "Hoja Afilada", it: "Foglielama", pt: "Folha Navalha", de: "Rasierblatt" }, damage: 20, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], retreat: 1, } export default card