1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 14:52:09 +00:00
Florian Bouillon d4be6fa84f
fix: Add Diamond & Pearl French translations (#179)
* fix: Add the two first sets

Signed-off-by: Avior <github@avior.me>

* fix: Add DP, DP Black Star and Mysterious Treasures

Signed-off-by: Avior <github@avior.me>
2021-11-22 18:11:03 +00:00

82 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 '../Mysterious Treasures'
const card: Card = {
name: {
en: "Raichu",
fr: "Raichu"
},
illustrator: "Daisuke Ito",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
26,
],
hp: 90,
types: [
"Lightning",
],
evolveFrom: {
en: "Pikachu",
},
stage: "Stage1",
attacks: [
{
name: {
en: "Electromagnetic Induction",
fr: "Démarrage électromagnétìque"
},
effect: {
en: "Search your deck for up to 2 Lightning Energy cards and attach them to 1 of your Pokémon. Shuffle your deck afterward.",
fr: "Choisissez dans votre deck jusqu'à 2 cartes Énergie Lightning et attachez-les à 1 de vos Pokémon. Ensuite, mélangez votre deck."
},
},
{
cost: [
"Lightning",
"Colorless",
],
name: {
en: "Explosive Thunder",
fr: "Tonnerre explosif"
},
effect: {
en: "Discard all basic Lightning Energy cards attached to Raichu. This attack does 30 damage times the number of Lightning Energy cards you discarded.",
fr: "Défaussez toutes les cartes Énergie Lightning attachées à Raichu. Cette attaque inflige 30 dégâts multipliés par le nombre de cartes Énergie défaussées."
},
damage: "30×",
},
],
weaknesses: [
{
type: "Fighting",
value: "+20"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
description: {
fr: "Il devient agressif lorsque son corps contient trop d'électricité. Il la décharge par sa queue."
}
}
export default card