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

44 lines
666 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Gurdurr"
},
illustrator: "Naoki Saito",
rarity: "Two Diamond",
category: "Pokemon",
hp: 90,
types: ["Fighting"],
evolveFrom: {
en: "Timburr"
},
description: {
en: "It shows off its muscles to Machoke and other Gurdurr. If it fails to measure up to the other Pokémon, it lies low for a little while."
},
stage: "Stage1",
attacks: [{
name: {
en: "Strength"
},
damage: 40,
cost: ["Fighting", "Colorless"]
}],
weaknesses: [{
type: "Psychic",
value: "+20"
}],
retreat: 2
}
export default card