1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-08 02:07:50 +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

95 lines
1.7 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 '../Sword & Shield'
const card: Card = {
name: {
en: "Keldeo V",
fr: "Keldeo V",
es: "Keldeo V",
it: "Keldeo V",
pt: "Keldeo V",
de: "Keldeo V"
},
illustrator: "PLANETA Igarashi",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
647,
],
hp: 210,
types: [
"Water",
],
stage: "Basic",
suffix: "V",
attacks: [
{
cost: [
"Water",
],
name: {
en: "Wave Splash",
fr: "Grosse Vague",
es: "Chapoteo Ondulante",
it: "Schizzi dOnda",
pt: "Onda Borrifante",
de: "Wellenplatscher"
},
damage: 40,
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Secret Sword",
fr: "Lame Ointe",
es: "Sable Místico",
it: "Spadamistica",
pt: "Espada Secreta",
de: "Mystoschwert"
},
effect: {
en: "This attack does 30 more damage for each Water Energy attached to this Pokémon.",
fr: "Cette attaque inflige 30 dégâts supplémentaires pour chaque Énergie Water attachée à ce Pokémon.",
es: "Este ataque hace 30 puntos de daño más por cada Energía Water unida a este Pokémon.",
it: "Questo attacco infligge 30 danni in più per ogni Energia Water assegnata a questo Pokémon.",
pt: "Este ataque causa 30 pontos de dano a mais para cada Energia Water ligada a este Pokémon.",
de: "Diese Attacke fügt für jede an dieses Pokémon angelegte Water-Energie 30 Schadenspunkte mehr zu."
},
damage: "50+",
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
retreat: 2,
regulationMark: "D",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card