import { Card } from "../../../interfaces" import Set from "../Extradimensional Crisis" const card: Card = { set: Set, name: { en: "Shinx" }, illustrator: "Sanosuke Sakuma", rarity: "One Diamond", category: "Pokemon", hp: 60, types: ["Lightning"], description: { en: "The extension and contraction of its muscles\ngenerates electricity. It glows when in trouble." }, stage: "Basic", attacks: [{ name: { en: "Bite" }, damage: 20, cost: ["Lightning"] }], weaknesses: [{ type: "Fighting", value: "+20" }], retreat: 1 } export default card