1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 17:09:19 +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: "Feraligatr",
fr: "Aligatueur"
},
illustrator: "Kazuyuki Kano",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
160,
],
hp: 130,
types: [
"Water",
],
evolveFrom: {
en: "Croconaw",
},
stage: "Stage2",
stage: "Stage2",
attacks: [
{
@ -31,11 +36,13 @@ const card: Card = {
],
name: {
en: "Energy Cyclone",
fr: "Énergie Tourbillon"
},
effect: {
en: "Choose as many Energy cards from your hand as you like and show them to your opponent. This attack does 20 damage times the number of Energy cards you chose. Put those Energy cards on top of your deck. Shuffle your deck afterward.",
fr: "Choisissez autant de cartes Énergie de votre main que vous voulez et montrez-les à votre adversaire. Cette attaque inflige 20 dégâts multipliés par le nombre de cartes Énergie choisies. Placez ces cartes au dessus de votre deck. Ensuite, mélangez votre deck."
},
damage: 20,
damage: "20×",
},
{
@ -46,14 +53,17 @@ const card: Card = {
],
name: {
en: "Breaking Tail",
fr: "Queue brisante"
},
effect: {
en: "Choose 1 card from your opponent's hand without looking and discard it.",
fr: "Choisissez sans regarder 1 carte de la main de votre adversaire et défaussez-la."
},
damage: 60,
},
],
weaknesses: [
{
type: "Lightning",
@ -61,10 +71,9 @@ const card: Card = {
},
],
description: {
fr: "Ce Pokémon à l'air pataud est capable d'attaquer à la vitesse de l'éclair pour mordre sa proie."
}
}
export default card