1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-01 23:22: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

102 lines
2.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 '../Rebel Clash'
const card: Card = {
name: {
en: "Dragapult VMAX",
fr: "Lanssorien VMAX",
es: "Dragapult VMAX",
it: "Dragapult VMAX",
pt: "Dragapult VMAX",
de: "Katapuldra VMAX"
},
illustrator: "aky CG Works",
rarity: "Rare",
category: "Pokemon",
set: Set,
hp: 320,
evolveFrom: {
en: "Dragapult V",
fr: "Lanssorien-V"
},
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Shred",
fr: "Déchiquetage",
es: "Hacer Trizas",
it: "Tritatutto",
pt: "Triturar",
de: "Zerfetzer"
},
effect: {
en: "This attacks damage isnt affected by any effects on your opponents Active Pokémon.",
fr: "Les dégâts de cette attaque ne sont affectés par aucun effet en action sur le Pokémon Actif de votre adversaire.",
es: "El daño de este ataque no se ve afectado por ningún efecto en el Pokémon Activo de tu rival.",
it: "I danni di questo attacco non sono influenzati da alcun effetto presente sul Pokémon attivo del tuo avversario.",
pt: "O dano deste ataque não é afetado por quaisquer efeitos no Pokémon Ativo do seu oponente.",
de: "Der Schaden dieser Attacke wird durch Effekte auf dem Aktiven Pokémon deines Gegners nicht verändert."
},
damage: 60,
},
{
cost: [
"Psychic",
"Psychic",
],
name: {
en: "Max Phantom",
fr: "Fantômax",
es: "Maxifantasma",
it: "Dynaspettro",
pt: "Fantasma Max",
de: "Dyna-Phantom"
},
effect: {
en: "Put 5 damage counters on your opponents Benched Pokémon in any way you like.",
fr: "Placez 5 marqueurs de dégâts sur les Pokémon de Banc de votre adversaire comme il vous plaît.",
es: "Pon 5 contadores de daño en los Pokémon en Banca de tu rival de la manera que desees.",
it: "Metti cinque segnalini danno sui Pokémon nella panchina del tuo avversario nel modo che preferisci.",
pt: "Coloque 5 contadores de dano nos Pokémon no Banco do seu oponente como desejar.",
de: "Lege 5 Schadensmarken beliebig auf die Pokémon auf der Bank deines Gegners."
},
damage: 130,
},
],
weaknesses: [
{
type: "Darkness",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-30"
},
],
retreat: 1,
types: ["Psychic"],
regulationMark: "D",
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card