import { Card } from '../../../interfaces' import Set from '../Next Destinies' const card: Card = { name: { en: "Shinx", fr: "Lixy", es: "Shinx", it: "Shinx", pt: "Shinx", de: "Sheinux" }, illustrator: "Atsuko Nishida", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 403, ], hp: 60, types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Lightning", ], name: { en: "Jump On", fr: "Saut", }, effect: { en: "Flip a coin. If heads, this attack does 10 more damage.", fr: "Lancez une pièce. Si c'est face, cette attaque inflige 10 dégâts supplémentaires.", }, damage: 10, }, { cost: [ "Lightning", "Colorless", ], name: { en: "Static Shock", fr: "Choc Statique", }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 1, } export default card