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: "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.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex5/13/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 30, name: "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.RareHolo, category: Category.POKEMON, set: { name: "Hidden Legends", code: "ex5" } } export default card