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: "xyp-XY164", localId: "XY164", // Card informations name: { en: "Volcanion", }, hp: 130, type: [ Type.FIRE, ], dexId: 721, image: { low: { en: "https://assets.tcgdex.net/en/xy/xyp/XY164/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xyp/XY164/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "TOKIYA", attacks: [{ cost: [ Type.FIRE, Type.COLORLESS, Type.COLORLESS ], name: { en: "Concentrated Fire", }, text: { en: "Flip a coin for each Fire Energy attached to this Pokémon. This attack does 50 damage times the number of heads.", }, damage: 50 },{ cost: [ Type.FIRE, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Combustion Impact", }, text: { en: "Your opponent switches his or her Active Pokémon with 1 of his or her Benched Pokémon.", }, damage: 100 }], weaknesses: [{ type: Type.WATER, value: "×2" }], rarity: Rarity.COMMON, category: Category.POKEMON, set: { name: "XY Black Star Promos", code: "xyp" } } export default card