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: "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.png", fr: "https://assets.tcgdex.net/fr/xy/xy5/152/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xy5/152/high.png", fr: "https://assets.tcgdex.net/fr/xy/xy5/152/high.png", }, }, evolveFrom: {}, tags: [ Tag.EX, ], illustrator: { id: 1, name: "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.RareUltra, category: Category.POKEMON, set: { name: "Primal Clash", code: "xy5" } } export default card