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: "sm115-35", localId: 35, // Card informations name: { en: "Golem", fr: "Grolem", }, hp: 170, type: [ Type.FIGHTING, ], dexId: 76, image: { low: { en: "https://assets.tcgdex.net/en/sm/sm115/35/low", fr: "https://assets.tcgdex.net/fr/sm/sm115/35/low", }, high: { en: "https://assets.tcgdex.net/en/sm/sm115/35/high", fr: "https://assets.tcgdex.net/fr/sm/sm115/35/high", }, }, evolveFrom: { en: "Graveler", fr: "Gravalanch", }, tags: [ Tag.STAGE2, ], illustrator: "Ken Sugimori", attacks: [{ cost: [ Type.FIGHTING, Type.COLORLESS, Type.COLORLESS ], name: { en: "Rock Slide", fr: "Éboulement", }, text: { en: "This attack does 20 damage to 3 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)", fr: "Cette attaque inflige 20 dégâts à 3 des Pokémon de Banc de votre adversaire. (N’appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)", }, damage: 60 },{ cost: [ Type.FIGHTING, Type.FIGHTING, Type.COLORLESS, Type.COLORLESS ], name: { en: "Land Crush", fr: "Écras’Terre", }, damage: 140 }], weaknesses: [{ type: Type.GRASS, value: "×2" }], retreat: 4, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Hidden Fates", code: "sm115" } } export default card