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: "bw4-88", localId: 88, // Card informations name: { en: "Heavy Ball", fr: "Masse Ball", }, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw4/88/low.png", fr: "https://assets.tcgdex.net/fr/bw/bw4/88/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw4/88/high.png", fr: "https://assets.tcgdex.net/fr/bw/bw4/88/high.png", }, }, evolveFrom: {}, tags: [ Tag.ITEM, ], illustrator: { id: 1, name: "Ryo Ueda" }, attacks: [{ name: {}, text: { fr: "Cherchez dans votre deck un Pokémon avec un coût de Retraite de 3 ou plus, montrez-le, puis ajoutez-le à votre main. Mélangez ensuite votre deck.", }, }], rarity: Rarity.Uncommon, category: Category.TRAINER, set: { name: "Next Destinies", code: "bw4" } } export default card