import { Card } from '../../../interfaces' import Set from '../Detective Pikachu' const card: Card = { name: { en: "Bulbasaur", fr: "Bulbizarre", }, illustrator: undefined, rarity: "Common", category: "Pokemon", set: Set, dexId: [ 1, ], hp: 60, types: [ "Grass", ], stage: "Basic", attacks: [ { cost: [ "Grass", ], name: { en: "Find a Friend", fr: "Trouver un Ami", }, effect: { en: "Search your deck for a {G} Pokémon, reveal it, and put it into your hand. Then, shuffle your deck.", fr: "Cherchez un Pokémon Grass dans votre deck, montrez-le, puis ajoutez-le à votre main. Mélangez ensuite votre deck.", }, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], retreat: 1, } export default card