1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-18 22:39:54 +00:00
2025-04-30 09:45:36 +02:00

53 lines
753 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 '../DP trainer Kit (Lucario)'
const card: Card = {
dexId: [74],
set: Set,
name: {
en: "Geodude"
},
illustrator: "Ken Sudimori",
rarity: "None",
category: "Pokemon",
hp: 60,
types: [
"Fighting",
],
attacks: [{
cost: [
"Fighting",
],
name: {
en: "Stone Throw"
},
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.)"
}
}],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
description: {
en: "Many live on mountain trails and remain half buried while keeping an eye on climbers"
},
retreat: 2,
}
export default card