1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +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: "Graveler",
fr: "Gravalanch"
},
illustrator: "Mitsuhiro Arita",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
75,
],
hp: 90,
types: [
"Fighting",
],
evolveFrom: {
en: "Geodude",
},
stage: "Stage1",
stage: "Stage1",
attacks: [
{
@ -31,11 +36,13 @@ const card: Card = {
],
name: {
en: "Rock Cannon",
fr: "Canon à pierres"
},
effect: {
en: "Flip a coin until you get tails. This attack does 30 damage times the number of heads.",
fr: "Lancez une pièce jusqu'à ce que vous obteniez pile. Cette attaque inflige 30 dégâts multipliés par le nombre de faces."
},
damage: 30,
damage: "30×",
},
{
@ -46,20 +53,24 @@ const card: Card = {
],
name: {
en: "Rock Slide",
fr: "Éboulement"
},
effect: {
en: "Does 10 damage to 2 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Inflige 10 dégâts à 2 des Pokémon de Banc de votre adversaire. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon de Banc.)"
},
damage: 40,
},
],
weaknesses: [
{
type: "Grass",
value: "+20"
},
],
resistances: [
{
type: "Lightning",
@ -67,9 +78,9 @@ const card: Card = {
},
],
description: {
fr: "Gravalanch creuse son terrier à flanc de montagne en perçant des galeries horizontales."
}
}
export default card