import { Card } from '../../../interfaces' import Set from '../Darkness Ablaze' const card: Card = { name: { en: "Toxapex", }, illustrator: "Masakazu Fukuda", rarity: "Uncommon", category: "Pokemon", set: Set, hp: 130, types: [ "Water", ], evolveFrom: { en: "Mareanie", }, attacks: [ { cost: [ "Colorless", ], name: { en: "Recover", }, effect: { en: "Discard an Energy from this Pokémon and heal all damage from it.", }, }, { cost: [ "Water", "Colorless", "Colorless", ], name: { en: "Poisonous Whip", }, effect: { en: "Your opponent’s Active Pokémon is now Poisoned.", }, damage: 80, }, ], weaknesses: [ { type: "Lightning", value: "×2" }, ], retreat: 3, } export default card