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: "hgss3-48", localId: 48, // Card informations name: { en: "Eevee", fr: "Evoli", }, hp: 50, type: [ Type.COLORLESS, ], dexId: 133, image: { low: { en: "https://assets.tcgdex.net/en/hgss/hgss3/48/low.png", fr: "https://assets.tcgdex.net/fr/hgss/hgss3/48/low.png", }, high: { en: "https://assets.tcgdex.net/en/hgss/hgss3/48/high.png", fr: "https://assets.tcgdex.net/fr/hgss/hgss3/48/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 63, name: "Noriko Hotta" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Call for Family", fr: "Appel à la famille", }, text: { en: "Search your deck for a Basic Pokémon and put it onto your Bench. Shuffle your deck afterward.", fr: "Choisissez un Pokémon de base dans votre deck et placez-le sur votre Banc. Ensuite, mélangez votre deck.", }, },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Tickle", fr: "Chatouille", }, text: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé.", }, damage: 10 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], retreat: 1, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "HS—Undaunted", code: "hgss3" } } export default card