1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

98 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 '../Cosmic Eclipse'
const card: Card = {
name: {
en: "Raichu",
fr: "Raichu",
es: "Raichu",
it: "Raichu",
pt: "Raichu",
de: "Raichu"
},
illustrator: "AKIRA EGAWA",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
26,
],
hp: 120,
types: [
"Lightning",
],
evolveFrom: {
en: "Pikachu",
fr: "Pikachu",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Nuzzle",
fr: "Frotte-Frimousse",
es: "Moflete Estático",
it: "Elettrococcola",
pt: "Chamego",
de: "Wangenrubbler"
},
effect: {
en: "Flip a coin. If heads, your opponents Active Pokémon is now Paralyzed.",
fr: "Lancez une pièce. Si cest face, le Pokémon Actif de votre adversaire est maintenant Paralysé.",
es: "Lanza 1 moneda. Si sale cara, el Pokémon Activo de tu rival pasa a estar Paralizado.",
it: "Lancia una moneta. Se esce testa, il Pokémon attivo del tuo avversario viene paralizzato.",
pt: "Jogue 1 moeda. Se sair cara, o Pokémon Ativo do seu oponente será Paralisado.",
de: "Wirf 1 Münze. Bei Kopf ist das Aktive Pokémon deines Gegners jetzt paralysiert."
},
},
{
cost: [
"Lightning",
],
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 damage times the amount of Lightning Energy attached to all of your Pokémon.",
fr: "Cette attaque inflige 20 dégâts multipliés par le nombre dÉnergies Lightning attachées à tous vos Pokémon.",
es: "Este ataque hace 20 puntos de daño por cada Energía Lightning unida a todos tus Pokémon.",
it: "Questo attacco infligge 20 danni per ogni Energia Lightning assegnata ai tuoi Pokémon.",
pt: "Este ataque causa 20 pontos de dano vezes a quantidade de Energia Lightning ligada a todos os seus Pokémon.",
de: "Diese Attacke fügt 20 Schadenspunkte mal der Anzahl der an alle deine Pokémon angelegten Lightning-Energien zu."
},
damage: "20×",
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
retreat: 2,
}
export default card