import { Card } from "../../../interfaces" import Set from "../Crown Zenith" const card: Card = { dexId: [403], set: Set, name: { en: "Shinx", fr: "Lixy", es: "Shinx", it: "Shinx", pt: "Shinx", de: "Sheinux" }, rarity: "Common", category: "Pokemon", hp: 60, types: ["Lightning"], stage: "Basic", attacks: [{ cost: ["Lightning"], name: { en: "Rear Kick", fr: "Ruade", es: "Patada Trasera", it: "Retrocalcio", pt: "Chute Traseiro", de: "Rückwärtskick" }, damage: 20 }], retreat: 1, regulationMark: "E", variants: { normal: true, reverse: true, holo: false, firstEdition: false } } export default card