import { Card } from "../../../interfaces" import Set from "../Astral Radiance" const card: Card = { dexId: [123], set: Set, name: { en: "Scyther", fr: "Insécateur", es: "Scyther", it: "Scyther", pt: "Scyther", de: "Sichlor" }, rarity: "Common", category: "Pokemon", hp: 90, types: ["Grass"], stage: "Basic", attacks: [{ cost: ["Colorless"], name: { en: "Blinding Scythe", fr: "Pulvérisation Aveuglante", es: "Guadaña Cegadora", it: "Falceaccecante", pt: "Foice Ofuscante", de: "Blendende Sense" }, damage: 20 }], retreat: 1, regulationMark: "F", variants: { normal: true, reverse: true, holo: false, firstEdition: false } } export default card