mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-19 02:39:18 +00:00
73 lines
2.5 KiB
TypeScript
73 lines
2.5 KiB
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../Mythical Island"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
en: "Golem",
|
||
fr: "Grolem",
|
||
es: "Golem",
|
||
it: "Golem",
|
||
de: "Geowaz",
|
||
'pt-br': "Golem",
|
||
ko: "딱구리"
|
||
},
|
||
|
||
illustrator: "Masakazu Fukuda",
|
||
category: "Pokemon",
|
||
hp: 160,
|
||
types: ["Fighting"],
|
||
|
||
evolveFrom: {
|
||
en: "Graveler"
|
||
},
|
||
|
||
description: {
|
||
en: "When Golem grow old, they stop shedding their shells. Those that have lived a long, long time have shells green with moss.",
|
||
fr: "Lorsqu'il arrive à un âge avancé, il arrête de muer.\nUn Grolem ayant vécu très longtemps est recouvert\nde mousse verte.",
|
||
es: "A medida que envejece, pierde la facultad de\nmudar la piel. Se han observado ejemplares de\nedad avanzada totalmente cubiertos de musgo.",
|
||
it: "Quando invecchia, non fa più la muta.\nIl guscio dei Golem molto anziani si\nricopre di muschio tingendosi di verde.",
|
||
de: "Im Alter hört es auf, sich zu häuten.\nDer Panzer betagter Geowaz ist mit\ndichtem, grünem Moos bewachsen.",
|
||
'pt-br': "Ao envelhecer, Golem param de mudar de\ncarapaça. Os que viveram muitos e muitos\nanos têm carapaças cobertas de musgo verde.",
|
||
ko: "나이가 들면 탈피를 하지 않는다.\n긴 세월을 산 딱구리의 껍질은\n이끼가 끼어 초록색이다."
|
||
},
|
||
|
||
stage: "Stage2",
|
||
|
||
attacks: [{
|
||
name: {
|
||
en: "Guard Press",
|
||
fr: "Pression de Garde",
|
||
es: "Presión de Guardia",
|
||
it: "Pressadifesa",
|
||
de: "Schutzdruck",
|
||
'pt-br': "Aperto Protetor",
|
||
ko: "가드프레스"
|
||
},
|
||
|
||
damage: 120,
|
||
cost: ["Fighting", "Fighting", "Fighting", "Colorless"],
|
||
|
||
effect: {
|
||
en: "During your opponent's next turn, this Pokémon takes −30 damage from attacks.",
|
||
fr: "Pendant le prochain tour de votre adversaire, ce Pokémon subit − 30 dégâts provenant des attaques.",
|
||
es: "Durante el próximo turno de tu rival, los ataques hacen -30 puntos de daño a este Pokémon.",
|
||
it: "Durante il prossimo turno del tuo avversario, questo Pokémon subisce -30 danni dagli attacchi.",
|
||
de: "Während des nächsten Zuges deines Gegners werden diesem Pokémon durch Attacken − 30 Schadenspunkte zugefügt.",
|
||
'pt-br': "Durante o próximo turno do seu oponente, este Pokémon receberá −30 pontos de dano de ataques.",
|
||
ko: "상대의 다음 차례에 이 포켓몬이 받는 기술의 데미지를 -30한다."
|
||
}
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Grass",
|
||
value: "+20"
|
||
}],
|
||
|
||
retreat: 3,
|
||
rarity: "Three Diamond"
|
||
}
|
||
|
||
export default card
|