mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
41 lines
562 B
TypeScript
41 lines
562 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Crown Zenith"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Baltoy",
|
|
fr: "Balbuto",
|
|
es: "Baltoy",
|
|
it: "Baltoy",
|
|
pt: "Baltoy",
|
|
de: "Puppance"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 60,
|
|
types: ["Fighting"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Smack",
|
|
fr: "Claque",
|
|
es: "Palmetazo",
|
|
it: "Schiaffo",
|
|
pt: "Estalo",
|
|
de: "Klatscher"
|
|
},
|
|
|
|
damage: 20
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "E"
|
|
}
|
|
|
|
export default card |