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: "bw3-72", localId: 72, // Card informations name: { en: "Golurk", fr: "Golemastoc", }, hp: 130, type: [ Type.FIGHTING, ], dexId: 623, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw3/72/low", fr: "https://assets.tcgdex.net/fr/bw/bw3/72/low", }, high: { en: "https://assets.tcgdex.net/en/bw/bw3/72/high", fr: "https://assets.tcgdex.net/fr/bw/bw3/72/high", }, }, evolveFrom: { en: "Golett", fr: "Gringolem", }, tags: [ Tag.STAGE1, ], illustrator: "Kouki Saitou", attacks: [{ cost: [ Type.FIGHTING, Type.FIGHTING, Type.COLORLESS ], name: { en: "Hammer Arm", fr: "Marto-Poing", }, text: { en: "Discard the top card of your opponent's deck.", fr: "Défaussez la carte du dessus du deck de votre adversaire.", }, damage: 60 },{ cost: [ Type.FIGHTING, Type.FIGHTING, Type.COLORLESS, Type.COLORLESS ], name: { en: "Hurricane Punch", fr: "Poing Ouragan", }, text: { en: "Flip 4 coins. This attack does 50 damage times the number of heads.", fr: "Lancez 4 pièces. Cette attaque inflige 50 dégâts multipliés par le nombre de côtés face.", }, damage: 50 }], weaknesses: [{ type: Type.WATER, value: "×2" }], resistances: [{ type: Type.LIGHTNING, value: "-20" }], retreat: 4, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Noble Victories", code: "bw3" } } export default card