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

69 lines
981 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 Onix",
},
illustrator: "Benimaru Itoh",
rarity: "Rare Holo",
category: "Pokemon",
set: Set,
dexId: [
95,
],
hp: 70,
types: [
"Fighting",
],
stage: "Basic",
attacks: [
{
cost: [
"Fighting",
"Fighting",
],
name: {
en: "Bind",
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
},
damage: 20,
},
{
cost: [
"Fighting",
"Fighting",
"Fighting",
],
name: {
en: "Tunneling",
},
effect: {
en: "If your opponent has any Benched Pokémon, choose up to 2 of them. This attack does 20 damage to each of them. (Don't apply Weakness and Resistance for Benched Pokémon.) Brock's Onix can't attack during your next turn.",
},
damage: 20,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
}
export default card