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: "xy4-10", localId: 10, // Card informations name: { en: "Talonflame", fr: "Flambusard", }, hp: 130, type: [ Type.FIRE, ], dexId: 663, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy4/10/low", fr: "https://assets.tcgdex.net/fr/xy/xy4/10/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xy4/10/high", fr: "https://assets.tcgdex.net/fr/xy/xy4/10/high", }, }, evolveFrom: { en: "Fletchinder", fr: "Braisillon", }, tags: [ Tag.STAGE2, ], illustrator: "Mitsuhiro Arita", attacks: [{ cost: [ Type.FIRE ], name: { en: "Acrobatics", fr: "Acrobatie", }, text: { en: "Flip 2 coins. This attack does 30 more damage for each heads.", fr: "Lancez 2 pièces. Cette attaque inflige 30 dégâts supplémentaires pour chaque côté face.", }, damage: 30 },{ cost: [ Type.FIRE, Type.FIRE, Type.COLORLESS ], name: { en: "Jet Shoot", fr: "Coup Éclair", }, text: { en: "During your opponent's next turn, any damage done to this Pokémon by attacks is increased by 40 (after applying Weakness and Resistance).", fr: "Pendant le prochain tour de votre adversaire, tous les dégâts infligés à ce Pokémon par des attaques sont augmentés de 40 (après application de la Faiblesse et de la Résistance).", }, damage: 120 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], resistances: [{ type: Type.FIGHTING, value: "-20" }], retreat: 1, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Phantom Forces", code: "xy4" } } export default card