import { Card } from '../../../interfaces' import Set from '../Champion\'s Path' const card: Card = { name: { en: "Beedrill", fr: "Dardargnan", es: "Beedrill", it: "Beedrill", pt: "Beedrill", de: "Bibor" }, illustrator: "Hideki Ishikawa", rarity: "Uncommon", category: "Pokemon", set: Set, hp: 140, types: [ "Grass", ], evolveFrom: { en: "Kakuna", fr: "Coconfort" }, attacks: [ { cost: [ "Grass", ], name: { en: "Poison Jab", fr: "Direct Toxik", es: "Puya Nociva", it: "Velenpuntura", pt: "Golpe Envenenado", de: "Gifthieb" }, effect: { en: "Your opponent's Active Pokémon is now Poisoned.", fr: "Le Pokémon Actif de votre adversaire est maintenant Empoisonné.", es: "El Pokémon Activo de tu rival pasa a estar Envenenado.", it: "Il Pokémon attivo del tuo avversario viene avvelenato.", pt: "O Pokémon Ativo do seu oponente agora está Envenenado.", de: "Das Aktive Pokémon deines Gegners ist jetzt vergiftet." }, damage: 80, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], retreat: 1, regulationMark: "D", variants: { normal: true, reverse: true, holo: false, firstEdition: false }, stage: "Stage2", description: { en: "May appear in a swarm. Flies at violent speeds, all the while stabbing with the toxic stinger on its rear." } } export default card