import { Card } from '../../../interfaces' import Set from '../HeartGold SoulSilver' const card: Card = { name: { en: "Ledyba", fr: "Coxy", }, illustrator: "Yuka Morii", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 165, ], hp: 50, types: [ "Grass", ], stage: "Basic", attacks: [ { cost: [ "Grass", ], name: { en: "Ram", fr: "Collision", }, damage: 10, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Comet Punch", fr: "Poing comète", }, effect: { en: "Flip 4 coins. This attack does 10 damage times the number of heads.", fr: "Lancez 4 pièces. Cette attaque inflige 10 dégâts multipliés par le nombre de faces.", }, damage: "10×", }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-20" }, ], retreat: 1, description: { en: "When the weather turns cold, lots of Ledyba gather from everywhere to cluster and keep each other warm." }, variants: { normal: true, reverse: true, holo: false, firstEdition: false } } export default card