mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
49 lines
707 B
TypeScript
49 lines
707 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Astral Radiance"
|
|
|
|
const card: Card = {
|
|
dexId: [712],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Bergmite",
|
|
fr: "Grelaçon",
|
|
es: "Bergmite",
|
|
it: "Bergmite",
|
|
pt: "Bergmite",
|
|
de: "Arktip"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 70,
|
|
types: ["Water"],
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
cost: ["Water", "Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Icicle",
|
|
fr: "Concrétion Glacée",
|
|
es: "Témpano",
|
|
it: "Stalattite",
|
|
pt: "Pingente de Gelo",
|
|
de: "Eiszapfen"
|
|
},
|
|
|
|
damage: 40
|
|
}],
|
|
|
|
retreat: 2,
|
|
regulationMark: "F",
|
|
|
|
variants: {
|
|
normal: true,
|
|
reverse: true,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card |