import { Card } from '../../../interfaces' import Set from '../Rebel Clash' const card: Card = { name: { en: "Toxel", fr: "Toxizap" }, illustrator: "nagimiso", rarity: "Common", category: "Pokemon", set: Set, attacks: [ { cost: [ "Lightning", ], name: { en: "Tight Jaw", fr: "Mâchoire Serrée" }, effect: { en: "Flip a coin. If heads, your opponent’s Active Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c’est face, le Pokémon Actif de votre adversaire est maintenant Paralysé." }, damage: 10, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 2, hp: 70, types: ["Lightning"] } export default card