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: "ex2-25", localId: 25, // Card informations name: { en: "Vaporeon", }, hp: 70, type: [ Type.WATER, ], dexId: 134, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex2/25/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex2/25/high", }, }, evolveFrom: { en: "Eevee", }, tags: [ Tag.STAGE1, ], illustrator: "Hajime Kusajima", attacks: [{ cost: [ Type.WATER, Type.COLORLESS ], name: { en: "Aurora Beam", }, damage: 30 },{ cost: [ Type.WATER, Type.COLORLESS, Type.COLORLESS ], name: { en: "Aqua Sonic", }, text: { en: "This attack's damage is not affected by Resistance.", }, damage: 50 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Sandstorm", code: "ex2" } } export default card