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-XY67a", localId: "XY67a", // Card informations name: { en: "Jirachi", }, hp: 60, type: [ Type.METAL, ], dexId: 385, image: { low: { en: "https://assets.tcgdex.net/en/xy/xyp/XY67a/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xyp/XY67a/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 24, name: "sui" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Stardust", }, text: { en: "Discard a Special Energy attached to your opponent's Active Pokémon. If you do, prevent all effects of attacks, including damage, done to this Pokémon during your opponent's next turn.", }, damage: 10 },{ cost: [ Type.METAL, Type.COLORLESS ], name: { en: "Dream Dance", }, text: { en: "Both Active Pokémon are now Asleep.", }, damage: 20 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-20" }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "XY Black Star Promos", code: "xyp" } } export default card