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: "ex5-13", localId: 13, // Card informations name: { en: "Pinsir", }, hp: 70, type: [ Type.GRASS, ], dexId: 127, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex5/13/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex5/13/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Hajime Kusajima", abilities: [{ id: 216, type: AbilityType.POKEBODY, name: { en: "Crust", }, text: { en: "Any damage done to Pinsir by attacks from your opponent's Basic Pokémon is reduced by 30 (after applying Weakness and Resistance).", } }], attacks: [{ cost: [ Type.GRASS, Type.COLORLESS ], name: { en: "Sonicboom", }, text: { en: "This attack's damage isn't affected by Weakness or Resistance.", }, damage: 30 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Hidden Legends", code: "ex5" } } export default card