import { Card } from '../../../interfaces' import Set from '../Expedition Base Set' const card: Card = { name: { en: "Spearow", }, illustrator: "Kyoko Umemoto", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 21, ], hp: 40, types: [ "Colorless", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Razor Wind", }, effect: { en: "Flip a coin. If tails, this attack does nothing.", }, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], resistances: [ { type: "Fighting", value: "-30" }, ], } export default card