import { Card } from '../../../interfaces' import Set from '../Rebel Clash' const card: Card = { name: { en: "Toxtricity", }, illustrator: "TOKIYA", rarity: "Rare", category: "Pokemon", set: Set, evolveFrom: { en: "Toxel", }, attacks: [ { cost: [ "Lightning", ], name: { en: "Poison Shout", }, effect: { en: "This attack does 20 damage to each of your opponent’s Pokémon. (Don’t apply Weakness and Resistance for Benched Pokémon.) Your opponent’s Active Pokémon is now Poisoned.", }, }, { cost: [ "Lightning", "Colorless", "Colorless", ], name: { en: "Hammer In", }, damage: 90, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 2, } export default card