1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

62 lines
1.1 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 '../Fossil'
const card: Card = {
name: {
en: "Geodude",
fr: "Racaillou",
de: "Kleinstein"
},
illustrator: "Kagemaru Himeno",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
74,
],
hp: 50,
types: [
"Fighting",
],
stage: "Basic",
attacks: [
{
cost: [
"Fighting",
"Colorless",
],
name: {
en: "Stone Barrage",
fr: "Barrage de pierre",
de: "Steinhagel"
},
effect: {
en: "Flip a coin until you get tails. This attack does 10 damage times the number of heads.",
fr: "Lancez une pièce jusqu'à ce que ce soit pile. Cette attaque inflige 10 dégâts multipliés par le nombre de faces.",
de: "Wirf eine Münze, bis du 'Zahl' wirfst. Dieser Angriff fügt jedesmal, wenn die Münze 'Kopf' zeigt, 10 Schadenspunkte zu."
},
damage: "10x",
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
description: {
fr: "Il vit dans les plaines et les montagnes. On le confond souvent avec un petit caillou."
}
}
export default card