1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-29 10:59:54 +00:00

56 lines
756 B
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 '../Nintendo Black Star Promos'
const card: Card = {
name: {
en: "Groudon ex",
},
illustrator: "Kazuo Yazawa",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
383,
],
hp: 120,
types: [
"Fightning",
],
stage: "Basic",
attacks: [
{
cost: [
"Fightning",
"Fightning",
"Fightning",
"Fightning",
],
name: {
en: "Major Earthquake",
},
effect: {
en: "Discard a Fighting Energy card attached to Groudon ex. Does 10 damage to your Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
},
damage: 80,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
}
export default card