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

77 lines
1.4 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: "Mew V",
fr: "Mew V",
es: "Mew V",
it: "Mew V",
pt: "Mew V",
de: "Mew V"
},
illustrator: "PLANETA Mochizuki",
rarity: "Rare",
category: "Pokemon",
set: Set,
hp: 180,
types: [
"Psychic",
],
attacks: [
{
cost: [
"Psychic",
"Psychic",
],
name: {
en: "X Ball",
fr: "X Ball",
es: "Bola X",
it: "Sfera X",
pt: "Bola X",
de: "X-Ball"
},
effect: {
en: "This attack does 30 damage for each Energy attached to both Active Pokémon.",
fr: "Cette attaque inflige 30 dégâts pour chaque Énergie attachée aux deux Pokémon Actifs.",
es: "Este ataque hace 30 puntos de daño por cada Energía unida a ambos Pokémon Activos.",
it: "Questo attacco infligge 30 danni per ogni Energia assegnata a ciascuno dei Pokémon attivi.",
pt: "Este ataque causa 30 pontos de dano para cada Energia ligada a ambos os Pokémon Ativos.",
de: "Diese Attacke fügt für jede an beide Aktive Pokémon angelegte Energie 30 Schadenspunkte zu."
},
damage: "30×",
},
],
weaknesses: [
{
type: "Darkness",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-30"
},
],
regulationMark: "D",
retreat: 0,
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card