import { Card } from "../../../interfaces" import Set from "../Genetic Apex" const card: Card = { set: Set, name: { en: "Weedle" }, illustrator: "Hajime Kusajima", category: "Pokemon", hp: 50, types: ["Grass"], stage: "Basic", attacks: [{ cost: ["Grass"], name: { en: "Sting" }, damage: "20" }], weaknesses: [{ type: "Fire", value: "+20" }], retreat: 1, rarity: "One Diamond", description: { en: "Often found in forests and grasslands. It has a sharp, toxic barb of around two inches on top of its head.", } } export default card