import { Card } from '../../../interfaces' import Set from '../Crystal Guardians' const card: Card = { name: { en: "Bulbasaur", }, illustrator: "Kagemaru Himeno", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 1, ], hp: 50, types: [ "Grass", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Growth", }, effect: { en: "Attach a Grass Energy card from your hand to Bulbasaur.", }, }, { cost: [ "Grass", "Colorless", ], name: { en: "Vine Whip", }, damage: 20, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], } export default card