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: "pl1-118", localId: 118, // Card informations name: { en: "Team Galactic's Invention G-105 Poké Turn", fr: "Poké-Tour Invention G-105 de Team Galaxie", }, image: { low: { en: "https://assets.tcgdex.net/en/pl/pl1/118/low.png", fr: "https://assets.tcgdex.net/fr/pl/pl1/118/low.png", }, high: { en: "https://assets.tcgdex.net/en/pl/pl1/118/high.png", fr: "https://assets.tcgdex.net/fr/pl/pl1/118/high.png", }, }, evolveFrom: {}, tags: [ Tag.ITEM, ], illustrator: { id: 90, name: "Makoto Imai" }, attacks: [{ name: {}, text: { fr: "Reprenez dans votre main 1 de vos Pokémon SP ainsi que toutes les cartes qui lui sont attachées.", }, }], rarity: Rarity.Uncommon, category: Category.TRAINER, set: { name: "Platinum", code: "pl1" } } export default card