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,24 +4,29 @@ import Set from '../Mysterious Treasures'
const card: Card = {
name: {
en: "Dodrio",
fr: "Dodrio"
},
illustrator: "Masakazu Fukuda",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
85,
],
hp: 80,
types: [
"Colorless",
],
evolveFrom: {
en: "Doduo",
},
stage: "Stage1",
stage: "Stage1",
attacks: [
{
@ -30,11 +35,13 @@ const card: Card = {
],
name: {
en: "Fury Attack",
fr: "Furie"
},
effect: {
en: "Flip 3 coins. This attack does 10 damage times the number of heads.",
fr: "Lancez 3 pièces. Cette attaque inflige 10 dégâts multipliés par le nombre de faces."
},
damage: 10,
damage: "10×",
},
{
@ -45,19 +52,23 @@ const card: Card = {
],
name: {
en: "Triple Pick",
fr: "Triplette"
},
effect: {
en: "Choose 3 of your opponent's Evolved Pokémon. This attack does 30 damage to each of them. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Choisissez 3 des Pokémon Évolués de votre adversaire. Cette attaque inflige 30 dégâts à chacun. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon de Banc.)"
},
},
],
weaknesses: [
{
type: "Lightning",
value: "+20"
},
],
resistances: [
{
type: "Fighting",
@ -65,9 +76,9 @@ const card: Card = {
},
],
description: {
fr: "Quand Doduo connait cette étrange évolution, l'une de ses têtes se dédouble. Il atteint les 60 km/h."
}
}
export default card