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,70 @@ const card: Card = {
},
name: {
en: "Raichu"
en: "Raichu",
fr: "Raichu",
es: "Raichu",
it: "Raichu",
pt: "Raichu",
de: "Raichu"
},
rarity: "Ultra Rare",
rarity: "Rare",
category: "Pokemon",
hp: 130,
types: ["Lightning"],
stage: "Stage1"
stage: "Stage1",
illustrator: "Mitsuhiro Arita",
attacks: [{
name: {
en: "Big Sparking",
fr: "Étincelle Géante",
es: "Gran Chispazo",
it: "Granscintilla",
pt: "Big Sparking",
de: "Großer Funke"
},
effect: {
en: "This attack does 50 damage to each Pokémon V and Pokémon-GX (both yours and your opponents). (Dont apply Weakness and Resistance for Benched Pokémon.)",
fr: "Cette attaque inflige 50 dégâts à chacun des Pokémon-V et Pokémon-GX (les vôtres et ceux de votre adversaire). (Nappliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
es: "Este ataque hace 50 puntos de daño a cada Pokémon V y Pokémon-GX (tanto tuyos como de tu rival). (No apliques Debilidad y Resistencia a los Pokémon en Banca).",
it: "Questo attacco infligge 50 danni a ciascun Pokémon-V e Pokémon-GX, sia tuo che del tuo avversario. Non applicare debolezza e resistenza ai Pokémon in panchina.",
pt: "This attack does 50 damage to each Pokémon V and Pokémon-GX (both yours and your opponents). (Dont apply Weakness and Resistance for Benched Pokémon.)",
de: "Diese Attacke fügt jedem Pokémon-V und Pokémon-GX (deinen und denen deines Gegners) 50 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)"
},
cost: ["Lightning"]
}, {
name: {
en: "Thunderbolt",
fr: "Tonnerre",
es: "Rayo",
it: "Fulmine",
pt: "Thunderbolt",
de: "Donnerblitz"
},
effect: {
en: "Discard all Energy from this Pokémon.",
fr: "Défaussez toute lÉnergie de ce Pokémon.",
es: "Descarta todas las Energías de este Pokémon.",
it: "Scarta tutte le Energie da questo Pokémon.",
pt: "Discard all Energy from this Pokémon.",
de: "Lege alle Energien von diesem Pokémon auf deinen Ablagestapel."
},
damage: 180,
cost: ["Lightning", "Lightning", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2
}
export default card