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: "xy10-39", localId: 39, // Card informations name: { en: "Kabutops", fr: "Kabutops", }, hp: 150, type: [ Type.FIGHTING, ], dexId: 141, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy10/39/low", fr: "https://assets.tcgdex.net/fr/xy/xy10/39/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xy10/39/high", fr: "https://assets.tcgdex.net/fr/xy/xy10/39/high", }, }, evolveFrom: { en: "Kabuto", fr: "Kabuto", }, tags: [ Tag.STAGE1, ], illustrator: "Kyoko Umemoto", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Cling", fr: "Corps à Corps", }, text: { en: "Heal from this Pokémon the same amount of damage you did to your opponent's Active Pokémon.", fr: "Soignez à ce Pokémon la même quantité de dégâts que vous avez infligée au Pokémon Actif de votre adversaire.", }, damage: 50 },{ cost: [ Type.FIGHTING, Type.COLORLESS, Type.COLORLESS ], name: { en: "X-Scissor", fr: "Plaie-Croix", }, text: { en: "Flip a coin. If heads, this attack does 60 more damage.", fr: "Lancez une pièce. Si c'est face, cette attaque inflige 60 dégâts supplémentaires.", }, damage: 80 }], weaknesses: [{ type: Type.GRASS, value: "×2" }], retreat: 2, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Fates Collide", code: "xy10" } } export default card