1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-13 04:17:49 +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

68 lines
1.6 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: true,
holo: true,
firstEdition: false
},
name: {
en: "Dialga",
fr: "Dialga",
es: "Dialga",
it: "Dialga",
pt: "Dialga",
de: "Dialga"
},
rarity: "Rare",
category: "Pokemon",
hp: 130,
types: ["Dragon"],
stage: "Basic",
illustrator: "Ryuta Fuse",
attacks: [{
name: {
en: "Chrono Wind",
fr: "Vent Temporel",
es: "Retroceso Cronológico",
it: "Cronolancetta",
pt: "Chrono Wind",
de: "Zeitsturm"
},
effect: {
en: "If the Defending Pokémon is a Pokémon V, it cant attack during your opponents next turn.",
fr: "Si le Pokémon Défenseur est un Pokémon-V, il ne peut pas attaquer pendant le prochain tour de votre adversaire.",
es: "Si el Pokémon Defensor es un Pokémon V, no puede atacar durante el próximo turno de tu rival.",
it: "Durante il prossimo turno del tuo avversario, il Pokémon difensore non può attaccare se è un Pokémon-V.",
pt: "If the Defending Pokémon is a Pokémon V, it cant attack during your opponents next turn.",
de: "Wenn das Verteidigende Pokémon ein Pokémon-V ist, kann es während des nächsten Zuges deines Gegners nicht angreifen."
},
damage: 80,
cost: ["Colorless", "Colorless", "Colorless"]
}, {
name: {
en: "Heavy Impact",
fr: "Gros Impact",
es: "Impacto Pesado",
it: "Impatto Pesante",
pt: "Heavy Impact",
de: "Schwerer Einschlag"
},
damage: 210,
cost: ["Psychic", "Metal", "Metal", "Colorless"]
}],
retreat: 2
}
export default card