1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 04:42: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

65 lines
1.4 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 '../Shining Fates'
const card: Card = {
set: Set,
name: {
fr: "Métamorph VMAX",
en: "Ditto VMAX",
es: "Ditto VMAX",
it: "Ditto VMAX",
pt: "Ditto VMAX",
de: "Ditto VMAX"
},
illustrator: "PLANETA Tsuji",
rarity: "Rare",
category: "Pokemon",
hp: 320,
types: ["Colorless"],
evolveFrom: {
fr: "Métamorph-V",
en: "Ditto V"
},
attacks: [{
name: {
fr: "Morphomax",
en: "Max Transform",
es: "Maxitransformación",
it: "Dynatrasformazione",
pt: "Transformação Max",
de: "Dyna-Wandler"
},
effect: {
fr: "Choisissez lune des attaques du Pokémon Actif de votre adversaire et utilisez-la en tant que cette attaque.",
en: "Choose 1 of your opponents Active Pokémons attacks and use it as this attack.",
es: "Elige 1 de los ataques del Pokémon Activo de tu rival y úsalo para este ataque.",
it: "Scegli un attacco del Pokémon attivo del tuo avversario e usalo al posto di questo attacco.",
pt: "Escolha 1 dos ataques do Pokémon Ativo do seu oponente e use-o como este ataque.",
de: "Wähle 1 Attacke des Aktiven Pokémon deines Gegners und setze sie als diese Attacke ein."
},
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 3,
regulationMark: "D",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card