mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
127 lines
3.1 KiB
TypeScript
127 lines
3.1 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Shining Legends'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Raichu GX",
|
||
fr: "Raichu GX",
|
||
es: "Raichu GX",
|
||
it: "Raichu GX",
|
||
pt: "Raichu GX",
|
||
de: "Raichu GX"
|
||
},
|
||
illustrator: "5ban Graphics",
|
||
rarity: "Secret Rare",
|
||
category: "Pokemon",
|
||
|
||
set: Set,
|
||
dexId: [
|
||
26,
|
||
],
|
||
hp: 210,
|
||
types: [
|
||
"Lightning",
|
||
],
|
||
evolveFrom: {
|
||
en: "Pikachu",
|
||
fr: "Pikachu",
|
||
},
|
||
|
||
suffix: "GX",
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Powerful Spark",
|
||
fr: "Étincelle Puissante",
|
||
es: "Chispa Poderosa",
|
||
it: "Superscintilla",
|
||
pt: "Fagulha Poderosa",
|
||
de: "Mächtiger Funke"
|
||
},
|
||
effect: {
|
||
en: "This attack does 20 more damage times the amount of Lightning Energy attached to your Pokémon.",
|
||
fr: "Cette attaque inflige 20 dégâts supplémentaires multipliés par le nombre d’Énergies Lightning attachées à vos Pokémon.",
|
||
es: "Este ataque hace 20 puntos de daño más por cada Energía Lightning unida a tus Pokémon.",
|
||
it: "Questo attacco infligge 20 danni in più per ogni Energia Lightning assegnata ai tuoi Pokémon.",
|
||
pt: "Este ataque causa 20 pontos de dano a mais vezes a quantidade de Energia Lightning ligada aos seus Pokémon.",
|
||
de: "Diese Attacke fügt 20 Schadenspunkte mehr mal der Anzahl der an deine Pokémon angelegten Lightning-Energien zu."
|
||
},
|
||
damage: "20+",
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Lightning",
|
||
"Lightning",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Thunder",
|
||
fr: "Fatal-Foudre",
|
||
es: "Trueno",
|
||
it: "Tuono",
|
||
pt: "Trovão",
|
||
de: "Donner"
|
||
},
|
||
effect: {
|
||
en: "This Pokémon does 30 damage to itself.",
|
||
fr: "Ce Pokémon s’inflige 30 dégâts.",
|
||
es: "Este Pokémon se hace 30 puntos de daño a sí mismo.",
|
||
it: "Questo Pokémon infligge 30 danni a se stesso.",
|
||
pt: "Este Pokémon causa 30 pontos de dano a si mesmo.",
|
||
de: "Dieses Pokémon fügt sich selbst 30 Schadenspunkte zu."
|
||
},
|
||
damage: 160,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Lightning",
|
||
"Lightning",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Voltail GX",
|
||
fr: "Queue Survoltée GX",
|
||
es: "Colavoltio GX",
|
||
it: "Coda Voltaica-GX",
|
||
pt: "Cauda Voltaica GX",
|
||
de: "Voltschweif GX"
|
||
},
|
||
effect: {
|
||
en: "Your opponent’s Active Pokémon is now Paralyzed. (You can’t use more than 1 GX attack in a game.)",
|
||
fr: "Le Pokémon Actif de votre adversaire est maintenant Paralysé. (Vous ne pouvez utiliser qu’une attaque GX par partie.)",
|
||
es: "El Pokémon Activo de tu rival pasa a estar Paralizado. (No puedes usar más de 1 ataque GX en una partida).",
|
||
it: "Il Pokémon attivo del tuo avversario viene paralizzato. Non puoi usare più di un attacco GX a partita.",
|
||
pt: "O Pokémon Ativo do seu oponente agora está Paralisado (você não pode usar mais de 1 ataque GX por partida).",
|
||
de: "Das Aktive Pokémon deines Gegners ist jetzt paralysiert. (Du kannst pro Spiel nur 1 GX-Attacke einsetzen.)"
|
||
},
|
||
damage: 120,
|
||
|
||
},
|
||
],
|
||
weaknesses: [
|
||
{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
},
|
||
],
|
||
resistances: [
|
||
{
|
||
type: "Metal",
|
||
value: "-20"
|
||
},
|
||
],
|
||
retreat: 1,
|
||
|
||
|
||
|
||
}
|
||
|
||
export default card
|