import { Card } from '../../../interfaces' import Set from '../HeartGold SoulSilver' const card: Card = { name: { en: "Chikorita", fr: "Germignon", }, illustrator: "Shin Nagasawa", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 152, ], hp: 60, types: [ "Grass", ], stage: "Basic", attacks: [ { cost: [ "Grass", ], name: { en: "Tackle", fr: "Charge", }, damage: 10, }, { cost: [ "Grass", "Colorless", ], name: { en: "Razor Leaf", fr: "Tranch’herbe", }, damage: 20, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], resistances: [ { type: "Water", value: "-20" }, ], retreat: 1, description: { en: "Its pleasantly aromatic leaf has the ability to check the humidity and temperature." }, variants: { normal: true, reverse: true, holo: false, firstEdition: false } } export default card