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: "smp-SM186", localId: "SM186", // Card informations name: { en: "Flareon", fr: "Pyroli", }, hp: 110, type: [ Type.FIRE, ], dexId: 136, evolveFrom: { en: "Eevee", fr: "Évoli", }, tags: [ Tag.STAGE1, ], illustrator: "Shin Nagasawa", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Bite", fr: "Morsure", }, damage: 20 },{ cost: [ Type.FIRE, Type.FIRE, Type.COLORLESS ], name: { en: "Fire Spin", fr: "Danse Flamme", }, text: { en: "Discard 2 Fire Energy from this Pokémon.", fr: "Défaussez 2 Énergies Fire de ce Pokémon.", }, damage: 130 }], weaknesses: [{ type: Type.WATER, value: "×2" }], retreat: 2, rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "SM Black Star Promos", code: "smp" } } export default card