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

79 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 '../Champion\'s Path'
const card: Card = {
name: {
en: "Gardevoir V",
fr: "Gardevoir V",
es: "Gardevoir V",
it: "Gardevoir V",
pt: "Gardevoir V",
de: "Guardevoir V"
},
illustrator: "Kagemaru Himeno",
rarity: "Rare",
category: "Pokemon",
set: Set,
hp: 210,
types: [
"Psychic",
],
weaknesses: [
{
type: "Metal",
value: "×2"
},
],
retreat: 2,
attacks: [{
name: {
en: "Magical Shot",
fr: "Coup Magique",
es: "Disparo Mágico",
it: "Magicolpo",
pt: "Tiro Mágico",
de: "Magischer Schuss"
},
damage: 30,
cost: ["Psychic"]
}, {
name: {
en: "Swelling Pulse",
fr: "Pulsation Grandissante",
es: "Pulso Creciente",
it: "Pulsazioni Amplificate",
pt: "Pulso Crescente",
de: "Quellende Woge"
},
effect: {
en: "If this Pokémon was healed during this turn, this attack does 80 more damage.",
fr: "Si ce Pokémon a été soigné pendant ce tour, cette attaque inflige 80 dégâts supplémentaires.",
es: "Si este Pokémon ha sido curado durante este turno, este ataque hace 80 puntos de daño más.",
it: "Se questo Pokémon è stato curato durante questo turno, questo attacco infligge 80 danni in più.",
pt: "Se este Pokémon tiver sido curado durante este turno, este ataque causará 80 pontos de dano a mais.",
de: "Wenn dieses Pokémon während dieses Zuges geheilt wurde, fügt diese Attacke 80 Schadenspunkte mehr zu."
},
damage: "120+",
cost: ["Psychic", "Psychic", "Colorless"]
}],
regulationMark: "D",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card