import { Card } from "../../../interfaces" import Set from "../Wisdom of Sea and Sky" const card: Card = { set: Set, name: { en: "Ledyba" }, illustrator: "Sumiyoshi Kizuki", rarity: "One Diamond", category: "Pokemon", hp: 60, types: ["Grass"], description: { en: "These very cowardly Pokémon join together and\nuse Reflect to protect their nest." }, stage: "Basic", attacks: [{ name: { en: "Bug Bite" }, damage: 20, cost: ["Grass"] }], weaknesses: [{ type: "Fire", value: "+20" }], retreat: 1 } export default card