1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00
Florian Bouillon ffdd3b4656
fix: Add Base serie translations (#161)
Signed-off-by: Avior <github@avior.me>
2021-11-12 17:07:41 +01:00

59 lines
917 B
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"
},
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"
},
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."
},
damage: "10×",
},
],
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