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: "ex1-22", localId: 22, // Card informations name: { en: "Sharpedo", }, hp: 70, type: [ Type.WATER, ], dexId: 319, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex1/22/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex1/22/high", }, }, evolveFrom: { en: "Carvanha", }, tags: [ Tag.STAGE1, ], illustrator: "Hajime Kusajima", abilities: [{ id: 227, type: AbilityType.POKEBODY, name: { en: "Rough Skin", }, text: { en: "If Sharpedo is your Active Pokémon and is damaged by an opponent's attack (even if Sharpedo is Knocked Out), put 2 damage counters on the Attacking Pokémon.", } }], attacks: [{ cost: [ Type.WATER, Type.COLORLESS, Type.COLORLESS ], name: { en: "Dark Slash", }, text: { en: "You may discard a Darkness Energy card attached to Sharpedo. If you do, this attack does 40 damage plus 30 more damage.", }, damage: 40 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Ruby & Sapphire", code: "ex1" } } export default card