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

72 lines
1.1 KiB
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 Rhydon",
},
illustrator: "Ken Sugimori",
rarity: "Rare Holo",
category: "Pokemon",
set: Set,
dexId: [
112,
],
hp: 80,
types: [
"Fighting",
],
evolveFrom: {
en: "Rhyhorn",
},
stage: "Stage1",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Bench Guard",
},
effect: {
en: "As long as Brock's Rhydon is Benched, whenever 1 of your Benched Pokémon is damaged, you may do 10 of that damage to Brock's Rhydon instead. (If more than 1 of your Benched Pokémon is damaged at the same time, you may use this power once for each of them.)",
},
},
],
attacks: [
{
cost: [
"Fighting",
"Fighting",
"Colorless",
"Colorless",
],
name: {
en: "Lariat",
},
effect: {
en: "Flip a coin. If tails, this attack does nothing.",
},
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
resistances: [
{
type: "Lightning",
value: "-30"
},
],
}
export default card