mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
49 lines
730 B
TypeScript
49 lines
730 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Astral Radiance"
|
|
|
|
const card: Card = {
|
|
dexId: [339],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Barboach",
|
|
fr: "Barloche",
|
|
es: "Barboach",
|
|
it: "Barboach",
|
|
pt: "Barboach",
|
|
de: "Schmerbe"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 60,
|
|
types: ["Water"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Water", "Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Rain Splash",
|
|
fr: "Pluie Éclaboussante",
|
|
es: "Golpe de Lluvia",
|
|
it: "Spruzzapioggia",
|
|
pt: "Chuva Borrifante",
|
|
de: "Regenplatscher"
|
|
},
|
|
|
|
damage: 40
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "F",
|
|
|
|
variants: {
|
|
normal: true,
|
|
reverse: true,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card |