mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
71 lines
1.1 KiB
TypeScript
71 lines
1.1 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Evolving Skies'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
},
|
||
|
||
name: {
|
||
en: "Bergmite",
|
||
fr: "Grelaçon",
|
||
es: "Bergmite",
|
||
it: "Bergmite",
|
||
pt: "Bergmite",
|
||
de: "Arktip"
|
||
},
|
||
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
hp: 70,
|
||
types: ["Water"],
|
||
stage: "Basic",
|
||
illustrator: "kirisAki",
|
||
|
||
attacks: [{
|
||
name: {
|
||
en: "Tackle",
|
||
fr: "Charge",
|
||
es: "Placaje",
|
||
it: "Azione",
|
||
pt: "Tackle",
|
||
de: "Tackle"
|
||
},
|
||
|
||
damage: 10,
|
||
cost: ["Colorless"]
|
||
}, {
|
||
name: {
|
||
en: "Spinning Attack",
|
||
fr: "Attaque Tournante",
|
||
es: "Ataque Giratorio",
|
||
it: "Attacco Rotante",
|
||
pt: "Spinning Attack",
|
||
de: "Rundumangriff"
|
||
},
|
||
|
||
damage: 20,
|
||
cost: ["Water", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Metal",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 2,
|
||
|
||
description: {
|
||
en: "This Pokémon lives in areas of frigid cold. It secures itself to the back of an Avalugg by freezing its feet in place."
|
||
},
|
||
|
||
dexId: [712],
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card |