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: "sm12-30", localId: 30, // Card informations name: { en: "Victini", fr: "Victini", }, hp: 70, type: [ Type.FIRE, ], dexId: 494, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm12/30/low", fr: "https://assets.tcgdex.net/fr/sm/sm12/30/low", }, high: { en: "https://assets.tcgdex.net/en/sm/sm12/30/high", fr: "https://assets.tcgdex.net/fr/sm/sm12/30/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Saya Tsuruta", abilities: [{ id: 1301, type: AbilityType.TALENT, name: { en: "Victory Heal", fr: "Guérison Victoire", }, text: { en: "Once during your turn (before your attack), you may heal 20 damage from 1 of your Benched Pokémon.", fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez soigner 20 dégâts à l’un de vos Pokémon de Banc.", } }], attacks: [{ cost: [ Type.FIRE, Type.COLORLESS ], name: { en: "Combustion", fr: "Fournaise", }, damage: 30 }], weaknesses: [{ type: Type.WATER, value: "×2" }], retreat: 1, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Cosmic Eclipse", code: "sm12" } } export default card