import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/interfaces/Category' const card: Card = { // ids id: "bw3-97", localId: 97, // Card informations name: { en: "Virizion", fr: "Viridium", }, hp: 110, type: [ Type.GRASS, ], dexId: 640, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw3/97/low", fr: "https://assets.tcgdex.net/fr/bw/bw3/97/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw3/97/high", fr: "https://assets.tcgdex.net/fr/bw/bw3/97/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "5ban Graphics", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Double Draw", fr: "Double Pioche", }, text: { en: "Draw 2 cards.", fr: "Piochez 2 cartes.", }, },{ cost: [ Type.GRASS, Type.COLORLESS ], name: { en: "Leaf Wallop", fr: "Rafale de Feuilles", }, text: { en: "During your next turn, this Pokémon's Leaf Wallop attack does 40 more damage (before applying Weakness and Resistance).", fr: "Pendant votre prochain tour, l'attaque Rafale de Feuilles de ce Pokémon inflige 40 dégâts supplémentaires (avant application de la Faiblesse et de la Résistance).", }, damage: 40 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], resistances: [{ type: Type.WATER, value: "-20" }], retreat: 1, rarity: Rarity.ULTRARARE, category: Category.POKEMON, set: { name: "Noble Victories", code: "bw3" } } export default card