1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-02 23:52:11 +00:00
Florian Bouillon d4be6fa84f
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>
2021-11-22 18:11:03 +00:00

81 lines
1.5 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 '../Legends Awakened'
const card: Card = {
name: {
en: "Groudon",
fr: "Groudon",
},
illustrator: "Kazuaki Aihara",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
383,
],
hp: 100,
types: [
"Fighting",
],
stage: "Basic",
attacks: [
{
name: {
en: "Drought",
fr: "Sécheresse",
},
effect: {
en: "Choose up to 2 basic Fighting Energy cards from your hand and attach them to 1 of your Pokémon.",
fr: "Choisissez jusqu'à 2 cartes Énergie de base Fighting de votre main et attachez-les à 1 de vos Pokémon.",
},
},
{
cost: [
"Fighting",
"Fighting",
"Colorless",
],
name: {
en: "Major Earthquake",
fr: "Gros tremblement de terre",
},
effect: {
en: "Discard 2 Fighting Energy attached to Groudon and this attack does 10 damage to each of your Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Défaussez 2 Énergies Fighting attachées à Groudon et cette attaque inflige 10 dégâts à chacun de vos Pokémon de Banc. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon de Banc.)",
},
damage: 100,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
resistances: [
{
type: "Lightning",
value: "-20"
},
],
retreat: 3,
description: {
fr: "Il dormait dans le magma souterrain depuis sa lutte féroce contre Kyogre, il a longtemps de cela."
}
}
export default card