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: "xy6-14", localId: 14, // Card informations name: { en: "Fletchinder", fr: "Braisillon", }, hp: 70, type: [ Type.FIRE, ], dexId: 662, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy6/14/low.png", fr: "https://assets.tcgdex.net/fr/xy/xy6/14/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xy6/14/high.png", fr: "https://assets.tcgdex.net/fr/xy/xy6/14/high.png", }, }, evolveFrom: { en: "Fletchling", fr: "Passerouge", }, tags: [ Tag.STAGE1, ], illustrator: { id: 23, name: "Naoyo Kimura" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Peck Off", fr: "Picpic Piqueur", }, text: { en: "Before doing damage, discard all Pokémon Tool cards attached to your opponent's Active Pokémon.", fr: "Avant d'infliger des dégâts, défaussez toutes les cartes Outil Pokémon attachées au Pokémon Actif de votre adversaire.", }, damage: 10 }], weaknesses: [{ type: Type.WATER, value: "×2" }], rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Roaring Skies", code: "xy6" } } export default card