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: "bw7-23", localId: 23, // Card informations name: { en: "Victini", fr: "Victini", }, hp: 70, type: [ Type.FIRE, ], dexId: 494, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw7/23/low", fr: "https://assets.tcgdex.net/fr/bw/bw7/23/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw7/23/high", fr: "https://assets.tcgdex.net/fr/bw/bw7/23/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Masakazu Fukuda", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Collect", fr: "Collecte", }, text: { en: "Draw a card.", fr: "Piochez une carte.", }, },{ cost: [ Type.FIRE, Type.COLORLESS ], name: { en: "Relentless Flames", fr: "Flammes Incessantes", }, text: { en: "Flip a coin until you get tails. This attack does 30 damage times the number of heads.", fr: "Lancez une pièce jusqu'à ce que vous obteniez un côté pile. Cette attaque inflige 30 dégâts multipliés par le nombre de côtés face.", }, damage: 30 }], weaknesses: [{ type: Type.WATER, value: "×2" }], retreat: 1, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Boundaries Crossed", code: "bw7" } } export default card