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: "bw3-13", localId: 13, // Card informations name: { en: "Virizion", fr: "Viridium", }, hp: 110, type: [ Type.GRASS, ], dexId: 640, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw3/13/low.png", fr: "https://assets.tcgdex.net/fr/bw/bw3/13/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw3/13/high.png", fr: "https://assets.tcgdex.net/fr/bw/bw3/13/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 4, name: "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.RareHolo, category: Category.POKEMON, set: { name: "Noble Victories", code: "bw3" } } export default card