import { Card } from '../../../interfaces' import Set from '../Rebel Clash' const card: Card = { name: { en: "Galarian Weezing", }, illustrator: "Mitsuhiro Arita", rarity: "Rare", category: "Pokemon", set: Set, evolveFrom: { en: "Koffing", }, abilities: [ { type: "Ability", name: { en: "Neutralizing Gas", }, effect: { en: "As long as this Pokémon is in the Active Spot, your opponent’s Pokémon in play have no Abilities, except for Neutralizing Gas.", }, }, ], attacks: [ { cost: [ "Darkness", ], name: { en: "Severe Poison", }, effect: { en: "Your opponent’s Active Pokémon is now Poisoned. Put 4 damage counters instead of 1 on that Pokémon during Pokémon Checkup.", }, }, ], weaknesses: [ { type: "Fighting", value: "×2" }, ], retreat: 3, } export default card