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