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: "ex12-34", localId: 34, // Card informations name: { en: "Graveler", }, hp: 70, type: [ Type.FIGHTING, ], dexId: 75, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex12/34/low", }, high: { en: "https://assets.tcgdex.net/en/ex/ex12/34/high", }, }, evolveFrom: { en: "Geodude", }, tags: [ Tag.STAGE1, ], illustrator: "Sumiyoshi Kizuki", abilities: [{ id: 276, type: AbilityType.POKEBODY, name: { en: "Exoskeleton", }, text: { en: "Any damage done to Graveler by attacks is reduced by 10 (after applying Weakness and Resistance).", } }], attacks: [{ cost: [ Type.FIGHTING, Type.COLORLESS ], name: { en: "Rock Slide", }, text: { en: "Does 10 damage to 2 of your opponent's Benched Pokémon (1 if there is only 1). (Don't apply Weakness and Resistance for Benched Pokémon.)", }, damage: 20 }], weaknesses: [{ type: Type.WATER, value: "×2" }], rarity: Rarity.UNCOMMON, category: Category.POKEMON, set: { name: "Legend Maker", code: "ex12" } } export default card