mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-26 21:02:15 +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
103 lines
1.7 KiB
TypeScript
103 lines
1.7 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Darkness Ablaze'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Beartic",
|
||
fr: "Polagriffe",
|
||
es: "Beartic",
|
||
it: "Beartic",
|
||
pt: "Beartic",
|
||
de: "Siberio"
|
||
},
|
||
|
||
illustrator: "Masakazu Fukuda",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
hp: 140,
|
||
|
||
types: [
|
||
"Water",
|
||
],
|
||
|
||
evolveFrom: {
|
||
en: "Cubchoo",
|
||
fr: "Polarhume",
|
||
es: "Cubchoo",
|
||
it: "Cubchoo",
|
||
pt: "Cubchoo",
|
||
de: "Petznief"
|
||
},
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Slash",
|
||
fr: "Tranche",
|
||
es: "Cuchillada",
|
||
it: "Lacerazione",
|
||
pt: "Talho",
|
||
de: "Schlitzer"
|
||
},
|
||
|
||
damage: 40,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Water",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Frozen Slice",
|
||
fr: "Tranche Gelée",
|
||
es: "Tajo Congelado",
|
||
it: "Tagliaghiaccio",
|
||
pt: "Corte Congelado",
|
||
de: "Frostschneide"
|
||
},
|
||
effect: {
|
||
en: "This Pokémon also does 50 damage to itself.",
|
||
fr: "Ce Pokémon s'inflige aussi 50 dégâts.",
|
||
es: "Este Pokémon también se hace 50 puntos de daño a sí mismo.",
|
||
it: "Questo Pokémon infligge anche 50 danni a se stesso.",
|
||
pt: "Este Pokémon também causa 50 pontos de dano a si mesmo.",
|
||
de: "Dieses Pokémon fügt auch sich selbst 50 Schadenspunkte zu."
|
||
},
|
||
damage: 150,
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Metal",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 3,
|
||
regulationMark: "D",
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
},
|
||
|
||
stage: "Stage1",
|
||
|
||
description: {
|
||
en: "It swims through frigid seas, searching for prey. From its frozen breath, it forms icy fangs that are harder than steel."
|
||
}
|
||
}
|
||
|
||
export default card
|