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: "xy6-42", localId: 42, // Card informations name: { en: "Jirachi", fr: "Jirachi", }, hp: 70, type: [ Type.METAL, ], dexId: 385, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy6/42/low.png", fr: "https://assets.tcgdex.net/fr/xy/xy6/42/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xy6/42/high.png", fr: "https://assets.tcgdex.net/fr/xy/xy6/42/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 39, name: "Sanosuke Sakuma" }, attacks: [{ cost: [ Type.METAL ], name: { en: "Diminutive Desire", fr: "Infimreket", }, text: { en: "Look at the top 7 cards of your deck and put 1 of them into your hand. Shuffle the other cards back into your deck.", fr: "Regardez les 7 cartes du dessus de votre deck et ajoutez 1 d'entre elles à votre main. Mélangez les autres cartes avec votre deck.", }, },{ cost: [ Type.METAL, Type.COLORLESS ], name: { en: "Doom Desire", fr: "Carnareket", }, text: { en: "Discard all Energy attached to this Pokémon. The Defending Pokémon is Knocked Out at the end of your opponent's next turn.", fr: "Défaussez toutes les Énergies attachées à ce Pokémon. Le Pokémon Défenseur est mis K.O. à la fin du prochain tour de votre adversaire.", }, }], weaknesses: [{ type: Type.FIRE, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-20" }], retreat: 1, rarity: Rarity.RareHolo, category: Category.POKEMON, set: { name: "Roaring Skies", code: "xy6" } } export default card