1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-05 13:09:53 +00:00

59 lines
1.7 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Mythical Island"
const card: Card = {
set: Set,
name: {
en: "Geodude",
fr: "Racaillou",
es: "Geodude",
it: "Geodude",
de: "Kleinstein",
'pt-br': "Geodude",
ko: "꼬마돌"
},
illustrator: "GOSSAN",
category: "Pokemon",
hp: 70,
types: ["Fighting"],
description: {
en: "Geodude that have lived a long life have had all their edges smoothed out until they're totally round. They also have a calm, quiet disposition.",
fr: "Les aspérités de Racaillou s'adoucissent au fil\ndes années, tout comme sa personnalité.\nIl devient tout lisse, tout rond, et tout calme.",
es: "Con la edad, su temperamento se amansa\ny su cuerpo se va alisando hasta adquirir\nuna forma completamente redonda.",
it: "Col passare degli anni le asperità del suo corpo\nvengono levigate, rendendolo perfettamente\nrotondo, e il suo carattere si fa più tranquillo.",
de: "Mit dem Alter verliert es zunehmend seine\nKantigkeit, bis es vollkommen rund und auch\ncharakterlich immer ausgeglichener wird.",
'pt-br': "Geodude que já viveram muito são completamente\nredondos, porque todas as irregularidades foram polidas\npelo tempo. Sua natureza também se torna calma e tranquila.",
ko: "오래 산 꼬마돌은 모가 없이\n동그랗다. 성격도 매우\n차분하고 온화하다."
},
stage: "Basic",
attacks: [{
name: {
en: "Light Punch",
fr: "Poing Léger",
es: "Puño Ligero",
it: "Pugnetto",
de: "Leichter Hieb",
'pt-br': "Soco de Luz",
ko: "치기"
},
damage: 30,
cost: ["Fighting", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "+20"
}],
retreat: 2,
rarity: "One Diamond"
}
export default card