1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 08:59: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,24 +4,29 @@ import Set from '../Mysterious Treasures'
const card: Card = {
name: {
en: "Manectric",
fr: "Elecsprint"
},
illustrator: "Atsuko Nishida",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
310,
],
hp: 80,
types: [
"Lightning",
],
evolveFrom: {
en: "Electrike",
},
stage: "Stage1",
stage: "Stage1",
attacks: [
{
@ -30,11 +35,13 @@ const card: Card = {
],
name: {
en: "Lightning Twister",
fr: "Tornade d'éclairs"
},
effect: {
en: "Does 20 damage times the number of basic Energy cards attached to Manectric.",
fr: "Inflige 20 dégâts multipliés par le nombre de cartes Énergie de base attachées à Elecsprint."
},
damage: 20,
damage: "20×",
},
{
@ -45,20 +52,24 @@ const card: Card = {
],
name: {
en: "Chain Lightning",
fr: "Rafale de foudre"
},
effect: {
en: "Does 20 damage to each of your opponent's Benched Pokémon that is the same type as the Defending Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Inflige 20 dégâts à chacun des Pokémon de Banc de votre adversaire étant du même type que le Pokémon Défenseur. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon de Banc.)"
},
damage: 70,
},
],
weaknesses: [
{
type: "Fighting",
value: "+20"
},
],
resistances: [
{
type: "Metal",
@ -66,9 +77,9 @@ const card: Card = {
},
],
description: {
fr: "Il libère l'électricité par sa crinière. Il crée un nuage d'orage pour appeler la foudre."
}
}
export default card