1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-21 15:49:55 +00:00
Florian Bouillon 90ebef01cf Added more Evolving Skies data
Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-08-27 11:02:14 +02:00

78 lines
2.5 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 '../Evolving Skies'
const card: Card = {
set: Set,
variants: {
normal: false,
reverse: false,
holo: false,
firstEdition: false
},
name: {
en: "Duraludon VMAX",
fr: "Duralugon VMAX",
es: "Duraludon VMAX",
it: "Duraludon VMAX",
pt: "Duraludon VMAX",
de: "Duraludon VMAX"
},
rarity: "Ultra Rare",
category: "Pokemon",
hp: 330,
types: ["Dragon"],
stage: "VMAX",
illustrator: "PLANETA Mochizuki",
abilities: [{
type: "Ability",
name: {
en: "Skyscraper",
fr: "Gratte-Ciel",
es: "Rascacielos",
pt: "Skyscraper",
it: "Grattacielo",
de: "Wolkenkratzer"
},
effect: {
en: "Prevent all damage done to this Pokémon by attacks from your opponents Pokémon that have Special Energy attached.",
fr: "Évitez tous les dégâts infligés à ce Pokémon par les attaques des Pokémon de votre adversaire auxquels de lÉnergie spéciale est attachée.",
es: "Evita todo el daño infligido a este Pokémon por ataques de los Pokémon de tu rival que tengan alguna Energía Especial unida a ellos.",
pt: "Prevent all damage done to this Pokémon by attacks from your opponents Pokémon that have Special Energy attached.",
it: "Previeni tutti i danni inflitti a questo Pokémon dagli attacchi dei Pokémon del tuo avversario che hanno Energie speciali assegnate.",
de: "Verhindere allen Schaden, der diesem Pokémon durch Attacken von Pokémon deines Gegners, an die Spezial-Energie angelegt ist, zugefügt wird."
}
}],
attacks: [{
name: {
en: "G-Max Pulverization",
fr: "Pulvérisation G-Max",
es: "Gigapulverización",
it: "Gigapolverizzazione",
pt: "G-Max Pulverization",
de: "Giga-Pulverisierung"
},
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: "This attacks damage isnt affected by any effects on your opponents Active Pokémon.",
de: "Der Schaden dieser Attacke wird durch Effekte auf dem Aktiven Pokémon deines Gegners nicht verändert."
},
damage: 220,
cost: ["Fighting", "Metal", "Metal"]
}],
retreat: 3
}
export default card