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: "bw10-46", localId: 46, // Card informations name: { en: "Golurk", fr: "Golemastoc", }, hp: 130, type: [ Type.PSYCHIC, ], dexId: 623, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw10/46/low", fr: "https://assets.tcgdex.net/fr/bw/bw10/46/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw10/46/high", fr: "https://assets.tcgdex.net/fr/bw/bw10/46/high", }, }, evolveFrom: { en: "Golett", fr: "Gringolem", }, tags: [ Tag.STAGE1, ], illustrator: "Akira Komayama", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Iron Fist of Justice", fr: "Poing de Fer Juste", }, text: { en: "If you have any Team Plasma Pokémon in play, this attack does nothing.", fr: "Si vous avez un Pokémon de la Team Plasma en jeu, cette attaque ne fait rien.", }, damage: 60 },{ cost: [ Type.PSYCHIC, Type.PSYCHIC, Type.COLORLESS, Type.COLORLESS ], name: { en: "Shadow Punch", fr: "Poing Ombre", }, text: { en: "This attack's damage isn't affected by Resistance.", fr: "Les dégâts de cette attaque ne sont pas affectés par la Résistance.", }, damage: 80 }], weaknesses: [{ type: Type.DARKNESS, value: "×2" }], retreat: 4, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Plasma Blast", code: "bw10" } } export default card