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: "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.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xyp/XY164/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 20, name: "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