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: "xy3-43", localId: 43, // Card informations name: { en: "Golurk", fr: "Golemastoc", }, hp: 130, type: [ Type.PSYCHIC, ], dexId: 623, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy3/43/low.png", fr: "https://assets.tcgdex.net/fr/xy/xy3/43/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xy3/43/high.png", fr: "https://assets.tcgdex.net/fr/xy/xy3/43/high.png", }, }, evolveFrom: { en: "Golett", fr: "Gringolem", }, tags: [ Tag.STAGE1, ], illustrator: { id: 116, name: "PLANETA" }, attacks: [{ cost: [ Type.PSYCHIC, Type.COLORLESS, Type.COLORLESS ], name: { en: "Wreck", fr: "Anéantissement", }, text: { en: "If there is any Stadium card in play, this attack does 60 more damage. Discard that Stadium card.", fr: "S'il y a une carte Stade en jeu, cette attaque inflige 60 dégâts supplémentaires. Défaussez la carte Stade.", }, damage: 60 },{ cost: [ Type.PSYCHIC, Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Golurk Hammer", fr: "Maillet Golemastoc", }, damage: 100 }], weaknesses: [{ type: Type.DARKNESS, value: "×2" }], resistances: [{ type: Type.FIGHTING, value: "-20" }], retreat: 4, rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Furious Fists", code: "xy3" } } export default card