import Card from '../../../interfaces/Card' import Type from '../../../interfaces/Type' import Tag from '../../../interfaces/Tag' import Rarity from '../../../interfaces/Rarity' import AbilityType from '../../../interfaces/AbilityType' import Category from '../../../interfaces/Category' const card: Card = { // ids id: "ex6-17", localId: 17, // Card informations name: { en: "Victreebel", }, hp: 110, type: [ Type.GRASS, ], dexId: 71, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex6/17/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex6/17/high.png", }, }, evolveFrom: { en: "Weepinbell", }, tags: [ Tag.STAGE2, ], illustrator: { id: 18, name: "Tomokazu Komiya" }, abilities: [{ id: 136, type: AbilityType.POKEBODY, name: { en: "Acid Sampler", }, text: { 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: [ Type.GRASS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Acid", }, text: { en: "The Defending Pokémon can't retreat until the end of your opponent's next turn.", }, damage: 50 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], rarity: Rarity.RareHolo, category: Category.POKEMON, set: { name: "FireRed & LeafGreen", code: "ex6" } } export default card