import { Card } from '../../../interfaces' import Set from '../Rebel Clash' const card: Card = { name: { en: "Toxel", }, illustrator: "nagimiso", rarity: "Common", category: "Pokemon", set: Set, attacks: [ { cost: [ "Lightning", ], name: { en: "Tight Jaw", }, effect: { en: "Flip a coin. If heads, your opponent’s Active Pokémon is now Paralyzed.", }, damage: 10, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 2, } export default card