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: "sm5-105", localId: 105, // Card informations name: { en: "Eevee", fr: "Évoli", }, hp: 60, type: [ Type.COLORLESS, ], dexId: 133, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm5/105/low.png", fr: "https://assets.tcgdex.net/fr/sm/sm5/105/low.png", }, high: { en: "https://assets.tcgdex.net/en/sm/sm5/105/high.png", fr: "https://assets.tcgdex.net/fr/sm/sm5/105/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 83, name: "Hideki Ishikawa" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Palette of Friends", fr: "Palette d’Amis", }, text: { en: "This attack does 10 damage for each different type of Pokémon on your Bench.", fr: "Cette attaque inflige 10 dégâts pour chaque type différent de Pokémon sur votre Banc.", }, damage: 10 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], retreat: 1, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Ultra Prism", code: "sm5" } } export default card