import { Card } from "../../../interfaces" import Set from "../Brilliant Stars" 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: 40, types: ["Lightning"], stage: "Basic", attacks: [{ cost: ["Lightning"], name: { en: "Gnaw", fr: "Ronge", es: "Roer", it: "Rosicchiamento", pt: "RoĆ­da", de: "Nagen" }, damage: 10 }], retreat: 0, regulationMark: "F", variants: { normal: true, reverse: true, holo: false, firstEdition: false } } export default card