import { Card } from '../../../interfaces' import Set from '../Plasma Blast' const card: Card = { name: { en: "Fraxure", fr: "Incisache", es: "Fraxure", it: "Fraxure", pt: "Fraxure", de: "Sharfax" }, illustrator: "Masakazu Fukuda", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 611, ], hp: 80, types: [ "Dragon", ], evolveFrom: { en: "Axew", fr: "Coupenotte", }, stage: "Stage1", attacks: [ { cost: [ "Colorless", ], name: { en: "Paralyzing Gaze", fr: "Regard Paralysant", }, effect: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé.", }, }, { cost: [ "Fighting", "Metal", ], name: { en: "Dragon Claw", fr: "Dracogriffe", }, damage: 40, }, ], weaknesses: [ { type: "Dragon", value: "×2" }, ], retreat: 2, } export default card