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: "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.png", fr: "https://assets.tcgdex.net/fr/sm/sm115/35/low.png", }, high: { en: "https://assets.tcgdex.net/en/sm/sm115/35/high.png", fr: "https://assets.tcgdex.net/fr/sm/sm115/35/high.png", }, }, evolveFrom: { en: "Graveler", fr: "Gravalanch", }, tags: [ Tag.STAGE2, ], illustrator: { id: 5, name: "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