1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-16 13:39:54 +00:00
Florian Bouillon 9138eedb16
Add swsh variants (#42)
* Updated Kalos Starter Set data

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed XY set

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed some more XY sets

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Added the rest of the SWSH variants

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-02 12:34:21 +00:00

93 lines
1.5 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
}
}
export default card