1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

58 lines
684 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Arceus'
const card: Card = {
name: {
en: "Geodude",
},
illustrator: "Motofumi Fujiwara",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
74,
],
types: [
"Fighting",
],
stage: "Basic",
attacks: [
{
cost: [
"Fighting",
],
name: {
en: "Stone Barrage",
},
effect: {
en: "Flip a coin until you get tails. This attack does 10 damage times the number of heads.",
},
damage: "10x",
},
],
weaknesses: [
{
type: "Grass",
value: "+10"
},
],
resistances: [
{
type: "Lightning",
value: "-20"
},
],
retreat: 2,
}
export default card