1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-06 17:27:52 +00:00
Florian Bouillon b46b2c4fb9
Updated Evolving Skies with attacks and other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-28 16:54:37 +02:00

69 lines
1.9 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 '../Evolving Skies'
const card: Card = {
set: Set,
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
},
name: {
en: "Duraludon V",
fr: "Duralugon V",
es: "Duraludon V",
it: "Duraludon V",
pt: "Duraludon V",
de: "Duraludon V"
},
rarity: "Ultra Rare",
category: "Pokemon",
hp: 220,
types: ["Dragon"],
stage: "Basic",
illustrator: "PLANETA Mochizuki",
suffix: "V",
attacks: [{
name: {
en: "Metal Claw",
fr: "Griffe Acier",
es: "Garra Metal",
it: "Ferrartigli",
pt: "Metal Claw",
de: "Metallklaue"
},
damage: 70,
cost: ["Fighting", "Metal"]
}, {
name: {
en: "Breaking Swipe",
fr: "Abattage",
es: "Vasto Impacto",
it: "Vastoimpatto",
pt: "Breaking Swipe",
de: "Breitseite"
},
effect: {
en: "During your opponents next turn, the Defending Pokémons attacks do 30 less damage (before applying Weakness and Resistance).",
fr: "Pendant le prochain tour de votre adversaire, les attaques du Pokémon Défenseur infligent 30 dégâts de moins (avant application de la Faiblesse et de la Résistance).",
es: "Durante el próximo turno de tu rival, los ataques del Pokémon Defensor hacen 30 puntos de daño menos (antes de aplicar Debilidad y Resistencia).",
it: "Durante il prossimo turno del tuo avversario, gli attacchi del Pokémon difensore infliggono 30 danni in meno, prima di aver applicato debolezza e resistenza.",
pt: "During your opponents next turn, the Defending Pokémons attacks do 30 less damage (before applying Weakness and Resistance).",
de: "Während des nächsten Zuges deines Gegners fügen die Attacken des Verteidigenden Pokémon 30 Schadenspunkte weniger zu (bevor Schwäche und Resistenz verrechnet werden)."
},
damage: 140,
cost: ["Fighting", "Metal", "Metal"]
}],
retreat: 2
}
export default card