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: "sm9-137", localId: 137, // Card informations name: { en: "Dana", fr: "Méridia", }, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm9/137/low.png", fr: "https://assets.tcgdex.net/fr/sm/sm9/137/low.png", }, high: { en: "https://assets.tcgdex.net/en/sm/sm9/137/high.png", fr: "https://assets.tcgdex.net/fr/sm/sm9/137/high.png", }, }, evolveFrom: {}, tags: [ Tag.SUPPORTER, ], illustrator: { id: 64, name: "Megumi Mizutani" }, attacks: [{ name: {}, text: { fr: "Vous ne pouvez jouer cette carte que si le Pokémon Actif de votre adversaire est un Pokémon de Niveau 2.\n\nCherchez jusqu’à 2 cartes dans votre deck, puis ajoutez-les à votre main. Mélangez ensuite votre deck.", }, }], rarity: Rarity.Uncommon, category: Category.TRAINER, set: { name: "Team Up", code: "sm9" } } export default card