import { Card } from '../../../interfaces' import Set from '../FireRed & LeafGreen' const card: Card = { name: { en: "Bulbasaur", }, illustrator: "Atsuko Nishida", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 1, ], hp: 50, types: [ "Grass", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Sleep Poison", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Asleep and Poisoned.", }, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Razor Leaf", }, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], } export default card