import { Card } from '../../../interfaces' import Set from '../Battle Styles' const card: Card = { set: Set, name: { en: "Shinx", fr: "Lixy" }, illustrator: "sowsow", rarity: "Common", category: "Pokemon", hp: 60, types: ["Lightning"], attacks: [{ name: { en: "Rear Kick", fr: "Ruade" }, damage: 20, cost: ["Lightning"] }], weaknesses: [{ type: "Fighting", value: "×2" }], retreat: 1, regulationMark: "E" } export default card