import { Card } from "../../../interfaces" import Set from "../Genetic Apex" const card: Card = { set: Set, name: { en: "Spearow" }, illustrator: "Shiburingaru", category: "Pokemon", hp: 60, types: ["Colorless"], stage: "Basic", attacks: [{ cost: ["Colorless"], name: { en: "Peck" }, damage: "20" }], weaknesses: [{ type: "Lightning", value: "+20" }], retreat: 1, rarity: "One Diamond", description: { en: "Its reckless nature leads it to stand up to others—even large Pokémon—if it has to protect its territory.", } } export default card