1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 16:39:18 +00:00

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>
This commit is contained in:
2021-11-22 18:11:03 +00:00
committed by GitHub
parent b70c73d43e
commit d4be6fa84f
505 changed files with 4907 additions and 2204 deletions

View File

@ -4,33 +4,40 @@ 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",
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."
},
},
@ -41,20 +48,24 @@ const card: Card = {
],
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,
damage: "30×",
},
],
weaknesses: [
{
type: "Fighting",
value: "+20"
},
],
resistances: [
{
type: "Metal",
@ -62,9 +73,9 @@ const card: Card = {
},
],
description: {
fr: "Il devient agressif lorsque son corps contient trop d'électricité. Il la décharge par sa queue."
}
}
export default card