mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-26 12:52:13 +00:00
67 lines
1.3 KiB
TypeScript
67 lines
1.3 KiB
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Mysterious Treasures'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Geodude",
|
|
fr: "Racaillou",
|
|
de: "Kleinstein"
|
|
},
|
|
|
|
illustrator: "Ken Sugimori",
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
set: Set,
|
|
|
|
dexId: [
|
|
74,
|
|
],
|
|
|
|
hp: 60,
|
|
|
|
types: [
|
|
"Fighting",
|
|
],
|
|
|
|
stage: "Basic",
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Fighting",
|
|
],
|
|
name: {
|
|
en: "Stone Throw",
|
|
fr: "Jet de pierre",
|
|
de: "Steine werfen"
|
|
},
|
|
effect: {
|
|
en: "Choose 2 of your opponent's Benched Pokémon. This attack does 10 damage to each of them. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
|
fr: "Choisissez 2 des Pokémon de Banc de votre adversaire. Cette attaque inflige 10 dégâts à chacun. (Vous ne pouvez pas appliquer la Faiblesse et Résistance aux Pokémon de Banc.)",
|
|
de: "Wähle 2 Pokémon auf der Bank deines Gegners. Dieser Angriff fügt beiden gewählten Pokémon 10 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)"
|
|
},
|
|
|
|
},
|
|
],
|
|
|
|
weaknesses: [
|
|
{
|
|
type: "Grass",
|
|
value: "+10"
|
|
},
|
|
],
|
|
|
|
resistances: [
|
|
{
|
|
type: "Lightning",
|
|
value: "-20"
|
|
},
|
|
],
|
|
|
|
description: {
|
|
fr: "Nombre d'entre eux vivent sur des chemins montagneux où ils restent enfouis à épier les alpinistes."
|
|
}
|
|
}
|
|
|
|
export default card
|