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: "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.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex1/22/high.png", }, }, evolveFrom: { en: "Carvanha", }, tags: [ Tag.STAGE1, ], illustrator: { id: 30, name: "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