1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-15 14:19:50 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Eevee Grove/038.ts

40 lines
590 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Eevee Grove"
const card: Card = {
set: Set,
name: {
en: "Barboach"
},
illustrator: "Tomokazu Komiya",
rarity: "One Diamond",
category: "Pokemon",
hp: 70,
types: ["Fighting"],
description: {
en: "Its two whiskers provide a sensitive radar. Even in\nmuddy waters, it can detect its prey's location."
},
stage: "Basic",
attacks: [{
name: {
en: "Mud Shot"
},
damage: 30,
cost: ["Fighting", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "+20"
}],
retreat: 2
}
export default card