1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-21 07:39:54 +00:00

40 lines
646 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Alolan Geodude"
},
illustrator: "Hitoshi Ariga",
rarity: "One Diamond",
category: "Pokemon",
hp: 70,
types: ["Lightning"],
description: {
en: "If you mistake it for a rock and step on it, it will headbutt you in anger. In addition to the pain, it will also zap you with a shock."
},
stage: "Basic",
attacks: [{
name: {
en: "Knuckle Punch"
},
damage: 40,
cost: ["Lightning", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "+20"
}],
retreat: 2
}
export default card