1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-16 09:29:19 +00:00

Updated Evolving Skies with attacks and other languages

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2021-08-28 16:54:37 +02:00
parent 90ebef01cf
commit b46b2c4fb9
194 changed files with 8779 additions and 436 deletions

View File

@ -12,14 +12,62 @@ const card: Card = {
},
name: {
en: "Eiscue"
en: "Eiscue",
fr: "Bekaglaçon",
es: "Eiscue",
it: "Eiscue",
pt: "Eiscue",
de: "Kubuin"
},
rarity: "Uncommon",
category: "Pokemon",
hp: 120,
types: ["Water"],
stage: "Basic"
stage: "Basic",
illustrator: "Mizue",
attacks: [{
name: {
en: "Icy Snow",
fr: "Verglas",
es: "Nieve Helada",
it: "Geloneve",
pt: "Icy Snow",
de: "Eisiger Schnee"
},
damage: 20,
cost: ["Water"]
}, {
name: {
en: "Blockface",
fr: "Tête de Bloc",
es: "Carabloque",
it: "Cubofaccia",
pt: "Blockface",
de: "Blockkopf"
},
effect: {
en: "During your opponents next turn, prevent all damage done to this Pokémon by attacks from Basic Pokémon.",
fr: "Pendant le prochain tour de votre adversaire, évitez tous les dégâts infligés à ce Pokémon par des attaques de Pokémon de base.",
es: "Durante el próximo turno de tu rival, evita todo el daño infligido a este Pokémon por ataques de Pokémon Básicos.",
it: "Durante il prossimo turno del tuo avversario, previeni tutti i danni inflitti a questo Pokémon dagli attacchi dei Pokémon Base.",
pt: "During your opponents next turn, prevent all damage done to this Pokémon by attacks from Basic Pokémon.",
de: "Verhindere während des nächsten Zuges deines Gegners allen Schaden, der diesem Pokémon durch Attacken von Basis-Pokémon zugefügt wird."
},
damage: 70,
cost: ["Water", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2
}
export default card