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-XY112", localId: "XY112", // Card informations name: { en: "Jirachi", fr: "Jirachi", }, hp: 70, type: [ Type.METAL, ], dexId: 385, image: { low: { en: "https://assets.tcgdex.net/en/xy/xyp/XY112/low.png", fr: "https://assets.tcgdex.net/fr/xy/xyp/XY112/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xyp/XY112/high.png", fr: "https://assets.tcgdex.net/fr/xy/xyp/XY112/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 0, name: "Kagemaru Himeno" }, attacks: [{ cost: [ Type.METAL ], name: { en: "Precognitive Dream", fr: "Rêve Prémonitoire", }, text: { en: "Draw 3 cards. This Pokémon is now Asleep.", fr: "Piochez 3 cartes. Ce Pokémon est maintenant Endormi.", }, }], weaknesses: [{ type: Type.FIRE, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-20" }], retreat: 1, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "XY Black Star Promos", code: "xyp" } } export default card