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: "xy5-152", localId: 152, // Card informations name: { en: "Sharpedo-EX", fr: "Sharpedo-EX", }, hp: 170, type: [ Type.DARKNESS, ], dexId: 319, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy5/152/low", fr: "https://assets.tcgdex.net/fr/xy/xy5/152/low", }, high: { en: "https://assets.tcgdex.net/en/xy/xy5/152/high", fr: "https://assets.tcgdex.net/fr/xy/xy5/152/high", }, }, evolveFrom: {}, tags: [ Tag.EX, ], illustrator: "Ryo Ueda", attacks: [{ cost: [ Type.DARKNESS, Type.COLORLESS ], name: { en: "Hunt", fr: "Chasse", }, text: { en: "Switch 1 of your opponent's Benched Pokémon with his or her Active Pokémon. This attack does 30 damage to the new Active Pokémon.", fr: "Échangez l'un des Pokémon de Banc de votre adversaire avec son Pokémon Actif. Cette attaque inflige 30 dégâts au nouveau Pokémon Actif.", }, },{ cost: [ Type.DARKNESS, Type.DARKNESS, Type.COLORLESS ], name: { en: "Jagged Fang", fr: "Croc Acéré", }, text: { en: "Discard an Energy attached to this Pokémon. Then, discard an Energy attached to your opponent's Active Pokémon.", fr: "Défaussez une Énergie attachée à ce Pokémon. Ensuite, défaussez une Énergie attachée au Pokémon Actif de votre adversaire.", }, damage: 100 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], retreat: 1, rarity: Rarity.ULTRARARE, category: Category.POKEMON, set: { name: "Primal Clash", code: "xy5" } } export default card