1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 08:19:17 +00:00

fix: Add Base serie translations (#161)

Signed-off-by: Avior <github@avior.me>
This commit is contained in:
2021-11-12 17:07:41 +01:00
committed by GitHub
parent 3b8e87e284
commit ffdd3b4656
337 changed files with 4395 additions and 2387 deletions

View File

@ -4,35 +4,44 @@ import Set from '../Team Rocket'
const card: Card = {
name: {
en: "Dark Gyarados",
fr: "Léviator obscur"
},
illustrator: "Kagemaru Himeno",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
130,
],
hp: 70,
types: [
"Water",
],
evolveFrom: {
en: "Magikarp",
},
stage: "Stage1",
abilities: [
{
type: "Poke-POWER",
type: "Pokemon Power",
name: {
en: "Final Beam",
fr: "Rayon final"
},
effect: {
en: "When Dark Gyarados is Knocked Out by an attack, flip a coin. If heads, this power does 20 damage for each Water Energy attached to Dark Gyarados to the Pokémon that Knocked Out Dark Gyarados. Apply Weakness and Resistance. This power doesn't work if Dark Gyarados is Asleep, Confused, or Paralyzed.",
fr: "Lorsque Léviator obscur est mis K.O. par une attaque, lancez une pièce. Si c'est face, ce pouvoir inflige 20 dégâts au Pokémon qui a mis K.O. Léviator obscur pour chaque Énergie attachée à Léviator obscur. Appliquez la Faiblesse et la Résistance. Ce pouvoir ne fonctionne pas si Léviator obscur est Endormi, Confus ou Paralysé."
},
},
],
attacks: [
{
cost: [
@ -42,20 +51,24 @@ const card: Card = {
],
name: {
en: "Ice Beam",
fr: "Laser Glace"
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé."
},
damage: 30,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
@ -63,9 +76,9 @@ const card: Card = {
},
],
description: {
fr: "On le trouvait habituellement dans les profondeurs de l'océan, mais il a été vu récemment dans des eaux peu profondes."
}
}
export default card