1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-30 03:19:55 +00:00

66 lines
1.0 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Fusion Strike"
const card: Card = {
dexId: [74],
set: Set,
name: {
en: "Geodude",
fr: "Racaillou",
es: "Geodude",
it: "Geodude",
pt: "Geodude",
de: "Kleinstein"
},
rarity: "Common",
category: "Pokemon",
hp: 80,
types: ["Fighting"],
stage: "Basic",
retreat: 3,
regulationMark: "E",
illustrator: "OKACHEKE",
description: {
en: "It uses both hands to climb precipitous cliffs. People who see it in action have been known to take up bouldering."
},
attacks: [{
cost: ["Fighting"],
name: {
en: "Rollout",
fr: "Roulade",
de: "Walzer",
es: "Rodar",
pt: "Rolagem",
it: "Rotolamento"
},
damage: 10
}, {
cost: ["Colorless", "Colorless"],
name: {
en: "Light Punch",
fr: "Poing Léger",
de: "Leichter Hieb",
es: "Puño Ligero",
pt: "Soco de Luz",
it: "Pugnetto"
},
damage: 20
}],
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card