1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

71 lines
915 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 '../Gym Heroes'
const card: Card = {
name: {
en: "Brock's Golem",
},
illustrator: "Ken Sugimori",
rarity: "Rare Holo",
category: "Pokemon",
set: Set,
dexId: [
76,
],
hp: 90,
types: [
"Fighting",
],
evolveFrom: {
en: "Graveler",
},
stage: "Stage2",
attacks: [
{
cost: [
"Fighting",
"Fighting",
"Colorless",
],
name: {
en: "Rock Slide",
},
effect: {
en: "If your opponent has any Benched Pokémon, choose up to 3 of them. This attack does 10 damage to each of them. (Don't apply Weakness and Resistance for Benched Pokémon.)",
},
damage: 20,
},
{
cost: [
"Fighting",
"Fighting",
"Colorless",
"Colorless",
],
name: {
en: "Fissure",
},
damage: 50,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
}
export default card