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: "xy12-17", localId: 17, // Card informations name: { en: "Growlithe", fr: "Caninos", }, hp: 70, type: [ Type.FIRE, ], dexId: 58, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy12/17/low.png", fr: "https://assets.tcgdex.net/fr/xy/xy12/17/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xy12/17/high.png", fr: "https://assets.tcgdex.net/fr/xy/xy12/17/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 5, name: "Ken Sugimori" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Hind Kick", fr: "Coup d’Pied Arrière", }, text: { en: "Switch this Pokémon with 1 of your Benched Pokémon.", fr: "Échangez ce Pokémon avec l’un de vos Pokémon de Banc.", }, damage: 10 },{ cost: [ Type.FIRE, Type.COLORLESS ], name: { en: "Flare", fr: "Flamboiement", }, damage: 20 }], weaknesses: [{ type: Type.WATER, value: "×2" }], retreat: 2, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Evolutions", code: "xy12" } } export default card