import { Card } from '../../../interfaces' import Set from '../POP Series 8' const card: Card = { name: { en: "Luxio", }, illustrator: "Kagemaru Himeno", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 404, ], hp: 80, types: [ "Lightning", ], evolveFrom: { en: "Shinx", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", ], name: { en: "Fasten Claws", }, effect: { en: "Flip a coin. If heads, this attack does 10 damage plus 30 more damage.", }, damage: "10+", }, { cost: [ "Lightning", "Lightning", ], name: { en: "Thunder Fang", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 30, }, ], weaknesses: [ { type: "Fighting", value: "+20" }, ], resistances: [ { type: "Metal", value: "-20" }, ], description: { en: "Its claws loose electricity with enough amperage to cause fainting. They live in small groups." }, retreat: 0, variants: { normal: true, reverse: false, holo: true, firstEdition: false } } export default card