import { Card } from '../../../interfaces' import Set from '../FireRed & LeafGreen' const card: Card = { name: { en: "Victreebel", }, illustrator: "Tomokazu Komiya", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 71, ], hp: 110, types: [ "Grass", ], evolveFrom: { en: "Weepinbell", }, stage: "Stage2", abilities: [ { type: "Poke-BODY", name: { en: "Acid Sampler", }, effect: { en: "As long as Victreebel is your Active Pokémon, put 1 damage counter on each Defending Pokémon between turns. Acid Sampler stops working if your other Active Pokémon is not a Victreebel.", }, }, ], attacks: [ { cost: [ "Grass", "Colorless", "Colorless", ], name: { en: "Acid", }, effect: { en: "The Defending Pokémon can't retreat until the end of your opponent's next turn.", }, damage: 50, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], } export default card