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: "bw5-83", localId: 83, // Card informations name: { en: "Eevee", }, hp: 60, type: [ Type.COLORLESS, ], dexId: 133, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw5/83/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw5/83/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 46, name: "MAHOU" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Surprise Attack", }, text: { en: "Flip a coin. If tails, this attack does nothing.", }, damage: 20 }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Dark Explorers", code: "bw5" } } export default card