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: "dp4-99", localId: 99, // Card informations name: { en: "Leftovers", fr: "Restes", }, image: { low: { en: "https://assets.tcgdex.net/en/dp/dp4/99/low.png", fr: "https://assets.tcgdex.net/fr/dp/dp4/99/low.png", }, high: { en: "https://assets.tcgdex.net/en/dp/dp4/99/high.png", fr: "https://assets.tcgdex.net/fr/dp/dp4/99/high.png", }, }, evolveFrom: {}, tags: [ Tag.TOOL, ], illustrator: { id: 94, name: "Daisuke Ito" }, attacks: [{ name: {}, text: { fr: "Attachez Pièce rune à 1 de vos Pokémon qui ne posséde pas déjà d'Outil Pokémon. Si ce Pokémon est mis K.O, défaussez cette carte.", }, },{ name: {}, text: { fr: "Si le Pokémon auquel Restes est attachée est votre Pokémon Actif à la fin de votre tour, retirez-lui 1 marqueur de dégât..", }, }], rarity: Rarity.Uncommon, category: Category.TRAINER, set: { name: "Great Encounters", code: "dp4" } } export default card