import { Card } from '../../../interfaces' import Set from '../Unbroken Bonds' const card: Card = { name: { en: "Oddish", fr: "Mystherbe", }, illustrator: "Asako Ito", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 43, ], hp: 60, types: [ "Grass", ], stage: "Basic", attacks: [ { cost: [ "Grass", ], name: { en: "Hook", fr: "Crochet", }, damage: 10, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], retreat: 1, } export default card