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: "ex16-38", localId: 38, // Card informations name: { en: "Sharpedo", }, hp: 70, type: [ Type.DARKNESS, ], dexId: 319, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex16/38/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex16/38/high.png", }, }, evolveFrom: { en: "Carvanha", }, tags: [ Tag.STAGE1, ], illustrator: { id: 2, name: "Midori Harada" }, attacks: [{ cost: [ Type.DARKNESS, Type.COLORLESS ], name: { en: "Tight Jaw", }, text: { en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.", }, damage: 20 },{ cost: [ Type.DARKNESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Darkness Charge", }, text: { en: "Put 1 damage counter on Sharpedo.", }, damage: 50 }], weaknesses: [{ type: Type.GRASS, value: "×2" }], resistances: [{ type: Type.PSYCHIC, value: "-30" }], rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Power Keepers", code: "ex16" } } export default card