import { Card } from '../../../interfaces' import Set from '../Shining Legends' const card: Card = { name: { en: "Carnivine", fr: "Vortente", es: "Carnivine", it: "Carnivine", pt: "Carnivine", de: "Venuflibis" }, illustrator: "Tomokazu Komiya", rarity: "Uncommon", category: "Pokemon", set: Set, dexId: [ 455, ], hp: 100, types: [ "Grass", ], stage: "Basic", attacks: [ { cost: [ "Grass", ], name: { en: "Flick Poison", fr: "Pichenette de Poison", es: "Sacudida de Veneno", it: "Velenogiro", pt: "Salpicar Veneno", de: "Springendes Gift" }, effect: { en: "Switch 1 of your opponent’s Benched Pokémon with their Active Pokémon. The new Active Pokémon is now Poisoned.", fr: "Échangez l’un des Pokémon de Banc de votre adversaire avec son Pokémon Actif. Le nouveau Pokémon Actif est maintenant Empoisonné.", es: "Cambia 1 de los Pokémon en Banca de tu rival por su Pokémon Activo. El nuevo Pokémon Activo pasa a estar Envenenado.", it: "Scambia uno dei Pokémon nella panchina del tuo avversario con il suo Pokémon attivo. Il nuovo Pokémon attivo viene avvelenato.", pt: "Troque 1 dos Pokémon no Banco do seu oponente pelo Pokémon Ativo dele(a). O novo Pokémon Ativo agora está Envenenado.", de: "Tausche 1 Pokémon auf der Bank deines Gegners gegen sein Aktives Pokémon aus. Das neue Aktive Pokémon ist jetzt vergiftet." }, }, { cost: [ "Grass", "Colorless", ], name: { en: "Crunch", fr: "Mâchouille", es: "Triturar", it: "Sgranocchio", pt: "Mastigada", de: "Knirscher" }, effect: { en: "Discard an Energy from your opponent’s Active Pokémon.", fr: "Défaussez une Énergie du Pokémon Actif de votre adversaire.", es: "Descarta 1 Energía del Pokémon Activo de tu rival.", it: "Scarta un’Energia assegnata al Pokémon attivo del tuo avversario.", pt: "Descarte 1 Energia do Pokémon Ativo do seu oponente.", de: "Lege 1 Energie vom Aktiven Pokémon deines Gegners auf seinen Ablagestapel." }, damage: 30, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], retreat: 2, } export default card