1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00

79 lines
1.5 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 '../FireRed & LeafGreen'
const card: Card = {
name: {
en: "Raichu",
fr: "Raichu",
de: "Raichu"
},
illustrator: "Midori Harada",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
26,
],
hp: 80,
types: [
"Lightning",
],
evolveFrom: {
en: "Pikachu",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Recharge",
fr: "Recharger",
de: "Auffüllen"
},
effect: {
en: "Search your deck for up to 2 Lightning Energy cards and attach them to Raichu. Shuffle your deck afterward.",
fr: "Cherchez dans votre deck jusqu'à 2 cartes Énergie et attachez-les à Raichu. Ensuite, mélangez votre deck.",
de: "Durchsuche dein Deck nach bis zu 2 - Energiekarten und lege sie an Raichu an. Mische dein Deck danach."
},
},
{
cost: [
"Lightning",
"Lightning",
"Colorless",
],
name: {
en: "Thunder Reflection",
fr: "Coup d'tonnerre",
de: "Donnerspiegelung"
},
effect: {
en: "You may move any number of Lightning Energy cards attached to Raichu to another of your Pokémon.",
fr: "Vous pouvez déplacer autant de cartes Énergie attachées à Raichu que vous le voulez sur un autre de vos Pokémon.",
de: "Du kannst beliebig viele an Raichu angelegte - Energiekarten an ein anderes deiner Pokémon anlegen."
},
damage: 50,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
}
export default card