1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon e500777516 Started to add variants information for the two most recent sets
Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-07-21 12:16:52 +02:00

92 lines
2.2 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Chilling Reign'
const card: Card = {
set: Set,
name: {
en: "Golurk",
fr: "Golemastoc",
es: "Golurk",
it: "Golurk",
pt: "Golurk",
de: "Golgantes"
},
illustrator: "Teeziro",
rarity: "Rare",
category: "Pokemon",
hp: 150,
types: ["Psychic"],
evolveFrom: {
en: "Golett",
fr: "Gringolem"
},
attacks: [{
name: {
en: "Reinforced Punch",
fr: "Coup de Poing Renforcé",
es: "Puñetazo Reforzado",
it: "Fortepugno",
pt: "Soco Reforçado",
de: "Verstärkter Hieb"
},
effect: {
en: "If this Pokémon has a Pokémon Tool attached, this attack does 90 more damage.",
fr: "Si un Outil Pokémon est attaché à ce Pokémon, cette attaque inflige 90 dégâts supplémentaires.",
es: "Si este Pokémon tiene 1 Herramienta Pokémon unida a él, este ataque hace 90 puntos de daño más.",
it: "Se questo Pokémon ha una carta Oggetto Pokémon assegnata, questo attacco infligge 90 danni in più.",
pt: "Se este Pokémon tiver uma Ferramenta Pokémon ligada a ele, este ataque causará 90 pontos de dano a mais.",
de: "Wenn an dieses Pokémon eine Pokémon-Ausrüstung angelegt ist, fügt diese Attacke 90 Schadenspunkte mehr zu."
},
damage: "60+",
cost: ["Psychic", "Colorless", "Colorless"]
}, {
name: {
en: "Megaton Fall",
fr: "Chute Mégatonne",
es: "Caída Megatón",
it: "Caduta Megatonica",
pt: "Queda do Megaton",
de: "Megatonnenfall"
},
effect: {
en: "This Pokémon also does 30 damage to itself.",
fr: "Ce Pokémon sinflige aussi 30 dégâts.",
es: "Este Pokémon también se hace 30 puntos de daño a sí mismo.",
it: "Questo Pokémon infligge anche 30 danni a se stesso.",
pt: "Este Pokémon também causa 30 pontos de dano a si mesmo.",
de: "Dieses Pokémon fügt auch sich selbst 30 Schadenspunkte zu."
},
damage: 190,
cost: ["Psychic", "Psychic", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 4,
regulationMark: "E",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card