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: "bw9-90", localId: 90, // Card informations name: { en: "Eevee", fr: "Évoli", }, hp: 60, type: [ Type.COLORLESS, ], dexId: 133, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw9/90/low.png", fr: "https://assets.tcgdex.net/fr/bw/bw9/90/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw9/90/high.png", fr: "https://assets.tcgdex.net/fr/bw/bw9/90/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 13, name: "Toyste Beach" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Signs of Evolution", fr: "Signes d'Évolution", }, text: { en: "Search your deck for 3 Pokémon of different types that evolve from Eevee. Reveal them and put them into your hand. Shuffle your deck afterward.", fr: "Cherchez dans votre deck 3 Pokémon de différents types qui sont une évolution d'Évoli. Montrez-les puis ajoutez-les à votre main. Mélangez ensuite votre deck.", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Bite", fr: "Morsure", }, damage: 30 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], retreat: 1, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Plasma Freeze", code: "bw9" } } export default card