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

81 lines
2.3 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: true,
holo: true,
firstEdition: false
},
name: {
en: "Raichu",
fr: "Raichu",
es: "Raichu",
it: "Raichu",
pt: "Raichu",
de: "Raichu"
},
rarity: "Rare",
category: "Pokemon",
hp: 130,
types: ["Lightning"],
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