1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49: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,23 +4,26 @@ import Set from '../Mysterious Treasures'
const card: Card = {
name: {
en: "Magikarp",
fr: "Magicarpe"
},
illustrator: "Yusuke Ohmura",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
129,
],
hp: 30,
types: [
"Water",
],
stage: "Basic",
attacks: [
{
cost: [
@ -28,11 +31,13 @@ const card: Card = {
],
name: {
en: "Flail",
fr: "Fléau"
},
effect: {
en: "Does 10 damage times the number of damage counters on Magikarp.",
fr: "Inflige 10 dégâts multipliés par le nombre de marqueurs de dégât sur Magicarpe."
},
damage: 10,
damage: "10×",
},
{
@ -42,14 +47,17 @@ const card: Card = {
],
name: {
en: "Dragon Rage",
fr: "Draco-rage"
},
effect: {
en: "Flip 2 coins. If either of them is tails, this attack does nothing.",
fr: "Lancez 2 pièces. Si vous obtenez une pile, cette attaque est sans effet."
},
damage: 60,
},
],
weaknesses: [
{
type: "Lightning",
@ -57,10 +65,9 @@ const card: Card = {
},
],
description: {
fr: "Ce Pokémon est réputé pour être le plus faible au monde. Nul ne sait comment son espèce perdure."
}
}
export default card