1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 19:02:10 +00:00

75 lines
1.8 KiB
TypeScript
Raw Permalink 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 '../Crystal Guardians'
const card: Card = {
name: {
en: "Groudon ex",
fr: "Groudon ex",
de: "Groudon ex"
},
illustrator: "Takabon",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
383,
],
hp: 100,
types: [
"Fighting",
],
suffix: "EX",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Hard Rock",
fr: "Pierre dure",
de: "Harter Fels"
},
effect: {
en: "As long as Groudon ex has 1 Energy or less attached to it, damage done to any of your Groudon ex in play by attacks is reduced by 20 (after applying Weakness and Resistance). You can't use more than 1 Hard Rock Poké-Body each turn.",
fr: "Tant que Groudon ex possède un maximum d'1 Énergie, les dégâts infligés par des attaques à chacun des Groudons ex que vous avez en jeu sont réduits de 20 (après application de la Faiblesse et de la Résistance). Vous ne pouvez pas utiliser plus d'1 Poké-Body Pierre dure par tour.",
de: "So lange an Groudon ex 1 oder weniger Energien angelegt ist, wird jeder Schaden, der allen deinen Groudon ex durch Angriffe gegnerischer Pokémon zugefügt wird, um 20 reduziert (nachdem Schwäche und Resistenz verrechnet wurden). Du kannst nicht mehr als 1 Harter Fels Poké-Body pro Zug benutzen."
},
},
],
attacks: [
{
cost: [
"Fighting",
"Fighting",
"Colorless",
],
name: {
en: "Power Blast",
fr: "Explosion puissante",
de: "Powerschuß"
},
effect: {
en: "Discard 2 Energy attached to Groudon ex.",
fr: "Défaussez 2 Énergies attachées à Groudon ex.",
de: "Lege 2 Energien, die an Groudon ex angelegt sind, auf deinen Ablagestapel."
},
damage: 100,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
}
export default card