1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-29 10:59:54 +00:00

40 lines
585 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Triumphant Light"
const card: Card = {
set: Set,
name: {
en: "Barboach"
},
illustrator: "sui",
rarity: "One Diamond",
category: "Pokemon",
hp: 60,
types: ["Water"],
description: {
en: "Its two whiskers provide a sensitive radar. Even in<br />muddy waters, it can detect its prey's location."
},
stage: "Basic",
attacks: [{
name: {
en: "Mud-Slap"
},
damage: 30,
cost: ["Water", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "+20"
}],
retreat: 1
}
export default card