1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 03:42:13 +00:00
2021-11-12 17:24:19 +01:00

82 lines
1.3 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 '../Neo Revelation'
const card: Card = {
name: {
en: "Raichu",
fr: "Raichu"
},
illustrator: "Masako Yamashita",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
26,
],
hp: 80,
types: [
"Lightning",
],
evolveFrom: {
en: "Pikachu",
},
stage: "Stage1",
attacks: [
{
cost: [
"Lightning",
"Colorless",
],
name: {
en: "Thundershock",
fr: "Éclair"
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé."
},
damage: 20,
},
{
cost: [
"Lightning",
"Lightning",
"Lightning",
],
name: {
en: "Lightning Strike",
fr: "Frap'éclair"
},
effect: {
en: "You may discard all Energy cards attached to Raichu. If you do, this attack does 80 damage.",
fr: "Vous pouvez défausser toutes les cartes Énergie attachées à Raichu. Si vous le faites, cette attaque inflige 80 dégâts."
},
damage: 40
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
description: {
fr: "Si les poches électriques de ses joues sont complètement chargées, ses deux oreilles se dressent sur sa tête."
}
}
export default card