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: "xy1-28", localId: 28, // Card informations name: { en: "Talonflame", fr: "Flambusard", }, hp: 130, type: [ Type.FIRE, ], dexId: 663, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy1/28/low.png", fr: "https://assets.tcgdex.net/fr/xy/xy1/28/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xy1/28/high.png", fr: "https://assets.tcgdex.net/fr/xy/xy1/28/high.png", }, }, evolveFrom: { en: "Fletchinder", fr: "Braisillon", }, tags: [ Tag.STAGE2, ], illustrator: { id: 4, name: "5ban Graphics" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Devastating Wind", fr: "Vent Dévastateur", }, text: { en: "Your opponent shuffles his or her hand into his or her deck and draws 4 cards.", fr: "Votre adversaire mélange sa main avec son deck et pioche 4 cartes.", }, },{ cost: [ Type.FIRE, Type.FIRE ], name: { en: "Flare Blitz", fr: "Boutefeu", }, text: { en: "Discard all Fire Energy attached to this Pokémon.", fr: "Défaussez toutes les Énergies Fire attachées à ce Pokémon.", }, damage: 100 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], resistances: [{ type: Type.FIGHTING, value: "-20" }], rarity: Rarity.RareHolo, category: Category.POKEMON, set: { name: "XY", code: "xy1" } } export default card