import { Card } from '../../../interfaces' import Set from '../HeartGold SoulSilver' const card: Card = { name: { en: "Bayleef", fr: "Macronium", }, illustrator: "Shin Nagasawa", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 153, ], hp: 90, types: [ "Grass", ], evolveFrom: { en: "Chikorita", fr: "Germignon", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", ], name: { en: "Hammer In", fr: "Enfoncer", }, damage: 20, }, { cost: [ "Grass", "Colorless", "Colorless", ], name: { en: "Razor Leaf", fr: "Tranch’herbe", }, damage: 50, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], resistances: [ { type: "Water", value: "-20" }, ], retreat: 2, description: { en: "A spicy aroma emanates from around its neck. The aroma acts as a stimulant to restore health." }, variants: { normal: true, reverse: false, holo: false, firstEdition: false } } export default card