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: "Aggron",
fr: "Galeking"
},
illustrator: "Kouki Saitou",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
306,
],
hp: 130,
types: [
"Metal",
],
evolveFrom: {
en: "Lairon",
},
stage: "Stage2",
stage: "Stage2",
attacks: [
{
@ -31,11 +36,13 @@ const card: Card = {
],
name: {
en: "Heap Up",
fr: "Empiler"
},
effect: {
en: "Search your discard pile for all Energy cards and show them to your opponent. If you find any Metal Special Energy cards there, this attack does 40 damage plus 30 more damage. Put all of those Energy cards on top of your deck. Shuffle your deck afterward.",
fr: "Cherchez dans votre pile de défausse toutes les cartes Énergie et montrez-les à votre adversaire. Si vous y trouvez des cartes Énergie Spéciale Metal, cette attaque inflige 40 dégâts plus 30 dégâts supplémentaires. Placez toutes ces cartes au dessus de votre deck. Ensuite, mélangez votre deck."
},
damage: 40,
damage: "40+",
},
{
@ -47,20 +54,24 @@ const card: Card = {
],
name: {
en: "Hard Metal",
fr: "Métal dur"
},
effect: {
en: "You may do 60 damage plus 40 more damage. If you do, Aggron does 40 damage to itself.",
fr: "Vous pouvez infliger 60 dégâts plus 40 dégâts supplémentaires. Galeking s'inflige alors 40 dégâts."
},
damage: 60,
damage: "60+",
},
],
weaknesses: [
{
type: "Fire",
value: "+40"
},
],
resistances: [
{
type: "Psychic",
@ -68,9 +79,9 @@ const card: Card = {
},
],
description: {
fr: "Il creuse des galeries à travers la pierre avec ses cornes d'acier pour trouver le fer qu'il apprécie."
}
}
export default card