import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/interfaces/Category' const card: Card = { // ids id: "swsh1-126", localId: 126, // Card informations name: { en: "​Thievul", fr: "Roublenard", }, hp: 100, type: [ Type.DARKNESS, ], image: { low: { en: "https://assets.tcgdex.net/en/swsh/swsh1/126/low", fr: "https://assets.tcgdex.net/fr/swsh/swsh1/126/low", } }, evolveFrom: { en: "Nickit", fr: "Goupilou", }, tags: [ Tag.STAGE1, ], illustrator: "Kouki Saitou", attacks: [{ cost: [ Type.DARKNESS ], name: { en: "Thief", fr: "Larcin", }, text: { en: "Your opponent reveals their hand. Choose a card you find there and put it on the bottom of their deck.", fr: "Votre adversaire dévoile sa main. Choisissez-y une carte, puis placez-la en dessous de son deck.", }, damage: 20 },{ cost: [ Type.DARKNESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Darkness Fang", fr: "Croc Obscur", }, damage: 90 }], weaknesses: [{ type: Type.GRASS, value: "×2" }], retreat: 1, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Sword & Shield", code: "swsh1" } } export default card