import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/interfaces/Category' const card: Card = { // ids id: "ex15-70", localId: 70, // Card informations name: { en: "Vulpix δ", }, hp: 50, type: [ Type.PSYCHIC, ], dexId: 37, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex15/70/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex15/70/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Sachiko Adachi", attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Hypnotic Gaze", }, text: { en: "The Defending Pokémon is now Asleep.", }, },{ cost: [ Type.PSYCHIC, Type.COLORLESS ], name: { en: "Will-o'-the-wisp", }, damage: 20 }], weaknesses: [{ type: Type.WATER, value: "×2" }], rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "Dragon Frontiers", code: "ex15" } } export default card