1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 02:40:11 +00:00
Florian Bouillon 741c19791e
Fixed cards rarities and added cards description and stage (#62)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-22 22:11:33 +00:00

99 lines
1.6 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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"
},
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 sinflige 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