import { Card } from '../../../interfaces' import Set from '../Arceus' const card: Card = { name: { en: "Shinx", }, illustrator: "sui", rarity: "Common", category: "Pokemon", set: Set, dexId: [ 403, ], types: [ "Lightning", ], stage: "Basic", attacks: [ { cost: [ "Colorless", ], name: { en: "Gnaw", }, damage: 10, }, { cost: [ "Colorless", "Colorless", ], name: { en: "Swagger", }, effect: { en: "Flip a coin. If heads, discard an Energy card attached to the Defending Pokémon.", }, damage: 20, }, ], weaknesses: [ { type: "Fighting", value: "+10" }, ], resistances: [ { type: "Metal", value: "-20" }, ], retreat: 1, } export default card