1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00
Florian Bouillon df23371cb4
fix: Add most POP series French translations (#170)
* fix: Added most of the translations

Some translations aren't available or are user made without a card image depicted

Signed-off-by: Avior <github@avior.me>

* fix: Add sets French translations

Signed-off-by: Avior <github@avior.me>
2021-11-16 10:08:20 +01:00

91 lines
1.6 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../POP Series 9'
const card: Card = {
name: {
en: "Garchomp",
fr: "Carchacrok"
},
illustrator: "Kagemaru Himeno",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
445,
],
hp: 130,
types: [
"Colorless",
],
evolveFrom: {
en: "Gabite",
},
stage: "Stage2",
attacks: [
{
cost: [
"Colorless",
],
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 au moins un côté pile, cette attaque ne fait rien."
},
damage: 80
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Jet Sword",
fr: "Jet Sword"
},
effect: {
en: "Discard 2 Energy attached to Garchomp and this attack does 10 damage to each of your opponents Benched Pokémon. (Dont apply Weakness and Resistance for Benched Pokémon.)",
fr: "Défaussez deux Énergies attachées à Carchacrok. Cette attaque inflige 10 dégâts à chacun des Pokémon de Banc de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)"
},
damage: 100,
},
],
weaknesses: [
{
type: "Colorless",
value: "+30"
},
],
retreat: 0,
description: {
en: "It flies at speeds equal to a jet fighter plane. It never allows its prey to escape.",
fr: "Il vole à la vitesse d'un avion à réaction et ne lâche jamais sa proie."
},
variants: {
normal: true,
reverse: false,
holo: false,
firstEdition: false
}
}
export default card