import { Card } from '../../../interfaces' import Set from '../HeartGold SoulSilver' const card: Card = { name: { en: "Caterpie", fr: "Chenipan", }, illustrator: "Tomokazu Komiya", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 10, ], hp: 30, types: [ "Grass", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Tackle", fr: "Charge", }, damage: 20, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], retreat: 1, description: { en: "Its feet have suction cups designed to stick to any surface. It tenaciously climbs trees to forage." }, variants: { normal: true, reverse: true, holo: false, firstEdition: false } } export default card