mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-21 07:39:54 +00:00
62 lines
1.7 KiB
TypeScript
62 lines
1.7 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Celestial Guardians"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Gurdurr",
|
|
fr: "Ouvrifier",
|
|
es: "Gurdurr",
|
|
it: "Gurdurr",
|
|
de: "Strepoli",
|
|
'pt-br': "Gurdurr",
|
|
ko: "토쇠골"
|
|
},
|
|
|
|
illustrator: "Naoki Saito",
|
|
rarity: "Two Diamond",
|
|
category: "Pokemon",
|
|
hp: 90,
|
|
types: ["Fighting"],
|
|
|
|
evolveFrom: {
|
|
en: "Timburr"
|
|
},
|
|
|
|
description: {
|
|
en: "It shows off its muscles to Machoke and other Gurdurr. If it fails to measure up to the other Pokémon, it lies low for a little while.",
|
|
fr: "Il participe à des concours de gonflette avec\nses congénères et les Machopeur. Le perdant ne\nse montre plus en public pendant quelque temps.",
|
|
es: "A menudo realiza competiciones de fuerza con\nsus congéneres y con los Machoke. El perdedor\ndebe pasar un tiempo sin dejarse ver.",
|
|
it: "Sfoggia i suoi muscoli facendo a gara con i suoi simili e con\nMachoke. Chi perde sparisce dalla circolazione per un po'.",
|
|
de: "Strepoli und Maschock treffen sich regelmäßig\nzum Muskelvergleich. Wer schlecht abschneidet,\nlässt sich danach eine Weile nicht mehr blicken.",
|
|
'pt-br': "Exibe seus músculos para Machoke e outros Gurdurr.\nSe não conseguir ficar à altura de outros Pokémon,\nsome por um tempo.",
|
|
ko: "동료나 근육몬과 서로\n근육을 자랑한다. 진 쪽은\n당분간 모습을 감춘다."
|
|
},
|
|
|
|
stage: "Stage1",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Strength",
|
|
fr: "Force",
|
|
es: "Fuerza",
|
|
it: "Forza",
|
|
de: "Stärke",
|
|
'pt-br': "Força",
|
|
ko: "괴력"
|
|
},
|
|
|
|
damage: 40,
|
|
cost: ["Fighting", "Colorless"]
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Psychic",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 2
|
|
}
|
|
|
|
export default card |