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: "bw9-12", localId: 12, // Card informations name: { en: "Flareon", fr: "Pyroli", }, hp: 100, type: [ Type.FIRE, ], dexId: 136, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw9/12/low", fr: "https://assets.tcgdex.net/fr/bw/bw9/12/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw9/12/high", fr: "https://assets.tcgdex.net/fr/bw/bw9/12/high", }, }, evolveFrom: { en: "Eevee", fr: "Évoli", }, tags: [ Tag.STAGE1, ], illustrator: "5ban Graphics", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Vengeance", fr: "Rétorsion", }, text: { en: "Does 10 more damage for each Pokémon in your discard pile.", fr: "Inflige 10 dégâts supplémentaires pour chaque Pokémon dans votre pile de défausse.", }, damage: 20 },{ cost: [ Type.FIRE, Type.COLORLESS, Type.COLORLESS ], name: { en: "Heat Tackle", fr: "Charge Énergétique", }, text: { en: "This Pokémon does 10 damage to itself.", fr: "Ce Pokémon s'inflige 10 dégâts.", }, damage: 90 }], weaknesses: [{ type: Type.WATER, value: "×2" }], retreat: 2, rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Plasma Freeze", code: "bw9" } } export default card