import { Card } from '../../../interfaces' import Set from '../Skyridge' const card: Card = { name: { en: "Ledyba", }, illustrator: "Masako Yamashita", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 165, ], hp: 40, types: [ "Grass", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Teary Eyes", }, effect: { en: "During your opponent's next turn, any damage done to Ledyba is reduced by 20.", }, }, { cost: [ "Grass", ], name: { en: "Quick Turn", }, effect: { en: "Flip 2 coins. This attack does 10 damage times the number of heads.", }, damage: 10, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, ], } export default card